:root {
  --bg: #080808;
  --panel: #0f0f0f;
  --panel-2: #141414;
  --border: #1f1f1f;
  --text: #f5f5f5;
  --muted: #d9d9d9;
  --dim: rgba(217, 217, 217, 0.62);
  --cyan: #00e5ff;
  --cyan-2: #00a9c8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
}
a, button { color: inherit; font: inherit; }
a { text-decoration: none; }
button { cursor: pointer; border: 0; }

/* Skip heavy off-screen rendering until sections scroll near the viewport */
.band, .clients, .founder, .faq, .final-cta, .site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.nav-pill {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 40px;
  right: 40px;
  height: 65px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
  background: rgba(13,13,13,.58);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 4px 8px;
  font-size: 27px;
  font-weight: 900;
}
.brand-mark {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.nav-divider { width: 1px; height: 16px; background: var(--border); }
.nav-pill nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 2px;
}
.nav-pill nav a {
  padding: 10px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s ease;
}
.nav-pill nav a:hover { background: var(--panel-2); font-weight: 700; }
.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--cyan);
  color: #001014;
  font-weight: 700;
  box-shadow: 0 0 28px rgba(0,229,255,.2);
}
.primary.small { min-height: 40px; padding: 8px 16px; }
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 32px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  font-weight: 600;
}
.menu { display: none; margin-left: auto; background: transparent; padding: 10px; }
.menu span { display: block; width: 16px; height: 1px; margin: 4px 0; background: var(--text); }

.hero {
  position: relative;
  min-height: 740px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 16px 96px;
  overflow: hidden;
}
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 0 44%, transparent 76%);
}
.cyan-glow {
  position: absolute;
  inset: 0 0 auto;
  height: 60vh;
  background: radial-gradient(ellipse at top, rgba(0,229,255,.28), rgba(0,229,255,.08) 35%, transparent 68%);
}
.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-lines line {
  stroke: rgba(0,229,255,.38);
  stroke-width: 1;
  marker-end: url(#arrow);
}
.hero-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(15,15,15,.88);
  font-size: 11px;
}
.hero-chip span { color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; }
.hero-chip.active { border-color: rgba(0,229,255,.55); background: rgba(0,229,255,.11); color: var(--cyan); }
.hero-chip i { position: absolute; top: -6px; right: -6px; width: 12px; height: 12px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.chip-a { left: 5%; top: 24%; }
.chip-b { left: 6%; bottom: 21%; }
.chip-c { right: 5%; top: 20%; }
.chip-d { right: 6%; bottom: 25%; }
.plus { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: rgba(255,255,255,.18); }
.corner { position: absolute; z-index: 2; font-size: 16px; }
.tl { top: 100px; left: 16px; }
.tr { top: 100px; right: 16px; }
.bl { bottom: 96px; left: 16px; }
.br { bottom: 96px; right: 16px; }
.hero-copy {
  position: relative;
  z-index: 20;
  width: min(896px, 100%);
  text-align: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  margin-bottom: 32px;
  padding: 6px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}
.badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}
h1, h2, h3, h4, p { margin-top: 0; }
.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 7.5vw, 92px);
  line-height: .98;
  font-weight: 900;
}
.hero h1 span { display: flex; justify-content: center; gap: .12em; }
.hero h1 em {
  position: relative;
  color: var(--cyan);
  font-style: normal;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.hero h1 small { color: rgba(217,217,217,.6); font-size: 1em; }
.hero-copy p {
  max-width: 760px;
  margin: 0 auto 44px;
  font-size: 20px;
  line-height: 1.5;
}
.hero-sub b { color: var(--cyan); }
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.marquee-section { position: relative; height: 90px; overflow: hidden; }
.line {
  position: relative;
  height: 1px;
  border-top: 1px solid var(--border);
}
.line span { position: absolute; top: -10px; color: rgba(255,255,255,.2); }
.line span:last-child { right: 0; }
.marquee { padding: 16px 0; background: rgba(15,15,15,.3); overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee-track span {
  display: grid;
  place-items: center;
  width: 230px;
  height: 56px;
  color: rgba(255,255,255,.55);
  font-weight: 900;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats div { padding: 52px 20px; text-align: center; border-right: 1px solid var(--border); }
.stats div:last-child { border-right: 0; }
.stats strong { display: block; margin-bottom: 12px; color: var(--cyan); font-size: 38px; line-height: 1; }
.stats p, .lead, .muted { color: var(--dim); }

.band { padding: 110px max(24px, calc((100vw - 1180px) / 2)); }
.section-label {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
.band h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  font-weight: 900;
}
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.gap-card, .capabilities article, .report, .portrait, .community, .case-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}
.gap-card { padding: 32px; }
.mono { color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }
.native-bar {
  height: 42px;
  margin: 22px 0;
  border: 1px solid rgba(0,229,255,.38);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,229,255,.18), transparent);
  color: var(--cyan);
}
.native-bar span { display: block; padding: 11px 18px; }
.gap-card ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0; list-style: none; }
.gap-card li { padding: 12px; border: 1px solid var(--border); border-radius: 8px; color: var(--muted); }

