:root {
  color-scheme: dark;
  --bg: #06080c;
  --bg-soft: #0d1218;
  --panel: rgba(14, 19, 27, 0.82);
  --panel-strong: rgba(15, 21, 29, 0.94);
  --text: #edf1f5;
  --muted: #96a3b3;
  --line: rgba(233, 240, 247, 0.08);
  --line-strong: rgba(233, 240, 247, 0.16);
  --accent: #ef8753;
  --accent-soft: rgba(239, 135, 83, 0.16);
  --brand: #4d90d2;
  --brand-strong: #233f67;
  --brand-soft: rgba(77, 144, 210, 0.16);
  --success: #68d7ad;
  --shadow: 0 34px 96px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 22px 48px rgba(0, 0, 0, 0.24);
  --radius-xl: 32px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
  --nav-height: 88px;
  --transition: 220ms ease;
  --font-heading: "Manrope", "Noto Sans SC", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body[data-theme="light"] {
  color-scheme: light;
  --bg: #f3efe7;
  --bg-soft: #fcf8f1;
  --panel: rgba(255, 252, 247, 0.82);
  --panel-strong: rgba(255, 252, 247, 0.95);
  --text: #131921;
  --muted: #5a6473;
  --line: rgba(15, 23, 36, 0.12);
  --line-strong: rgba(15, 23, 36, 0.2);
  --accent: #d56935;
  --accent-soft: rgba(213, 105, 53, 0.16);
  --brand: #0f3f67;
  --brand-strong: #08253f;
  --brand-soft: rgba(15, 63, 103, 0.14);
  --success: #1f8b61;
  --shadow: 0 30px 80px rgba(12, 20, 31, 0.14);
  --shadow-soft: 0 18px 40px rgba(12, 20, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 135, 83, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(77, 144, 210, 0.1), transparent 24%),
    linear-gradient(180deg, #090c10, var(--bg) 22%, #05070b 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body[data-theme="light"] {
  background:
    radial-gradient(circle at top left, rgba(213, 105, 53, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 63, 103, 0.14), transparent 24%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mix-blend-mode: overlay;
  opacity: 0.24;
}

body[data-theme="light"]::before {
  opacity: 0.35;
}

body.no-scroll {
  overflow: hidden;
}

::selection {
  background: rgba(239, 135, 83, 0.32);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 166, 104, 0.16);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

main section,
main [data-search] {
  scroll-margin-top: calc(var(--nav-height) + 26px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 80;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(8, 12, 18, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-160%);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

body[data-theme="light"] .skip-link {
  background: rgba(255, 252, 247, 0.96);
  border-color: var(--line);
  color: var(--text);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-height);
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(8, 11, 16, 0.42);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transition: inherit;
}

.topbar.scrolled::before {
  background: rgba(11, 15, 22, 0.82);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

body[data-theme="light"] .topbar::before {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

body[data-theme="light"] .topbar.scrolled::before {
  background: var(--panel);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.nav-row {
  position: relative;
  z-index: 1;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-inline {
  pointer-events: none;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, var(--accent) 0%, var(--accent) 45%, transparent 45%),
    linear-gradient(135deg, transparent 0%, transparent 52%, var(--brand) 52%, var(--brand) 100%);
  box-shadow: 0 0 0 8px var(--accent-soft);
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1;
}

.brand-copy small {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a,
.footer-links a,
.mobile-nav a {
  position: relative;
  color: var(--muted);
  transition: color var(--transition);
}

.desktop-nav a:hover,
.footer-links a:hover,
.mobile-nav a:hover {
  color: var(--text);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after {
  transform: scaleX(1);
}

.desktop-nav a.is-current,
.mobile-nav a.is-current,
.footer-links a.is-current {
  color: var(--text);
}

.topbar .desktop-nav a,
.topbar .brand-copy small {
  color: rgba(236, 241, 247, 0.62);
}

.topbar .desktop-nav a:hover,
.topbar .brand-copy strong {
  color: #fff;
}

.topbar .desktop-nav a.is-current {
  color: #fff;
}

body[data-theme="light"] .topbar .desktop-nav a,
body[data-theme="light"] .topbar .brand-copy small,
body[data-theme="light"] .topbar .brand-copy strong {
  color: inherit;
}

body[data-theme="light"] .topbar .desktop-nav a.is-current {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button,
.menu-toggle,
.search-close,
.search-submit,
.mobile-close,
.tag-button,
.primary-button,
.secondary-button,
.solid-link {
  border: 0;
  border-radius: 999px;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.nav-cta,
.primary-button,
.secondary-button,
.solid-link,
.search-submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  will-change: transform, box-shadow;
  transform: translate3d(var(--magnetic-x, 0px), var(--magnetic-y, 0px), 0);
}

.mobile-menu-entry {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.mobile-menu-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.icon-button,
.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.icon-button:hover,
.menu-toggle:hover,
.search-close:hover,
.tag-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(12, 20, 31, 0.12);
}

.theme-toggle-text {
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-cta,
.primary-button,
.secondary-button,
.solid-link,
.search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 20px 36px rgba(15, 63, 103, 0.26);
}

.nav-cta:hover,
.primary-button:hover,
.solid-link:hover,
.search-submit:hover {
  transform: translate3d(var(--magnetic-x, 0px), calc(var(--magnetic-y, 0px) - 2px), 0) scale(1.01);
  box-shadow: 0 24px 42px rgba(15, 63, 103, 0.3);
}

.secondary-button {
  min-height: 48px;
  padding: 0 22px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
}

.secondary-button:hover {
  background: var(--panel);
  transform: translate3d(var(--magnetic-x, 0px), calc(var(--magnetic-y, 0px) - 2px), 0) scale(1.01);
  box-shadow: 0 18px 34px rgba(8, 14, 24, 0.18);
}

.nav-cta.is-magnetic-active,
.primary-button.is-magnetic-active,
.secondary-button.is-magnetic-active,
.solid-link.is-magnetic-active,
.search-submit.is-magnetic-active {
  box-shadow:
    0 22px 40px rgba(15, 63, 103, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.nav-cta:active,
.primary-button:active,
.secondary-button:active,
.solid-link:active,
.search-submit:active {
  transform: translate3d(var(--magnetic-x, 0px), calc(var(--magnetic-y, 0px) + 1px), 0) scale(0.992);
}

.nav-cta:disabled,
.primary-button:disabled,
.secondary-button:disabled,
.solid-link:disabled,
.search-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  box-shadow: none;
  transform: translate3d(0, 0, 0);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.section-rail {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 28;
  display: grid;
  grid-template-columns: 4px auto;
  gap: 14px;
  align-items: start;
  padding: 16px 16px 16px 12px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 18, 0.7);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.22);
  transform: translateY(-50%);
  --rail-progress: 0;
}

.section-rail-progress {
  position: relative;
  width: 4px;
  min-height: 268px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.section-rail-progress span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--accent), var(--brand));
  transform-origin: top;
  transform: scaleY(var(--rail-progress, 0));
}

.section-rail-nav {
  display: grid;
  gap: 10px;
}

.section-rail-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding-left: 14px;
  color: rgba(236, 241, 247, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color var(--transition), transform var(--transition);
}

.section-rail-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  box-shadow: 0 0 0 0 rgba(255, 166, 104, 0);
  opacity: 0.42;
  transform: translateY(-50%) scale(0.65);
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
}

.section-rail-nav a:hover,
.section-rail-nav a.is-current {
  color: #fff;
  transform: translateX(-2px);
}

.section-rail-nav a.is-current::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  box-shadow: 0 0 0 8px rgba(255, 166, 104, 0.12);
}

body[data-theme="light"] .section-rail {
  border-color: var(--line);
  background: rgba(255, 252, 247, 0.82);
  box-shadow: 0 20px 40px rgba(12, 20, 31, 0.12);
}

body[data-theme="light"] .section-rail-progress {
  background: rgba(15, 23, 36, 0.08);
}

body[data-theme="light"] .section-rail-nav a {
  color: var(--muted);
}

body[data-theme="light"] .section-rail-nav a:hover,
body[data-theme="light"] .section-rail-nav a.is-current {
  color: var(--text);
}

.hero {
  position: relative;
  padding: 32px 0 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 130, 48, 0.2), transparent 26%),
    radial-gradient(circle at 82% 62%, rgba(255, 214, 153, 0.16), transparent 22%),
    linear-gradient(180deg, #050608, #090b10 58%, #0d1016);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 82%);
  pointer-events: none;
}

.hero-aura {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.32;
  transform: translate3d(0, calc(var(--depth-shift, 0px) + var(--parallax-shift, 0px)), 0);
  transition: transform 420ms ease;
}

.hero-aura-left {
  top: 180px;
  left: -140px;
  background: radial-gradient(circle, rgba(255, 126, 59, 0.92), transparent 66%);
}

.hero-aura-right {
  right: -120px;
  bottom: 10px;
  background: radial-gradient(circle, rgba(255, 213, 149, 0.86), transparent 64%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
  min-height: clamp(660px, calc(100vh - var(--nav-height) - 52px), 860px);
  padding: 28px 0 12px;
}

.hero-copy {
  max-width: 620px;
  align-self: start;
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero .eyebrow {
  color: #ff8d57;
}

.hero-title,
.section-head h2,
.cta-copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.4rem);
  color: #f4f6f8;
  text-wrap: balance;
}

.hero-title span {
  display: block;
  background: linear-gradient(180deg, #ffe1cf 0%, #ff9a5a 36%, #e6edf7 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text,
.section-head p:last-child,
.cta-copy-intro > p:last-of-type,
.product-card p,
.capability-card p,
.scenario-card p,
.timeline-item p,
.footer-text,
.note-card p,
.signal-foot p,
.panel-note p,
.cta-item span {
  margin: 0;
  color: var(--muted);
}

.hero-text {
  max-width: 34ch;
  margin-top: 24px;
  font-size: 1.08rem;
  color: rgba(236, 241, 247, 0.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-brief {
  max-width: 36ch;
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(236, 241, 247, 0.64);
}

.hero-metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.hero-metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 28%);
  pointer-events: none;
}

.hero .primary-button {
  box-shadow: 0 22px 40px rgba(255, 128, 50, 0.24);
}

.hero .secondary-button {
  border-color: rgba(255, 255, 255, 0.18);
  color: #eff3f7;
  background: rgba(255, 255, 255, 0.04);
}

.hero .secondary-button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-scroll {
  margin-top: 28px;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.hero-scroll-icon {
  position: relative;
  width: 22px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-scroll-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
  animation: scroll-dot 1.8s infinite ease-in-out;
}

.metric-card,
.product-card,
.capability-card,
.scenario-card,
.timeline-item,
.cta-card,
.signal-card,
.rack-card,
.note-card,
.technology-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.metric-card {
  padding: 18px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  --breathe-shadow-rest: var(--shadow-soft);
  --breathe-shadow-peak:
    0 24px 50px rgba(7, 13, 22, 0.22),
    0 0 0 1px rgba(255, 189, 142, 0.08) inset;
}

.hero .metric-card {
  padding: 16px 14px;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  --breathe-shadow-rest: none;
  --breathe-shadow-peak:
    0 18px 36px rgba(3, 8, 14, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.hero .metric-card:last-child {
  border-right: 0;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero .metric-card span {
  color: rgba(236, 241, 247, 0.56);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.hero .metric-value {
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
}

.metric-card::after,
.technology-panel::after {
  content: "";
  position: absolute;
  inset: -24% -18%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 187, 136, 0.2), transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(88, 170, 255, 0.14), transparent 44%);
  opacity: 0;
  pointer-events: none;
}

.technology-panel {
  --breathe-shadow-rest: var(--shadow-soft);
  --breathe-shadow-peak:
    0 28px 56px rgba(7, 13, 22, 0.24),
    0 0 0 1px rgba(255, 189, 142, 0.08) inset;
}

.metric-card.is-breathing,
.technology-panel.is-breathing {
  animation: panel-breathe 6.8s ease-in-out infinite;
  animation-delay: var(--breathe-delay, 0ms);
}

.metric-card.is-breathing::after,
.technology-panel.is-breathing::after {
  opacity: 1;
  animation: panel-breathe-glow 6.8s ease-in-out infinite;
  animation-delay: var(--breathe-delay, 0ms);
}

.hero-panel {
  display: grid;
  gap: 16px;
  align-self: center;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hero-stage {
  position: relative;
  min-height: 520px;
  padding: 22px 24px 24px;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.34);
  transform: translate3d(0, calc(var(--depth-shift, 0px) + var(--parallax-shift, 0px)), 0) perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.09), transparent 24%),
    linear-gradient(180deg, rgba(4, 7, 12, 0.06), rgba(4, 7, 12, 0.14) 38%, rgba(4, 7, 12, 0.86));
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--pointer-x, 72%) var(--pointer-y, 54%), rgba(255, 173, 112, 0.26), transparent 22%),
    linear-gradient(180deg, rgba(3, 5, 9, 0) 0%, rgba(3, 5, 9, 0.2) 56%, rgba(3, 5, 9, 0.96) 100%);
  pointer-events: none;
}

.hero-stage-top,
.hero-stage-foot {
  position: relative;
  z-index: 3;
}

.hero-stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: absolute;
  top: 22px;
  left: 24px;
  right: 24px;
}

.hero-stage-top span:first-child {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stage-top span:last-child {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(116, 255, 196, 0.12);
  color: #88f8ca;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-stage-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-stage-media img,
.hero-stage-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  transform: translate3d(var(--drift-x, 0px), calc(var(--drift-y, 0px) + var(--depth-shift, 0px) + var(--hero-media-shift, 0px)), 0) scale(1.08);
  transition: transform 260ms ease;
}

.battery-capsule {
  position: relative;
  height: 386px;
  margin: 10px 0 16px;
}

.battery-shadow {
  position: absolute;
  left: 40px;
  right: 20px;
  bottom: 36px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 143, 62, 0.34), transparent 68%);
  filter: blur(18px);
}

.battery-body {
  position: absolute;
  left: -30px;
  bottom: 28px;
  width: 680px;
  max-width: 122%;
  height: 210px;
  border-radius: 120px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 230, 224, 0.94) 42%, rgba(191, 168, 159, 0.9) 72%, rgba(35, 20, 17, 0.84) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent 44%);
  box-shadow:
    inset -18px -36px 52px rgba(0, 0, 0, 0.2),
    inset 24px 12px 40px rgba(255, 255, 255, 0.32);
  transform: rotate(-20deg);
  transform-origin: 84% 50%;
}

.battery-head {
  position: absolute;
  right: 44px;
  bottom: 98px;
  width: 252px;
  height: 252px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.98), rgba(232, 208, 184, 0.95) 40%, rgba(152, 113, 74, 0.92) 72%, rgba(30, 18, 14, 0.94) 100%);
  box-shadow: inset -26px -26px 46px rgba(0, 0, 0, 0.24);
}

