:root {
  color-scheme: dark;
  --surface: #101415;
  --background: #071421;
  --background-deep: #050b10;
  --surface-container-lowest: #0b0f10;
  --surface-container-low: #111820;
  --surface-container: #151d29;
  --surface-container-high: #20262d;
  --surface-container-highest: #323537;
  --on-surface: #e8edf2;
  --on-surface-variant: #b8c0cb;
  --outline: #8e9196;
  --outline-variant: #33404d;
  --primary: #bbc8da;
  --secondary: #7bd0ff;
  --secondary-strong: #00a6e0;
  --tertiary: #d0bcff;
  --trust-green: #22c55e;
  --wait-amber: #f59e0b;
  --risk-red: #ef4444;
  --container: 1440px;
  --gutter: clamp(16px, 3vw, 40px);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-glow: 0 0 36px rgba(0, 166, 224, 0.18);
  --font-heading: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background-deep);
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 75% 12%, rgba(0, 166, 224, 0.16), transparent 28rem),
    radial-gradient(circle at 10% 18%, rgba(208, 188, 255, 0.1), transparent 22rem),
    linear-gradient(180deg, #071421 0%, #06131f 42%, #0a1113 100%);
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(124px, 1fr) auto minmax(124px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px var(--gutter);
  background: rgba(11, 15, 16, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: 156px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  color: var(--on-surface-variant);
  font-size: 15px;
}

.nav-links a {
  position: relative;
  transition: color 160ms ease;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  content: "";
  background: var(--secondary);
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--on-surface);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.menu-button {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--on-surface);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.section-shell {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 96px var(--gutter);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
  min-height: 790px;
  padding-top: 156px;
}

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

.eyebrow,
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--on-surface);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label {
  color: var(--secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.status-green {
  background: var(--trust-green);
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.65);
}

.status-blue {
  background: var(--secondary);
  box-shadow: 0 0 14px rgba(123, 208, 255, 0.65);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 800;
}

.hero h1 {
  text-wrap: balance;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
}

.danger-text {
  color: var(--risk-red);
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
}

p {
  margin: 0;
  color: var(--on-surface-variant);
}

.hero p,
.section-heading p,
.section-copy > p,
.engine-intro p,
.cta-section p {
  max-width: 720px;
  margin-top: 24px;
  font-size: clamp(17px, 1.5vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

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

.button-primary {
  background: linear-gradient(180deg, #67d5ff 0%, var(--secondary-strong) 100%);
  color: #021b26;
  box-shadow: 0 12px 32px rgba(0, 166, 224, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 14px 38px rgba(0, 166, 224, 0.34);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--on-surface);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(123, 208, 255, 0.45);
  background: rgba(123, 208, 255, 0.08);
}

.full-width {
  width: 100%;
}

.compact {
  min-height: 40px;
  padding-inline: 16px;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 540px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(123, 208, 255, 0.08), transparent 44%),
    rgba(11, 18, 32, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--shadow-glow);
}

.hero-visual::before {
  position: absolute;
  inset: 9% 12% 12% 10%;
  z-index: -1;
  content: "";
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(123, 208, 255, 0.04));
  filter: blur(2px);
  opacity: 0.42;
  transform: skewY(-7deg);
}

.hero-visual img {
  width: min(64%, 390px);
  max-height: 500px;
  object-fit: contain;
  border-radius: 44px;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.42));
}

.floating-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
}

.risk-chip {
  top: 44%;
  left: 8%;
  background: rgba(239, 68, 68, 0.19);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ff8b8b;
}

