:root {
  --bg-page: #f6f9fc;
  --bg-panel: #ffffff;
  --bg-panel-strong: #ffffff;
  --bg-soft: #eef4fb;
  --bg-soft-alt: #e9f0f7;
  --line-soft: rgba(10, 37, 64, 0.11);
  --line-strong: rgba(10, 37, 64, 0.18);
  --text-primary: #0a2540;
  --text-secondary: #425466;
  --text-muted: #6b7c93;
  --brand: #2b7fff;
  --brand-hover: #1667f2;
  --brand-soft: rgba(43, 127, 255, 0.08);
  --brand-accent: #7fb8ff;
  --success: #1e9d62;
  --shadow-lg: 0 30px 60px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 18px 38px rgba(10, 37, 64, 0.06);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1200px, calc(100vw - 48px));
  --font-sans: "Noto Sans SC", "Noto Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background:
    radial-gradient(circle at 15% 0%, rgba(43, 127, 255, 0.12), transparent 26%),
    radial-gradient(circle at 85% 8%, rgba(127, 184, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #f4f8fc 0%, #ffffff 260px, var(--bg-page) 100%);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px) saturate(180%);
  background: rgba(246, 249, 252, 0.82);
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}

.header-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "brand nav actions";
  align-items: center;
  gap: 24px;
  min-height: 84px;
}

.brand {
  grid-area: brand;
  justify-self: start;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
  min-width: max-content;
}

.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  flex: none;
  object-fit: contain;
}

.brand-stack {
  display: grid;
  gap: 5px;
  width: max-content;
  min-width: max-content;
  flex: none;
}

.brand-wordmark {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 0;
  white-space: nowrap;
  width: max-content;
  min-width: max-content;
  flex: none;
}

.brand-og,
.brand-tech {
  display: block;
  width: auto;
  flex: none;
}

.brand-og {
  height: 18px;
}

.brand-tech {
  height: 22px;
}

.brand-caption {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  grid-area: nav;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
}

.site-nav a {
  position: relative;
  color: var(--text-secondary);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 4px 0;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text-primary);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  grid-area: actions;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 6px 18px rgba(10, 37, 64, 0.04);
}

.lang-switch-nav {
  display: none;
}

.lang-chip {
  border: 0;
  background: transparent;
  color: var(--text-secondary);
  border-radius: 999px;
  padding: 9px 16px;
  min-width: 64px;
  text-align: center;
  white-space: nowrap;
}

.lang-chip.is-active {
  background: #ffffff;
  color: var(--text-primary);
  box-shadow: 0 8px 18px rgba(10, 37, 64, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #0a2540, #16395f);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(10, 37, 64, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #081d34, #13304f);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-primary);
  border-color: rgba(10, 37, 64, 0.1);
  box-shadow: 0 8px 18px rgba(10, 37, 64, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: 0 12px 24px rgba(10, 37, 64, 0.07);
}

.button-ghost {
  background: rgba(248, 251, 255, 0.82);
  border-color: rgba(10, 37, 64, 0.08);
  color: var(--text-primary);
}

.header-utility {
  min-width: 124px;
}

.mobile-menu-button {
  grid-area: menu;
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.mobile-menu-button span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-primary);
}

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

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

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 700px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.94rem, 3.2vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading p,
.section-subtitle,
.hero-subtitle,
.feature-list p,
.choice-card li,
.news-card p,
.about-card p,
.pillar-card p,
.inline-note {
  color: var(--text-secondary);
  line-height: 1.72;
}

.section-subtitle {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: clip;
  min-height: calc(92svh - 76px);
  padding: 92px 0 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 10%, rgba(63, 144, 255, 0.14), transparent 22%),
    linear-gradient(116deg, rgba(214, 232, 255, 0.68) 0%, rgba(214, 232, 255, 0.18) 16%, transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(246, 249, 252, 0.94) 78%);
  opacity: 1;
}

.hero-grid,
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  background:
    linear-gradient(106deg, rgba(127, 184, 255, 0.08) 0%, rgba(127, 184, 255, 0.08) 20%, transparent 20%, transparent 64%, rgba(127, 184, 255, 0.04) 64%, rgba(127, 184, 255, 0.04) 100%);
  opacity: 0.9;
  clip-path: polygon(0 0, 100% 0, 100% 54%, 0 78%);
}

.hero-glow-left {
  background: radial-gradient(circle at 20% 24%, rgba(43, 127, 255, 0.15), transparent 23%);
}

.hero-glow-right {
  background: radial-gradient(circle at 86% 20%, rgba(95, 174, 230, 0.14), transparent 24%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-content: center;
  min-height: clamp(560px, calc(100svh - 220px), 720px);
  gap: 20px;
}

.hero-copy {
  max-width: 700px;
}

.hero-copy-centered {
  width: 100%;
  max-width: 920px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-copy h1 {
  margin: 16px 0 0;
  font-size: clamp(2.6rem, 5.6vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero-subtitle {
  max-width: 760px;
  font-size: 1.02rem;
  margin: 22px 0 0;
}

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

.hero-actions {
  justify-content: center;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.trust-card {
  display: grid;
  gap: 10px;
  min-height: 138px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 63, 102, 0.08);
  box-shadow: 0 12px 30px rgba(19, 44, 73, 0.07);
  backdrop-filter: blur(16px);
}

.trust-label {
  color: var(--brand);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.trust-card strong {
  font-size: 0.92rem;
  line-height: 1.35;
}

.trust-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.65;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  justify-content: center;
}

.hero-tags span,
.scene-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.8);
  padding: 0 14px;
  color: var(--text-secondary);
  font-size: 0.86rem;
}

.hero-copy-centered .eyebrow {
  justify-content: center;
}

.hero-announcement {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(132, 170, 235, 0.2);
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 12px 30px rgba(10, 37, 64, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  color: #4d6483;
  font-size: 0.96rem;
  font-weight: 600;
  backdrop-filter: blur(16px);
}

.hero-announcement-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2b7fff, #4e89ff);
  box-shadow: 0 0 0 6px rgba(43, 127, 255, 0.08);
}

.hero-announcement-arrow {
  font-size: 1.1rem;
  color: #8aa0be;
}

.hero-copy-centered .hero-actions {
  justify-content: center;
}

.hero-copy-centered .hero-tags {
  max-width: 880px;
}

.hero-primary-action,
.hero-secondary-action {
  min-width: 206px;
  min-height: 58px;
  padding: 0 30px;
  font-size: 0.98rem;
  font-weight: 700;
}

.hero-preview-shell {
  position: relative;
  width: min(1140px, calc(100% - 84px));
  margin-top: 48px;
  opacity: 0.82;
}

.hero-preview-shell::before {
  content: "";
  position: absolute;
  inset: auto 10% -10% 10%;
  height: 44%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 186, 255, 0.18), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-preview-browser {
  position: relative;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  border: 1px solid rgba(220, 230, 243, 0.92);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 26px 54px rgba(10, 37, 64, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.hero-preview-toolbar {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 64px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(225, 233, 243, 0.92);
  background: rgba(255, 255, 255, 0.88);
}

.hero-preview-dots {
  display: flex;
  gap: 10px;
}

.hero-preview-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d1deef, #c0d0e5);
}

.hero-preview-address {
  width: min(210px, 28vw);
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(223, 232, 243, 0.92), rgba(212, 223, 236, 0.72));
}

.hero-preview-stage {
  position: relative;
  min-height: 218px;
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.98), rgba(241, 246, 253, 0.9));
}

.hero-preview-sidebar,
.hero-preview-header-line,
.hero-preview-stat,
.hero-preview-map,
.hero-preview-panel {
  position: absolute;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(233, 239, 248, 0.9), rgba(243, 247, 252, 0.8));
  opacity: 0.32;
  filter: blur(0.2px);
}

.hero-preview-sidebar {
  left: 28px;
  top: 42px;
  width: 180px;
  height: 176px;
}

.hero-preview-header-line {
  left: 246px;
  top: 38px;
  width: 392px;
  height: 20px;
  border-radius: 999px;
}

.hero-preview-stat-grid {
  position: absolute;
  left: 246px;
  top: 76px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 304px;
}

.hero-preview-stat {
  display: block;
  height: 90px;
  border-radius: 20px;
}

.hero-preview-map {
  left: 582px;
  top: 74px;
  width: 314px;
  height: 168px;
}

.hero-preview-panel {
  right: 26px;
  width: 220px;
  height: 72px;
  border-radius: 20px;
}

.hero-preview-panel-primary {
  top: 72px;
}

.hero-preview-panel-secondary {
  top: 158px;
}

.hero-preview-fog {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(244, 248, 255, 0.6) 36%, rgba(244, 248, 252, 0.98) 100%),
    radial-gradient(circle at 50% -6%, rgba(158, 192, 255, 0.12), transparent 34%);
}