.battery-ring {
  position: absolute;
  right: 58px;
  bottom: 112px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 18px solid rgba(255, 210, 126, 0.56);
  box-shadow:
    0 0 20px rgba(255, 174, 72, 0.34),
    0 0 72px rgba(255, 123, 43, 0.32),
    inset 0 0 22px rgba(255, 255, 255, 0.24);
  animation: power-ring-pulse 2.8s infinite ease-in-out;
}

.battery-core {
  position: absolute;
  right: 105px;
  bottom: 159px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.94), rgba(255, 225, 150, 0.92) 42%, rgba(255, 166, 46, 0.88) 72%, rgba(255, 126, 46, 0.2) 100%);
  box-shadow: 0 0 54px rgba(255, 168, 55, 0.46);
}

.energy-spark {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 140, 0.95), transparent);
  box-shadow: 0 0 14px rgba(255, 174, 85, 0.7);
  opacity: 0.78;
}

.spark-a {
  right: 40px;
  bottom: 230px;
  width: 148px;
  height: 3px;
  transform: rotate(18deg);
  animation: spark-drift 3.2s infinite ease-in-out;
}

.spark-b {
  right: 62px;
  bottom: 132px;
  width: 170px;
  height: 3px;
  transform: rotate(-28deg);
  animation: spark-drift 2.8s infinite ease-in-out reverse;
}

.spark-c {
  right: 116px;
  bottom: 110px;
  width: 90px;
  height: 2px;
  transform: rotate(80deg);
  animation: spark-drift 2.4s infinite ease-in-out 0.2s;
}

.hero-stage-foot strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.16rem;
  max-width: 24ch;
}

.hero-stage-foot p {
  margin-top: 8px;
  color: rgba(236, 241, 247, 0.68);
  max-width: 40ch;
}

.hero-stage-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 118px 28px 28px;
  background: linear-gradient(180deg, transparent, rgba(3, 5, 9, 0.76) 48%, rgba(3, 5, 9, 0.98));
}

.signal-card,
.rack-card,
.note-card,
.product-card,
.scenario-card,
.technology-panel,
.capability-card,
.timeline-item,
.cta-card,
.footer-row,
.search-card {
  border-radius: var(--radius-xl);
}

.signal-card,
.rack-card,
.note-card {
  padding: 24px;
}

.hero .signal-card,
.hero .note-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.hero .signal-card {
  background:
    radial-gradient(circle at top right, rgba(255, 163, 109, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.05);
}

.signal-head,
.rack-top,
.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.signal-head span:first-child,
.rack-top p,
.panel-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-head span:last-child {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31, 139, 97, 0.16);
  color: var(--success);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero .signal-head span:first-child,
.hero .signal-foot p,
.hero .note-card p,
.hero .note-card li {
  color: rgba(236, 241, 247, 0.68);
}

.hero .signal-foot strong,
.hero .note-card strong {
  color: #fff;
}

.hero-proofband {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.hero-proofband span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.hero-intake-board {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(77, 144, 210, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.04);
}

.hero-intake-head {
  display: grid;
  gap: 10px;
}

.hero-intake-head span,
.hero-intake-grid span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-intake-head strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.42;
}

.hero-intake-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-intake-grid article {
  display: grid;
  gap: 8px;
  padding: 12px 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.hero-intake-grid p {
  margin: 0;
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.84rem;
  line-height: 1.45;
}

body[data-theme="light"] .hero-intake-board {
  border-color: var(--line);
  background:
    radial-gradient(circle at top right, rgba(15, 63, 103, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.42);
}

body[data-theme="light"] .hero-intake-head span,
body[data-theme="light"] .hero-intake-grid article,
body[data-theme="light"] .hero-intake-grid span {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
}

body[data-theme="light"] .hero-intake-head span,
body[data-theme="light"] .hero-intake-grid span,
body[data-theme="light"] .hero-intake-grid p {
  color: var(--muted);
}

.signal-bars {
  margin: 28px 0 20px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  align-items: end;
  min-height: 160px;
}

.signal-bars span {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 185, 129, 0.98), rgba(255, 117, 55, 0.96) 40%, rgba(34, 61, 95, 0.98) 100%);
  animation: pulse-bars 2.6s infinite ease-in-out;
  transform-origin: bottom;
}

.signal-bars span:nth-child(1) { height: 42%; animation-delay: 0.1s; }
.signal-bars span:nth-child(2) { height: 68%; animation-delay: 0.2s; }
.signal-bars span:nth-child(3) { height: 56%; animation-delay: 0.3s; }
.signal-bars span:nth-child(4) { height: 78%; animation-delay: 0.4s; }
.signal-bars span:nth-child(5) { height: 92%; animation-delay: 0.5s; }
.signal-bars span:nth-child(6) { height: 74%; animation-delay: 0.6s; }
.signal-bars span:nth-child(7) { height: 64%; animation-delay: 0.7s; }
.signal-bars span:nth-child(8) { height: 48%; animation-delay: 0.8s; }

.signal-foot strong,
.rack-top strong,
.panel-top strong,
.cta-item strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.cell-grid {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cell {
  aspect-ratio: 1;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 63, 103, 0.08), rgba(15, 63, 103, 0.02));
}

.cell.active {
  background: linear-gradient(180deg, rgba(240, 139, 84, 0.98), rgba(15, 63, 103, 0.98));
  border-color: transparent;
}

.rack-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rack-stats div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.rack-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.42rem;
}

.rack-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.note-card {
  position: relative;
  overflow: hidden;
}

.note-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
}

.note-card ul,
.feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.note-card li,
.feature-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  color: var(--text);
}

