:root {
  color-scheme: dark;
  --ink: #f6f8ff;
  --muted: #a9b2c9;
  --quiet: #707b96;
  --base: #050812;
  --base-2: #080d1b;
  --surface: rgba(15, 23, 44, 0.74);
  --surface-strong: #111a31;
  --line: rgba(133, 154, 205, 0.2);
  --line-bright: rgba(122, 159, 255, 0.45);
  --blue: #6e9cff;
  --cyan: #4fe1dc;
  --violet: #a78bfa;
  --gold: #e1b766;
  --green: #69ddb2;
  --orange: #ffb36b;
  --red: #ff7c8b;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --max: 1240px;
  --header: 76px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 72% -10%, rgba(78, 93, 255, 0.18), transparent 34rem),
    radial-gradient(circle at -10% 22%, rgba(28, 198, 191, 0.08), transparent 30rem),
    linear-gradient(180deg, #050812 0%, #080d18 42%, #050812 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(119, 142, 197, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 142, 197, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid rgba(79, 225, 220, 0.78);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: white;
  color: #050812;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header);
  border-bottom: 1px solid rgba(132, 151, 196, 0.14);
  background: rgba(5, 8, 18, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-shell {
  width: min(var(--max), calc(100% - 36px));
  min-height: var(--header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  max-width: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(202, 218, 255, 0.62);
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
  background: #071228;
  box-shadow: 0 0 30px rgba(56, 195, 229, 0.2), 0 0 18px rgba(225, 183, 102, 0.1);
}

.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 0.9rem; letter-spacing: 0.08em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 0.68rem; letter-spacing: 0.11em; text-transform: uppercase; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.primary-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #b5bed3;
  font-size: 0.87rem;
  font-weight: 650;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: white;
  background: rgba(110, 156, 255, 0.12);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid rgba(105, 221, 178, 0.44);
  border-radius: 999px;
  background: rgba(105, 221, 178, 0.08);
  color: #cffff0;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.page-shell { overflow: clip; }
.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
.narrow { width: min(880px, calc(100% - 36px)); margin: 0 auto; }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: center;
  padding: 72px 0 52px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  bottom: -280px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(83, 105, 255, 0.16);
  filter: blur(90px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c3ccef;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 14px var(--cyan);
}

.hero h1,
.page-hero h1 {
  margin: 22px 0 22px;
  max-width: 790px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.05rem, 6vw, 6.3rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #ffffff 8%, #98b5ff 48%, #72e9df 82%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede,
.page-lede {
  max-width: 700px;
  margin: 0;
  color: #b3bdd4;
  font-size: clamp(1.02rem, 1.4vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}


.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid rgba(120, 148, 218, 0.34);
  border-radius: 999px;
  background: rgba(16, 26, 50, 0.72);
  color: #ecf2ff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); border-color: rgba(120, 159, 255, 0.72); }
.button.primary { border-color: transparent; background: linear-gradient(100deg, #5f86ff, #7666e6 55%, #3bbfb7); box-shadow: 0 14px 36px rgba(80, 94, 255, 0.25); }
.button.ghost { background: transparent; }
.button.gold { border-color: rgba(225, 183, 102, 0.48); background: rgba(225, 183, 102, 0.08); color: #ffe3a6; }
.button[disabled] { opacity: 0.48; cursor: not-allowed; transform: none; }

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #8f99b2;
  font-size: 0.78rem;
  font-weight: 700;
}

.micro-trust li::before { content: "•"; margin-right: 9px; color: var(--cyan); }

.hero-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(120, 145, 207, 0.23);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #050914;
  box-shadow: var(--shadow), inset 0 0 60px rgba(76, 105, 255, 0.08);
}

.hero-visual :is(img, video) { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }

.hero-visual video {
  display: block;
  object-fit: contain;
  background: radial-gradient(circle at 50% 42%, #0b1b3c 0%, #04070f 72%);
}

.hero-motion .visual-label {
  top: 20px;
  bottom: auto;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 8, 18, 0.28), transparent 38%), linear-gradient(0deg, rgba(5, 8, 18, 0.74), transparent 36%);
  pointer-events: none;
}

.visual-label {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  max-width: calc(100% - 44px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(142, 164, 220, 0.28);
  border-radius: 999px;
  background: rgba(5, 8, 18, 0.76);
  color: #c4cce0;
  font-size: 0.72rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.visual-label i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }

.floating-proof {
  position: absolute;
  z-index: 3;
  right: -20px;
  top: 34px;
  width: 230px;
  padding: 15px;
  border: 1px solid rgba(105, 221, 178, 0.28);
  border-radius: 18px;
  background: rgba(9, 17, 33, 0.84);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.floating-proof strong { display: block; margin-bottom: 5px; color: #d5fff1; font-size: 0.78rem; }
.floating-proof span { color: #8ca097; font-size: 0.68rem; }

.section { position: relative; padding: 112px 0; }
.section.compact { padding: 76px 0; }
.section-line { border-top: 1px solid rgba(132, 151, 196, 0.13); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head h2,
.page-section h2 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.3vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-head p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }

.intent-panel {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(119, 151, 231, 0.25);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(72, 99, 199, 0.12), transparent 40%),
    rgba(11, 17, 33, 0.76);
  box-shadow: var(--shadow);
}

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

.intent-card {
  min-height: 148px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 21, 41, 0.68);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.intent-card:hover,
.intent-card[aria-pressed="true"] {
  transform: translateY(-3px);
  border-color: rgba(95, 142, 255, 0.7);
  background: rgba(38, 54, 102, 0.38);
}

.intent-card .intent-icon { display: grid; place-items: center; width: 36px; height: 36px; margin-bottom: 18px; border-radius: 11px; background: rgba(110, 156, 255, 0.13); color: #b9ccff; font-weight: 900; }
.intent-card strong { display: block; margin-bottom: 6px; font-size: 0.96rem; }
.intent-card span { display: block; color: var(--muted); font-size: 0.78rem; line-height: 1.5; }

.path-result {
  margin-top: 18px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(105, 221, 178, 0.24);
  border-radius: 18px;
  background: rgba(30, 76, 68, 0.12);
}

.path-result h3 { margin: 0 0 7px; font-size: 1.08rem; }
.path-result p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.depth-switch {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 13, 27, 0.84);
}

.depth-switch button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.depth-switch button[aria-pressed="true"] { background: rgba(110, 156, 255, 0.18); color: white; }

[data-depth-panel][hidden] { display: none !important; }

.circuit {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: stretch;
  gap: 8px;
}

.circuit-step {
  position: relative;
  min-height: 170px;
  padding: 17px 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20, 30, 55, 0.8), rgba(9, 14, 27, 0.8));
}

.circuit-step::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 35px;
  right: -13px;
  width: 17px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.circuit-step:last-child::after { display: none; }
.circuit-step b { display: grid; place-items: center; width: 32px; height: 32px; margin-bottom: 18px; border-radius: 50%; background: rgba(110, 156, 255, 0.14); color: #c8d7ff; font-size: 0.75rem; }
.circuit-step strong { display: block; margin-bottom: 7px; font-size: 0.83rem; }
.circuit-step span { color: var(--quiet); font-size: 0.69rem; line-height: 1.4; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(20, 30, 55, 0.76), rgba(8, 13, 27, 0.72));
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 54%;
  height: 1px;
  background: linear-gradient(90deg, rgba(110, 156, 255, 0.78), transparent);
}

.card h3 { margin: 12px 0 9px; font-size: 1.15rem; line-height: 1.25; }
.card p { margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.65; }
.card .card-link { display: inline-flex; margin-top: 18px; color: #bcd0ff; font-size: 0.78rem; font-weight: 800; }
.card .card-link::after { content: "→"; margin-left: 8px; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid rgba(126, 147, 197, 0.24);
  border-radius: 999px;
  color: #bfc9df;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--quiet); }
.status.commissioning::before { background: var(--blue); box-shadow: 0 0 9px var(--blue); }
.status.prototype::before { background: var(--violet); }
.status.internal::before { background: var(--gold); }
.status.planned::before { background: var(--quiet); }
.status.representative::before { background: var(--gold); }

.experience-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(10, 16, 31, 0.82);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.experience-card.reverse { grid-template-columns: 0.85fr 1.15fr; }
.experience-card.reverse .experience-media { order: 2; }

.experience-media { position: relative; min-height: 420px; overflow: hidden; }
.experience-media img { width: 100%; height: 100%; object-fit: cover; }
.experience-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,8,18,.68), transparent 48%); }
.experience-media .visual-label { right: 20px; left: 20px; width: fit-content; }
.experience-copy { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.experience-copy h3 { margin: 18px 0 16px; font-family: Georgia, serif; font-size: clamp(2rem, 3.5vw, 3.7rem); font-weight: 500; line-height: 1.02; }
.experience-copy p { margin: 0; color: var(--muted); }

.transform-list { display: grid; gap: 10px; margin: 24px 0; padding: 0; list-style: none; }
.transform-list li { display: grid; grid-template-columns: 28px 1fr; gap: 11px; color: #c2cbe0; font-size: 0.82rem; }
.transform-list li::before { content: attr(data-step); display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid rgba(110,156,255,.32); border-radius: 50%; color: #9db8ff; font-size: .64rem; font-weight: 900; }

.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.proof-cell { min-height: 150px; padding: 22px; border-right: 1px solid var(--line); background: rgba(12, 19, 37, 0.7); }
.proof-cell:last-child { border-right: 0; }
.proof-cell small { display: block; color: var(--quiet); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.proof-cell strong { display: block; margin: 12px 0 7px; font-size: .98rem; }
.proof-cell span { color: var(--muted); font-size: .73rem; }

.trust-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(225, 183, 102, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(225, 183, 102, 0.08), rgba(31, 27, 63, 0.18));
}

.trust-banner h2 { margin: 0 0 8px; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 4rem); font-weight: 500; }
.trust-banner p { margin: 0; color: var(--muted); }

.page-hero { padding: 108px 0 72px; }
.page-hero h1 { max-width: 950px; font-size: clamp(3.2rem, 7vw, 7rem); }
.page-kicker { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }

.page-section { padding: 80px 0; border-top: 1px solid rgba(132, 151, 196, 0.13); }
.page-section h2 { max-width: 900px; }
.page-section .lede { max-width: 760px; color: var(--muted); font-size: 1.02rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.split.wide-left { grid-template-columns: 1.2fr .8fr; }

.media-panel { position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #070b14; box-shadow: var(--shadow); }
.media-panel img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.sample-report {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eef2f8;
  color: #192032;
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
}

.sample-report .report-top { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid #ccd4e2; }
.sample-report .report-top small { color: #58637a; text-transform: uppercase; letter-spacing: .08em; }
.sample-report h3 { margin: 12px 0 4px; font-family: Georgia, serif; font-size: 1.7rem; }
.report-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 20px; }
.report-item { padding: 14px; border: 1px solid #d3dae6; border-radius: 10px; background: white; }
.report-item small { display: block; color: #68738a; font-size: .62rem; text-transform: uppercase; }
.report-item strong { display: block; margin-top: 6px; font-size: .82rem; }
.report-row { display: grid; grid-template-columns: 105px 1fr auto; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid #dce2eb; font-size: .75rem; }
.report-row:last-child { border-bottom: 0; }
.report-pill { padding: 4px 7px; border-radius: 999px; background: #e8eef8; color: #42506b; font-size: .58rem; font-weight: 900; text-transform: uppercase; }

.notice {
  padding: 20px;
  border: 1px solid rgba(225, 183, 102, 0.25);
  border-radius: 16px;
  background: rgba(225, 183, 102, 0.07);
  color: #e8d7b3;
  font-size: .82rem;
}

.notice strong { color: #ffe8b9; }

.closed-gate {
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid rgba(225, 183, 102, 0.32);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(225,183,102,.08), rgba(30,24,54,.32));
  text-align: center;
}
.closed-gate .lock { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 20px; border: 1px solid rgba(225,183,102,.4); border-radius: 20px; color: #ffdfa0; font-size: 1.4rem; }
.closed-gate h2 { margin: 0 0 12px; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 4rem); font-weight: 500; }
.closed-gate p { max-width: 700px; margin: 0 auto; color: var(--muted); }

.receipt-panel {
  padding: 24px;
  border: 1px solid rgba(105, 221, 178, 0.26);
  border-radius: var(--radius);
  background: rgba(8, 28, 27, 0.45);
}
.receipt-panel pre { margin: 18px 0 0; padding: 16px; max-height: 330px; overflow: auto; border-radius: 12px; background: #050811; color: #bfeeda; font: 0.72rem/1.55 ui-monospace, SFMono-Regular, Menlo, monospace; white-space: pre-wrap; overflow-wrap: anywhere; }

.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-weight: 800; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; color: var(--blue); font-size: 1.3rem; }
.accordion details[open] summary::after { content: "−"; }
.accordion .answer { padding: 0 0 22px; max-width: 820px; color: var(--muted); }

.modal {
  width: min(960px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  padding: 0;
  border: 1px solid rgba(132, 156, 216, 0.32);
  border-radius: 24px;
  background: #0a1020;
  color: var(--ink);
  box-shadow: 0 40px 140px rgba(0,0,0,.72);
}
.modal::backdrop { background: rgba(1, 3, 9, 0.78); backdrop-filter: blur(8px); }
.modal-inner { position: relative; padding: clamp(22px, 4vw, 42px); overflow: auto; max-height: calc(100svh - 32px); }
.modal-close { position: sticky; z-index: 2; top: 0; float: right; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: #121a2d; color: white; cursor: pointer; }

.site-footer { padding: 56px 0 34px; border-top: 1px solid rgba(132, 151, 196, 0.14); background: rgba(4, 7, 15, .7); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, .55fr); gap: 34px; }
.footer-grid h3 { margin: 0 0 14px; font-size: .77rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid p { max-width: 430px; color: var(--muted); font-size: .82rem; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #9ea9c0; font-size: .8rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--quiet); font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1100px) {
  .primary-nav { display: none; position: absolute; top: calc(100% + 1px); left: 18px; right: 18px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: #0a1020; box-shadow: var(--shadow); }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { border-radius: 12px; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 520px; }
  .hero-visual :is(img, video) { min-height: 520px; }
  .floating-proof { right: 20px; }
  .circuit { grid-template-columns: repeat(3, 1fr); }
  .circuit-step::after { display: none; }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --header: 68px; }
  .brand-copy small { display: none; }
  .hero { padding-top: 48px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.8rem, 12vw, 5.4rem); }
  .hero-visual { min-height: 430px; }
  .hero-visual :is(img, video) { min-height: 430px; }
  .section { padding: 82px 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .intent-grid { grid-template-columns: repeat(2, 1fr); }
  .path-result { grid-template-columns: 1fr; }
  .card-grid, .card-grid.two { grid-template-columns: 1fr; }
  .experience-card, .experience-card.reverse { grid-template-columns: 1fr; }
  .experience-card.reverse .experience-media { order: 0; }
  .experience-media { min-height: 340px; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-cell:nth-child(2) { border-right: 0; }
  .proof-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-banner { grid-template-columns: 1fr; }
  .split, .split.wide-left { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .nav-shell, .container, .narrow { width: min(100% - 24px, var(--max)); }
  .brand-copy strong { font-size: .76rem; }
  .hero { min-height: auto; padding: 44px 0 34px; }
  .hero h1 { margin-top: 16px; }
  .hero-actions .button, .page-actions .button { width: 100%; }
  .micro-trust { display: grid; gap: 7px; }
  .hero-visual { min-height: 330px; border-radius: 22px; }
  .hero-visual :is(img, video) { min-height: 330px; }
  .floating-proof { display: none; }
  .visual-label { left: 12px; bottom: 12px; max-width: calc(100% - 24px); font-size: .62rem; }
  .intent-panel { padding: 20px; border-radius: 22px; }
  .intent-grid { grid-template-columns: 1fr; }
  .intent-card { min-height: 120px; }
  .depth-switch { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 18px; }
  .depth-switch button { padding: 0 8px; }
  .circuit { grid-template-columns: 1fr 1fr; }
  .card-grid.four { grid-template-columns: 1fr; }
  .experience-media { min-height: 270px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-cell:last-child { border-bottom: 0; }
  .report-grid { grid-template-columns: 1fr; }
  .report-row { grid-template-columns: 75px 1fr; }
  .report-pill { grid-column: 2; width: fit-content; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .hero-actions, .page-actions, .nav-toggle, .depth-switch { display: none !important; }
  body { background: white; color: black; }
  .card, .intent-panel, .sample-report { box-shadow: none; break-inside: avoid; }
}