.section-products,
.section-news {
  background: linear-gradient(180deg, #ffffff 0%, rgba(246, 249, 252, 0.92) 100%);
}

.section-signal {
  padding-top: 32px;
}

.signal-frame {
  position: relative;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(rgba(206, 220, 236, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(206, 220, 236, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #edf4fb 100%);
  background-size: 160px 160px, 160px 160px, cover;
  box-shadow: 0 24px 48px rgba(10, 37, 64, 0.06);
}

.signal-intro-band {
  display: grid;
  gap: 14px;
  padding: 30px 34px 24px;
}

.signal-eyebrow {
  align-items: center;
}

.signal-intro-band h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.48vw, 2.4rem);
  line-height: 1.04;
}

.signal-intro-copy {
  max-width: 760px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.62;
}

.signal-stats-row {
  --signal-active-index: 0;
  --signal-hover-index: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  border-top: 1px solid rgba(10, 37, 64, 0.08);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(248, 250, 253, 0.14));
}

.signal-active-rail {
  position: absolute;
  left: calc((100% / 4) * var(--signal-hover-index) + 24px);
  width: calc((100% / 4) - 48px);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(120, 171, 255, 0), rgba(72, 128, 255, 0.94), rgba(120, 171, 255, 0));
  pointer-events: none;
  z-index: 3;
  transition:
    left 400ms cubic-bezier(0.4, 0, 0.2, 1),
    background 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.signal-active-rail-top {
  top: 0;
}

.signal-active-rail-bottom {
  bottom: 0;
}

.signal-stat {
  appearance: none;
  border: 0;
  width: 100%;
  min-height: 152px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 25px 28px 22px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition:
    opacity 220ms ease,
    color 220ms ease;
}

.signal-stat + .signal-stat {
  border-left: 1px solid rgba(10, 37, 64, 0.08);
}

.signal-stat strong {
  font-size: clamp(2.1rem, 3.8vw, 3.34rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
  color: rgba(44, 79, 116, 0.42);
  font-weight: 520;
  transition: color 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.signal-stat span {
  color: rgba(76, 107, 141, 0.68);
  font-size: 0.98rem;
  font-weight: 520;
  line-height: 1.16;
  max-width: 160px;
  transition: color 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.signal-stat p {
  margin: 0;
  color: rgba(94, 124, 156, 0.68);
  max-width: 180px;
  font-size: 0.82rem;
  line-height: 1.44;
  transition: color 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.signal-stat.is-active strong,
.signal-stat:focus-visible strong {
  color: #0a2540;
}

.signal-stat.is-active span,
.signal-stat:focus-visible span {
  color: rgba(10, 37, 64, 0.88);
}

.signal-stat.is-active p,
.signal-stat:focus-visible p {
  color: rgba(28, 58, 92, 0.92);
}

.signal-stat:hover strong {
  color: rgba(10, 37, 64, 0.82);
}

.signal-stat:hover span {
  color: rgba(26, 54, 88, 0.82);
}

.signal-stat:hover p {
  color: rgba(49, 78, 113, 0.78);
}

.signal-stat:focus-visible {
  outline: none;
  box-shadow:
    inset 0 0 0 1px rgba(43, 127, 255, 0.18),
    0 0 0 3px rgba(43, 127, 255, 0.12);
}

.signal-stage {
  position: relative;
  min-height: 532px;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
  --signal-glow-position: 50% 82%;
  background: linear-gradient(180deg, #fafdff, #f3f8ff 60%, #edf4fb);
}

.signal-stage-timewash {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity 780ms cubic-bezier(0.22, 1, 0.36, 1);
}

.signal-stage-timewash-overlay {
  opacity: 0;
}

.signal-stage-timewash-overlay.is-visible {
  opacity: 1;
}

.signal-stage-timewash[data-time-of-day="pre-dawn"] {
  background:
    radial-gradient(103.24% 102.63% at 50% 102.63%, #486ffd 0, #7f81f3 9.84%, #c489ff 20.83%, #dac0ff 34.13%, #eadcff 44.86%, #f9f6ff 58.59%, #f8fafd 100%);
}

.signal-stage-timewash[data-time-of-day="sunrise"] {
  background:
    radial-gradient(102.68% 99.11% at 50% 104.6%, #cb83ff 0, #ff90b9 15.77%, #ffc977 30.62%, #ffd79b 38.04%, #fff1dc 50.11%, #fff 63.1%, #fcfdfe 77.95%, #f8fafd 98.81%);
}

.signal-stage-timewash[data-time-of-day="daytime"] {
  background:
    radial-gradient(102.84% 104.98% at 50% 104.98%, #0071c1 1.33%, #60a8e2 15.71%, #b4d8ff 33.15%, #d9ebff 45%, #f8fafd 60%);
}

.signal-stage-timewash[data-time-of-day="dusk"] {
  background:
    radial-gradient(102.83% 103.24% at 49.98% 104.51%, #ffb451 0, #efc680 16.73%, #b4d8ff 33.03%, #d2e8ff 43.38%, #fafdff 59.16%, #fdfeff 76.24%, #f8fafd 100%);
}

.signal-stage-timewash[data-time-of-day="sunset"] {
  background:
    radial-gradient(103.12% 100% at 50% 100%, #ffa577 0, #ff90a1 15.52%, #ddadff 30.09%, #ecd8ff 45.72%, #f5eaff 54.96%, #f8fafd 88.16%);
}

.signal-stage-timewash[data-time-of-day="night"] {
  background:
    radial-gradient(102.82% 106.44% at 50% 106.44%, #fcfdfe 1.11%, #6763e4 28.73%, #453bb3 45.76%, #29227d 63.37%, #1e2064 78.67%, #141e4b 100%);
}

.signal-stage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(174, 203, 232, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174, 203, 232, 0.1) 1px, transparent 1px);
  background-size: 176px 176px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.18) 42%, transparent 74%);
}

.signal-stage-surface {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 18%, rgba(217, 234, 251, 0.34), transparent 24%),
    radial-gradient(circle at 50% 88%, rgba(255, 195, 96, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06));
}

.signal-stage-surface.is-surface-validation {
  background:
    radial-gradient(circle at 44% 36%, rgba(214, 233, 255, 0.22), transparent 18%),
    radial-gradient(circle at 58% 90%, rgba(255, 196, 108, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.signal-stage-surface.is-surface-launch {
  background:
    radial-gradient(circle at 62% 20%, rgba(220, 237, 255, 0.24), transparent 20%),
    radial-gradient(circle at 50% 90%, rgba(255, 198, 112, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
}

.signal-stage-surface.is-surface-governance {
  background:
    radial-gradient(circle at 50% 42%, rgba(214, 233, 255, 0.16), transparent 18%),
    radial-gradient(circle at 50% 92%, rgba(255, 195, 104, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03));
}

.signal-stage[data-time-of-day="night"] .signal-stage-surface {
  background:
    radial-gradient(circle at 52% 18%, rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(circle at 50% 88%, rgba(126, 104, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.signal-toolbar {
  position: absolute;
  right: 34px;
  top: 24px;
  z-index: 4;
  display: flex;
  gap: 4px;
}

.signal-tool {
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(135, 175, 222, 0.54);
  background: rgba(248, 251, 255, 0.76);
  box-shadow: 0 8px 16px rgba(19, 44, 73, 0.05);
  backdrop-filter: blur(12px);
  position: relative;
  padding: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.signal-tool:hover,
.signal-tool:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(95, 145, 201, 0.64);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 20px rgba(19, 44, 73, 0.07);
}

.signal-tool:focus-visible {
  outline: none;
}

.signal-tool-pause.is-paused::before {
  left: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #596dff;
  border-radius: 0;
  background: transparent;
  transform: translate(-36%, -50%);
}

.signal-tool-pause.is-paused::after {
  opacity: 0;
}

.signal-toggle-label-paused {
  display: none;
}

.signal-tool-pause.is-paused .signal-toggle-label-running {
  display: none;
}

.signal-tool-pause.is-paused .signal-toggle-label-paused {
  display: block;
}

.signal-tool::before,
.signal-tool::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 11px;
  border-radius: 999px;
  background: #596dff;
  transform: translateY(-50%);
}

.signal-tool::before {
  left: 11px;
}

.signal-tool::after {
  right: 11px;
}

.signal-tool-time::before,
.signal-tool-time::after {
  left: 50%;
  top: 50%;
  right: auto;
  transition:
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    box-shadow 640ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 260ms ease,
    border-color 260ms ease;
}

.signal-tool-time::before {
  width: 9px;
  height: 9px;
  border: 1.8px solid #596dff;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
}

.signal-tool-time::after {
  width: 1.8px;
  height: 1.8px;
  background: #596dff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow:
    0 -7px 0 0 #596dff,
    0 7px 0 0 #596dff,
    -7px 0 0 0 #596dff,
    7px 0 0 0 #596dff,
    5px 5px 0 0 #596dff,
    -5px 5px 0 0 #596dff,
    5px -5px 0 0 #596dff,
    -5px -5px 0 0 #596dff;
}

.signal-tool-time[data-time-of-day="pre-dawn"]::after {
  transform: translate(-50%, -50%) rotate(22deg);
}

.signal-tool-time[data-time-of-day="sunrise"]::after {
  transform: translate(-50%, -50%) rotate(42deg);
}

.signal-tool-time[data-time-of-day="daytime"]::after {
  transform: translate(-50%, -50%) rotate(0deg) scale(1.02);
}

.signal-tool-time[data-time-of-day="dusk"]::after {
  transform: translate(-50%, -50%) rotate(-24deg);
}

.signal-tool-time[data-time-of-day="sunset"]::after {
  transform: translate(-50%, -50%) rotate(-42deg);
}

.signal-tool-time[data-time-of-day="night"]::before {
  width: 10px;
  height: 10px;
  border-width: 0;
  background: #596dff;
  box-shadow: inset -3px 0 0 0 rgba(248, 251, 255, 0.82);
}

.signal-tool-time[data-time-of-day="night"]::after {
  opacity: 0;
}

.signal-glow {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  filter: blur(42px);
}

.signal-glow-primary {
  inset: 0;
  background: radial-gradient(circle at var(--signal-glow-position), rgba(108, 175, 238, 0.36), transparent 34%);
}

.signal-glow-secondary {
  inset: 0;
  background: radial-gradient(circle at 52% 24%, rgba(177, 214, 247, 0.24), transparent 24%);
}

.signal-artwork-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.signal-canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.section-products {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(246, 249, 252, 0.92)),
    radial-gradient(circle at 16% 18%, rgba(127, 184, 255, 0.08), transparent 16%);
}

.section-station {
  background:
    linear-gradient(180deg, rgba(246, 249, 252, 0.88), rgba(255, 255, 255, 0.98) 18%, rgba(246, 249, 252, 0.8));
}

.section-gateway {
  background:
    radial-gradient(circle at 82% 12%, rgba(99, 91, 255, 0.05), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.94));
}

.section-aip {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.92));
}

.product-grid,
.choice-grid,
.news-grid,
.pillar-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.matrix-card,
.news-card,
.choice-card,
.pillar-card,
.activity-card,
.about-card,
.flow-card,
.capability-card {
  background: var(--bg-panel);
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.matrix-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  display: grid;
  gap: 20px;
  min-height: 376px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.matrix-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #0a2540, #2b7fff 75%, #7fb8ff);
}

.matrix-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 37, 64, 0.12);
  box-shadow: 0 26px 54px rgba(10, 37, 64, 0.09);
}

.card-kicker {
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.matrix-card h3,
.choice-card h3,
.news-card h3,
.pillar-card h3,
.capability-card h3 {
  margin: 0;
  font-size: 1.34rem;
  letter-spacing: -0.03em;
}

.card-definition {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.56;
}

.card-support,
.capability-intro,
.choice-lead {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.62;
}

.matrix-card .button {
  margin-top: auto;
}

.matrix-editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.matrix-card-feature {
  display: grid;
  grid-template-rows: auto auto;
  gap: 20px;
  align-content: start;
}

.matrix-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.matrix-card-station .matrix-card-copy {
  max-width: 410px;
}

.matrix-card-aip .matrix-card-copy {
  max-width: 396px;
}

.matrix-card-station {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 596px;
  padding: 32px;
  background:
    radial-gradient(circle at 82% 84%, rgba(43, 127, 255, 0.13), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.matrix-card-aip {
  grid-column: span 5;
  min-height: 368px;
  padding: 30px;
  background:
    radial-gradient(circle at 76% 22%, rgba(127, 184, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #ffffff, #fbfdff);
}

.matrix-card-aip .matrix-card-copy {
  max-width: none;
}

.matrix-card-visual {
  position: relative;
  min-height: 0;
}

.matrix-card-visual-station {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(180px, 0.72fr);
  align-items: start;
  gap: 14px;
}

.matrix-card-visual-aip {
  display: grid;
  gap: 12px;
  align-content: start;
}

.matrix-glow {
  position: absolute;
  inset: auto 0 0 auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(24px);
}

.matrix-glow-station {
  right: 20px;
  bottom: 22px;
  width: 320px;
  height: 180px;
  background: radial-gradient(circle at center, rgba(43, 127, 255, 0.2), transparent 68%);
}

.matrix-preview,
.matrix-mini-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 44px rgba(10, 37, 64, 0.08);
}

.matrix-preview img,
.matrix-mini-card img {
  width: 100%;
  height: 100%;
  display: block;
}

.matrix-preview-device {
  z-index: 1;
  aspect-ratio: 1.16 / 0.94;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 255, 0.94));
}

.matrix-preview-device img {
  object-fit: contain;
  border-radius: 20px;
  background: #ffffff;
}

.matrix-preview-strip {
  display: grid;
  gap: 12px;
}

.matrix-preview-strip .matrix-mini-card:nth-child(3) {
  display: none;
}

.matrix-mini-card {
  aspect-ratio: 1 / 0.86;
  padding: 6px;
}

.matrix-mini-card img {
  object-fit: cover;
  border-radius: 18px;
}

.matrix-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.matrix-chip-row span,
.matrix-summary-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.matrix-preview-aip {
  aspect-ratio: 1.34 / 1;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(234, 242, 250, 0.96));
}

.matrix-preview-aip img {
  object-fit: contain;
  border-radius: 20px;
  background: #f7fafc;
}

.matrix-summary-card {
  grid-column: 8 / -1;
  display: grid;
  gap: 16px;
  align-content: space-between;
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
  box-shadow: 0 20px 42px rgba(10, 37, 64, 0.05);
}

.matrix-summary-copy {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.62;
}

.matrix-summary-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.matrix-summary-card .section-actions {
  margin-top: 0;
}

.matrix-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(320px, 0.88fr);
  gap: 20px;
  align-items: stretch;
}

.matrix-side-rail {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
}

.matrix-hero {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  min-height: 0;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(10, 37, 64, 0.045);
  overflow: hidden;
}

.matrix-hero-station {
  min-height: 620px;
  padding: 34px;
  gap: 18px;
  background:
    radial-gradient(circle at 84% 82%, rgba(43, 127, 255, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
}

.matrix-hero-aip {
  min-height: 300px;
  padding: 26px;
  background:
    radial-gradient(circle at 86% 22%, rgba(127, 184, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.96));
}

.matrix-hero-gateway {
  min-height: 300px;
  padding: 26px;
  background:
    radial-gradient(circle at 82% 88%, rgba(43, 127, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
}

.matrix-hero-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.matrix-hero-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.matrix-hero-copy h3 {
  margin: 0;
  font-size: clamp(1.48rem, 2.45vw, 2.42rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.matrix-hero-station .matrix-hero-copy {
  max-width: 430px;
  gap: 10px;
}

.matrix-hero-station .matrix-hero-copy h3 {
  font-size: clamp(1.88rem, 2.9vw, 2.86rem);
}

.matrix-hero-gateway .matrix-hero-copy h3,
.matrix-hero-aip .matrix-hero-copy h3 {
  font-size: clamp(1.34rem, 1.82vw, 2rem);
}

.matrix-hero-launch {
  position: relative;
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(108, 92, 255, 0.08);
  background: linear-gradient(180deg, rgba(245, 242, 255, 0.96), rgba(241, 238, 255, 0.92));
  box-shadow: 0 12px 24px rgba(10, 37, 64, 0.04);
}

.matrix-hero-launch::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 3.5H3.5V6M14 3.5h2.5V6M6 16.5H3.5V14M14 16.5h2.5V14' stroke='%236C5CFF' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.matrix-hero-stage {
  position: relative;
  min-height: 312px;
  overflow: hidden;
  border-radius: 24px;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(10, 37, 64, 0.04);
}

.matrix-hero-station .matrix-hero-stage {
  min-height: 398px;
}

.matrix-hero-aip .matrix-hero-stage {
  min-height: 190px;
}

.matrix-hero-gateway .matrix-hero-stage {
  min-height: 210px;
}

.matrix-stage-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.matrix-stage-gradient-station {
  background:
    radial-gradient(circle at 18% 100%, rgba(103, 144, 255, 0.28), transparent 34%),
    radial-gradient(circle at 100% 16%, rgba(255, 176, 102, 0.28), transparent 30%);
}

.matrix-stage-gradient-aip {
  background:
    radial-gradient(circle at 18% 100%, rgba(120, 137, 255, 0.34), transparent 34%),
    radial-gradient(circle at 100% 78%, rgba(255, 169, 86, 0.3), transparent 30%);
}

.matrix-stage-gradient-gateway {
  background:
    radial-gradient(circle at 16% 14%, rgba(123, 146, 255, 0.28), transparent 24%),
    radial-gradient(circle at 88% 86%, rgba(43, 127, 255, 0.18), transparent 28%);
}

.matrix-stage-main,
.matrix-stage-float {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.matrix-stage-main img,
.matrix-stage-float img {
  width: 100%;
  height: 100%;
  display: block;
}

.matrix-stage-main-device {
  inset: 8px;
  display: block;
  padding: 0;
}

.matrix-stage-main-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  background: #f4f8ff;
  box-shadow: 0 14px 26px rgba(10, 37, 64, 0.08);
  filter: none;
}

.matrix-hero-stage-station .matrix-stage-main-device img {
  object-position: center;
}

.matrix-stage-main-aip {
  inset: 8px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}

.matrix-stage-main-aip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  background: #f8fbff;
  box-shadow: 0 10px 22px rgba(10, 37, 64, 0.07);
}

.matrix-stage-main-gateway {
  inset: 8px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}

.matrix-stage-main-gateway img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  background: #f7fafc;
  box-shadow: 0 10px 22px rgba(10, 37, 64, 0.07);
}

.matrix-stage-float-gateway {
  right: 18px;
  bottom: 18px;
  width: 42%;
  height: 34%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 16px 30px rgba(10, 37, 64, 0.11);
}

.matrix-stage-float-gateway img {
  object-fit: cover;
  object-position: center top;
  background: #ffffff;
}

.matrix-hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.matrix-hero-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-secondary);
  font-size: 0.82rem;
}


.card-bullets,
.capability-list,
.choice-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.card-bullets,
.choice-card ul {
  display: grid;
  gap: 10px;
}

.card-bullets li,
.choice-card li {
  position: relative;
  padding-left: 18px;
  line-height: 1.58;
}

.card-bullets li::before,
.choice-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fb8ff;
}

.feature-split,
.aip-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 30px;
  align-items: stretch;
}

.station-editorial,
.gateway-editorial,
.aip-editorial {
  display: grid;
  gap: 24px;
  align-items: start;
}

.station-editorial {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.gateway-editorial {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.aip-editorial {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.station-copy-rail,
.gateway-copy-rail,
.aip-copy-rail {
  display: grid;
  gap: 18px;
  align-content: start;
}

.station-heading,
.gateway-heading,
.aip-heading {
  margin-bottom: 0;
  max-width: none;
}

.feature-copy-rail {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  gap: 14px;
}

.feature-copy-rail .feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-copy-rail .feature-list article {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(10, 37, 64, 0.045);
}

.feature-copy-rail .feature-list article:first-child {
  grid-column: 1 / -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98));
}

.station-visual-rail,
.gateway-stage-rail,
.aip-stage-rail {
  position: relative;
}

.station-visual-rail::before,
.gateway-stage-rail::before,
.aip-stage-rail::before {
  content: "";
  position: absolute;
  inset: 18px 0 24px 8%;
  pointer-events: none;
  z-index: 0;
  border-radius: 40px;
  background: radial-gradient(circle at center, rgba(127, 184, 255, 0.16), transparent 72%);
}

.station-visual-rail .device-stage,
.gateway-stage-rail .tabs-panel,
.aip-stage-rail .tabs-panel {
  position: relative;
  z-index: 1;
}

.device-stage,
.tabs-panel,
.feature-copy,
.capability-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: 0 22px 46px rgba(10, 37, 64, 0.05);
}

.station-media-stack {
  display: grid;
  gap: 14px;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background:
    linear-gradient(180deg, #fbfdff, #f3f7fb);
}

.media-card.is-missing {
  border-style: dashed;
  border-color: rgba(18, 63, 102, 0.14);
}

.media-card-main {
  aspect-ratio: 16 / 10;
  box-shadow: 0 20px 38px rgba(10, 37, 64, 0.06);
}

.media-card-aip {
  aspect-ratio: 16 / 10;
  box-shadow: 0 18px 36px rgba(10, 37, 64, 0.06);
}

.media-card-gateway {
  aspect-ratio: 16 / 10;
  box-shadow: 0 18px 36px rgba(10, 37, 64, 0.06);
}

.media-card-thumb {
  aspect-ratio: 4 / 3;
}

.asset-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 180ms ease;
}

.media-card.has-asset .asset-image {
  opacity: 1;
}

.media-card-main[data-fit="contain"] .asset-image {
  object-fit: contain;
  background: #ffffff;
  padding: 22px;
}

.media-card-main[data-fit="cover"] .asset-image {
  object-fit: cover;
  background: transparent;
  padding: 0;
}

.media-card-aip .asset-image {
  object-fit: contain;
  background: #f7fafc;
}

.media-card-gateway .asset-image {
  object-fit: contain;
  background: #f7fafc;
}

.media-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(247, 250, 255, 0.88), rgba(233, 240, 248, 0.94)),
    linear-gradient(rgba(18, 63, 102, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 63, 102, 0.04) 1px, transparent 1px);
  background-size: cover, 44px 44px, 44px 44px;
}

.media-card.has-asset .media-fallback {
  opacity: 0;
  pointer-events: none;
}

.media-kicker {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-fallback strong {
  max-width: 240px;
  font-size: 0.96rem;
  line-height: 1.45;
}

.station-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.station-thumb {
  display: grid;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.station-thumb .media-card {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.station-thumb:hover .media-card,
.station-thumb:focus-visible .media-card {
  transform: translateY(-1px);
}

.station-thumb.is-active .media-card {
  border-color: rgba(43, 127, 255, 0.28);
  box-shadow: 0 18px 30px rgba(43, 127, 255, 0.12);
}

.station-thumb-label {
  color: var(--text-secondary);
  font-size: 0.76rem;
  line-height: 1.45;
}

.station-thumb.is-active .station-thumb-label {
  color: var(--text-primary);
  font-weight: 600;
}

.scanner-chip {
  position: static;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  min-width: 122px;
  width: fit-content;
  justify-self: end;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 16px 30px rgba(10, 37, 64, 0.06);
}

.scanner-chip span {
  color: var(--brand);
  font-weight: 700;
}

.scanner-chip small {
  color: var(--text-secondary);
}

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

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article h3 {
  margin: 0 0 8px;
  font-size: 0.94rem;
}

.feature-list article p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.62;
}

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

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

.gateway-proof-card {
  display: grid;
  gap: 10px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.96));
  box-shadow: 0 14px 28px rgba(10, 37, 64, 0.05);
}

.gateway-proof-card strong {
  font-size: 1rem;
  line-height: 1.4;
}

.gateway-proof-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.68;
}

.flow-card {
  margin-top: 28px;
  padding: 0;
  display: grid;
  gap: 24px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.flow-fallback {
  display: grid;
  gap: 24px;
}

.flow-card-heading {
  display: grid;
  gap: 14px;
  padding: 4px 0 6px;
  justify-items: center;
  text-align: center;
}

.flow-card-heading .eyebrow {
  letter-spacing: 0.18em;
}

.flow-card-heading h3 {
  margin: 0;
  font-size: clamp(2.18rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

@media (min-width: 641px) {
  .flow-card-heading h3 {
    width: max-content;
    max-width: none;
    white-space: nowrap;
    text-wrap: nowrap;
  }
}

.flow-card-support {
  max-width: 620px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.9;
  text-wrap: pretty;
}

.flow-stage {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px 28px 26px;
  border-radius: 32px;
  border: 1px solid rgba(18, 63, 102, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.97));
  box-shadow: 0 22px 44px rgba(19, 44, 73, 0.055);
  overflow: hidden;
}

.flow-stage-grid,
.flow-stage-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.flow-stage-grid {
  background:
    linear-gradient(rgba(18, 63, 102, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 63, 102, 0.04) 1px, transparent 1px);
  background-size: 132px 132px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 88%);
}

.flow-stage-glow {
  z-index: 0;
  filter: blur(12px);
  opacity: 0.72;
}

.flow-stage-glow-left {
  background: radial-gradient(circle at 18% 24%, rgba(43, 127, 255, 0.09), transparent 22%);
}

.flow-stage-glow-right {
  background: radial-gradient(circle at 82% 76%, rgba(255, 183, 107, 0.12), transparent 22%);
}

.flow-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 80px;
  width: 2px;
  height: 52px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(59, 129, 246, 0.58), rgba(59, 129, 246, 0.1));
}

.flow-request {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(18, 63, 102, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 255, 0.97));
  max-width: 860px;
  width: 100%;
  justify-self: center;
  box-shadow: 0 14px 28px rgba(15, 74, 119, 0.065);
}

.flow-request-label {
  flex: none;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: 16px;
  border-right: 1px solid rgba(18, 63, 102, 0.12);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.flow-request-label::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 3l1.3 4.2L17.5 8.5l-4.2 1.3L12 14l-1.3-4.2L6.5 8.5l4.2-1.3L12 3zM18.5 13l.8 2.7L22 16.5l-2.7.8-.8 2.7-.8-2.7-2.7-.8 2.7-.8.8-2.7zM5.5 14l.9 3.1L9.5 18l-3.1.9L5.5 22l-.9-3.1L1.5 18l3.1-.9.9-3.1z' stroke='%23256DFF' stroke-width='1.7' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.flow-request p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-primary);
}

.flow-top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) auto minmax(0, 1.34fr) auto minmax(0, 0.92fr);
  align-items: center;
  gap: 0;
  min-height: 232px;
  padding-top: 2px;
}

.flow-step {
  position: relative;
  z-index: 1;
  min-height: 214px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(18, 63, 102, 0.07);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 30px rgba(19, 44, 73, 0.045);
}

.flow-step-side {
  opacity: 0.98;
}

.flow-step-core {
  min-height: 228px;
  padding: 24px 26px 20px;
  border-color: rgba(59, 129, 246, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 252, 255, 0.98)),
    radial-gradient(circle at top center, rgba(96, 165, 250, 0.12), transparent 46%);
  box-shadow:
    0 20px 40px rgba(59, 130, 246, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.flow-step-core::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 76px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 0 0 14px 14px;
  background: linear-gradient(90deg, #2a75ff, #3f90ff);
}

.flow-step-head {
  display: grid;
  gap: 14px;
}

.flow-step-icon,
.result-icon {
  width: 48px;
  height: 48px;
  flex: none;
  display: inline-block;
  border-radius: 15px;
  border: 1px solid rgba(37, 109, 255, 0.1);
  background-color: #f3f8ff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  box-shadow: 0 8px 16px rgba(19, 44, 73, 0.065);
}

.flow-step-icon-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 8.5h10M7 12h7m-7 6.5l-3.5 2V6.8C3.5 5.81 4.31 5 5.3 5h13.4c.99 0 1.8.81 1.8 1.8v10.4c0 .99-.81 1.8-1.8 1.8H7z' stroke='%23256DFF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.flow-step-icon-engine {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='7' y='7' width='10' height='10' rx='2' stroke='%23256DFF' stroke-width='1.8'/%3E%3Cpath d='M9 1.5v3M15 1.5v3M9 19.5v3M15 19.5v3M1.5 9h3M1.5 15h3M19.5 9h3M19.5 15h3' stroke='%23256DFF' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.flow-step-icon-review {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15.5 8.5a3.5 3.5 0 11-7 0 3.5 3.5 0 017 0zM5 18c.78-2.6 2.88-4 7-4 1.11 0 2.1.1 2.97.33M17 17l2 2 4-4' stroke='%23256DFF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.flow-step-copy {
  display: grid;
  gap: 8px;
}

.flow-step-label {
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.flow-step-copy h4 {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.32;
}

.flow-step-number {
  color: var(--text-primary);
  font-weight: 700;
}

.flow-step-copy p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.62;
  font-size: 0.92rem;
}

.flow-link {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.flow-link span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(66, 97, 132, 0.48);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 63, 102, 0.08);
  box-shadow: 0 8px 18px rgba(19, 44, 73, 0.065);
  font-size: 1rem;
  line-height: 1;
}

.flow-step-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 63, 102, 0.08);
}

.flow-signal {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 109, 255, 0.14);
  background: rgba(248, 251, 255, 0.98);
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 600;
}