.wait-chip {
  right: 8%;
  bottom: 29%;
  background: rgba(245, 158, 11, 0.17);
  border: 1px solid rgba(245, 158, 11, 0.36);
  color: #ffc263;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.four-grid,
.scenario-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.bento-card,
.glass-card,
.query-card,
.recovery-panel,
.architecture-card,
.score-card,
.chart-card,
.brief-card,
.pilot-form,
.mobile-preview {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(11, 18, 32, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.bento-card {
  min-height: 204px;
  padding: 28px;
}

.featured-card {
  border-color: rgba(0, 166, 224, 0.42);
  background:
    radial-gradient(circle at 85% 12%, rgba(0, 166, 224, 0.16), transparent 180px),
    rgba(11, 18, 32, 0.72);
}

.icon-badge {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  color: var(--primary);
}

.small-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  margin: 0;
}

.icon-primary {
  color: var(--secondary);
  border-color: rgba(123, 208, 255, 0.32);
  background: rgba(0, 166, 224, 0.12);
}

.icon-wait {
  color: var(--wait-amber);
}

.icon-risk {
  color: #ff8b8b;
}

.bento-card h3,
.glass-card h3 {
  margin-bottom: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
}

.section-copy h2 span,
.engine-intro h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--tertiary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.metric-row > div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.metric {
  display: block;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 8px;
  color: var(--on-surface-variant);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.decision-panel {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(11, 18, 32, 0.76) 42%),
    radial-gradient(circle at 35% 28%, rgba(0, 166, 224, 0.2), transparent 240px),
    rgba(5, 12, 19, 0.6);
  overflow: hidden;
}

.phone-card {
  position: absolute;
  top: 52px;
  left: 12%;
  width: min(360px, 76%);
  padding: 78px 28px 28px;
  border: 4px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: #07101d;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.tilted {
  transform: rotate(-3deg);
}

.phone-speaker {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 86px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
}

.phone-icon {
  margin: 0 auto 24px;
}

.phone-card p {
  max-width: 200px;
  margin: 0 auto 28px;
  color: var(--on-surface);
  text-align: center;
}

.savings-row,
.query-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.savings-row span,
.query-row span {
  color: var(--on-surface-variant);
}

.progress-track {
  height: 8px;
  overflow: hidden;
  margin: 14px 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--secondary-strong), var(--secondary));
}

.decision-result {
  position: absolute;
  right: 0;
  bottom: 92px;
  width: 47%;
  min-width: 270px;
  padding: 24px;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 18, 32, 0.86);
}

.decision-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.decision-label {
  font-size: 14px;
  font-weight: 700;
}

.decision-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 800;
}

.chip-wait {
  color: var(--wait-amber);
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.34);
}

.chip-yes {
  color: var(--trust-green);
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.34);
}

.chip-no {
  color: #ff8b8b;
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid rgba(239, 68, 68, 0.34);
}

.intelligence-strip {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
  align-items: start;
  border: 1px solid rgba(123, 208, 255, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(11, 18, 32, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.intelligence-strip article h3 {
  margin-bottom: 12px;
}

.advisor-section {
  padding-bottom: 48px;
}

.advisor-showcase {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.85fr);
  gap: 32px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 0%, rgba(123, 208, 255, 0.12), transparent 280px),
    rgba(11, 18, 32, 0.62);
}

.dashboard-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: #060d14;
}

.dashboard-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.advisor-stack {
  display: grid;
  gap: 24px;
}

.glass-card {
  padding: 28px;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.card-title h3 {
  font-size: 23px;
}

.score-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 22px;
}

.score-row strong {
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1;
}

.score-row span {
  color: var(--on-surface);
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.mini-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.mini-tag.stable {
  color: var(--trust-green);
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.32);
}

.mini-tag.watchful {
  color: var(--wait-amber);
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.34);
}

.advisor-brief {
  display: grid;
  grid-template-columns: 1.1fr minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(32, 38, 45, 0.78);
}

.brief-copy p {
  margin-top: 18px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--on-surface);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--secondary);
  border-radius: 999px;
  color: var(--secondary);
  content: "";
  font-size: 12px;
  font-weight: 800;
}

.check-list li::after {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 6px;
  height: 9px;
  border-right: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
  content: "";
  transform: rotate(45deg);
}

.brief-card {
  padding: 28px;
  background: rgba(11, 18, 32, 0.82);
  transform: rotate(1deg);
  transition: transform 180ms ease;
}