.note-card li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.trust-strip {
  padding: 0 0 34px;
  background: linear-gradient(180deg, #0d1016, #12151c);
  overflow: hidden;
}

.trust-strip-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.trust-marquee {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  padding: 18px 0;
  animation: marquee-slide 24s linear infinite;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.trust-items span {
  padding: 14px 18px;
  text-align: center;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.trust-track span {
  padding: 12px 18px;
  border-radius: 999px;
  color: rgba(236, 241, 247, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.trust-strip-bridge {
  display: grid;
  gap: 16px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 163, 109, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(12, 16, 22, 0.72);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.trust-strip-bridge-head {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.trust-strip-bridge-head span,
.trust-strip-bridge-grid span,
.trust-strip-bridge-tags button,
.trust-strip-bridge-tags span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip-bridge-tags button {
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  touch-action: manipulation;
}

.trust-strip-bridge-tags button.is-active,
.trust-strip-bridge-tags button[aria-pressed="true"] {
  border-color: rgba(255, 175, 116, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 178, 124, 0.24), rgba(77, 144, 210, 0.18)),
    rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 18px 34px rgba(15, 63, 103, 0.18);
}

.trust-strip-bridge-head strong {
  font-family: var(--font-heading);
  font-size: 1.16rem;
  line-height: 1.46;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.trust-strip-bridge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.trust-strip-bridge-grid article {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.trust-strip-bridge-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.trust-strip-bridge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1.16fr);
  gap: 22px;
  align-items: start;
}

.trust-proof-copy {
  display: grid;
  gap: 18px;
}

.trust-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-proof-bridge {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(77, 144, 210, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(14, 19, 27, 0.72);
  box-shadow: var(--shadow-soft);
}

.trust-proof-bridge-head {
  display: grid;
  gap: 10px;
}

.trust-proof-tags span,
.trust-proof-panel-head span,
.trust-client-card span,
.trust-proof-bridge-head span,
.trust-proof-bridge-grid span,
.trust-proof-bridge-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.trust-proof-panel,
.trust-client-card,
.trust-proof-bridge-grid article {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 163, 109, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(19, 23, 31, 0.92), rgba(10, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.trust-proof-panel {
  padding: 28px;
}

.trust-proof-panel-head strong,
.trust-client-card strong,
.trust-proof-bridge-head strong {
  display: block;
  margin-top: 14px;
  font-family: var(--font-heading);
  line-height: 1.32;
}

.trust-proof-panel-head strong {
  font-size: 1.32rem;
  max-width: 18ch;
}

.trust-proof-bridge-head strong {
  font-size: 1.08rem;
  max-width: 26ch;
  line-height: 1.45;
}

.trust-proof-bridge-grid {
  display: grid;
  gap: 12px;
}

.trust-proof-bridge-grid article {
  padding: 16px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.trust-proof-bridge-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.trust-proof-bridge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.trust-proof-stats article {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.trust-proof-stats span {
  display: block;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-proof-stats strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 1.66rem;
}

.trust-proof-stats p,
.trust-proof-note,
.trust-client-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.trust-proof-note {
  margin-top: 18px;
}

.trust-client-wall {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-client-card {
  padding: 24px;
}

.trust-client-card strong {
  font-size: 1.12rem;
}

body[data-theme="light"] .trust-proof-tags span,
body[data-theme="light"] .trust-proof-panel-head span,
body[data-theme="light"] .trust-client-card span,
body[data-theme="light"] .trust-proof-bridge-head span,
body[data-theme="light"] .trust-proof-bridge-grid article,
body[data-theme="light"] .trust-proof-bridge-grid span,
body[data-theme="light"] .trust-proof-bridge-tags span,
body[data-theme="light"] .trust-proof-panel,
body[data-theme="light"] .trust-client-card,
body[data-theme="light"] .trust-proof-stats article {
  border-color: var(--line);
}

body[data-theme="light"] .trust-proof-panel,
body[data-theme="light"] .trust-client-card,
body[data-theme="light"] .trust-proof-bridge {
  background:
    radial-gradient(circle at top right, rgba(213, 105, 53, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    var(--panel);
}

body[data-theme="light"] .trust-proof-tags span,
body[data-theme="light"] .trust-proof-panel-head span,
body[data-theme="light"] .trust-client-card span,
body[data-theme="light"] .trust-proof-stats article,
body[data-theme="light"] .trust-proof-bridge-head span,
body[data-theme="light"] .trust-proof-bridge-grid article,
body[data-theme="light"] .trust-proof-bridge-grid span,
body[data-theme="light"] .trust-proof-bridge-tags span {
  background: rgba(15, 63, 103, 0.05);
  color: var(--muted);
}

body[data-theme="light"] .trust-strip-bridge {
  border-color: var(--line);
  background:
    radial-gradient(circle at top right, rgba(213, 105, 53, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    var(--panel);
}

body[data-theme="light"] .trust-strip-bridge-head span,
body[data-theme="light"] .trust-strip-bridge-grid article,
body[data-theme="light"] .trust-strip-bridge-grid span,
body[data-theme="light"] .trust-strip-bridge-tags button,
body[data-theme="light"] .trust-strip-bridge-tags span {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
  color: var(--muted);
}

body[data-theme="light"] .trust-strip-bridge-tags button.is-active,
body[data-theme="light"] .trust-strip-bridge-tags button[aria-pressed="true"] {
  border-color: rgba(213, 105, 53, 0.22);
  background:
    linear-gradient(135deg, rgba(213, 105, 53, 0.16), rgba(15, 63, 103, 0.14)),
    rgba(255, 255, 255, 0.82);
  color: var(--text);
  box-shadow: 0 18px 34px rgba(12, 20, 31, 0.12);
}

.section {
  position: relative;
  padding: 26px 0;
}

.section-surface {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 135, 83, 0.12), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(77, 144, 210, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(12, 16, 22, 0.96), rgba(7, 10, 15, 0.94));
  box-shadow: 0 38px 88px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.section-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--spotlight-x, 50%) var(--spotlight-y, 18%), rgba(255, 181, 126, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, 84px 84px, 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 100%);
  opacity: 0.92;
  transition: opacity 220ms ease;
}

.section-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body[data-theme="light"] .section-surface {
  border-color: var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(213, 105, 53, 0.12), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(15, 63, 103, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 243, 236, 0.94));
  box-shadow: 0 30px 80px rgba(12, 20, 31, 0.12);
}

body[data-theme="light"] .section-surface::before {
  background:
    radial-gradient(circle at var(--spotlight-x, 50%) var(--spotlight-y, 18%), rgba(15, 63, 103, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(15, 23, 36, 0.04), transparent 18%),
    linear-gradient(90deg, rgba(15, 23, 36, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(15, 23, 36, 0.025) 1px, transparent 1px);
}

.section-surface.is-spotlight-active::before {
  opacity: 1;
}

.section-surface.is-search-hit {
  border-color: rgba(255, 166, 104, 0.28);
  box-shadow:
    0 38px 88px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 166, 104, 0.12),
    0 0 0 12px rgba(255, 166, 104, 0.04);
}

.flow-section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.flow-section .section-surface {
  padding-top: 30px;
  padding-bottom: 36px;
}

.section-phase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.74fr) minmax(0, 1.18fr) minmax(220px, 0.72fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
  padding: 18px 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 157, 96, 0.12), transparent 34%),
    linear-gradient(120deg, rgba(77, 144, 210, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(11, 15, 21, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.section-phase::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 186, 131, 0.78), rgba(77, 144, 210, 0.42), transparent);
  opacity: 0.88;
}

.section-phase-intro {
  display: grid;
  gap: 8px;
}

.section-phase-intro span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  width: fit-content;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(236, 241, 247, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-phase-intro strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.45;
}

.section-phase-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.section-phase-track a,
.section-phase-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(236, 241, 247, 0.62);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.section-phase-track a.is-active,
.section-phase-track span.is-active {
  border-color: rgba(255, 175, 116, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 178, 124, 0.24), rgba(77, 144, 210, 0.18)),
    rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 18px 34px rgba(15, 63, 103, 0.18);
}

.section-phase-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

body[data-theme="light"] .section-phase {
  border-color: var(--line);
  background:
    radial-gradient(circle at top right, rgba(213, 105, 53, 0.12), transparent 34%),
    linear-gradient(120deg, rgba(15, 63, 103, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(255, 252, 247, 0.84);
}

body[data-theme="light"] .section-phase-intro span,
body[data-theme="light"] .section-phase-track a,
body[data-theme="light"] .section-phase-track span {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
  color: var(--muted);
}

body[data-theme="light"] .section-phase-track a.is-active,
body[data-theme="light"] .section-phase-track span.is-active {
  border-color: rgba(213, 105, 53, 0.22);
  background:
    linear-gradient(135deg, rgba(213, 105, 53, 0.16), rgba(15, 63, 103, 0.14)),
    rgba(255, 255, 255, 0.82);
  color: var(--text);
  box-shadow: 0 18px 34px rgba(12, 20, 31, 0.12);
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.section-head p:last-child {
  margin-top: 16px;
  font-size: 1.02rem;
}

.technology-badges,
.cta-badges {
  margin-top: 24px;
}

.hero-badges {
  margin-top: 22px;
}

.cta-copy {
  display: grid;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  margin: 0;
  max-width: 10.5ch;
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.cta-copy-intro {
  display: grid;
  gap: 18px;
}

.cta-copy-intro > p:last-of-type {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.cta-pulse {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(77, 144, 210, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(12, 16, 22, 0.64);
}

.cta-pulse span,
.cta-prep-head span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  width: fit-content;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-pulse strong,
.cta-prep-head strong {
  font-family: var(--font-heading);
  font-size: 1.04rem;
  line-height: 1.45;
}

.cta-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(250px, 0.82fr);
  gap: 16px;
  align-items: start;
}

.product-grid,
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.scenario-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  grid-template-areas:
    "featured medical"
    "featured iot"
    "featured outdoor";
  align-items: stretch;
}

.product-card,
.scenario-card,
.capability-card,
.technology-panel,
.timeline-item,
.case-detail-panel,
.case-step,
.case-detail-output,
.project-form,
.trust-proof-panel,
.trust-client-card,
.proof-card,
.proof-summary-item {
  padding: 28px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(17, 22, 30, 0.72);
  border-color: rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.product-card {
  display: grid;
  align-content: start;
}

.product-card > *,
.spec-summary > *,
.spec-board > * {
  position: relative;
  z-index: 1;
}

.product-card::after,
.spec-summary::after,
.spec-board::after {
  content: "";
  position: absolute;
  inset: auto -18% -28% auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 154, 94, 0.12), transparent 70%);
  pointer-events: none;
}

body[data-theme="light"] .product-card,
body[data-theme="light"] .scenario-card,
body[data-theme="light"] .capability-card,
body[data-theme="light"] .technology-panel,
body[data-theme="light"] .timeline-item,
body[data-theme="light"] .case-detail-panel,
body[data-theme="light"] .case-step,
body[data-theme="light"] .case-detail-output,
body[data-theme="light"] .project-form,
body[data-theme="light"] .trust-proof-panel,
body[data-theme="light"] .trust-client-card,
body[data-theme="light"] .proof-card,
body[data-theme="light"] .proof-summary-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    var(--panel);
  border-color: var(--line);
}

.product-card.featured {
  background:
    radial-gradient(circle at top right, rgba(255, 163, 110, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(240, 139, 84, 0.14), rgba(255, 255, 255, 0.02) 58%),
    rgba(20, 23, 30, 0.84);
  border-color: rgba(240, 139, 84, 0.3);
}

.product-card::before,
.scenario-card::before,
.capability-card::before,
.technology-panel::before,
.timeline-item::before,
.case-detail-panel::before,
.case-step::before,
.case-detail-output::before,
.project-form::before,
.trust-proof-panel::before,
.trust-client-card::before,
.proof-card::before,
.proof-summary-item::before,
.signal-card::before,
.note-card::before {
  content: "";
  position: absolute;
  inset: -42% -56%;
  background: linear-gradient(
    118deg,
    transparent 18%,
    rgba(255, 255, 255, 0.02) 34%,
    rgba(255, 255, 255, 0.16) 47%,
    rgba(255, 175, 116, 0.26) 52%,
    transparent 72%
  );
  transform: translate3d(-132%, 0, 0) rotate(-16deg);
  opacity: 0;
  pointer-events: none;
  transition: transform 880ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
}

.product-card:hover,
.scenario-card:hover,
.capability-card:hover,
.timeline-item:hover,
.case-detail-panel:hover,
.case-step:hover,
.case-detail-output:hover,
.project-form:hover,
.trust-proof-panel:hover,
.trust-client-card:hover,
.proof-card:hover,
.proof-summary-item:hover,
.technology-panel:hover,
.signal-card:hover,
.note-card:hover,
.product-card:focus-within,
.scenario-card:focus-within,
.capability-card:focus-within,
.timeline-item:focus-within,
.case-detail-panel:focus-within,
.case-step:focus-within,
.case-detail-output:focus-within,
.project-form:focus-within,
.trust-proof-panel:focus-within,
.trust-client-card:focus-within,
.proof-card:focus-within,
.proof-summary-item:focus-within,
.technology-panel:focus-within,
.signal-card:focus-within,
.note-card:focus-within {
  transform: translateY(-6px) scale(1.006);
  border-color: rgba(255, 173, 116, 0.24);
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.24);
}

.product-card:hover::before,
.scenario-card:hover::before,
.capability-card:hover::before,
.timeline-item:hover::before,
.case-detail-panel:hover::before,
.case-step:hover::before,
.case-detail-output:hover::before,
.project-form:hover::before,
.trust-proof-panel:hover::before,
.trust-client-card:hover::before,
.proof-card:hover::before,
.proof-summary-item:hover::before,
.technology-panel:hover::before,
.signal-card:hover::before,
.note-card:hover::before,
.product-card:focus-within::before,
.scenario-card:focus-within::before,
.capability-card:focus-within::before,
.timeline-item:focus-within::before,
.case-detail-panel:focus-within::before,
.case-step:focus-within::before,
.case-detail-output:focus-within::before,
.project-form:focus-within::before,
.trust-proof-panel:focus-within::before,
.trust-client-card:focus-within::before,
.proof-card:focus-within::before,
.proof-summary-item:focus-within::before,
.technology-panel:focus-within::before,
.signal-card:focus-within::before,
.note-card:focus-within::before {
  opacity: 0.92;
  transform: translate3d(132%, 0, 0) rotate(-16deg);
}

.product-kicker,
.scenario-index {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3,
.capability-card h3,
.scenario-card h3,
.timeline-item h3 {
  margin: 18px 0 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.15;
}

.product-visual {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  margin: -6px -6px 18px;
  padding: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 176, 119, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.product-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.02) drop-shadow(0 22px 34px rgba(0, 0, 0, 0.28));
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 4px;
}

.product-spec {
  padding: 12px 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.product-spec span {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(236, 241, 247, 0.56);
}

.product-spec strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  line-height: 1.25;
}

.product-selection-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 18px;
  margin-top: 20px;
  align-items: start;
}

.product-route-board,
.product-handoff-board {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 163, 109, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(17, 22, 30, 0.72);
  box-shadow: var(--shadow-soft);
}

.product-route-board::after,
.product-handoff-board::after {
  content: "";
  position: absolute;
  inset: auto -14% -24% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 154, 94, 0.12), transparent 70%);
  pointer-events: none;
}

.product-route-board > *,
.product-handoff-board > * {
  position: relative;
  z-index: 1;
}

.product-route-head,
.product-handoff-head {
  display: grid;
  gap: 10px;
}

.product-route-head span,
.product-handoff-head span,
.product-route-item span,
.product-handoff-tags span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.product-route-head strong,
.product-handoff-head strong,
.product-route-item strong,
.product-handoff-list strong {
  font-family: var(--font-heading);
}

.product-route-head strong,
.product-handoff-head strong {
  font-size: 1.24rem;
  line-height: 1.28;
}

.product-route-head p {
  margin: 0;
  color: var(--muted);
}

.product-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.product-route-item,
.product-handoff-list article {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.product-route-item {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.product-route-item strong {
  font-size: 1.04rem;
  line-height: 1.32;
}

.product-route-item p,
.product-handoff-list p {
  margin: 0;
  color: var(--muted);
}

.product-handoff-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.product-handoff-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
}

.product-handoff-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 182, 132, 0.94), rgba(102, 154, 219, 0.94));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.product-handoff-list strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}

.product-handoff-list p {
  margin-top: 6px;
}

.product-handoff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

body[data-theme="light"] .product-visual,
body[data-theme="light"] .product-spec {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(15, 63, 103, 0.06), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.42);
}

body[data-theme="light"] .product-spec span {
  color: var(--muted);
}

body[data-theme="light"] .product-route-board,
body[data-theme="light"] .product-handoff-board {
  border-color: var(--line);
  background:
    radial-gradient(circle at top right, rgba(213, 105, 53, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05)),
    var(--panel);
}

body[data-theme="light"] .product-route-head span,
body[data-theme="light"] .product-handoff-head span,
body[data-theme="light"] .product-route-item,
body[data-theme="light"] .product-route-item span,
body[data-theme="light"] .product-handoff-list article,
body[data-theme="light"] .product-handoff-tags span {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
}

body[data-theme="light"] .product-route-head span,
body[data-theme="light"] .product-handoff-head span,
body[data-theme="light"] .product-route-item span,
body[data-theme="light"] .product-handoff-tags span {
  color: var(--muted);
}

.technology-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 34px;
  align-items: start;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 26px;
  align-items: stretch;
}

.parameter-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  align-items: start;
}

.spec-summary,
.spec-board {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(17, 22, 30, 0.72);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

body[data-theme="light"] .spec-summary,
body[data-theme="light"] .spec-board {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05)),
    var(--panel);
}

body[data-theme="light"] .spec-glance article {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
}

body[data-theme="light"] .summary-decision-item,
body[data-theme="light"] .summary-decision-item span {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
}

body[data-theme="light"] .summary-decision-item span,
body[data-theme="light"] .summary-note {
  color: var(--muted);
}

body[data-theme="light"] .summary-note {
  border-color: var(--line);
}

body[data-theme="light"] .summary-output-strip article,
body[data-theme="light"] .summary-output-strip span {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
}

body[data-theme="light"] .summary-output-strip span {
  color: var(--muted);
}

.spec-summary-head,
.spec-board-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.spec-summary-head p,
.spec-board-head span {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec-summary-head strong,
.spec-board-head strong {
  font-family: var(--font-heading);
  font-size: 1.14rem;
}

.spec-glance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.spec-glance article {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.spec-glance span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-glance strong {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  line-height: 1.36;
}

.spec-glance p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.summary-bars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 190px;
  margin: 28px 0 24px;
}

.summary-bars span {
  height: var(--bar-height);
  min-height: 52px;
  border-radius: 18px 18px 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 197, 147, 0.98), rgba(255, 129, 53, 0.92) 42%, rgba(41, 73, 110, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 24px rgba(0, 0, 0, 0.18);
}

.summary-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.summary-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.summary-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.summary-decision-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.summary-decision-item {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.summary-decision-item span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.summary-decision-item strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.45;
}

.summary-decision-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.summary-note {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.7);
  font-size: 0.94rem;
  line-height: 1.7;
}

.summary-output-strip {
  display: grid;
  gap: 10px;
}

.summary-output-strip article {
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.summary-output-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.summary-output-strip strong {
  display: block;
  margin-top: 10px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.parameter-bridge {
  display: grid;
  gap: 18px;
  margin-top: 20px;
  padding: 24px 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 163, 109, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(77, 144, 210, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(19, 23, 31, 0.92), rgba(10, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.parameter-bridge-head {
  display: grid;
  gap: 10px;
}

.parameter-bridge-head span,
.parameter-bridge-item span,
.parameter-bridge-tags span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.parameter-bridge-head strong,
.parameter-bridge-item strong {
  font-family: var(--font-heading);
}

.parameter-bridge-head strong {
  font-size: 1.18rem;
  line-height: 1.46;
}

.parameter-bridge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.parameter-bridge-item {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.parameter-bridge-item strong {
  font-size: 1rem;
  line-height: 1.42;
}

.parameter-bridge-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.parameter-bridge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-theme="light"] .parameter-bridge {
  border-color: var(--line);
  background:
    radial-gradient(circle at top right, rgba(213, 105, 53, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(15, 63, 103, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    var(--panel);
}

body[data-theme="light"] .parameter-bridge-head span,
body[data-theme="light"] .parameter-bridge-item,
body[data-theme="light"] .parameter-bridge-item span,
body[data-theme="light"] .parameter-bridge-tags span {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
  color: var(--muted);
}

.spec-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
}

[data-scroll-rail] {
  --rail-progress: 0;
}

.spec-table {
  min-width: 760px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

body[data-theme="light"] .spec-table {
  border-color: var(--line);
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(130px, 1.1fr) repeat(3, minmax(140px, 1fr));
}

.spec-row span {
  padding: 18px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.8);
}

.spec-row span:last-child {
  border-right: 0;
}

.spec-row:last-child span {
  border-bottom: 0;
}

.spec-row span:first-child {
  color: #fff;
  font-weight: 700;
}

.spec-row:nth-child(odd):not(.spec-row-head) span {
  background: rgba(255, 255, 255, 0.02);
}

.spec-row-head span {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
}

body[data-theme="light"] .spec-row span {
  border-right-color: var(--line);
  border-bottom-color: var(--line);
  color: var(--text);
}

body[data-theme="light"] .spec-row span:first-child,
body[data-theme="light"] .spec-row-head span {
  color: var(--text);
}

body[data-theme="light"] .spec-row:nth-child(odd):not(.spec-row-head) span {
  background: rgba(15, 63, 103, 0.04);
}

.card-meta,
.hero-badges,
.technology-badges,
.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card-meta span,
.hero-badges span,
.technology-badges span,
.cta-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

body[data-theme="light"] .card-meta,
body[data-theme="light"] .hero-badges span,
body[data-theme="light"] .technology-badges span,
body[data-theme="light"] .cta-badges span,
body[data-theme="light"] .card-meta span {
  border-color: var(--line);
  color: var(--muted);
  background: rgba(15, 63, 103, 0.05);
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.06);
}

.capability-list,
.timeline {
  display: grid;
  gap: 16px;
}

.technology-impact-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.technology-impact-item {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.technology-impact-item span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.technology-impact-item strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.45;
}

.technology-impact-item p {
  margin: 10px 0 0;
}

.technology-footnote {
  margin: 16px 0 0;
  color: rgba(236, 241, 247, 0.7);
  line-height: 1.7;
}

.technology-bridge {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  margin-top: 4px;
  padding: 24px 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 163, 109, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(77, 144, 210, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(19, 23, 31, 0.92), rgba(10, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.technology-bridge-head {
  display: grid;
  gap: 10px;
}

.technology-bridge-head span,
.technology-bridge-item span,
.technology-bridge-tags span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.technology-bridge-head strong,
.technology-bridge-item strong {
  font-family: var(--font-heading);
}

.technology-bridge-head strong {
  font-size: 1.18rem;
  line-height: 1.46;
}

.technology-bridge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.technology-bridge-item {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.technology-bridge-item strong {
  font-size: 1rem;
  line-height: 1.42;
}

.technology-bridge-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.technology-bridge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.technology-panel {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  background:
    radial-gradient(circle at top right, rgba(255, 166, 104, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(20, 24, 31, 0.9), rgba(12, 15, 21, 0.96));
}

.technology-visual {
  position: relative;
  overflow: hidden;
  margin: -4px -4px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.03);
}

.technology-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--spotlight-x, 54%) var(--spotlight-y, 26%), rgba(255, 179, 121, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.02), rgba(7, 10, 15, 0.14) 42%, rgba(7, 10, 15, 0.92)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
  opacity: 0.92;
  transition: opacity 220ms ease;
}

.technology-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translate3d(var(--drift-x, 0px), calc(var(--drift-y, 0px) + var(--depth-shift, 0px)), 0) scale(1.06);
  transition: transform 260ms ease;
}

.technology-visual-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
}

.technology-visual-copy span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(236, 241, 247, 0.74);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.technology-visual-copy strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.35;
  max-width: 18ch;
}

body[data-theme="light"] .technology-visual {
  border-color: var(--line);
}

body[data-theme="light"] .technology-visual::after {
  background:
    radial-gradient(circle at var(--spotlight-x, 54%) var(--spotlight-y, 26%), rgba(15, 63, 103, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 36, 0.02), rgba(15, 23, 36, 0.1) 42%, rgba(15, 23, 36, 0.3)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 24%);
}

body[data-theme="light"] .technology-impact-item,
body[data-theme="light"] .technology-impact-item span,
body[data-theme="light"] .panel-checklist article,
body[data-theme="light"] .panel-checklist span {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
}

body[data-theme="light"] .technology-bridge {
  border-color: var(--line);
  background:
    radial-gradient(circle at top right, rgba(213, 105, 53, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(15, 63, 103, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    var(--panel);
}

body[data-theme="light"] .technology-bridge-head span,
body[data-theme="light"] .technology-bridge-item,
body[data-theme="light"] .technology-bridge-item span,
body[data-theme="light"] .technology-bridge-tags span {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
  color: var(--muted);
}

body[data-theme="light"] .technology-impact-item span,
body[data-theme="light"] .technology-footnote,
body[data-theme="light"] .panel-checklist span {
  color: var(--muted);
}

.technology-visual.is-spotlight-active::after {
  opacity: 1;
}

.panel-matrix {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.panel-row span {
  color: var(--muted);
}

.panel-row strong {
  font-family: var(--font-heading);
  font-size: 1.16rem;
}

.panel-checklist {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.panel-checklist article {
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.panel-checklist span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-checklist strong {
  display: block;
  margin-top: 10px;
  font-size: 0.96rem;
  line-height: 1.45;
}

.panel-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(77, 144, 210, 0.12), transparent);
}

.scenario-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
}

.scenario-card-featured {
  grid-area: featured;
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 163, 109, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(19, 23, 31, 0.92), rgba(10, 13, 18, 0.98));
}

.scenario-card-compact:nth-child(2) {
  grid-area: medical;
}

.scenario-card-compact:nth-child(3) {
  grid-area: iot;
}

.scenario-card-compact:nth-child(4) {
  grid-area: outdoor;
}

.scenario-card::after {
  content: "";
  position: absolute;
  inset: auto -28px -34px auto;
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 157, 96, 0.12), transparent 68%);
}

.scenario-card-featured .scenario-visual {
  margin: -10px -10px 24px;
  aspect-ratio: 16 / 11;
  border-radius: 30px;
}

.scenario-card-featured h3 {
  margin-top: 14px;
  font-size: clamp(2.1rem, 4vw, 2.8rem);
}

.scenario-card-featured p {
  max-width: 34ch;
}

.scenario-feature-detail {
  margin-top: 12px !important;
  color: rgba(236, 241, 247, 0.62) !important;
}

.scenario-card-featured .scenario-meta {
  margin-top: 24px;
}

.scenario-card-compact {
  grid-template-columns: 148px minmax(0, 1fr);
  grid-template-areas:
    "visual index"
    "visual title"
    "visual text"
    "visual meta";
  gap: 10px 18px;
  align-items: center;
  padding: 20px 22px;
}

.scenario-card-compact .scenario-visual {
  grid-area: visual;
  margin: 0;
  min-height: 188px;
  height: 100%;
  aspect-ratio: 4 / 5;
}

.scenario-card-compact .scenario-index {
  grid-area: index;
  margin: 0;
  justify-self: start;
}

.scenario-card-compact h3 {
  grid-area: title;
  margin: 0;
  font-size: 1.32rem;
}

.scenario-card-compact p {
  grid-area: text;
}

.scenario-card-compact .scenario-meta {
  grid-area: meta;
  margin-top: 4px;
  padding-top: 0;
  border-top: 0;
}

.scenario-card-compact .scenario-meta span {
  min-height: 30px;
  padding: 0 12px;
  font-size: 0.78rem;
}

.scenario-visual {
  position: relative;
  margin: -6px -6px 18px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.03);
}

.scenario-visual img,
.scenario-visual video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scenario-card-featured .scenario-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--spotlight-x, 56%) var(--spotlight-y, 34%), rgba(255, 179, 121, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.02), rgba(7, 10, 15, 0.16) 48%, rgba(7, 10, 15, 0.48));
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 220ms ease;
}

.scenario-card-featured .scenario-visual img,
.scenario-card-featured .scenario-visual video {
  transform: translate3d(var(--drift-x, 0px), calc(var(--drift-y, 0px) + var(--depth-shift, 0px)), 0) scale(1.06);
  transition: transform 260ms ease;
}

.scenario-card:nth-child(3) .scenario-visual img {
  object-position: 72% center;
}

.scenario-card:nth-child(4) .scenario-visual img {
  object-position: center 54%;
}

.scenario-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.scenario-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

body[data-theme="light"] .scenario-visual,
body[data-theme="light"] .scenario-meta span {
  border-color: var(--line);
}

body[data-theme="light"] .scenario-meta span {
  color: var(--muted);
  background: rgba(15, 63, 103, 0.05);
}

body[data-theme="light"] .scenario-card-featured .scenario-visual::after {
  background:
    radial-gradient(circle at var(--spotlight-x, 56%) var(--spotlight-y, 34%), rgba(15, 63, 103, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 36, 0.02), rgba(15, 23, 36, 0.1) 48%, rgba(15, 23, 36, 0.24));
}

.scenario-card-featured .scenario-visual.is-spotlight-active::after {
  opacity: 1;
}

.scenario-brief-board {
  display: grid;
  gap: 18px;
  margin-top: 20px;
  padding: 24px 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(77, 144, 210, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(19, 23, 31, 0.92), rgba(10, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.scenario-brief-head {
  display: grid;
  gap: 12px;
}

.scenario-brief-head span {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-brief-head strong {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  line-height: 1.42;
}

.scenario-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.scenario-brief-item {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.scenario-brief-item span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-brief-item strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.45;
}

.scenario-brief-item p {
  margin: 10px 0 0;
}

.scenario-brief-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scenario-brief-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

body[data-theme="light"] .scenario-brief-board,
body[data-theme="light"] .scenario-brief-head span,
body[data-theme="light"] .scenario-brief-item,
body[data-theme="light"] .scenario-brief-item span,
body[data-theme="light"] .scenario-brief-tags span {
  border-color: var(--line);
}

body[data-theme="light"] .scenario-brief-board {
  background:
    radial-gradient(circle at top right, rgba(15, 63, 103, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    var(--panel);
}

body[data-theme="light"] .scenario-brief-head span,
body[data-theme="light"] .scenario-brief-item,
body[data-theme="light"] .scenario-brief-item span,
body[data-theme="light"] .scenario-brief-tags span {
  background: rgba(15, 63, 103, 0.05);
}

body[data-theme="light"] .scenario-brief-head span,
body[data-theme="light"] .scenario-brief-item span,
body[data-theme="light"] .scenario-brief-tags span {
  color: var(--muted);
}

.process-visual {
  position: relative;
  margin: 0;
  min-height: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 157, 96, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(19, 23, 31, 0.92), rgba(10, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.process-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--spotlight-x, 52%) var(--spotlight-y, 24%), rgba(255, 179, 121, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.02), rgba(7, 10, 15, 0.18) 46%, rgba(7, 10, 15, 0.58));
  pointer-events: none;
  opacity: 0.92;
  transition: opacity 220ms ease;
}

.process-visual img {
  display: block;
  width: 100%;
  min-height: 480px;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: translate3d(var(--drift-x, 0px), calc(var(--drift-y, 0px) + var(--depth-shift, 0px)), 0) scale(1.06);
  transition: transform 260ms ease;
}

.process-caption {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 320px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(8, 17, 25, 0.86), rgba(15, 63, 103, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.process-caption span,
.process-caption strong {
  color: #fff;
}

.process-caption span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-caption strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.3;
}

.process-visual-notes {
  position: absolute;
  left: 24px;
  top: 182px;
  z-index: 1;
  width: min(420px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.process-visual-notes article {
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 17, 25, 0.74);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.process-visual-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-visual-notes strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.45;
}

.process-flow {
  display: grid;
  gap: 18px;
}

.process-board {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 163, 109, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(19, 23, 31, 0.92), rgba(10, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.process-board::after {
  content: "";
  position: absolute;
  inset: auto -28px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 157, 96, 0.12), transparent 68%);
  pointer-events: none;
}

.process-board > * {
  position: relative;
  z-index: 1;
}

.process-board-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.process-board-top span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-board-top strong {
  display: block;
  margin-top: 12px;
  max-width: 18ch;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1.35;
}

.process-board-top p {
  margin: 0;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.66);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.process-board-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.process-board-track span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 178, 124, 0.96), rgba(77, 144, 210, 0.72));
}

.process-board-track span:nth-child(2) {
  opacity: 0.82;
}

.process-board-track span:nth-child(3) {
  opacity: 0.64;
}

.process-board-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.process-board-item {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.process-board-item span {
  display: block;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-board-item strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.5;
}

.process-board-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.process-board-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.process-support {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(77, 144, 210, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(19, 23, 31, 0.92), rgba(10, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.process-support-head {
  display: grid;
  gap: 12px;
}

.process-support-head span {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-support-head strong {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1.45;
}

.process-support-grid {
  display: grid;
  gap: 12px;
}

.process-support-grid article {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.process-support-grid span {
  display: block;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-support-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.5;
}

.timeline {
  position: relative;
  padding-left: 8px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 39px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 176, 118, 0.56), rgba(77, 144, 210, 0.36), transparent 100%);
}

body[data-theme="light"] .process-visual {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08)),
    var(--panel);
}

body[data-theme="light"] .process-visual::before {
  background:
    radial-gradient(circle at var(--spotlight-x, 52%) var(--spotlight-y, 24%), rgba(15, 63, 103, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 36, 0.02), rgba(15, 23, 36, 0.1) 46%, rgba(15, 23, 36, 0.24));
}

body[data-theme="light"] .process-visual-notes article,
body[data-theme="light"] .process-support,
body[data-theme="light"] .process-support-grid article {
  border-color: var(--line);
}

body[data-theme="light"] .process-visual-notes article,
body[data-theme="light"] .process-support {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    var(--panel);
}

body[data-theme="light"] .process-visual-notes span,
body[data-theme="light"] .process-support-head span,
body[data-theme="light"] .process-support-grid article {
  background: rgba(15, 63, 103, 0.05);
}

body[data-theme="light"] .process-visual-notes span,
body[data-theme="light"] .process-support-head span {
  color: var(--muted);
}

body[data-theme="light"] .process-visual-notes strong {
  color: var(--ink);
}

.process-visual.is-spotlight-active::before {
  opacity: 1;
}

.timeline-item {
  display: grid;
  position: relative;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 24px 24px 24px 20px;
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(15, 63, 103, 0.24);
}

.timeline-item div {
  display: grid;
  gap: 8px;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.proof-copy {
  display: grid;
  gap: 18px;
}

.proof-summary {
  display: grid;
  gap: 14px;
}

.proof-guide {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(77, 144, 210, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(16, 23, 34, 0.94), rgba(8, 13, 20, 0.98));
  box-shadow: var(--shadow-soft);
}

.proof-guide::after {
  content: "";
  position: absolute;
  inset: auto -42px -54px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 135, 83, 0.16), transparent 68%);
  pointer-events: none;
}

.proof-guide-head {
  position: relative;
  z-index: 1;
}

.proof-guide-head span,
.proof-guide-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-guide-head strong {
  display: block;
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 1.36rem;
  line-height: 1.34;
}

.proof-guide-head p,
.proof-guide-list p,
.proof-guide-footer p {
  margin: 10px 0 0;
  color: var(--muted);
}

.proof-guide-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.proof-guide-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.proof-guide-list span {
  width: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 16px;
  padding: 0;
  background: linear-gradient(135deg, rgba(77, 144, 210, 0.92), rgba(239, 135, 83, 0.88));
  color: #fff;
  border: 0;
  box-shadow: 0 16px 26px rgba(15, 63, 103, 0.24);
}

.proof-guide-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.45;
}

.proof-guide-list p {
  margin-top: 8px;
}

.proof-guide-footer {
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(77, 144, 210, 0.06));
}

.proof-guide-footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #fff;
}

.proof-guide-footer a::after {
  content: "→";
  display: inline-block;
  transition: transform var(--transition);
}

.proof-guide-footer a:hover::after,
.proof-guide-footer a:focus-visible::after {
  transform: translateX(4px);
}

.proof-outcome-board {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(239, 135, 83, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(14, 20, 29, 0.94), rgba(8, 13, 20, 0.98));
  box-shadow: var(--shadow-soft);
}

.proof-outcome-board::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(77, 144, 210, 0.14), transparent 70%);
  pointer-events: none;
}

.proof-outcome-head,
.proof-outcome-grid,
.proof-outcome-note {
  position: relative;
  z-index: 1;
}

.proof-outcome-head span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-outcome-head strong {
  display: block;
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.36;
}

.proof-outcome-grid {
  display: grid;
  gap: 12px;
}

.proof-outcome-item {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.proof-outcome-item span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.proof-outcome-item strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  line-height: 1.45;
}

.proof-outcome-item p,
.proof-outcome-note {
  margin: 10px 0 0;
  color: var(--muted);
}

.proof-outcome-note {
  padding-top: 2px;
}

.proof-summary-item {
  padding: 22px;
}

.proof-summary-item span,
.proof-card-top span,
.proof-cover-copy span,
.proof-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-summary-item strong,
.proof-card-top strong,
.proof-cover-copy strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-heading);
  line-height: 1.28;
}

.proof-summary-item strong {
  font-size: 1.24rem;
}

.proof-summary-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.proof-stack {
  display: grid;
  gap: 18px;
}

.proof-card {
  --proof-card-offset: -28px;
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 163, 109, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(19, 23, 31, 0.92), rgba(10, 13, 18, 0.98));
}

.proof-card-featured {
  --proof-card-offset: -30px;
  padding: 30px;
}

.proof-cover {
  position: relative;
  min-height: 320px;
  margin: var(--proof-card-offset, -28px) var(--proof-card-offset, -28px) 0;
  overflow: hidden;
  border-radius: 30px 30px 26px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-cover-compact {
  min-height: 220px;
  margin-bottom: 2px;
}

.proof-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.04), rgba(7, 10, 15, 0.18) 42%, rgba(7, 10, 15, 0.92)),
    radial-gradient(circle at 18% 22%, rgba(255, 185, 129, 0.18), transparent 26%);
  pointer-events: none;
}