.flow-signal::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.flow-signal-control::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 2.5l5.5 2.1v4.5c0 3.1-2 5.9-5.5 7.8-3.5-1.9-5.5-4.7-5.5-7.8V4.6L10 2.5z' stroke='%23256DFF' stroke-width='1.7' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.flow-signal-review::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M13.5 6.5a3.5 3.5 0 11-7 0 3.5 3.5 0 017 0zM3.5 16c.7-2.2 2.4-3.5 6.5-3.5s5.8 1.3 6.5 3.5' stroke='%23256DFF' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.flow-signal-knowledge::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4 4.5h12v10.2c0 .72-.58 1.3-1.3 1.3H5.3A1.3 1.3 0 014 14.7V4.5zM6.8 4.5V3.2h6.4v1.3' stroke='%23256DFF' stroke-width='1.7' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.flow-results-shell {
  position: relative;
  padding-top: 30px;
}

.flow-results-shell::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 18px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(59, 129, 246, 0.38), rgba(59, 129, 246, 0.12));
}

.flow-results-shell::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 18px;
  height: 2px;
  background: rgba(18, 63, 102, 0.08);
}

.flow-results {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(18, 63, 102, 0.07);
  box-shadow: 0 12px 24px rgba(19, 44, 73, 0.045);
}