.brief-card:hover {
  transform: rotate(0);
}

.brief-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brief-card h3 {
  font-size: 26px;
}

.brief-card h4 {
  margin: 20px 0 8px;
  color: var(--primary);
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-card ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--on-surface-variant);
}

.simulator-section {
  background:
    radial-gradient(circle at 70% 43%, rgba(0, 166, 224, 0.12), transparent 300px),
    transparent;
}

.scenario-grid {
  margin-bottom: 64px;
}

.scenario-card {
  min-height: 144px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(11, 18, 32, 0.66);
  color: var(--on-surface);
  text-align: left;
  font-size: 20px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.scenario-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--on-surface-variant);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-card:hover,
.scenario-card:focus-visible,
.scenario-card.active {
  border-color: rgba(123, 208, 255, 0.42);
  background: rgba(123, 208, 255, 0.08);
  transform: translateY(-2px);
}

.simulator-stage {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(36px, 8vw, 132px);
  min-height: 600px;
}

.query-card {
  padding: 28px;
}

.query-card h3 {
  margin-bottom: 22px;
}

.query-row {
  margin-top: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.decision-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.decision-tab {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--on-surface-variant);
  font-size: 12px;
  font-weight: 900;
}

.decision-tab.active[data-state="yes"] {
  color: var(--trust-green);
  border-color: rgba(34, 197, 94, 0.72);
  background: rgba(34, 197, 94, 0.12);
}

.decision-tab.active[data-state="wait"] {
  color: var(--wait-amber);
  border-color: rgba(245, 158, 11, 0.72);
  background: rgba(245, 158, 11, 0.12);
}

.decision-tab.active[data-state="no"] {
  color: #ff8b8b;
  border-color: rgba(239, 68, 68, 0.72);
  background: rgba(239, 68, 68, 0.12);
}

.mobile-preview {
  position: relative;
  width: min(100%, 430px);
  min-height: 560px;
  justify-self: center;
  padding: 78px 24px 24px;
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  background: #121717;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  width: 132px;
  height: 28px;
  border-radius: 0 0 14px 14px;
  background: rgba(255, 255, 255, 0.17);
  transform: translateX(-50%);
}

.outcome-card {
  display: grid;
  min-height: 178px;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(245, 158, 11, 0.46);
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.08);
  text-align: center;
}

.outcome-icon {
  color: var(--wait-amber);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
}

.outcome-card strong {
  color: var(--wait-amber);
  font-family: var(--font-heading);
  font-size: 42px;
}

.mobile-metrics {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
  margin-top: 16px;
}

.mobile-metrics > div,
.mobile-step {
  padding: 18px;
  border: 1px solid rgba(123, 208, 255, 0.22);
  border-radius: var(--radius-md);
  background: rgba(7, 20, 33, 0.86);
}

.mobile-metrics span,
.mobile-step span {
  display: block;
  margin-bottom: 8px;
  color: var(--on-surface-variant);
  font-size: 12px;
  font-weight: 800;
}

.mobile-metrics strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 25px;
}

.mobile-step {
  margin-top: 16px;
}

.mobile-step p {
  color: var(--on-surface);
}

.recovery-panel {
  padding: 42px;
}

.panel-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.panel-title-row p {
  margin-top: 8px;
}

.timeline {
  display: grid;
  gap: 26px;
  margin-top: 42px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 24px;
}

.timeline-item::before {
  position: absolute;
  top: 28px;
  bottom: -28px;
  left: 16px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.15);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-item > span {
  width: 20px;
  height: 20px;
  margin: 6px auto 0;
  border-radius: 999px;
  background: var(--surface-container-highest);
}

.timeline-item.completed > span {
  background: var(--trust-green);
}

.timeline-item.active > span {
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(123, 208, 255, 0.12);
}

.timeline-item > div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.timeline-item.active > div {
  border-color: rgba(123, 208, 255, 0.58);
  background: rgba(123, 208, 255, 0.08);
}