.work { text-align: center; }
.lead { margin-bottom: 40px; font-size: 20px; line-height: 1.5; }
.tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--border);
}
.tabs button { padding: 12px 42px; background: var(--panel); color: var(--muted); font-weight: 800; }
.tabs button.active { background: var(--cyan); color: #001014; }
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.capabilities article { padding: 32px; min-height: 380px; }
.capabilities article > span { color: var(--cyan); font-weight: 900; }
.capabilities h3 { margin: 18px 0 8px; font-size: 28px; }
.capabilities h4 { font-size: 21px; }
.capabilities p { color: var(--dim); line-height: 1.6; }
.capabilities b { display: block; margin-top: 22px; color: var(--cyan); font-size: 12px; }

.diagnosis {
  border-block: 1px solid var(--border);
  background: radial-gradient(circle at 20% 50%, rgba(0,229,255,.14), transparent 32%);
}
.diagnosis div { max-width: 760px; }
.diagnosis p:not(.section-label) { color: var(--muted); font-size: 22px; line-height: 1.5; margin-bottom: 32px; }

.proof {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.proof-mark {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  border: 1px solid rgba(0,229,255,.35);
  border-radius: 12px;
  color: var(--cyan);
  font-size: 28px;
  font-weight: 900;
}
.proof-copy p:not(.section-label) { color: var(--dim); line-height: 1.65; margin-bottom: 32px; }
.report {
  padding: 24px;
  background: #f2f5f6;
  color: #0c1113;
  box-shadow: 0 24px 80px rgba(0,229,255,.12);
}
.report-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #d8dfe2;
  padding-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
}
.report-head b { color: var(--cyan-2); }
.report-logo { display: block; height: 22px; width: auto; }
.report-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 16px 0;
}
.report-grid div {
  padding: 14px;
  border: 1px solid #d8dfe2;
  background: white;
}
.report-grid strong { display: block; color: var(--cyan-2); font-size: 28px; }
.report-grid span, .stages, .report h4 { font-size: 10px; font-weight: 800; }
.stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 14px 0 18px;
}
.stages.three { grid-template-columns: repeat(3, 1fr); }
.stages span { padding: 10px; border: 1px solid #d8dfe2; background: white; }
.stages em { display: block; margin-top: 6px; color: var(--cyan-2); font-style: normal; }
.depts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.depts span { padding: 11px; border: 1px solid #d8dfe2; background: white; font-size: 12px; }
.report footer { display: flex; justify-content: space-between; gap: 12px; margin-top: 16px; padding-top: 14px; border-top: 1px solid #d8dfe2; font-size: 12px; }
.report footer strong { color: var(--cyan-2); text-align: right; }

.clients { text-align: center; border-top: 1px solid var(--border); }
.clients > p:not(.section-label) { max-width: 700px; margin-inline: auto; color: var(--dim); line-height: 1.6; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}
.case-card { padding: 28px; }
.case-card h3 { margin: 12px 0 16px; font-size: 26px; }
.case-logo {
  display: block;
  height: 30px;
  width: auto;
  max-width: 100%;
}
.case-logo--fanfix { height: 48px; margin: -9px 0; }
.case-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.case-card li { padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px; color: var(--dim); font-size: 14px; }
.case-card li b { color: var(--cyan); }
.investors { margin-top: 56px; display: grid; gap: 18px; }
.trust-banner { margin: 0 0 8px; color: var(--dim); font-size: 16px; }
.trust-banner b { color: var(--text); }
.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.logo-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 36s linear infinite;
  will-change: transform;
}
.logo-marquee.reverse .logo-track { animation-direction: reverse; animation-duration: 42s; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.inv-card {
  display: grid;
  place-items: center;
  min-width: 176px;
  height: 72px;
  margin-right: 0;
  padding: 16px 28px;
  border-radius: 12px;
  background: #f2f5f6;
}
.inv-card img {
  display: block;
  max-height: 32px;
  max-width: 124px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.founder {
  display: grid;
  grid-template-columns: 1fr .9fr .55fr;
  gap: 24px;
  border-top: 1px solid var(--border);
}
.founder-copy p { color: var(--dim); line-height: 1.65; }
.founder-copy h3 { margin-bottom: 6px; font-size: 28px; }
.link-row { display: flex; flex-wrap: wrap; gap: 18px; color: var(--cyan); font-weight: 700; }
.link-row a { color: var(--cyan); }
.portrait { padding: 24px; min-height: 520px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(180deg, rgba(0,229,255,.13), var(--panel) 48%); }
.avatar {
  position: relative;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.avatar-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 7px 14px;
  border: 1px solid rgba(0,229,255,.35);
  border-radius: 999px;
  background: rgba(8,8,8,.78);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}
.quote { color: var(--text); font-size: 20px; line-height: 1.4; }
.community { padding: 24px; }
.community strong { display: block; color: var(--cyan); font-size: 56px; }
.community span, .community p, .community div, .community small { color: var(--dim); line-height: 1.6; }

.faq {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 56px;
  border-top: 1px solid var(--border);
}
.faq > div:first-child .primary { margin-bottom: 24px; }
.faq-list details { border-top: 1px solid var(--border); }
.faq-list details:last-child { border-bottom: 1px solid var(--border); }
.faq-list summary {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
}
.faq-list summary span { color: var(--cyan); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 16px; }
.faq-list p { color: var(--dim); padding: 0 0 26px 56px; line-height: 1.6; }

.final-cta {
  position: relative;
  padding: 120px 24px;
  border-block: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,229,255,.2), transparent 55%);
  pointer-events: none;
}
.final-cta h2, .final-cta p, .final-cta button { position: relative; }
.final-cta h2 { font-size: clamp(36px, 5vw, 70px); line-height: 1.03; }
.final-cta p { color: var(--dim); font-size: 20px; margin-bottom: 32px; }

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr .7fr .9fr;
  gap: 48px;
  padding: 64px max(24px, calc((100vw - 1180px) / 2));
  color: var(--dim);
}
.site-footer h3 { color: var(--text); font-size: 26px; }
.site-footer nav, .site-footer div:last-child { display: grid; gap: 12px; align-content: start; }
.site-footer a { color: var(--text); }

dialog {
  width: min(520px, calc(100vw - 32px));
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
}
dialog::backdrop { background: rgba(0,0,0,.72); backdrop-filter: blur(8px); }
.modal-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--panel);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.modal-card[hidden] { display: none; }
.modal-card h2 { margin-bottom: 8px; font-size: 32px; line-height: 1; }
.modal-card .ghost { min-height: 48px; padding: 10px 24px; }
.close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--panel-2);
}
label { display: grid; gap: 8px; color: var(--muted); font-weight: 700; }
.form-msg { display: none; margin: 0; font-size: 14px; line-height: 1.45; }
.form-msg.error { display: block; color: #ff8a8a; }
.form-msg.success { display: block; color: var(--cyan); font-weight: 700; }

/* Booking view — widen the dialog and embed Calendly */
dialog:has(.booking-card:not([hidden])) { width: min(720px, calc(100vw - 32px)); }
.booking-card .section-label { color: var(--cyan); }
.calendly-inline {
  min-width: 320px;
  height: min(680px, calc(100vh - 220px));
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 760px) {
  .calendly-inline { height: min(620px, calc(100vh - 200px)); }
}
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #090909;
  color: var(--text);
  padding: 12px;
  resize: vertical;
  font: inherit;
}