.result-card-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(37, 109, 255, 0.12);
  background: rgba(248, 251, 255, 0.96);
  color: var(--brand);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.result-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -30px;
  width: 2px;
  height: 30px;
  transform: translateX(-50%);
  background: rgba(18, 63, 102, 0.08);
}

.result-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.result-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background-color: #ffffff;
  border-color: rgba(18, 63, 102, 0.08);
  background-size: 18px 18px;
}

.result-icon-deliverable {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 3h6l4 4v12a2 2 0 01-2 2H8a2 2 0 01-2-2V5a2 2 0 012-2zM14 3v5h5M9 13h6M9 17h6' stroke='%23657A99' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.result-icon-knowledge {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cellipse cx='12' cy='6' rx='6.5' ry='2.8' stroke='%23657A99' stroke-width='1.7'/%3E%3Cpath d='M5.5 6v6c0 1.55 2.91 2.8 6.5 2.8s6.5-1.25 6.5-2.8V6M5.5 12v6c0 1.55 2.91 2.8 6.5 2.8s6.5-1.25 6.5-2.8v-6' stroke='%23657A99' stroke-width='1.7'/%3E%3C/svg%3E");
}

.result-icon-action {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 4l1.5 4.5L18 10l-4.5 1.5L12 16l-1.5-4.5L6 10l4.5-1.5L12 4zM18.5 16.5l.7 2 .7-2 2-.7-2-.7-.7-2-.7 2-2 .7 2 .7z' stroke='%23657A99' stroke-width='1.7' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.result-card strong {
  font-size: 0.95rem;
  line-height: 1.34;
}