.timeline-item strong {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
}

.timeline-item h4 {
  margin: 10px 0;
  font-size: 22px;
}

.engine-intro {
  max-width: 900px;
  margin-bottom: 64px;
}

.engine-intro h2 {
  font-size: clamp(46px, 7vw, 90px);
}

.architecture-card {
  position: relative;
  display: grid;
  gap: 28px;
  overflow: hidden;
  padding: 32px;
}

.architecture-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.architecture-card-header .label {
  margin-bottom: 0;
  white-space: nowrap;
}

.architecture-card-header p {
  max-width: 590px;
  color: var(--on-surface-variant);
  font-size: 15px;
  line-height: 1.6;
  text-align: right;
}

.architecture-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  text-align: left;
}

.architecture-flow::before {
  position: absolute;
  z-index: 0;
  left: 6%;
  right: 6%;
  top: 50%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(123, 208, 255, 0.26), transparent);
}

.architecture-node {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 168px;
  align-content: space-between;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(7, 20, 33, 0.9);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.architecture-node:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -16px;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
  content: "";
  background: rgba(123, 208, 255, 0.7);
}

.architecture-node:not(:last-child)::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -19px;
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(123, 208, 255, 0.78);
  border-right: 2px solid rgba(123, 208, 255, 0.78);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

.architecture-node.core {
  border-color: rgba(123, 208, 255, 0.58);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 166, 224, 0.22), transparent 140px),
    linear-gradient(180deg, rgba(123, 208, 255, 0.1), rgba(255, 255, 255, 0.018)),
    rgba(7, 20, 33, 0.95);
  box-shadow:
    0 0 38px rgba(0, 166, 224, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.node-step {
  display: inline-flex;
  width: 40px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(123, 208, 255, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(123, 208, 255, 0.08);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.architecture-node.core .node-step {
  border-color: transparent;
  background: var(--secondary);
  color: #04202d;
}

.architecture-node strong {
  color: var(--on-surface);
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 800;
  line-height: 1.1;
}

.architecture-node small {
  display: block;
  margin-top: 14px;
  color: var(--on-surface-variant);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.architecture-node.core small {
  color: var(--secondary);
}

.engine-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.65fr);
  gap: 28px;
  margin-top: 28px;
}

.engine-grid .bento-card {
  min-height: 250px;
}

.score-card,
.chart-card {
  padding: 28px;
}

.score-ring {
  display: grid;
  position: relative;
  min-height: 270px;
  place-items: center;
}

.score-ring img {
  position: absolute;
  width: 210px;
  opacity: 0.96;
  filter: drop-shadow(0 0 24px rgba(123, 208, 255, 0.12));
}

.score-ring strong {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 54px;
  text-shadow: 0 4px 20px #000000;
}

.score-ring span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: var(--trust-green);
  font-weight: 800;
}

.variance-bar {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.variance-bar span,
.variance-bar strong {
  font-size: 14px;
}

.variance-bar strong {
  float: right;
  color: var(--on-surface);
}

.line-chart {
  width: 100%;
  min-height: 290px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.18);
}

.grid-line {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.projection {
  stroke: rgba(208, 188, 255, 0.72);
  stroke-dasharray: 5 8;
  stroke-width: 3;
}

.actual {
  stroke: var(--secondary-strong);
  stroke-width: 4;
}

.line-chart circle {
  fill: var(--secondary-strong);
  stroke: none;
}

.chart-tooltip rect {
  fill: rgba(11, 18, 32, 0.94);
  stroke: rgba(255, 255, 255, 0.14);
}

.chart-tooltip text {
  fill: var(--on-surface);
  font-size: 14px;
  font-weight: 800;
}

.chart-tabs {
  display: flex;
  gap: 8px;
}

.chart-tabs span {
  display: inline-flex;
  min-width: 48px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--on-surface);
  font-size: 13px;
}

.chart-tabs .active {
  outline: 1px solid var(--secondary-strong);
  color: var(--secondary);
}

.engine-grid .chart-card {
  grid-column: span 1;
}

.engine-grid .bento-card {
  grid-column: span 1;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: start;
}

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

.trust-grid article {
  min-height: 220px;
  padding: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--on-surface);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.16;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
  border: 1px solid rgba(123, 208, 255, 0.28);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 30% 0%, rgba(0, 166, 224, 0.18), transparent 360px),
    rgba(11, 18, 32, 0.7);
}