/* ── Motion & polish ─────────────────────────────────────── */

.primary, .ghost {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 40px rgba(0,229,255,.45);
}
.primary:active { transform: translateY(0); }
.ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(0,229,255,.5);
  box-shadow: 0 6px 28px rgba(0,229,255,.14);
}

.gap-card, .capabilities article, .case-card, .portrait, .community, .report {
  transition: transform .35s cubic-bezier(.22,.61,.36,1), border-color .35s ease, box-shadow .35s ease, opacity .35s ease;
}
.gap-card:hover, .case-card:hover, .portrait:hover, .community:hover {
  transform: translateY(-6px);
  border-color: rgba(0,229,255,.45);
  box-shadow: 0 18px 56px rgba(0,229,255,.1);
}
.report:hover {
  transform: translateY(-6px) rotate(-.3deg);
  box-shadow: 0 32px 96px rgba(0,229,255,.22);
}

.stats div { transition: background .3s ease; }
.stats div:hover { background: rgba(0,229,255,.05); }
.stats strong { transition: text-shadow .3s ease; }
.stats div:hover strong { text-shadow: 0 0 32px rgba(0,229,255,.65); }

/* Leap tabs ↔ capability cards */
.tabs button {
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.tabs button:hover:not(.active) { background: var(--panel-2); color: var(--text); }
.capabilities article { cursor: pointer; }
.capabilities article:hover {
  transform: translateY(-6px);
  border-color: rgba(0,229,255,.35);
  box-shadow: 0 18px 56px rgba(0,229,255,.1);
}
.capabilities article.active {
  border-color: rgba(0,229,255,.65);
  background: linear-gradient(180deg, rgba(0,229,255,.07), var(--panel) 55%);
  box-shadow: 0 18px 64px rgba(0,229,255,.14);
}
.capabilities.has-focus article:not(.active):not(:hover) { opacity: .55; }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
  transition-delay: calc(var(--reveal-i, 0) * 90ms);
}
.reveal.in { opacity: 1; transform: none; }