.result-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.88rem;
}

.tabs-panel {
  display: grid;
  gap: 24px;
}

.aip-stage-rail .tabs-panel {
  min-height: 100%;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.94)),
    radial-gradient(circle at 78% 18%, rgba(127, 184, 255, 0.14), transparent 26%);
}

.gateway-stage-rail .tabs-panel {
  min-height: 100%;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 249, 252, 0.96)),
    radial-gradient(circle at 82% 18%, rgba(108, 92, 255, 0.12), transparent 24%);
}

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

.tab {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(248, 251, 255, 0.9);
  color: var(--text-secondary);
}

.tab.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #0a2540, #16395f);
  box-shadow: 0 10px 22px rgba(10, 37, 64, 0.14);
}

.tab-stage {
  min-height: 0;
}

.aip-stage-rail .tab-stage {
  position: relative;
}

.tab-screen {
  display: none;
  gap: 20px;
}

.tab-screen.is-active {
  display: grid;
}

.aip-shot-caption {
  display: grid;
  gap: 10px;
  padding: 0 4px;
}

.aip-stage-rail .aip-shot-caption {
  max-width: min(430px, calc(100% - 72px));
  margin-top: 12px;
  margin-left: 40px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
  box-shadow: 0 20px 42px rgba(10, 37, 64, 0.08);
  position: relative;
  z-index: 2;
}

.aip-shot-caption strong {
  font-size: 1.02rem;
  line-height: 1.36;
}

.aip-shot-caption p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.66;
}

.gateway-shot-caption {
  display: grid;
  gap: 10px;
  padding: 0 4px;
}

.gateway-stage-rail .gateway-shot-caption {
  max-width: min(470px, calc(100% - 72px));
  margin-top: 12px;
  margin-left: 36px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
  box-shadow: 0 20px 42px rgba(10, 37, 64, 0.08);
  position: relative;
  z-index: 2;
}

.gateway-shot-caption strong {
  font-size: 1.02rem;
  line-height: 1.4;
}

.gateway-shot-caption p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.66;
}

.capability-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.capability-card-rail {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.96));
}

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

.capability-list li {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 122px;
  padding: 16px 16px 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  box-shadow: 0 12px 24px rgba(10, 37, 64, 0.04);
}

.capability-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7fb8ff;
}

.capability-list li:nth-child(1),
.capability-list li:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 248, 255, 0.98));
}

.capability-list li:nth-child(2),
.capability-list li:nth-child(5) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 255, 0.96));
}

.capability-list strong {
  display: block;
  padding-left: 18px;
  font-size: 0.94rem;
  line-height: 1.42;
}

.capability-list span {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.58;
}

.capability-card-rail .section-actions {
  margin-top: 4px;
}

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

.activity-card {
  overflow: hidden;
}

.activity-visual {
  aspect-ratio: 1.1 / 0.82;
  background-size: cover;
  background-position: center;
}

.activity-visual-one {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.34), transparent 18%),
    linear-gradient(135deg, #002e70, #1b88ff 62%, #eff6ff);
}

.activity-visual-two {
  background:
    linear-gradient(0deg, rgba(7, 19, 39, 0.2), rgba(7, 19, 39, 0.2)),
    linear-gradient(135deg, #264968, #c8dfff 58%, #ffffff);
}

.activity-visual-three {
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.28), transparent 15%),
    linear-gradient(135deg, #0d3b55, #4b97b8 56%, #edf7ff);
}

.activity-meta {
  padding: 20px 20px 24px;
  display: grid;
  gap: 10px;
}