.pilot-form {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.pilot-form label {
  display: grid;
  gap: 8px;
  color: var(--on-surface);
  font-size: 13px;
  font-weight: 800;
}

.pilot-form input,
.pilot-form select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(5, 12, 19, 0.74);
  color: var(--on-surface);
  padding: 0 14px;
  outline: none;
}

.pilot-form input:focus,
.pilot-form select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(123, 208, 255, 0.12);
}

.form-note {
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 36px;
  padding: 64px var(--gutter) 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--surface-container-lowest);
}

.site-footer > div {
  max-width: 440px;
}

.site-footer img {
  width: 190px;
  margin-bottom: 20px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: start;
  color: var(--on-surface-variant);
  font-size: 14px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--secondary);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

@media (min-width: 980px) {
  .engine-grid .chart-card {
    grid-column: 2;
  }

  .engine-grid .bento-card:nth-last-child(2) {
    grid-column: 1;
  }

  .engine-grid .bento-card:nth-last-child(1) {
    grid-column: 2;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .four-grid,
  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .split-section,
  .advisor-showcase,
  .advisor-brief,
  .simulator-stage,
  .trust-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .decision-panel {
    min-height: 620px;
  }

  .phone-card {
    left: 7%;
  }

  .decision-result {
    right: 5%;
    width: 46%;
  }

  .intelligence-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .advisor-showcase {
    padding: 20px;
  }

  .dashboard-frame img {
    min-height: 280px;
  }

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

  .trust-grid article {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    width: 132px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 18px var(--gutter) 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(11, 15, 16, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 18px;
  }

  .nav-links a::after {
    display: none;
  }

  .section-shell {
    padding-block: 72px;
  }

  .hero {
    padding-top: 124px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-visual img {
    width: min(76%, 330px);
  }

  .floating-chip {
    position: static;
    margin: 8px;
  }

  .hero-visual {
    align-content: center;
  }

  .risk-chip {
    justify-self: start;
  }

  .wait-chip {
    justify-self: end;
  }

  .metric-row,
  .four-grid,
  .scenario-grid,
  .intelligence-strip,
  .engine-grid,
  .architecture-flow {
    grid-template-columns: 1fr;
  }

  .decision-panel {
    min-height: auto;
    padding: 24px;
  }

  .phone-card,
  .decision-result {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 0 auto;
  }

  .phone-card {
    transform: none;
  }

  .decision-result {
    margin-top: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
  }

  .architecture-flow {
    gap: 18px;
    min-height: auto;
  }

  .architecture-flow::before {
    display: none;
  }

  .architecture-card-header {
    display: grid;
    gap: 12px;
  }

  .architecture-card-header p {
    max-width: none;
    text-align: left;
  }

  .architecture-node {
    min-height: auto;
    grid-template-columns: auto minmax(0, 1fr);
    align-content: start;
    align-items: start;
    column-gap: 16px;
    padding: 18px;
  }

  .architecture-node:not(:last-child)::before,
  .architecture-node:not(:last-child)::after {
    display: none;
  }

  .architecture-node .node-step {
    grid-row: 1 / 3;
    margin-bottom: 0;
  }

  .architecture-node strong,
  .architecture-node small {
    grid-column: 2;
  }

  .architecture-node small {
    margin-top: 8px;
  }

  .engine-intro h2 {
    font-size: clamp(42px, 13vw, 72px);
  }

  .panel-title-row,
  .brief-card-header {
    flex-direction: column;
  }

  .recovery-panel,
  .architecture-card,
  .cta-section {
    padding: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .decision-tabs,
  .mobile-metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .bento-card,
  .glass-card,
  .query-card,
  .brief-card,
  .pilot-form {
    padding: 22px;
  }

  .advisor-showcase {
    padding: 14px;
  }

  .score-row strong {
    font-size: 44px;
  }

  .mobile-preview {
    min-height: auto;
    padding: 68px 16px 18px;
    border-width: 6px;
  }

  .timeline-item {
    grid-template-columns: 24px 1fr;
    gap: 16px;
  }

  .line-chart {
    min-height: 220px;
  }
}

/* Premium product-led refinement layer */
.mobile-nav-cta,
.mobile-sticky-cta {
  display: none;
}

.hero {
  min-height: 860px;
}

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

.hero p {
  max-width: 650px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(123, 208, 255, 0.24);
  border-radius: 999px;
  background: rgba(123, 208, 255, 0.08);
  color: var(--on-surface);
  font-size: 12px;
  font-weight: 800;
}

.hero-visual {
  min-height: 650px;
  padding: 28px;
}

.hero-os-frame {
  position: relative;
  width: 100%;
  min-height: 590px;
  isolation: isolate;
}

.hero-dashboard-shot {
  position: absolute;
  left: 0;
  top: 56px;
  width: 72%;
  height: 430px;
  object-fit: cover;
  object-position: left top;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.45));
  opacity: 0.82;
}

.hero-phone-shot {
  position: absolute;
  right: 2%;
  top: 18px;
  width: min(46%, 330px);
  max-height: 560px;
  object-fit: contain;
  border-radius: 38px;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.58));
}