.proof-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.proof-cover-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.proof-cover-copy strong {
  color: #fff;
  font-size: 1.46rem;
  max-width: 18ch;
}

.proof-cover-copy p {
  margin: 10px 0 0;
  max-width: 28ch;
  color: rgba(236, 241, 247, 0.72);
}

.proof-card-featured .proof-cover-copy strong {
  font-size: clamp(2rem, 4vw, 2.9rem);
  max-width: 11ch;
}

.proof-card-featured .proof-cover-copy p {
  font-size: 1rem;
}

.proof-card-body p {
  margin: 0;
}

.proof-card-top strong {
  font-size: 1.44rem;
  max-width: 20ch;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
}

.proof-card .proof-cover-copy p {
  color: rgba(236, 241, 247, 0.72);
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.proof-metrics div {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.proof-metrics strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.35;
}

.proof-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-track article {
  padding: 16px 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.proof-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 16px 24px rgba(15, 63, 103, 0.2);
}

.proof-track strong {
  display: block;
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  line-height: 1.45;
}

.proof-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.proof-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(236, 241, 247, 0.72);
}

.proof-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.proof-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 18px;
}

.proof-side-brief {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(77, 144, 210, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(19, 23, 31, 0.92), rgba(10, 13, 18, 0.98));
}

.proof-side-brief > span {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-side-brief strong {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.45;
}

.proof-side-brief-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-side-brief-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.proof-side .proof-card {
  grid-template-rows: auto 1fr auto;
  height: auto;
  align-self: start;
}

.proof-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-mini-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

body[data-theme="light"] .proof-card {
  background:
    radial-gradient(circle at top right, rgba(213, 105, 53, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    var(--panel);
}

body[data-theme="light"] .proof-side-brief,
body[data-theme="light"] .proof-side-brief > span,
body[data-theme="light"] .proof-side-brief-tags span {
  border-color: var(--line);
}

body[data-theme="light"] .proof-side-brief {
  background:
    radial-gradient(circle at top right, rgba(15, 63, 103, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    var(--panel);
}

body[data-theme="light"] .proof-side-brief > span,
body[data-theme="light"] .proof-side-brief-tags span {
  background: rgba(15, 63, 103, 0.05);
  color: var(--muted);
}

body[data-theme="light"] .proof-guide {
  background:
    radial-gradient(circle at top right, rgba(77, 144, 210, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    var(--panel);
  border-color: var(--line);
}

body[data-theme="light"] .proof-outcome-board {
  background:
    radial-gradient(circle at top left, rgba(213, 105, 53, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    var(--panel);
  border-color: var(--line);
}

body[data-theme="light"] .proof-cover::after {
  background:
    linear-gradient(180deg, rgba(15, 23, 36, 0.02), rgba(15, 23, 36, 0.08) 42%, rgba(15, 23, 36, 0.52)),
    radial-gradient(circle at 18% 22%, rgba(15, 63, 103, 0.12), transparent 26%);
}

body[data-theme="light"] .proof-guide-head span,
body[data-theme="light"] .proof-guide-list article,
body[data-theme="light"] .proof-guide-footer,
body[data-theme="light"] .proof-outcome-head span,
body[data-theme="light"] .proof-outcome-item,
body[data-theme="light"] .proof-outcome-item span {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
}

body[data-theme="light"] .proof-guide-list span {
  background: linear-gradient(135deg, rgba(15, 63, 103, 0.92), rgba(213, 105, 53, 0.88));
}

body[data-theme="light"] .proof-metrics div,
body[data-theme="light"] .proof-track article,
body[data-theme="light"] .proof-mini-tags span,
body[data-theme="light"] .proof-summary-item span,
body[data-theme="light"] .proof-card-top span,
body[data-theme="light"] .proof-metrics span {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
  color: var(--muted);
}

body[data-theme="light"] .proof-points li {
  color: var(--muted);
}

.case-detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
  gap: 24px;
  align-items: start;
}

.case-detail-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 157, 96, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(19, 23, 31, 0.92), rgba(10, 13, 18, 0.98));
}

.case-detail-visual {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  margin: -6px -6px 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-detail-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.06), rgba(7, 10, 15, 0.18) 44%, rgba(7, 10, 15, 0.92)),
    radial-gradient(circle at 18% 22%, rgba(255, 185, 129, 0.18), transparent 28%);
  pointer-events: none;
}

.case-detail-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.case-detail-visual-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.case-detail-visual-copy span,
.case-detail-output-head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-detail-visual-copy strong,
.case-step strong,
.case-detail-output-head strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-heading);
}

.case-detail-visual-copy strong {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  max-width: 12ch;
  line-height: 1.08;
}

.case-detail-visual-copy p {
  margin: 10px 0 0;
  max-width: 28ch;
  color: rgba(236, 241, 247, 0.72);
}

.case-detail-metrics {
  display: grid;
  gap: 12px;
}

.case-detail-metrics article {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.case-detail-metrics span,
.case-step span {
  display: block;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-detail-metrics strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.4;
}

.case-detail-copy {
  display: grid;
  gap: 18px;
}

.case-detail-steps {
  display: grid;
  gap: 14px;
}

.case-step {
  padding: 24px;
}

.case-step strong {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.34;
}

.case-step p,
.case-detail-metrics p {
  margin: 10px 0 0;
  color: var(--muted);
}

.case-detail-output {
  padding: 24px;
}

.case-detail-output-head strong {
  margin-top: 12px;
  font-size: 1.2rem;
  line-height: 1.34;
}

.case-detail-output ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.case-detail-output li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.case-detail-output li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.case-detail-brief {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(77, 144, 210, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.case-detail-brief-head {
  display: grid;
  gap: 10px;
}

.case-detail-brief-head span,
.case-detail-brief-grid span,
.case-detail-brief-tags span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-detail-brief-head strong,
.case-detail-brief-grid strong {
  font-family: var(--font-heading);
}

.case-detail-brief-head strong {
  font-size: 1.08rem;
  line-height: 1.44;
}

.case-detail-brief-grid {
  display: grid;
  gap: 12px;
}

.case-detail-brief-grid article {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.case-detail-brief-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.case-detail-brief-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-theme="light"] .case-detail-panel {
  background:
    radial-gradient(circle at top right, rgba(213, 105, 53, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    var(--panel);
}

body[data-theme="light"] .case-detail-visual,
body[data-theme="light"] .case-detail-metrics article,
body[data-theme="light"] .case-detail-visual-copy span,
body[data-theme="light"] .case-detail-output-head span {
  border-color: var(--line);
}

body[data-theme="light"] .case-detail-visual::after {
  background:
    linear-gradient(180deg, rgba(15, 23, 36, 0.02), rgba(15, 23, 36, 0.08) 44%, rgba(15, 23, 36, 0.46)),
    radial-gradient(circle at 18% 22%, rgba(15, 63, 103, 0.12), transparent 28%);
}

body[data-theme="light"] .case-detail-metrics article,
body[data-theme="light"] .case-detail-visual-copy span,
body[data-theme="light"] .case-detail-output-head span {
  background: rgba(15, 63, 103, 0.05);
  color: var(--muted);
}

body[data-theme="light"] .case-detail-brief,
body[data-theme="light"] .case-detail-brief-head span,
body[data-theme="light"] .case-detail-brief-grid article,
body[data-theme="light"] .case-detail-brief-grid span,
body[data-theme="light"] .case-detail-brief-tags span {
  border-color: var(--line);
}

body[data-theme="light"] .case-detail-brief {
  background:
    radial-gradient(circle at top right, rgba(15, 63, 103, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    rgba(15, 63, 103, 0.04);
}

body[data-theme="light"] .case-detail-brief-head span,
body[data-theme="light"] .case-detail-brief-grid article,
body[data-theme="light"] .case-detail-brief-grid span,
body[data-theme="light"] .case-detail-brief-tags span {
  background: rgba(15, 63, 103, 0.05);
  color: var(--muted);
}

.cta-section {
  padding-bottom: 72px;
}

.project-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 157, 96, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(19, 23, 31, 0.92), rgba(10, 13, 18, 0.98));
}

.project-form-head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-form-head strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1.38;
}

.project-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.project-preview {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(77, 144, 210, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(12, 16, 22, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.project-preview-head span,
.cta-journey-head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-preview-head strong,
.cta-journey-head strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-heading);
  line-height: 1.38;
}

.project-preview-head strong {
  font-size: 1.18rem;
}

.project-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.project-preview-grid article {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.project-preview-grid span,
.project-readiness-head span {
  color: rgba(236, 241, 247, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-preview-grid strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 1.04rem;
  line-height: 1.4;
}

.project-preview-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.project-preview-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-preview-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(236, 241, 247, 0.76);
  font-size: 0.82rem;
}

.project-readiness {
  display: grid;
  gap: 10px;
}

.project-readiness-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.project-readiness-head strong {
  font-family: var(--font-heading);
  font-size: 1.04rem;
}

.project-readiness-bar {
  position: relative;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.project-readiness-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 176, 119, 0.98), rgba(77, 144, 210, 0.94)),
    linear-gradient(90deg, var(--accent), var(--brand));
  box-shadow: 0 0 18px rgba(77, 144, 210, 0.26);
  transition: width 320ms ease;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field span {
  color: rgba(236, 241, 247, 0.66);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.form-field input {
  min-height: 54px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 132px;
  padding: 14px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 166, 104, 0.42);
  box-shadow: 0 0 0 3px rgba(255, 166, 104, 0.12);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(236, 241, 247, 0.38);
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.custom-select-value {
  flex: 1 1 auto;
}

.custom-select.is-placeholder .custom-select-value {
  color: rgba(236, 241, 247, 0.4);
}

.custom-select-arrow {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-right: 2px solid rgba(236, 241, 247, 0.66);
  border-bottom: 2px solid rgba(236, 241, 247, 0.66);
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition), border-color var(--transition);
}

.custom-select.is-open .custom-select-trigger,
.custom-select-trigger:focus-visible {
  outline: none;
  border-color: rgba(255, 166, 104, 0.42);
  box-shadow: 0 0 0 3px rgba(255, 166, 104, 0.12);
}

.custom-select.is-open .custom-select-arrow {
  transform: rotate(-135deg) translateY(-1px);
  border-color: var(--accent);
}

.custom-select.is-invalid .custom-select-trigger,
.form-field input.is-invalid {
  border-color: rgba(255, 119, 119, 0.52);
  box-shadow: 0 0 0 3px rgba(255, 119, 119, 0.12);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 6;
  display: grid;
  gap: 4px;
  padding: 10px;
  max-height: 270px;
  overflow-y: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 157, 96, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(18, 23, 31, 0.98), rgba(10, 13, 18, 0.98));
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(236, 241, 247, 0.86);
  text-align: left;
}

.custom-select-option:hover,
.custom-select-option:focus-visible,
.custom-select-option.is-selected {
  outline: none;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.custom-select-option.is-placeholder {
  color: rgba(236, 241, 247, 0.5);
}

.custom-select-native {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.project-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-form-actions .primary-button,
.project-form-actions .secondary-button {
  flex: 1 1 220px;
}

.project-form-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-form-meta a,
.project-form-meta span,
.project-draft-clear {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.82rem;
}

.project-draft-clear:hover {
  color: var(--text);
  border-color: rgba(255, 166, 104, 0.28);
}

.cta-journey {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 157, 96, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(11, 16, 23, 0.68);
  box-shadow: var(--shadow-soft);
}

.cta-journey-head strong {
  font-size: 1.08rem;
  max-width: 22ch;
}

.cta-journey-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.cta-lane {
  display: grid;
  gap: 10px;
  padding: 16px 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.cta-lane-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-lane-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
}

.cta-lane-meta em {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: normal;
  font-weight: 800;
}

.cta-lane strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.36;
}

.cta-lane p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.project-form-note,
.project-form-status,
.project-form-feedback {
  margin: 0;
  color: var(--muted);
}

.project-form-status {
  min-height: 22px;
  color: rgba(236, 241, 247, 0.58);
  font-size: 0.84rem;
}

.project-form-feedback {
  min-height: 24px;
  font-size: 0.92rem;
}

body[data-theme="light"] .project-form {
  background:
    radial-gradient(circle at top right, rgba(213, 105, 53, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    var(--panel);
}

body[data-theme="light"] .project-form-head span,
body[data-theme="light"] .form-field input,
body[data-theme="light"] .form-field textarea,
body[data-theme="light"] .custom-select-trigger,
body[data-theme="light"] .custom-select-menu,
body[data-theme="light"] .custom-select-option:hover,
body[data-theme="light"] .custom-select-option:focus-visible,
body[data-theme="light"] .custom-select-option.is-selected,
body[data-theme="light"] .project-preview,
body[data-theme="light"] .project-preview-head span,
body[data-theme="light"] .project-preview-grid article,
body[data-theme="light"] .project-preview-points span,
body[data-theme="light"] .project-readiness-bar,
body[data-theme="light"] .cta-pulse,
body[data-theme="light"] .cta-pulse span,
body[data-theme="light"] .cta-journey,
body[data-theme="light"] .cta-journey-head span,
body[data-theme="light"] .cta-lane,
body[data-theme="light"] .cta-prep,
body[data-theme="light"] .cta-prep-head span,
body[data-theme="light"] .project-form-meta a,
body[data-theme="light"] .project-form-meta span,
body[data-theme="light"] .project-draft-clear {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
  color: var(--text);
}

body[data-theme="light"] .form-field span {
  color: var(--muted);
}

body[data-theme="light"] .project-form-status {
  color: var(--muted);
}

body[data-theme="light"] .custom-select-arrow {
  border-color: var(--muted);
}

body[data-theme="light"] .custom-select-option {
  color: var(--text);
}

body[data-theme="light"] .custom-select-option.is-placeholder {
  color: var(--muted);
}

body[data-theme="light"] .form-field input::placeholder,
body[data-theme="light"] .form-field textarea::placeholder,
body[data-theme="light"] .project-form-head span,
body[data-theme="light"] .custom-select.is-placeholder .custom-select-value,
body[data-theme="light"] .project-preview-head span,
body[data-theme="light"] .project-preview-grid span,
body[data-theme="light"] .project-readiness-head span,
body[data-theme="light"] .cta-pulse span,
body[data-theme="light"] .cta-journey-head span,
body[data-theme="light"] .cta-prep-head span,
body[data-theme="light"] .project-form-meta a,
body[data-theme="light"] .project-form-meta span,
body[data-theme="light"] .project-draft-clear {
  color: var(--muted);
}

body[data-theme="light"] .search-shortcut {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
  color: var(--muted);
}

.mobile-cta-dock {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 48;
  gap: 8px;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 18, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition), border-color var(--transition);
}

.mobile-cta-dock.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(100% + env(safe-area-inset-bottom, 0px) + 14px));
  pointer-events: none;
}

.mobile-cta-main,
.mobile-cta-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  border: 0;
  font-weight: 700;
  font-size: 0.94rem;
  text-align: center;
}

.mobile-cta-main {
  flex: 1 1 auto;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
}

.mobile-cta-call {
  flex: 0 0 auto;
  min-width: 110px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.84);
}

body[data-theme="light"] .mobile-cta-dock {
  border-color: var(--line);
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 18px 34px rgba(12, 20, 31, 0.12);
}

body[data-theme="light"] .mobile-cta-call {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
  color: var(--text);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 47;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 18, 0.84);
  color: rgba(236, 241, 247, 0.84);
  backdrop-filter: blur(20px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition), border-color var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: rgba(255, 166, 104, 0.28);
  color: #fff;
}

.back-to-top-ring {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), transparent 54%),
    conic-gradient(
      from 0deg,
      rgba(255, 176, 119, 0.98) 0turn,
      rgba(77, 144, 210, 0.96) calc(var(--top-progress, 0) * 1turn),
      rgba(255, 255, 255, 0.12) calc(var(--top-progress, 0) * 1turn),
      rgba(255, 255, 255, 0.12) 1turn
    );
  mask: radial-gradient(circle at center, transparent 54%, #000 56%);
}

.back-to-top-label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-theme="light"] .back-to-top {
  border-color: var(--line);
  background: rgba(255, 252, 247, 0.9);
  color: var(--text);
  box-shadow: 0 18px 34px rgba(12, 20, 31, 0.12);
}

.cta-prep {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(77, 144, 210, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(12, 16, 22, 0.64);
}

.cta-prep-head {
  display: grid;
  gap: 10px;
}

.cta-prep p {
  margin: 0;
}

.cta-prep ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.cta-prep li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.cta-prep li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.cta-prep-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cta-handoff-board {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 163, 109, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(12, 16, 22, 0.64);
  box-shadow: var(--shadow-soft);
}

.cta-handoff-head {
  display: grid;
  gap: 10px;
}

.cta-handoff-head span,
.cta-handoff-item span,
.cta-handoff-tags span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-handoff-head strong,
.cta-handoff-item strong {
  font-family: var(--font-heading);
}

.cta-handoff-head strong {
  font-size: 1.18rem;
  line-height: 1.42;
}

.cta-handoff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cta-handoff-item {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.cta-handoff-item strong {
  font-size: 1rem;
  line-height: 1.4;
}

.cta-handoff-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.cta-handoff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-theme="light"] .cta-prep,
body[data-theme="light"] .cta-item-highlight,
body[data-theme="light"] .cta-handoff-board {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06)),
    var(--panel);
}