.activity-meta span,
.news-tag {
  width: fit-content;
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text-primary);
  background: rgba(242, 246, 251, 0.96);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.activity-meta h3 {
  margin: 0;
  font-size: 1rem;
}

.news-card,
.choice-card,
.pillar-card,
.about-card {
  padding: 32px;
}

.choice-card {
  display: grid;
  align-content: start;
  gap: 20px;
}

.choice-card .button {
  margin-top: auto;
}

.news-card {
  display: grid;
  gap: 18px;
}

.news-date {
  color: var(--brand);
  font-weight: 700;
}

.news-card p,
.about-card p,
.pillar-card p {
  margin: 0;
}

.about-card {
  display: grid;
  gap: 18px;
}

.site-footer {
  padding: 36px 0 124px;
  background: #edf3f8;
  border-top: 1px solid rgba(18, 63, 102, 0.06);
}

.consult-dock {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  gap: 12px;
}

.consult-card {
  display: grid;
  gap: 4px;
  min-width: 176px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 20px 40px rgba(10, 37, 64, 0.12);
  color: var(--text-primary);
}

.consult-card strong {
  font-size: 0.86rem;
}

.consult-card small {
  color: var(--text-secondary);
  font-size: 0.74rem;
}

.consult-card-primary {
  border-color: rgba(10, 37, 64, 0.2);
  background: linear-gradient(135deg, #0a2540, #16395f);
  color: #ffffff;
}

.consult-card-primary small {
  color: rgba(255, 255, 255, 0.86);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
}

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

.footer-contact p,
.footer-meta p {
  margin: 0;
  color: var(--text-secondary);
}

.footer-contact strong {
  margin-right: 10px;
  color: var(--text-primary);
}

.footer-meta {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.lead-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 40;
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 26, 45, 0.42);
  backdrop-filter: blur(8px);
}

.lead-dialog {
  position: relative;
  width: min(620px, 100%);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 30px;
  border: 1px solid rgba(18, 63, 102, 0.08);
  box-shadow: var(--shadow-lg);
  padding: 32px;
}

.lead-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--bg-soft);
  color: var(--text-primary);
  font-size: 1.5rem;
}

.lead-state {
  display: none;
}

.lead-state.is-active {
  display: block;
}

.lead-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.lead-heading h2 {
  margin: 0;
  font-size: 1.5rem;
}

.lead-heading p {
  margin: 0;
  color: var(--text-secondary);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

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

.lead-form label > span {
  color: var(--text-primary);
  font-weight: 600;
}

.form-actions .button span {
  color: inherit;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(18, 63, 102, 0.12);
  background: #ffffff;
  padding: 14px 16px;
  color: var(--text-primary);
}

.lead-form textarea {
  min-height: 118px;
  resize: vertical;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.checkbox-row input {
  margin-top: 4px;
  min-height: unset;
  width: 16px;
  height: 16px;
}

.form-status {
  margin: 0;
  min-height: 20px;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: var(--success);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.form-actions .button[disabled] {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.lead-success-state {
  text-align: center;
}

.success-badge {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--success), #2dc27f);
}

.lead-success-state h2 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.lead-success-state p {
  margin: 0 auto 22px;
  max-width: 420px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.is-scroll-locked {
  overflow: hidden;
}

/* Stripe-inspired visual polish */
:root {
  --bg-soft: #edf3ff;
  --bg-soft-alt: #eef2ff;
  --line-soft: rgba(10, 37, 64, 0.09);
  --line-strong: rgba(10, 37, 64, 0.15);
  --brand: #635bff;
  --brand-hover: #5549eb;
  --brand-soft: rgba(99, 91, 255, 0.08);
  --brand-accent: #8a7dff;
  --shadow-lg: 0 34px 72px rgba(10, 37, 64, 0.12);
  --shadow-md: 0 20px 44px rgba(10, 37, 64, 0.08);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

body {
  background:
    radial-gradient(circle at 14% -2%, rgba(99, 91, 255, 0.16), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(0, 214, 255, 0.12), transparent 24%),
    radial-gradient(circle at 56% 16%, rgba(255, 190, 92, 0.1), transparent 18%),
    linear-gradient(180deg, #eef4ff 0%, #ffffff 252px, var(--bg-page) 100%);
}

.site-header {
  background: rgba(246, 249, 252, 0.74);
  border-bottom: 1px solid rgba(10, 37, 64, 0.05);
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.04);
}

.site-nav a::after {
  height: 2px;
  background: linear-gradient(90deg, var(--brand), #00d4ff);
}

.lang-switch {
  border-color: rgba(10, 37, 64, 0.07);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.05);
}

.lang-chip.is-active {
  box-shadow:
    inset 0 0 0 1px rgba(99, 91, 255, 0.08),
    0 8px 18px rgba(10, 37, 64, 0.07);
}

.button {
  min-height: 46px;
  padding: 0 20px;
  font-weight: 620;
}

.button-primary {
  background: linear-gradient(135deg, #0a2540, #173b67);
  box-shadow: 0 14px 28px rgba(10, 37, 64, 0.15);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #102a4c, #1a4376);
  box-shadow: 0 18px 34px rgba(10, 37, 64, 0.18);
}

.button-secondary {
  border-color: rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(10, 37, 64, 0.05);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(99, 91, 255, 0.14);
  box-shadow: 0 14px 26px rgba(10, 37, 64, 0.08);
}

.hero {
  padding: 42px 0 0;
  min-height: calc(100svh - 76px);
}

.hero::before {
  background:
    radial-gradient(circle at 50% 30%, rgba(141, 174, 255, 0.18), transparent 24%),
    radial-gradient(circle at 16% 72%, rgba(204, 223, 255, 0.22), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(189, 221, 255, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(244, 247, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 48%, rgba(244, 248, 252, 0.94) 100%);
}

.hero::after {
  content: none;
}

.hero-grid {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 48%),
    linear-gradient(130deg, rgba(103, 152, 255, 0.08), rgba(255, 255, 255, 0) 28%, rgba(188, 219, 255, 0.08) 72%, rgba(103, 152, 255, 0.04));
  clip-path: none;
}

.hero-grid::before,
.hero-grid::after {
  content: none;
}

.hero-glow-left {
  background: radial-gradient(circle at 18% 42%, rgba(150, 188, 255, 0.18), transparent 28%);
}

.hero-glow-right {
  background: radial-gradient(circle at 84% 24%, rgba(188, 217, 255, 0.18), transparent 30%);
}

.hero-layout {
  align-content: start;
  min-height: clamp(720px, calc(100svh - 110px), 940px);
  gap: 40px;
}

.hero-copy-centered {
  max-width: 1280px;
  padding-top: clamp(70px, 8.6vw, 132px);
  transform: none;
}

.hero-copy h1 {
  max-width: 100%;
  margin-top: 30px;
  font-size: clamp(5.2rem, 8vw, 8.6rem);
  line-height: 1;
  color: #102645;
  white-space: nowrap;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3),
    0 18px 34px rgba(135, 171, 232, 0.14);
}

.hero-subtitle {
  max-width: 48ch;
  margin-top: 14px;
  font-size: clamp(1.18rem, 1.7vw, 1.62rem);
  font-weight: 600;
  line-height: 1.5;
  color: #637b9c;
  white-space: nowrap;
}

.hero-actions {
  gap: 24px;
  margin-top: 58px;
}

.hero-actions .button {
  box-shadow: inherit;
}

.hero-primary-action,
.hero-secondary-action {
  min-width: 280px;
  min-height: 64px;
  font-size: 1.04rem;
}

.hero-preview-shell {
  margin-top: 100px;
}

.hero-tags span,
.scene-tags span,
.matrix-hero-signals span,
.flow-signal,
.activity-meta span,
.news-tag {
  border-color: rgba(99, 91, 255, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 18px rgba(10, 37, 64, 0.04);
}

.section-products {
  background:
    radial-gradient(circle at 14% 18%, rgba(99, 91, 255, 0.08), transparent 18%),
    radial-gradient(circle at 88% 24%, rgba(0, 214, 255, 0.06), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.92));
}

.section-station {
  background:
    linear-gradient(180deg, rgba(246, 249, 252, 0.9), rgba(255, 255, 255, 0.98) 18%, rgba(246, 249, 252, 0.84));
}

.section-gateway {
  background:
    radial-gradient(circle at 82% 12%, rgba(99, 91, 255, 0.05), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.94));
}

.section-aip {
  background:
    radial-gradient(circle at 84% 12%, rgba(99, 91, 255, 0.05), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.94));
}

.matrix-card,
.news-card,
.choice-card,
.pillar-card,
.activity-card,
.about-card,
.flow-card,
.capability-card,
.matrix-hero,
.device-stage,
.tabs-panel,
.feature-copy-rail .feature-list article,
.lead-dialog,
.consult-card {
  border-color: rgba(10, 37, 64, 0.07);
  box-shadow: 0 22px 52px rgba(10, 37, 64, 0.07);
}

.matrix-card,
.news-card,
.choice-card,
.pillar-card,
.activity-card,
.about-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 255, 0.96));
}

.matrix-card::before {
  background: linear-gradient(90deg, #0a2540, var(--brand), #00d4ff 78%);
}

.matrix-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.95)),
    radial-gradient(circle at top right, rgba(99, 91, 255, 0.08), transparent 28%);
}