.decision-node {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}

.node-yes {
  left: 8%;
  bottom: 78px;
  color: var(--trust-green);
  border: 1px solid rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.16);
}

.node-wait {
  left: 39%;
  top: 48%;
  color: var(--wait-amber);
  border: 1px solid rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.18);
}

.node-no {
  right: 6%;
  bottom: 86px;
  color: #ff8b8b;
  border: 1px solid rgba(239, 68, 68, 0.48);
  background: rgba(239, 68, 68, 0.18);
}

.confidence-orbit {
  position: absolute;
  z-index: 5;
  left: 9%;
  top: 20px;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border-radius: 999px;
  background: rgba(7, 20, 33, 0.8);
  box-shadow: 0 0 36px rgba(123, 208, 255, 0.2);
}

.confidence-orbit img {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  filter: none;
}

.confidence-orbit strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 24px;
}

.decision-gate-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.gate-card,
.motif-card,
.gallery-card,
.enterprise-card,
.life-moment-grid article,
.infra-layer-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(11, 18, 32, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gate-card {
  min-height: 182px;
  padding: 26px;
}

.gate-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.gate-card h3 {
  margin: 24px 0 10px;
}

.gate-yes {
  border-color: rgba(34, 197, 94, 0.35);
  background: radial-gradient(circle at 90% 8%, rgba(34, 197, 94, 0.2), transparent 170px), rgba(11, 18, 32, 0.72);
}

.gate-yes span {
  color: var(--trust-green);
  background: rgba(34, 197, 94, 0.14);
}

.gate-wait {
  border-color: rgba(245, 158, 11, 0.4);
  background: radial-gradient(circle at 90% 8%, rgba(245, 158, 11, 0.2), transparent 170px), rgba(11, 18, 32, 0.72);
}

.gate-wait span {
  color: var(--wait-amber);
  background: rgba(245, 158, 11, 0.14);
}

.gate-no {
  border-color: rgba(239, 68, 68, 0.35);
  background: radial-gradient(circle at 90% 8%, rgba(239, 68, 68, 0.2), transparent 170px), rgba(11, 18, 32, 0.72);
}

.gate-no span {
  color: #ff8b8b;
  background: rgba(239, 68, 68, 0.14);
}

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

.motif-card {
  min-height: 188px;
  padding: 24px;
}

.motif-card h3 {
  margin: 18px 0 10px;
}

.motif-node {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(123, 208, 255, 0.45);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, var(--secondary) 0 5px, transparent 6px),
    linear-gradient(90deg, transparent 0 45%, rgba(123, 208, 255, 0.3) 45% 55%, transparent 55%),
    rgba(123, 208, 255, 0.08);
}