/* Nav scrollspy + link motion */
.nav-pill nav a.active { background: var(--panel-2); color: var(--cyan); font-weight: 700; }
.link-row a { transition: transform .25s ease, opacity .25s ease; display: inline-block; }
.link-row a:hover { transform: translateX(3px); }
.site-footer a { transition: color .25s ease; }
.site-footer a:hover { color: var(--cyan); }

.faq-list summary { transition: color .25s ease; }
.faq-list summary:hover { color: var(--cyan); }
.faq-list details[open] > p { animation: faq-open .45s cubic-bezier(.22,.61,.36,1); }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.hero-chip { transition: transform .35s ease, border-color .35s ease; }
.hero-chip:hover { transform: translateY(-4px); border-color: rgba(0,229,255,.5); }
.hero-chip { animation: chip-float 6s ease-in-out infinite; }
.chip-b { animation-delay: -1.5s; }
.chip-c { animation-delay: -3s; }
.chip-d { animation-delay: -4.5s; }
@keyframes chip-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

/* ── Confirmation page ────────────────────────────────────── */
.confirm-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 16px 80px;
  overflow: hidden;
}
.confirm-copy {
  position: relative;
  z-index: 20;
  width: min(820px, 100%);
  text-align: center;
}
.confirm-copy .section-label { display: block; margin-bottom: 18px; }
.confirm-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(40px, 6vw, 80px);
  line-height: .98;
  font-weight: 900;
}
.confirm-hero h1 span { display: flex; justify-content: center; gap: .12em; }
.confirm-hero h1 em { position: relative; color: var(--cyan); font-style: normal; }
.confirm-hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.confirm-hero h1 small { color: rgba(217,217,217,.6); }
.confirm-copy > p:last-child { max-width: 620px; margin: 0 auto; font-size: 20px; line-height: 1.5; color: var(--dim); }
.prep { text-align: center; border-top: 1px solid var(--border); }
.prep .lead { margin-inline: auto; max-width: 680px; }
.prep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}
.prep-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), border-color .35s ease, box-shadow .35s ease;
}
.prep-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,229,255,.45);
  box-shadow: 0 18px 56px rgba(0,229,255,.1);
}
.prep-card span { color: var(--cyan); font-weight: 900; font-size: 18px; }
.prep-card h3 { margin: 16px 0 10px; font-size: 24px; }
.prep-card p { margin: 0; color: var(--dim); line-height: 1.6; }
.final-cta a.primary { display: inline-flex; }
.copyright { margin: 0; padding: 28px 24px 40px; text-align: center; color: var(--dim); font-size: 13px; }

@media (max-width: 900px) {
  .prep-grid { grid-template-columns: 1fr; }
  .confirm-hero { min-height: 520px; padding-top: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .hero-chip, .logo-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition: none !important; }
}

@media (max-width: 900px) {
  .nav-pill { left: 8px; right: 8px; }
  .nav-pill nav, .nav-divider, .nav-pill .primary { display: none; }
  .nav-pill nav.open {
    position: absolute;
    display: grid;
    top: 74px;
    left: 0;
    right: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(13,13,13,.96);
  }
  .menu { display: block; }
  .hero { min-height: 720px; padding-top: 112px; }
  .hero-lines, .hero-chip { display: none; }
  .badge { max-width: 100%; font-size: 10px; }
  .hero h1 span { display: block; }
  .hero-copy p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .stats, .capabilities, .proof, .case-grid, .founder, .faq, .site-footer, .split { grid-template-columns: 1fr; }
  .stats div { border-right: 0; border-bottom: 1px solid var(--border); }
  .stats div:last-child { border-bottom: 0; }
  .tabs { width: 100%; border-radius: 8px; }
  .tabs button { padding: 12px 8px; }
  .gap-card ul, .report-grid, .depts { grid-template-columns: 1fr; }
  .stages.three { grid-template-columns: 1fr; }
  .band { padding-block: 72px; }
  .founder, .faq { gap: 32px; }
  .faq-list summary { font-size: 18px; }
  .report footer { flex-direction: column; }
}