.matrix-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), #00d4ff 62%, #ffb86b);
}

.matrix-hero-launch {
  border-color: rgba(99, 91, 255, 0.12);
  background: linear-gradient(180deg, rgba(245, 243, 255, 0.98), rgba(238, 245, 255, 0.96));
}

.matrix-hero-stage {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(246, 249, 255, 0.16));
  box-shadow: inset 0 0 0 1px rgba(99, 91, 255, 0.05);
}

.matrix-stage-gradient-station {
  background:
    radial-gradient(circle at 18% 100%, rgba(99, 91, 255, 0.22), transparent 34%),
    radial-gradient(circle at 100% 16%, rgba(0, 214, 255, 0.16), transparent 30%);
}

.matrix-stage-gradient-aip {
  background:
    radial-gradient(circle at 18% 100%, rgba(99, 91, 255, 0.24), transparent 34%),
    radial-gradient(circle at 100% 78%, rgba(255, 184, 107, 0.22), transparent 30%);
}

.matrix-stage-gradient-gateway {
  background:
    radial-gradient(circle at 16% 14%, rgba(99, 91, 255, 0.2), transparent 24%),
    radial-gradient(circle at 88% 86%, rgba(0, 214, 255, 0.13), transparent 28%);
}

.matrix-stage-main-device img,
.matrix-stage-main-aip img,
.matrix-stage-main-gateway img,
.media-card {
  background: linear-gradient(180deg, #fbfcff, #f4f8ff);
}

.feature-copy-rail .feature-list article:first-child,
.gateway-stage-rail .tabs-panel,
.aip-stage-rail .tabs-panel,
.flow-stage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 249, 255, 0.97)),
    radial-gradient(circle at top right, rgba(99, 91, 255, 0.06), transparent 26%);
}

.station-visual-rail::before,
.gateway-stage-rail::before,
.aip-stage-rail::before {
  background:
    radial-gradient(circle at center, rgba(99, 91, 255, 0.12), transparent 64%),
    radial-gradient(circle at 74% 24%, rgba(0, 214, 255, 0.08), transparent 18%);
}

.device-stage,
.tabs-panel,
.feature-copy,
.capability-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
}

.media-card {
  border-color: rgba(10, 37, 64, 0.07);
}

.flow-stage::before,
.flow-results-shell::before {
  background: linear-gradient(180deg, rgba(99, 91, 255, 0.5), rgba(99, 91, 255, 0.12));
}

.flow-request {
  border-color: rgba(10, 37, 64, 0.08);
}

.flow-request-label {
  color: var(--brand);
}

.flow-step {
  border-color: rgba(10, 37, 64, 0.07);
}