.mini-confidence-ring {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 7px solid rgba(123, 208, 255, 0.16);
  border-top-color: var(--secondary);
  border-right-color: var(--secondary);
  border-radius: 999px;
  color: var(--secondary);
  font-weight: 900;
}

.mini-timeline {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
}

.mini-timeline span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--surface-container-highest);
}

.mini-timeline span:nth-child(1) {
  background: var(--trust-green);
}

.mini-timeline span:nth-child(2) {
  background: var(--secondary);
  box-shadow: 0 0 0 7px rgba(123, 208, 255, 0.12);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  padding-top: 42px;
}

.product-gallery-heading {
  grid-column: 1 / -1;
  max-width: 860px;
  margin-bottom: 8px;
}

.product-gallery-heading .label {
  margin-bottom: 18px;
}

.product-gallery-heading p {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
}

.gallery-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 22px;
  overflow: hidden;
  min-height: 710px;
  padding: 24px;
}

.gallery-card-header {
  display: grid;
  gap: 10px;
}

.gallery-card-header .label {
  margin-bottom: 0;
}

.gallery-card-header h3 {
  max-width: 360px;
  font-size: clamp(21px, 1.7vw, 28px);
}

.gallery-card-header p {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.6;
}

.gallery-screen {
  position: relative;
  display: grid;
  min-height: 530px;
  align-items: start;
  justify-items: center;
  overflow: hidden;
  padding: 28px 16px 18px;
  border: 1px solid rgba(123, 208, 255, 0.14);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(123, 208, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(5, 12, 19, 0.74);
}

.gallery-screen::before {
  position: absolute;
  top: 13px;
  left: 16px;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--secondary), rgba(123, 208, 255, 0.12));
}

.gallery-screen img {
  width: 100%;
  height: 100%;
  max-width: 360px;
  max-height: 560px;
  object-fit: contain;
  object-position: top center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: var(--background-deep);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.gallery-wide {
  border-color: rgba(123, 208, 255, 0.2);
}

.mini-tag.critical {
  color: #ff8b8b;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.34);
}

.enterprise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(240px, 0.8fr));
  gap: 24px;
  margin-top: 24px;
}

.enterprise-card {
  min-height: 230px;
  padding: 26px;
}

.client-row {
  display: grid;
  grid-template-columns: minmax(80px, 0.75fr) minmax(100px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.client-row span {
  color: var(--on-surface-variant);
}

.client-row strong {
  font-weight: 800;
}

.client-row em {
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.gate-wait-text {
  color: var(--wait-amber);
}

.gate-yes-text {
  color: var(--trust-green);
}

.gate-no-text {
  color: #ff8b8b;
}

.brief-sparkline {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 86px;
  margin-top: 34px;
}

.brief-sparkline span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--secondary), rgba(123, 208, 255, 0.18));
}

.brief-sparkline span:nth-child(1) {
  height: 35%;
}

.brief-sparkline span:nth-child(2) {
  height: 62%;
}

.brief-sparkline span:nth-child(3) {
  height: 45%;
}

.brief-sparkline span:nth-child(4) {
  height: 82%;
}

.audit-dots {
  display: grid;
  grid-template-columns: repeat(3, 44px);
  gap: 14px;
  margin-top: 36px;
}

.audit-dots span {
  height: 44px;
  border: 1px solid rgba(123, 208, 255, 0.3);
  border-radius: 999px;
  background: rgba(123, 208, 255, 0.09);
}

.product-phone-preview {
  overflow: hidden;
}

.phone-screen-overlay {
  position: absolute;
  inset: 20px 10px;
  width: calc(100% - 20px);
  height: calc(100% - 40px);
  object-fit: cover;
  object-position: top;
  border-radius: 34px;
  opacity: 0.24;
  filter: saturate(1.1);
}