body[data-theme="light"] .cta-handoff-head span,
body[data-theme="light"] .cta-handoff-item,
body[data-theme="light"] .cta-handoff-item span,
body[data-theme="light"] .cta-handoff-tags span {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
}

body[data-theme="light"] .cta-handoff-head span,
body[data-theme="light"] .cta-handoff-item span,
body[data-theme="light"] .cta-handoff-tags span {
  color: var(--muted);
}

.wide {
  width: 100%;
  margin-top: 8px;
}

.footer {
  padding: 0 0 32px;
}

.footer-surface {
  display: grid;
  gap: 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 28px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 157, 96, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(77, 144, 210, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(18, 23, 31, 0.94), rgba(10, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.footer-top-main {
  display: grid;
  gap: 22px;
  align-content: start;
  min-width: 0;
}

.footer-top-copy {
  display: grid;
  gap: 14px;
}

.footer-top-copy h2 {
  margin: 0;
  max-width: 13ch;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.04;
}

.footer-top-copy p:last-child {
  margin: 0;
  max-width: 40ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.footer-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-top-actions .primary-button,
.footer-top-actions .secondary-button {
  min-width: 182px;
}

.footer-top-side {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(14, 19, 27, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-top-side-head {
  display: grid;
  gap: 10px;
}

.footer-top-side-head span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  width: fit-content;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(236, 241, 247, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-top-side-head strong {
  max-width: 24ch;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.5;
}

.footer-top-stats {
  display: grid;
  gap: 12px;
}

.footer-top-stats article {
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.footer-top-stats span {
  display: block;
  color: rgba(236, 241, 247, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-top-stats strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 1.34rem;
}

.footer-bridge {
  display: grid;
  gap: 18px;
  padding: 26px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 163, 109, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(77, 144, 210, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(18, 23, 31, 0.92), rgba(10, 13, 18, 0.96));
  box-shadow: var(--shadow-soft);
}

.footer-bridge-head {
  display: grid;
  gap: 10px;
}

.footer-bridge-head span,
.footer-bridge-item span,
.footer-bridge-tags span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(236, 241, 247, 0.7);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bridge-head strong,
.footer-bridge-item strong {
  font-family: var(--font-heading);
}

.footer-bridge-head strong {
  max-width: 28ch;
  font-size: 1.2rem;
  line-height: 1.46;
}

.footer-bridge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.footer-bridge-item {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.footer-bridge-item strong {
  font-size: 1rem;
  line-height: 1.42;
}

.footer-bridge-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-bridge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-row {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr auto;
  gap: 20px;
  align-items: end;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.footer-brand,
.footer-block {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-contact a,
.footer-contact span {
  color: var(--text);
}

.footer-contact span {
  color: var(--muted);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.footer-text {
  max-width: 32ch;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

body[data-theme="light"] .footer-bridge {
  border-color: var(--line);
  background:
    radial-gradient(circle at top right, rgba(213, 105, 53, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(15, 63, 103, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 243, 236, 0.94));
  box-shadow: 0 24px 52px rgba(12, 20, 31, 0.08);
}

body[data-theme="light"] .footer-bridge-head span,
body[data-theme="light"] .footer-bridge-item,
body[data-theme="light"] .footer-bridge-item span,
body[data-theme="light"] .footer-bridge-tags span {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
}

body[data-theme="light"] .footer-bridge-head span,
body[data-theme="light"] .footer-bridge-item span,
body[data-theme="light"] .footer-bridge-tags span {
  color: var(--muted);
}

body[data-theme="light"] .footer-badges span {
  border-color: var(--line);
  color: var(--muted);
  background: rgba(15, 63, 103, 0.05);
}

body[data-theme="light"] .footer-top {
  border-color: var(--line);
  background:
    radial-gradient(circle at top right, rgba(213, 105, 53, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(15, 63, 103, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 243, 236, 0.94));
  box-shadow: 0 24px 52px rgba(12, 20, 31, 0.1);
}

body[data-theme="light"] .footer-top-side,
body[data-theme="light"] .footer-top-stats article {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18)),
    rgba(15, 63, 103, 0.05);
}

body[data-theme="light"] .footer-top-side-head span {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
}

body[data-theme="light"] .footer-top-stats span {
  color: var(--muted);
}

.search-overlay,
.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.search-overlay[hidden],
.mobile-panel[hidden] {
  display: none !important;
}

.search-overlay {
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 10, 14, 0.48);
  backdrop-filter: blur(16px);
}

.search-card {
  width: min(720px, 100%);
  padding: 28px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.search-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.search-head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.05;
}

.search-close,
.mobile-close,
.tag-button {
  min-height: 42px;
  padding: 0 16px;
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--line);
}

.search-shortcut {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 241, 247, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.search-hint {
  margin: 16px 0 0;
  color: var(--muted);
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 22px;
}

.search-input {
  min-height: 56px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
  color: var(--text);
}

.search-feedback {
  min-height: 26px;
  margin: 16px 0 0;
  color: var(--muted);
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-button {
  margin-top: 6px;
}

.search-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.search-route-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-align: left;
}

.search-route-card strong {
  font-family: var(--font-heading);
  font-size: 1.02rem;
}

.search-route-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.search-route-card:hover,
.search-route-card:focus-visible {
  border-color: rgba(255, 166, 104, 0.26);
  background: rgba(255, 255, 255, 0.06);
}

body[data-theme="light"] .search-route-card {
  border-color: var(--line);
  background: rgba(15, 63, 103, 0.05);
}

.mobile-panel {
  display: grid;
}

.mobile-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 10, 14, 0.44);
}

.mobile-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, calc(100vw - 18px));
  height: 100%;
  padding: 22px 18px 24px;
  background: var(--panel-strong);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
}

.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-nav {
  display: grid;
  gap: 12px;
}

.mobile-nav a {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.mobile-card {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--brand-soft), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
}

.mobile-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.solid-link {
  width: 100%;
}

@keyframes panel-breathe {
  0%,
  100% {
    box-shadow: var(--breathe-shadow-rest);
  }

  50% {
    box-shadow: var(--breathe-shadow-peak);
  }
}

@keyframes panel-breathe-glow {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.04);
  }
}

.reveal {
  --reveal-progress: 0;
  opacity: calc(0.16 + var(--reveal-progress, 0) * 0.84);
  transform: translate3d(0, calc((1 - var(--reveal-progress, 0)) * 42px), 0) scale(calc(0.964 + var(--reveal-progress, 0) * 0.036));
  filter: blur(calc((1 - var(--reveal-progress, 0)) * 10px));
  will-change: opacity, transform, filter;
  transition:
    opacity 220ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 280ms ease;
}

.reveal.is-visible {
  --reveal-progress: 1;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  transition-delay: var(--reveal-delay, 0ms);
}

:focus-visible {
  outline: 3px solid rgba(213, 105, 53, 0.42);
  outline-offset: 3px;
}

@keyframes pulse-bars {
  0%, 100% {
    transform: scaleY(0.86);
    opacity: 0.78;
  }
  50% {
    transform: scaleY(1.05);
    opacity: 1;
  }
}

@keyframes power-ring-pulse {
  0%, 100% {
    transform: scale(0.98);
    box-shadow:
      0 0 20px rgba(255, 174, 72, 0.34),
      0 0 72px rgba(255, 123, 43, 0.32),
      inset 0 0 22px rgba(255, 255, 255, 0.24);
  }
  50% {
    transform: scale(1.02);
    box-shadow:
      0 0 28px rgba(255, 192, 98, 0.44),
      0 0 96px rgba(255, 131, 58, 0.46),
      inset 0 0 30px rgba(255, 255, 255, 0.32);
  }
}

@keyframes spark-drift {
  0%, 100% {
    opacity: 0.28;
    transform-origin: center;
  }
  50% {
    opacity: 1;
    filter: blur(0.2px);
  }
}

@keyframes stage-sheen {
  from {
    transform: translateX(-10%) rotate(8deg);
  }
  to {
    transform: translateX(210%) rotate(8deg);
  }
}

@keyframes scroll-dot {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    transform: translate(-50%, 12px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .section-rail {
    display: none;
  }

  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  .case-detail-grid {
    grid-template-columns: 1fr;
  }

  .trust-client-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .technology-grid,
  .cta-grid,
  .process-layout,
  .product-grid,
  .scenario-grid,
  .parameter-layout,
  .footer-row,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-panel-grid {
    grid-template-columns: 1fr;
  }

  .hero-intake-grid {
    grid-template-columns: 1fr;
  }

  .technology-panel {
    position: static;
  }

  .section-surface {
    padding: 34px;
  }

  .flow-section .section-surface {
    padding-top: 26px;
    padding-bottom: 32px;
  }

  .section-phase {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
  }

  .section-phase-track {
    grid-template-columns: repeat(4, minmax(132px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .footer-row {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-bridge-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-bridge-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-actions {
    justify-content: start;
  }

  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "featured featured"
      "medical iot"
      "outdoor outdoor";
  }

  .scenario-brief-grid {
    grid-template-columns: 1fr;
  }

  .scenario-card-compact {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "index"
      "title"
      "text"
      "meta";
  }

  .scenario-card-compact .scenario-visual {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .process-board-top {
    flex-direction: column;
    align-items: start;
  }

  .process-visual-notes {
    top: 154px;
    left: 20px;
    width: min(360px, calc(100% - 40px));
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-side {
    grid-template-columns: 1fr 1fr;
  }

  .product-selection-layout,
  .cta-support-grid {
    grid-template-columns: 1fr;
  }

  .product-route-grid {
    grid-template-columns: 1fr;
  }

  .cta-journey-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-handoff-grid {
    grid-template-columns: 1fr;
  }

  .parameter-bridge-grid {
    grid-template-columns: 1fr;
  }

  .technology-bridge-grid {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(1180px, calc(100vw - 28px));
    --nav-height: 78px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-menu-entry {
    display: inline-flex;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-grid {
    min-height: auto;
    gap: 28px;
    padding-top: 12px;
  }

  .hero-stage {
    min-height: 460px;
  }

  .section-phase-intro strong {
    font-size: 1rem;
  }

  .section-phase-track a,
  .section-phase-track span {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .cta-copy h2 {
    max-width: 12ch;
  }

  .hero-stage-top {
    top: 20px;
    left: 20px;
    right: 20px;
  }

  .hero-stage-foot {
    padding: 98px 24px 24px;
  }

  .hero-stage-media img,
  .hero-stage-media video {
    object-position: 74% center;
  }

  .battery-capsule {
    height: 330px;
  }

  .battery-head {
    right: 14px;
    bottom: 84px;
    width: 210px;
    height: 210px;
  }

  .battery-ring {
    right: 24px;
    bottom: 95px;
    width: 180px;
    height: 180px;
  }

  .battery-core {
    right: 66px;
    bottom: 134px;
    width: 108px;
    height: 108px;
  }

  .hero-metrics,
  .product-specs,
  .search-form {
    grid-template-columns: 1fr;
  }

  .hero .metric-card {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero .metric-card:last-child {
    border-bottom: 0;
  }

  .hero-proofband {
    padding: 12px 14px;
  }

  .hero-intake-board {
    padding: 16px;
  }

  .hero-intake-head strong {
    font-size: 0.94rem;
  }

  .hero-intake-grid p {
    font-size: 0.82rem;
  }

  .technology-visual {
    aspect-ratio: 16 / 10;
  }

  .proof-card-featured .proof-cover {
    min-height: 280px;
  }

  .project-form-grid {
    grid-template-columns: 1fr;
  }

  .project-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .section-phase {
    padding: 16px;
    border-radius: 24px;
  }

  .section-phase-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .section-phase-track a,
  .section-phase-track span {
    min-height: 40px;
    font-size: 0.8rem;
    white-space: normal;
  }

  .section-phase-note {
    font-size: 0.88rem;
  }

  .nav-row {
    padding-right: 0;
  }

  .nav-actions {
    position: static;
    transform: none;
    gap: 8px;
  }

  .search-toggle {
    display: none;
  }

  .theme-toggle {
    display: none;
  }

  .mobile-menu-entry {
    display: inline-flex;
    width: 44px;
    height: 44px;
    background: var(--brand);
    color: #fff;
    box-shadow: 0 18px 30px rgba(15, 63, 103, 0.22);
  }

  .mobile-menu-label {
    font-size: 0.72rem;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    display: none;
  }

  .topbar::before {
    inset: 8px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    max-width: 7ch;
    word-break: break-all;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-stage {
    min-height: 390px;
    padding: 20px;
  }

  .hero-stage-top {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .hero-stage-foot {
    padding: 86px 20px 20px;
  }

  .hero-stage-media img,
  .hero-stage-media video {
    object-position: 72% center;
  }

  .battery-capsule {
    height: 250px;
  }

  .battery-body {
    left: -18px;
    bottom: 18px;
    height: 136px;
  }

  .battery-head {
    right: 8px;
    bottom: 58px;
    width: 146px;
    height: 146px;
  }

  .battery-ring {
    right: 16px;
    bottom: 66px;
    width: 122px;
    height: 122px;
    border-width: 12px;
  }

  .battery-core {
    right: 48px;
    bottom: 93px;
    width: 76px;
    height: 76px;
  }

  .spark-a {
    right: 12px;
    bottom: 142px;
    width: 88px;
  }

  .spark-b {
    right: 18px;
    bottom: 80px;
    width: 96px;
  }

  .spark-c {
    right: 60px;
    bottom: 70px;
    width: 44px;
  }

  .hero-text,
  .section-head p:last-child,
  .cta-copy-intro > p:last-of-type {
    font-size: 0.98rem;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2 {
    font-size: clamp(1.86rem, 8vw, 2.42rem);
    letter-spacing: -0.04em;
  }

  .section-head p:last-child {
    font-size: 0.94rem;
  }

  .cta-copy h2 {
    max-width: none;
    font-size: clamp(2rem, 8.8vw, 2.55rem);
  }

  .signal-card,
  .rack-card,
  .note-card,
  .product-card,
  .scenario-card,
  .capability-card,
  .technology-panel,
  .timeline-item,
  .case-detail-panel,
  .case-step,
  .case-detail-output,
  .project-form,
  .trust-proof-panel,
  .trust-client-card,
  .footer-row,
  .search-card {
    padding: 22px;
  }

  .section-surface {
    padding: 24px 20px;
    border-radius: 28px;
  }

  .product-grid,
  .spec-glance,
  .proof-track,
  .cta-journey-track {
    grid-auto-flow: column;
    grid-auto-columns: minmax(248px, 82vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  [data-scroll-rail] {
    position: relative;
    padding-bottom: 24px;
  }

  [data-scroll-rail].is-scrollable::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 999px;
    background:
      linear-gradient(90deg, rgba(255, 176, 119, 0.98), rgba(77, 144, 210, 0.94)) 0 0 / calc(var(--rail-progress, 0) * 100%) 100% no-repeat,
      rgba(255, 255, 255, 0.09);
    pointer-events: none;
  }

  [data-scroll-rail].is-scrollable::after {
    content: attr(data-rail-label);
    position: absolute;
    right: 0;
    bottom: 9px;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 10, 15, 0.88);
    color: rgba(236, 241, 247, 0.62);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    backdrop-filter: blur(14px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  [data-scroll-rail].is-scrolled::after {
    opacity: 0.34;
    transform: translateY(1px);
  }

  body[data-theme="light"] [data-scroll-rail].is-scrollable::before {
    background:
      linear-gradient(90deg, rgba(213, 105, 53, 0.92), rgba(15, 63, 103, 0.88)) 0 0 / calc(var(--rail-progress, 0) * 100%) 100% no-repeat,
      rgba(15, 63, 103, 0.12);
  }

  body[data-theme="light"] [data-scroll-rail].is-scrollable::after {
    border-color: var(--line);
    background: rgba(255, 252, 247, 0.92);
    color: var(--muted);
  }

  .product-grid::-webkit-scrollbar,
  .spec-glance::-webkit-scrollbar,
  .proof-track::-webkit-scrollbar,
  .cta-journey-track::-webkit-scrollbar {
    display: none;
  }

  .product-card,
  .spec-glance article,
  .proof-track article,
  .cta-lane {
    scroll-snap-align: start;
  }

  .footer-row {
    grid-template-columns: 1fr;
  }

  .footer-bridge {
    padding: 22px;
  }

  .footer-bridge-head strong {
    font-size: 1.08rem;
  }

  .footer-bridge-head span,
  .footer-bridge-item span,
  .footer-bridge-tags span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .footer-bridge-item {
    padding: 16px;
  }

  .footer-bridge-item strong {
    font-size: 0.96rem;
  }

  .footer-bridge-item p {
    font-size: 0.9rem;
  }

  .product-grid {
    gap: 14px;
    padding-bottom: 4px;
  }

  .product-card {
    gap: 0;
    padding: 20px;
  }

  .product-card h3 {
    margin-top: 14px;
    font-size: 1.34rem;
  }

  .product-card > p {
    margin: 0;
    font-size: 0.92rem;
  }

  .product-visual {
    min-height: 156px;
    margin: -4px -4px 16px;
    border-radius: 22px;
  }

  .hero-badges {
    margin-top: 18px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
    padding: 8px;
    border-radius: 22px;
  }

  .hero .metric-card {
    padding: 12px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero .metric-card:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero .metric-card span {
    margin-top: 6px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .hero .metric-value {
    font-size: 1.28rem;
  }

  .hero-badges span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "featured"
      "medical"
      "iot"
      "outdoor";
  }

  .hero-brief {
    font-size: 0.92rem;
  }

  .proof-summary-item,
  .proof-guide,
  .proof-outcome-board,
  .proof-card,
  .proof-card-featured {
    --proof-card-offset: -22px;
    padding: 22px;
  }

  .trust-proof-stats,
  .trust-client-wall {
    grid-template-columns: 1fr;
  }

  .proof-cover {
    min-height: 232px;
    border-radius: 24px 24px 20px 20px;
  }

  .proof-side {
    grid-template-columns: 1fr;
  }

  .proof-guide {
    padding: 22px;
  }

  .proof-outcome-head strong {
    font-size: 1.18rem;
  }

  .proof-card-top strong {
    font-size: 1.22rem;
  }

  .proof-side-brief {
    padding: 18px;
  }

  .proof-side-brief strong {
    font-size: 1rem;
  }

  .case-detail-visual {
    min-height: 280px;
    border-radius: 24px;
  }

  .case-detail-visual-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .case-detail-visual-copy strong {
    font-size: 1.46rem;
  }

  .case-detail-metrics,
  .project-form-grid {
    grid-template-columns: 1fr;
  }

  .proof-cover-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .proof-cover-copy strong,
  .proof-card-featured .proof-cover-copy strong {
    font-size: 1.28rem;
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .proof-track,
  .cta-journey-track {
    padding-bottom: 4px;
  }

  .proof-track[data-scroll-rail],
  .cta-journey-track[data-scroll-rail],
  .spec-table-wrap[data-scroll-rail],
  .product-grid[data-scroll-rail],
  .spec-glance[data-scroll-rail] {
    padding-bottom: 24px;
  }

  .spec-table-wrap[data-scroll-rail] {
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .spec-table-wrap[data-scroll-rail]::-webkit-scrollbar {
    display: none;
  }

  .search-route-grid {
    grid-template-columns: 1fr;
  }

  .project-form-actions {
    flex-direction: column;
  }

  .project-form-actions .primary-button,
  .project-form-actions .secondary-button {
    flex: none;
    width: 100%;
    min-height: 54px;
  }

  .cta-handoff-board {
    padding: 22px;
  }

  .cta-handoff-head strong {
    font-size: 1.08rem;
  }

  .cta-handoff-head span,
  .cta-handoff-item span,
  .cta-handoff-tags span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .cta-handoff-item {
    padding: 16px;
  }

  .cta-handoff-item strong {
    font-size: 0.96rem;
  }

  .cta-handoff-item p {
    font-size: 0.9rem;
  }

  .project-form-meta {
    display: grid;
  }

  .hero-proofband {
    padding: 12px;
    gap: 8px;
  }

  .hero-proofband span {
    font-size: 0.76rem;
  }

  .scenario-card-featured,
  .scenario-card-compact {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "index"
      "title"
      "text"
      "meta";
  }

  .scenario-card-featured {
    padding: 22px;
  }

  .scenario-card-featured .scenario-visual {
    margin: -4px -4px 16px;
    aspect-ratio: 16 / 11;
    border-radius: 22px;
  }

  .scenario-card-featured h3 {
    font-size: 1.48rem;
  }

  .scenario-brief-board {
    padding: 22px;
  }

  .scenario-brief-head strong {
    font-size: 1.08rem;
  }

  .scenario-feature-detail {
    display: none;
  }

  .scenario-card-compact .scenario-visual {
    min-height: 176px;
    margin: -2px -2px 10px;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
  }

  .scenario-visual {
    aspect-ratio: 4 / 3;
    margin-left: 0;
    margin-right: 0;
  }

  .scenario-card {
    gap: 14px;
  }

  .scenario-card-compact {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "index"
      "title"
      "text"
      "meta";
    gap: 10px;
    align-items: start;
    padding: 18px;
  }

  .scenario-card-compact h3 {
    font-size: 1.08rem;
  }

  .scenario-card-compact p {
    display: block;
    overflow: visible;
    font-size: 0.9rem;
    -webkit-box-orient: initial;
    -webkit-line-clamp: unset;
  }

  .scenario-card-compact .scenario-meta {
    gap: 6px;
    margin-top: 2px;
  }

  .scenario-card-compact .scenario-meta span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .scenario-brief-item {
    padding: 16px;
  }

  .scenario-brief-item strong {
    font-size: 0.94rem;
  }

  .scenario-brief-tags span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .scenario-meta {
    gap: 6px;
    margin-top: 14px;
  }

  .scenario-meta span {
    min-height: 30px;
    padding: 0 11px;
    font-size: 0.74rem;
  }

  .product-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0 2px;
  }

  .product-route-board,
  .product-handoff-board {
    padding: 22px;
  }

  .product-route-head strong,
  .product-handoff-head strong {
    font-size: 1.08rem;
  }

  .product-route-head span,
  .product-handoff-head span,
  .product-route-item span,
  .product-handoff-tags span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .product-route-item {
    padding: 16px;
    gap: 10px;
  }

  .product-route-item strong {
    font-size: 0.96rem;
  }

  .product-handoff-list article {
    padding: 14px;
    gap: 12px;
  }

  .product-handoff-list span {
    width: 38px;
    border-radius: 14px;
    font-size: 0.84rem;
  }

  .product-handoff-list strong {
    font-size: 0.94rem;
  }

  .product-handoff-list p {
    font-size: 0.9rem;
  }

  .product-spec {
    padding: 10px 12px 12px;
    border-radius: 16px;
  }

  .product-spec:last-child {
    grid-column: 1 / -1;
  }

  .product-spec span {
    font-size: 0.7rem;
  }

  .product-spec strong {
    font-size: 0.92rem;
  }

  .feature-list {
    margin-top: 14px;
  }

  .feature-list li {
    margin-bottom: 8px;
    font-size: 0.92rem;
  }

  .card-meta {
    margin-top: 16px;
    padding-top: 14px;
    gap: 8px;
  }

  .card-meta span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .trust-client-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .trust-proof-bridge {
    padding: 18px;
  }

  .trust-proof-bridge-head strong {
    font-size: 1rem;
  }

  .trust-proof-bridge-head span,
  .trust-proof-bridge-grid span,
  .trust-proof-bridge-tags span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .trust-proof-bridge-grid article {
    padding: 14px 16px;
  }

  .trust-proof-bridge-grid p {
    font-size: 0.9rem;
  }

  .trust-strip-bridge {
    padding: 18px;
  }

  .trust-strip-bridge-head strong {
    font-size: 1rem;
  }

  .trust-strip-bridge-head span,
  .trust-strip-bridge-grid span,
  .trust-strip-bridge-tags span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .trust-strip-bridge-grid {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-inline: 4px;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .trust-strip-bridge-grid::-webkit-scrollbar {
    display: none;
  }

  .trust-strip-bridge-grid article {
    flex: 0 0 min(272px, calc(100vw - 92px));
    min-width: 0;
    padding: 14px 16px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .trust-strip-bridge-grid p {
    font-size: 0.9rem;
  }

  .parameter-bridge {
    padding: 20px;
  }

  .parameter-bridge-head strong {
    font-size: 1rem;
  }

  .parameter-bridge-head span,
  .parameter-bridge-item span,
  .parameter-bridge-tags span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .parameter-bridge-item {
    padding: 16px;
  }

  .parameter-bridge-item p {
    font-size: 0.9rem;
  }

  .technology-bridge {
    padding: 20px;
  }

  .technology-bridge-head strong {
    font-size: 1rem;
  }

  .technology-bridge-head span,
  .technology-bridge-item span,
  .technology-bridge-tags span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .technology-bridge-item {
    padding: 16px;
  }

  .technology-bridge-item p {
    font-size: 0.9rem;
  }

  .trust-client-card {
    padding: 18px;
  }

  .trust-client-card span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .trust-client-card strong {
    margin-top: 10px;
    font-size: 0.98rem;
  }

  .trust-client-card p {
    margin-top: 6px;
    font-size: 0.88rem;
  }

  .proof-card-body p {
    font-size: 0.94rem;
  }

  .proof-guide-head strong {
    font-size: 1.22rem;
  }

  .proof-track article {
    min-height: 100%;
  }

  .proof-track strong {
    margin-top: 12px;
    font-size: 0.92rem;
  }

  .proof-points {
    gap: 8px;
  }

  .proof-points li {
    font-size: 0.92rem;
  }

  .proof-guide-list article {
    grid-template-columns: 1fr;
  }

  .proof-guide-list span {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .spec-summary,
  .spec-board {
    padding: 22px;
  }

  .spec-glance {
    gap: 10px;
    margin-top: 16px;
    padding-bottom: 24px;
  }

  .spec-glance article {
    width: 100%;
    padding: 15px 16px 16px;
  }

  .spec-glance strong {
    font-size: 0.98rem;
  }

  .spec-glance p {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .summary-decision-item {
    padding: 16px;
  }

  .summary-decision-item strong {
    font-size: 0.96rem;
  }

  .summary-note {
    padding-top: 16px;
    font-size: 0.9rem;
  }

  .summary-output-strip article {
    padding: 14px 16px;
  }

  .summary-output-strip strong {
    font-size: 0.9rem;
  }

  .technology-visual-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .technology-visual-copy strong {
    font-size: 1rem;
  }

  .technology-impact-item {
    padding: 16px 18px;
  }

  .technology-impact-item strong {
    font-size: 0.96rem;
  }

  .technology-footnote {
    font-size: 0.92rem;
  }

  .panel-checklist article {
    padding: 14px 16px;
  }

  .panel-checklist strong {
    font-size: 0.92rem;
  }

  .spec-summary-head,
  .spec-board-head {
    align-items: start;
    flex-direction: column;
  }

  .summary-bars {
    min-height: 150px;
    gap: 10px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item span {
    width: 56px;
    height: 56px;
  }

  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    left: 27px;
  }

  .process-visual img {
    min-height: 320px;
  }

  .process-caption {
    top: auto;
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
    padding: 16px;
  }

  .process-caption strong {
    font-size: 1.04rem;
  }

  .process-visual-notes {
    display: none;
  }

  .process-board {
    padding: 20px;
  }

  .process-board-item {
    padding: 16px;
  }

  .process-board-item strong {
    font-size: 0.96rem;
  }

  .process-board-top {
    flex-direction: column;
    align-items: start;
  }

  .process-board-track {
    grid-template-columns: 1fr;
  }

  .process-support {
    padding: 20px;
  }

  .process-support-head strong {
    font-size: 1.02rem;
  }

  .process-support-grid article {
    padding: 14px 16px;
  }

  .cta-prep {
    padding: 16px;
  }

  .cta-prep ul {
    gap: 8px;
  }

  .cta-prep li,
  .cta-prep-note {
    font-size: 0.9rem;
  }

  .cta-item-highlight {
    padding: 16px;
  }

  .footer-links,
  .footer-badges {
    gap: 8px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .cta-journey {
    padding: 18px;
  }

  .cta-journey-head strong {
    max-width: none;
    font-size: 1rem;
  }

  .cta-lane {
    min-height: 100%;
    padding: 15px 16px 16px;
  }

  .cta-lane strong {
    font-size: 0.96rem;
  }

  .cta-lane p {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .case-step {
    padding: 20px;
  }

  .case-step strong {
    font-size: 1.08rem;
  }

  .case-step p,
  .case-detail-output li {
    font-size: 0.92rem;
  }

  .case-detail-brief {
    padding: 20px;
  }

  .case-detail-brief-head strong {
    font-size: 1rem;
  }

  .case-detail-brief-head span,
  .case-detail-brief-grid span,
  .case-detail-brief-tags span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .case-detail-brief-grid article {
    padding: 14px 16px;
  }

  .case-detail-brief-grid p {
    font-size: 0.9rem;
  }

  .case-detail-output {
    padding: 20px;
  }

  .project-preview {
    padding: 18px;
  }

  .project-preview-head strong {
    font-size: 1.06rem;
  }

  .project-preview-grid article {
    padding: 16px;
  }

  .project-preview-grid strong {
    font-size: 0.98rem;
  }

  .project-preview-grid p {
    font-size: 0.88rem;
  }

  .project-preview-points {
    gap: 8px;
  }

  .project-preview-points span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  main {
    padding-bottom: calc(116px + env(safe-area-inset-bottom, 0px));
  }

  .primary-button,
  .secondary-button,
  .search-submit {
    width: 100%;
  }

  .back-to-top {
    right: 14px;
    bottom: 90px;
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
    justify-content: center;
    gap: 0;
    border-radius: 50%;
  }

  .back-to-top::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: translateY(2px) rotate(45deg);
  }

  .back-to-top-label {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .mobile-cta-dock {
    display: flex;
  }

  .back-to-top {
    right: 12px;
    bottom: 82px;
    min-height: 46px;
    width: 46px;
    min-width: 46px;
    padding: 0;
  }

  .back-to-top-ring {
    width: 24px;
    height: 24px;
  }

  .search-head {
    flex-direction: column;
    align-items: start;
  }

  .search-head-actions {
    width: 100%;
    justify-content: space-between;
  }

  .search-shortcut {
    min-height: 34px;
    font-size: 0.74rem;
  }

  .footer-top {
    padding: 24px 20px;
    border-radius: 28px;
  }

  .footer-top-copy h2 {
    max-width: none;
    font-size: 1.86rem;
  }

  .footer-top-actions {
    display: grid;
  }

  .footer-top-actions .primary-button,
  .footer-top-actions .secondary-button {
    width: 100%;
  }

  .footer {
    padding-bottom: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

body.motion-lite .hero-aura {
  filter: blur(72px);
  opacity: 0.22;
}

body.motion-lite .hero-copy,
body.motion-lite .hero-stage,
body.motion-lite .hero-stage-media img,
body.motion-lite .hero-stage-media video,
body.motion-lite .technology-visual img,
body.motion-lite .process-visual img,
body.motion-lite .scenario-card-featured .scenario-visual img,
body.motion-lite .scenario-card-featured .scenario-visual video {
  transform: none !important;
}

body.motion-lite .metric-card.is-breathing,
body.motion-lite .technology-panel.is-breathing,
body.motion-lite .metric-card.is-breathing::after,
body.motion-lite .technology-panel.is-breathing::after,
body.motion-lite .hero-scroll-icon::after,
body.motion-lite .signal-bars span,
body.motion-lite .trust-track {
  animation: none !important;
}

body.motion-lite .section-surface::before,
body.motion-lite .technology-visual::after,
body.motion-lite .scenario-card-featured .scenario-visual::after,
body.motion-lite .process-visual::before {
  opacity: 0.66;
}