.flow-step-core {
  border-color: rgba(99, 91, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 249, 255, 0.98)),
    radial-gradient(circle at top center, rgba(99, 91, 255, 0.12), transparent 46%);
  box-shadow:
    0 18px 34px rgba(99, 91, 255, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.flow-step-core::before {
  background: linear-gradient(90deg, var(--brand), #00d4ff);
}

.flow-step-icon,
.result-icon {
  border-color: rgba(99, 91, 255, 0.12);
  background-color: #f4f5ff;
}

.flow-link span {
  color: rgba(99, 91, 255, 0.56);
}

.result-card {
  border-color: rgba(10, 37, 64, 0.07);
  background: rgba(255, 255, 255, 0.99);
}

.tab {
  border-color: rgba(10, 37, 64, 0.08);
  background: rgba(248, 250, 255, 0.96);
}

.tab.is-active {
  background: linear-gradient(135deg, #635bff, #4e8cff);
  box-shadow: 0 12px 24px rgba(99, 91, 255, 0.22);
}

.signal-frame {
  border-color: rgba(10, 37, 64, 0.07);
  background:
    linear-gradient(rgba(205, 219, 233, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205, 219, 233, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #f7f9ff);
  box-shadow: 0 26px 58px rgba(10, 37, 64, 0.08);
}

.signal-stage {
  background:
    radial-gradient(102.83% 103.24% at 49.98% 104.51%, #ffb451 0, #efc680 16.73%, #b4d8ff 33.03%, #d2e8ff 43.38%, #fafdff 59.16%, #fdfeff 76.24%, #f8fafd 100%);
}

.signal-tool {
  border-color: rgba(99, 91, 255, 0.18);
}

.signal-tool::before,
.signal-tool::after {
  background: var(--brand);
}

.news-date {
  color: var(--brand);
}

.site-footer {
  background: linear-gradient(180deg, #eef4fb, #eaf1f8);
}

.consult-dock {
  display: none;
}

.consult-card {
  min-width: 240px;
  padding: 18px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
}

.consult-card strong {
  font-size: 1rem;
}

.consult-card small {
  font-size: 0.82rem;
}

.consult-card-primary {
  border-color: rgba(10, 37, 64, 0.16);
  background: linear-gradient(135deg, #0a2540, #173b67);
}

.lead-dialog {
  background: rgba(255, 255, 255, 0.98);
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  border-color: rgba(10, 37, 64, 0.1);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  outline: none;
  border-color: rgba(99, 91, 255, 0.32);
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.08);
}

/* Product section balance */
.station-editorial,
.gateway-editorial,
.aip-editorial {
  align-items: stretch;
}

.station-copy-rail,
.gateway-copy-rail,
.aip-copy-rail {
  min-height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
}

.station-heading,
.gateway-heading,
.aip-heading {
  padding-right: 8px;
}

.feature-copy-rail,
.capability-card-rail {
  min-height: 100%;
  display: grid;
  align-content: start;
}

.feature-copy-rail {
  padding: 26px;
  border: 1px solid rgba(10, 37, 64, 0.07);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96)),
    radial-gradient(circle at top right, rgba(99, 91, 255, 0.05), transparent 24%);
  box-shadow: 0 22px 52px rgba(10, 37, 64, 0.07);
  grid-template-rows: minmax(0, 1fr) auto auto;
}

.feature-copy-rail .feature-list {
  align-content: start;
}

.feature-copy-rail .section-actions,
.capability-card-rail .section-actions {
  margin-top: auto;
}

.capability-card-rail {
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.capability-list {
  align-content: start;
}

/* Core pillars redesign */
.pillar-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  grid-template-rows: auto auto;
  gap: 12px;
  min-height: 168px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(10, 37, 64, 0.07);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 255, 0.97)),
    radial-gradient(circle at top right, rgba(99, 91, 255, 0.06), transparent 28%);
  box-shadow: 0 18px 40px rgba(10, 37, 64, 0.06);
}

.pillar-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), #00d4ff 68%, #ffb86b);
}

.pillar-card::before {
  position: absolute;
  right: 20px;
  top: 16px;
  font-size: 3rem;
  font-weight: 740;
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(99, 91, 255, 0.08);
}

.pillar-card:nth-child(1)::before {
  content: "01";
}

.pillar-card:nth-child(2)::before {
  content: "02";
}

.pillar-card:nth-child(3)::before {
  content: "03";
}

.pillar-card h3 {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  padding-top: 4px;
  font-size: clamp(1.48rem, 2vw, 1.82rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.pillar-card p {
  position: relative;
  z-index: 1;
  max-width: 22ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.58;
  color: var(--text-secondary);
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    justify-content: space-between;
  }

  .site-nav {
    justify-content: flex-start;
    padding-bottom: 16px;
  }

  .hero-layout,
  .feature-split,
  .aip-layout,
  .station-editorial,
  .gateway-editorial,
  .aip-editorial {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 14px;
    min-height: clamp(520px, calc(100svh - 220px), 680px);
  }

  .hero-trust-grid,
  .hero-metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid,
  .choice-grid,
  .news-grid,
  .pillar-grid,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .matrix-editorial {
    grid-template-columns: 1fr;
  }

  .matrix-showcase {
    grid-template-columns: 1fr;
  }

  .matrix-side-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .matrix-card-station,
  .matrix-card-aip,
  .matrix-summary-card {
    grid-column: auto;
    grid-row: auto;
  }

  .matrix-card-station {
    min-height: 0;
  }

  .matrix-card-visual-station {
    grid-template-columns: 1fr;
  }

  .matrix-hero {
    min-height: auto;
  }

  .matrix-preview-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .matrix-preview-strip .matrix-mini-card:nth-child(3) {
    display: block;
  }

  .feature-copy-rail .feature-list {
    grid-template-columns: 1fr;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .gateway-stage-rail .gateway-shot-caption,
  .aip-stage-rail .aip-shot-caption {
    max-width: none;
    margin-left: 0;
  }

  .signal-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-active-rail {
    display: none;
  }

  .signal-stat:nth-child(3),
  .signal-stat:nth-child(4) {
    border-top: 1px solid rgba(145, 177, 212, 0.32);
  }

  .signal-stat:nth-child(3) {
    border-left: 0;
  }

.flow-stage {
    padding: 24px 20px 24px;
}

.flow-stage::before {
    top: 78px;
    height: 40px;
}

  .flow-request {
    max-width: 100%;
  }

  .flow-top {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding-top: 0;
  }

  .flow-link {
    min-height: 42px;
  }

  .flow-link span {
    transform: rotate(90deg);
  }

  .flow-step,
  .flow-step-core {
    min-height: 0;
  }

  .flow-step-core::before {
    width: 84px;
  }

.flow-results-shell {
    padding-top: 22px;
}

  .flow-results-shell::before,
  .flow-results-shell::after {
    display: none;
  }

  .flow-results {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .result-card::before {
    display: none;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    grid-template-areas:
      "brand brand actions menu"
      "nav nav nav nav";
    gap: 12px 14px;
  }

  .mobile-menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 4px 0 10px;
    justify-self: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions .button {
    display: inline-flex;
    min-height: 40px;
    padding: 0 16px;
  }

  .header-actions > .lang-switch {
    display: none;
  }

  .lang-switch-nav {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 6px;
  }

  .hero {
    padding-top: 28px;
    min-height: auto;
  }

  .hero-announcement {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.88rem;
    gap: 10px;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 9vw, 4.8rem);
    white-space: normal;
  }

  .hero-subtitle {
    max-width: 24ch;
    font-size: 1rem;
    white-space: normal;
  }

  .hero-copy-centered {
    max-width: 760px;
    padding-top: 48px;
    transform: none;
  }

  .hero-layout {
    min-height: auto;
    gap: 28px;
  }

  .hero-actions {
    width: 100%;
    gap: 14px;
  }

  .hero-primary-action,
  .hero-secondary-action {
    min-width: 0;
    flex: 1 1 220px;
  }

  .hero-preview-shell {
    width: 100%;
  }

  .hero-preview-browser {
    border-radius: 24px 24px 0 0;
  }

  .hero-preview-stage {
    min-height: 220px;
  }

  .hero-trust-grid,
  .hero-metric-grid {
    grid-template-columns: 1fr;
  }

  .signal-intro-band {
    padding: 28px 24px 22px;
  }

  .signal-stage {
    min-height: 520px;
  }

  .signal-toolbar {
    right: 18px;
    top: 18px;
  }

  .signal-artwork-frame {
    inset: 0;
  }

  .knowledge-canvas {
    grid-template-columns: 1fr;
  }

  .media-card-aip,
  .media-card-gateway {
    aspect-ratio: 16 / 11;
  }

  .matrix-card-station,
  .matrix-card-aip,
  .matrix-summary-card {
    padding: 26px;
  }

  .matrix-side-rail {
    grid-template-columns: 1fr;
  }

  .matrix-hero {
    padding: 24px;
  }

  .matrix-hero-stage {
    min-height: 276px;
  }

  .matrix-hero-station .matrix-hero-stage,
  .matrix-hero-gateway .matrix-hero-stage,
  .matrix-hero-aip .matrix-hero-stage {
    min-height: 276px;
  }

  .matrix-stage-main-device {
    inset: 8px;
  }

  .matrix-stage-main-aip,
  .matrix-stage-main-gateway {
    inset: 8px;
  }

  .matrix-hero-station {
    min-height: 0;
  }

  .matrix-hero-gateway,
  .matrix-hero-aip {
    min-height: auto;
  }

  .matrix-preview-strip {
    grid-template-columns: 1fr;
  }

  .station-editorial,
  .gateway-editorial,
  .aip-editorial {
    gap: 24px;
  }

  .station-gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    justify-items: start;
  }

  .consult-dock {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 32px, 1000px);
  }

  .flow-card-heading h3 {
    width: auto;
    max-width: 9ch;
    white-space: normal;
    text-wrap: balance;
  }

  .site-header {
    padding: 6px 0;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-stack {
    gap: 4px;
  }

  .brand-og {
    height: 15px;
  }

  .brand-tech {
    height: 18px;
  }

  .brand-caption {
    display: none;
  }

  .header-actions .button {
    width: auto;
    min-height: 38px;
    padding: 0 14px;
  }

  .header-actions .header-utility {
    display: none;
  }

  .hero-copy-centered {
    padding-top: 38px;
  }

  .hero-announcement {
    max-width: 100%;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 11vw, 4rem);
    line-height: 0.96;
  }

  .hero-subtitle {
    max-width: 18ch;
    font-size: 0.98rem;
    margin-top: 22px;
  }

  .hero-actions,
  .section-actions,
  .form-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .matrix-hero-head {
    align-items: flex-start;
  }

  .matrix-hero-launch {
    width: 48px;
    height: 48px;
  }

  .matrix-hero-stage {
    min-height: 228px;
  }

  .matrix-hero-station .matrix-hero-stage,
  .matrix-hero-gateway .matrix-hero-stage,
  .matrix-hero-aip .matrix-hero-stage {
    min-height: 228px;
  }

  .matrix-stage-float-gateway {
    display: none;
  }

  .matrix-stage-main-device {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0;
  }

  .hero-tags,
  .scene-tags {
    gap: 10px;
  }

  .hero-tags span,
  .scene-tags span {
    width: 100%;
    justify-content: center;
  }

  .scanner-chip {
    justify-self: stretch;
    width: 100%;
  }

  .media-card-main,
  .media-card-thumb,
  .media-card-aip,
  .media-card-gateway {
    aspect-ratio: auto;
    min-height: 220px;
  }

  .station-gallery-thumbs {
    grid-auto-flow: column;
    grid-auto-columns: minmax(124px, 1fr);
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-layout {
    min-height: 420px;
  }

  .hero-preview-toolbar {
    height: 54px;
    padding: 0 16px;
    gap: 12px;
  }

  .hero-preview-dots span {
    width: 10px;
    height: 10px;
  }

  .hero-preview-stage {
    min-height: 180px;
  }

  .hero-preview-sidebar {
    left: 16px;
    top: 28px;
    width: 82px;
    height: 112px;
  }

  .hero-preview-header-line {
    left: 114px;
    top: 28px;
    width: 128px;
  }

  .hero-preview-stat-grid {
    left: 114px;
    top: 64px;
    width: 146px;
    gap: 8px;
  }

  .hero-preview-stat {
    height: 48px;
    border-radius: 14px;
  }

  .hero-preview-map {
    left: 272px;
    top: 56px;
    width: 86px;
    height: 86px;
  }

  .hero-preview-panel {
    right: 16px;
    width: 82px;
    height: 38px;
    border-radius: 12px;
  }

  .hero-preview-panel-primary {
    top: 56px;
  }

  .hero-preview-panel-secondary {
    top: 104px;
  }

  .section {
    padding: 72px 0;
  }

  .signal-stats-row {
    grid-template-columns: 1fr;
  }

  .signal-stat {
    min-height: 0;
  }

  .signal-stat + .signal-stat {
    border-left: 0;
    border-top: 1px solid rgba(145, 177, 212, 0.32);
  }

  .signal-stage {
    min-height: 420px;
  }

  .signal-tool {
    width: 38px;
    height: 38px;
  }

  .signal-tool::before,
  .signal-tool::after {
    height: 14px;
  }

  .signal-tool::before {
    left: 14px;
  }

  .signal-tool::after {
    right: 14px;
  }

  .signal-artwork-frame {
    inset: 0;
  }

  .consult-dock {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consult-card {
    min-width: 0;
  }

  .device-stage,
  .tabs-panel,
  .feature-copy,
  .capability-card,
  .matrix-card,
  .news-card,
  .choice-card,
  .pillar-card,
  .about-card {
    padding: 22px;
  }

  .lead-dialog {
    padding: 24px;
  }

  .matrix-card-station,
  .matrix-card-aip,
  .matrix-summary-card {
    padding: 22px;
  }

  .matrix-card-visual-station,
  .matrix-card-visual-aip {
    gap: 12px;
  }

  .matrix-preview,
  .matrix-mini-card {
    border-radius: 22px;
  }

.flow-stage {
    padding: 20px 16px 20px;
    border-radius: 26px;
}

  .flow-request {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 22px;
  }

  .flow-request-label {
    padding-right: 0;
    border-right: 0;
  }

.flow-stage::before {
    top: 102px;
    height: 28px;
}

.flow-step {
    padding: 20px 16px;
    border-radius: 20px;
}

.flow-step-core {
    padding: 22px 16px 18px;
}

  .flow-step-head {
    gap: 14px;
  }

  .flow-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .flow-step-copy h4 {
    font-size: 1rem;
  }

  .flow-step-copy p,
  .result-card p {
    font-size: 0.92rem;
  }

  .flow-step-signals {
    gap: 8px;
  }

  .flow-signal {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

.result-card {
  min-height: 0;
    padding: 16px 14px;
    border-radius: 18px;
}

  .result-card-head {
    gap: 12px;
  }

  .result-icon,
  .flow-link span {
    width: 38px;
    height: 38px;
  }
}