.outcome-card,
.mobile-metrics,
.mobile-step {
  position: relative;
  z-index: 1;
}

.life-moment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 24px;
}

.life-moment-grid article {
  min-height: 150px;
  padding: 24px;
}

.life-moment-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.life-moment-grid strong {
  color: var(--on-surface);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.16;
}

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

.infra-layer-grid article {
  position: relative;
  display: grid;
  min-height: 196px;
  align-content: start;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(123, 208, 255, 0.07), rgba(255, 255, 255, 0.014)),
    rgba(7, 20, 33, 0.82);
}

.infra-layer-grid article::before {
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--secondary), rgba(123, 208, 255, 0));
}

.infra-index {
  display: inline-flex;
  width: 46px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid rgba(123, 208, 255, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(123, 208, 255, 0.07);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.infra-layer-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 1.6vw, 24px);
}

.infra-layer-grid p {
  max-width: 32rem;
  line-height: 1.62;
}

.trust-section {
  border-top: 1px solid rgba(123, 208, 255, 0.12);
}

.cta-section {
  box-shadow: 0 0 70px rgba(0, 166, 224, 0.12);
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
  }

  .product-gallery,
  .enterprise-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-gallery-heading,
  .gallery-wide,
  .roster-card {
    grid-column: 1 / -1;
  }

  .gallery-card {
    min-height: 660px;
  }

  .hero-dashboard-shot {
    width: 78%;
  }

  .hero-phone-shot {
    width: min(42%, 310px);
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 70px;
  }

  .mobile-nav-cta {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    border: 1px solid rgba(123, 208, 255, 0.45);
    border-radius: var(--radius-sm);
    background: rgba(0, 166, 224, 0.18);
    color: var(--secondary);
    font-weight: 900;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 120;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #67d5ff 0%, var(--secondary-strong) 100%);
    color: #021b26;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(0, 166, 224, 0.35);
  }

  .hero-visual {
    min-height: 560px;
    padding: 18px;
  }

  .hero-os-frame {
    min-height: 520px;
  }

  .hero-dashboard-shot {
    left: 0;
    top: 78px;
    width: 82%;
    height: 340px;
  }

  .hero-phone-shot {
    right: -4px;
    top: 20px;
    width: min(50%, 240px);
  }

  .confidence-orbit {
    width: 92px;
    height: 92px;
  }

  .decision-gate-strip,
  .motif-grid,
  .product-gallery,
  .enterprise-grid,
  .life-moment-grid,
  .infra-layer-grid {
    grid-template-columns: 1fr;
  }

  .infra-layer-grid article {
    min-height: auto;
  }

  .gallery-card,
  .gallery-screen {
    min-height: 430px;
  }

  .gallery-card {
    padding: 20px;
  }

  .gallery-screen img {
    max-height: 460px;
  }

  .client-row {
    grid-template-columns: 1fr auto;
  }

  .client-row strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .hero-proof span {
    width: 100%;
    justify-content: center;
  }

  .product-gallery {
    gap: 18px;
    padding-top: 28px;
  }

  .gallery-card {
    min-height: auto;
    padding: 18px;
  }

  .gallery-screen {
    min-height: 380px;
    padding: 26px 12px 14px;
  }

  .gallery-screen img {
    max-height: 410px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-os-frame {
    min-height: 430px;
  }

  .hero-dashboard-shot {
    top: 86px;
    width: 88%;
    height: 260px;
  }

  .hero-phone-shot {
    width: min(54%, 190px);
  }

  .node-wait {
    left: 26%;
    top: 55%;
  }

  .node-no {
    right: 4%;
    bottom: 52px;
  }

  .node-yes {
    left: 5%;
    bottom: 42px;
  }

  .confidence-orbit {
    left: 5%;
    top: 16px;
    width: 78px;
    height: 78px;
  }

  .confidence-orbit strong {
    font-size: 18px;
  }
}
