/* =========================================================
   ZB Digital · Homepage
   Standalone stylesheet for index.html only
   (apply.html and booked.html keep styles.css + pages.css).

   Direction: trust-first, premium, dark. Geist + Geist Mono.
   Shape rule: interactive controls = full pill; panels, cards,
   images = 20px; inner tiles = 12px.
   Motion rule (Emil Kowalski): transform + opacity only, strong
   ease-out for entrances, ease-in-out for on-screen movement,
   press = scale(.97) at 160ms, hover gated to fine pointers,
   reduced motion = opacity only.
   ========================================================= */

@font-face {
  font-family: "Geist";
  src: url("fonts/geist-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("fonts/geist-mono-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* surfaces */
  --bg: #07080B;
  --bg-tint: #090B10;
  --surface: #0E1117;
  --surface-2: #131722;
  --surface-3: #181D2A;
  --line: rgba(234, 239, 248, 0.08);
  --line-2: rgba(234, 239, 248, 0.13);
  --line-3: rgba(234, 239, 248, 0.22);

  /* text */
  --text: #EDF0F6;
  --text-2: rgba(237, 240, 246, 0.68);
  --text-3: rgba(237, 240, 246, 0.52);

  /* brand accent: ZB blue, locked for the whole page */
  --accent: #3D7BFF;
  --accent-2: #86ACFF;
  --accent-fill: #1F5FF0;
  --accent-fill-hover: #2B6CFA;
  --accent-tint: rgba(61, 123, 255, 0.07);
  --accent-tint-2: rgba(61, 123, 255, 0.14);
  --accent-line: rgba(61, 123, 255, 0.34);
  --on-accent: #F7F9FF;

  /* shape */
  --radius: 20px;
  --radius-sm: 12px;

  /* motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  /* type */
  --font: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* layout */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
  --section: clamp(96px, 12vw, 168px);
  --nav-h: 60px;
}

/* ---------------------------------------------------------
   Base
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-padding-top: 96px;
}
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, p, ul, ol, dl, dd, figure, fieldset { margin: 0; }
ul, ol { padding: 0; list-style: none; }
::selection { background: var(--accent-fill); color: var(--on-accent); }
h1, h2, h3 { font-weight: 600; text-wrap: balance; }
p, li, dd { text-wrap: pretty; }
em { font-style: normal; color: var(--accent); }
strong { font-weight: 500; color: var(--text); }
.i { width: 1em; height: 1em; flex-shrink: 0; fill: currentColor; }

/* Film grain: fixed, non-interactive layer only (never on scrolling content) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
@media (max-width: 879px) { body::before { display: none; } }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: max(var(--gutter), env(safe-area-inset-left, 0px));
}

/* ---------------------------------------------------------
   Accessibility
   --------------------------------------------------------- */
:where(a, button, summary, input, [tabindex="0"]):focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}
.btn:focus-visible { outline-offset: 4px; }
.skip-link {
  position: absolute;
  left: 12px; top: -80px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-fill);
  color: var(--on-accent);
  font-weight: 500;
  transition: transform 200ms var(--ease-out);
}
.skip-link:focus { top: 12px; }
a, button, summary, label { touch-action: manipulation; }

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  transition:
    transform 160ms var(--ease-out),
    background-color 200ms ease,
    box-shadow 200ms ease,
    color 200ms ease;
}
.btn:active { transform: scale(0.97); }
.btn .i { font-size: 15px; transition: transform 200ms var(--ease-out); }
.btn .i-play { font-size: 12px; }
.btn-primary {
  background: var(--accent-fill);
  color: var(--on-accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(3, 8, 20, 0.5),
    0 10px 24px -12px rgba(31, 95, 240, 0.7);
}
.btn-ghost {
  background: rgba(237, 240, 246, 0.04);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.btn-lg { min-height: 52px; padding: 0 26px; font-size: 16px; }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: 14px; }
@media (pointer: coarse) { .btn-sm { min-height: 44px; } }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--accent-fill-hover); }
  .btn-primary:hover .i { transform: translateX(3px); }
  .btn-ghost:hover { background: rgba(237, 240, 246, 0.08); box-shadow: inset 0 0 0 1px var(--line-3); }
}

/* ---------------------------------------------------------
   Nav
   --------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: calc(12px + env(safe-area-inset-top, 0px)) var(--gutter) 0;
  pointer-events: none;
}
.nav-bar {
  position: relative;
  pointer-events: auto;
  max-width: calc(var(--container) - 2 * 48px);
  height: var(--nav-h);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 10px 0 22px;
  border-radius: 999px;
  background: rgba(12, 14, 19, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow:
    inset 0 0 0 1px var(--line-2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 40px -16px rgba(0, 0, 0, 0.7);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav-bar { background: rgba(12, 14, 19, 0.97); }
}
.nav-logo { display: flex; align-items: center; min-height: 44px; }
.nav-logo img { height: 22px; width: auto; }
.nav-links { display: none; gap: 28px; font-size: 14px; color: var(--text-2); }
.nav-links a { position: relative; padding: 8px 0; transition: color 200ms ease; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 250ms var(--ease-out);
}
.nav-links a[aria-current] { color: var(--text); }
.nav-links a[aria-current]::after { transform: scaleX(1); }
@media (hover: hover) and (pointer: fine) { .nav-links a:hover { color: var(--text); } }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-links a { white-space: nowrap; }
}
/* seven links: tighten on small laptops so nothing wraps */
@media (min-width: 1024px) and (max-width: 1199px) {
  .nav-links { gap: 16px; font-size: 13.5px; }
}
.nav-progress {
  position: absolute;
  left: 28px; right: 28px; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(61, 123, 255, 0), var(--accent) 30%, var(--accent-2));
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  overflow: clip;
  padding: calc(var(--nav-h) + 12px + clamp(56px, 8vw, 96px)) 0 clamp(72px, 9vw, 120px);
}
.hero-glow {
  position: absolute;
  inset: -240px -10% auto -10%;
  height: 1000px;
  pointer-events: none;
  background:
    radial-gradient(45% 45% at 22% 35%, rgba(61, 123, 255, 0.16), transparent 70%),
    radial-gradient(35% 35% at 88% 18%, rgba(61, 123, 255, 0.08), transparent 70%);
}
.hero .container { position: relative; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(237, 240, 246, 0.03);
  box-shadow: inset 0 0 0 1px var(--line-2);
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--text-2);
}
.hero-title {
  margin-top: 28px;
  font-size: clamp(40px, 6.6vw, 92px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.hero-title .hl { display: block; } /* one sentence per line */
.hero-title .w { display: inline-block; }
.hero-row {
  margin-top: clamp(36px, 5vw, 64px);
  display: grid;
  gap: 44px;
}
@media (min-width: 960px) {
  .hero-row {
    grid-template-columns: minmax(0, 11fr) minmax(0, 13fr);
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
  }
}
.hero-sub {
  max-width: 34ch;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--text-2);
}
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 559px) { .hero-actions .btn { width: 100%; } }

.vsl {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px var(--line-2),
    0 50px 100px -50px rgba(0, 0, 0, 0.9);
}
.vsl-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.vsl::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, transparent 55%, rgba(7, 8, 11, 0.5));
}
.vsl-play {
  position: absolute;
  left: 50%; top: 50%;
  z-index: 2;
  width: 76px; height: 76px;
  margin: -38px 0 0 -38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--bg);
  background: rgba(247, 249, 255, 0.94);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.7);
  transition: transform 160ms var(--ease-out), opacity 200ms ease;
}
.vsl-play .i { font-size: 24px; transform: translateX(2px); }
.vsl-play:active { transform: scale(0.95); }
@media (hover: hover) and (pointer: fine) {
  .vsl:hover .vsl-poster { transform: scale(1.02); }
  .vsl:hover .vsl-play { transform: scale(1.06); }
}
.vsl video {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg);
}
.vsl.is-playing { cursor: default; }
.vsl.is-playing .vsl-play { opacity: 0; pointer-events: none; }
.hero-media figcaption {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-3);
}

/* Hero entrance: CSS-driven so it stays smooth while the page loads */
@media (prefers-reduced-motion: no-preference) {
  .js .hero-chip { animation: fade-up 700ms var(--ease-out) both; }
  .js .hero-title .w { animation: word-in 900ms var(--ease-out) both; animation-delay: calc(120ms + var(--i) * 70ms); }
  .js .hero-sub { animation: fade-up 800ms var(--ease-out) 560ms both; }
  .js .hero-actions { animation: fade-up 800ms var(--ease-out) 640ms both; }
  .js .hero-media { animation: media-in 1100ms var(--ease-out) 420ms both; }
}
@keyframes word-in {
  from { opacity: 0; transform: translateY(0.3em); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes media-in {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------------------------------------------------------
   Proof strip
   --------------------------------------------------------- */
.proof { border-block: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.proof-item { padding: clamp(28px, 4vw, 44px) 20px; }
.proof-item:nth-child(odd) { padding-left: 0; }
.proof-item:nth-child(even) { box-shadow: inset 1px 0 0 var(--line); }
.proof-item:nth-child(n+3) { border-top: 1px solid var(--line); }
@media (min-width: 800px) {
  .proof-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .proof-item { padding-left: 32px; }
  .proof-item:first-child { padding-left: 0; }
  .proof-item:nth-child(n+2) { box-shadow: inset 1px 0 0 var(--line); }
  .proof-item:nth-child(n+3) { border-top: 0; }
}
.proof-v {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.proof-u { margin-left: 4px; font-size: 0.4em; letter-spacing: -0.01em; color: var(--text-2); }
.proof-k { margin-top: 12px; max-width: 22ch; font-size: 14px; line-height: 1.45; color: var(--text-2); }

/* ---------------------------------------------------------
   Sections + heads
   --------------------------------------------------------- */
.section { position: relative; padding-block: var(--section); }
.section-tint { background: linear-gradient(180deg, var(--bg-tint), var(--bg) 70%); }
.head { max-width: 780px; margin-bottom: clamp(48px, 6vw, 80px); }
.eyebrow {
  margin-bottom: 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.h2 {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.lede {
  margin-top: 22px;
  max-width: 60ch;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.6;
  color: var(--text-2);
}

/* ---------------------------------------------------------
   Scroll reveal (IntersectionObserver adds .is-in once)
   --------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 800ms var(--ease-out),
    transform 800ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.js [data-reveal].is-in,
.reveal-all [data-reveal] { opacity: 1; transform: none; }

/* ---------------------------------------------------------
   Cost structure + statement
   --------------------------------------------------------- */
.cost-grid { display: grid; gap: 56px; }
@media (min-width: 960px) {
  .cost-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: clamp(56px, 8vw, 120px);
    align-items: center;
  }
}
.cost-pull {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.cost-pull span { color: var(--text-2); }

.statement {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(237, 240, 246, 0.035), rgba(237, 240, 246, 0) 40%),
    var(--surface);
  box-shadow:
    inset 0 0 0 1px var(--line-2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 50px 100px -50px rgba(0, 0, 0, 0.95);
}
.st-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--line-2);
}
.st-head img { height: 22px; width: auto; }
.st-meta { text-align: right; }
.st-title { font-size: 16px; font-weight: 600; }
.st-date { margin-top: 4px; font-family: var(--mono); font-size: 12px; color: var(--text-3); }
.st-rows { margin-top: 6px; }
.st-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  font-size: 15px;
  color: var(--text-2);
}
.st-row + .st-row { border-top: 1px solid var(--line); }
.st-v { font-family: var(--mono); font-size: 16px; font-weight: 500; color: var(--text); }
.st-total {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 16px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--accent-tint-2);
  box-shadow: inset 0 0 0 1px var(--accent-line);
  font-size: 15px;
  font-weight: 500;
}
.st-total-v { color: var(--accent-2); }
.st-foot {
  margin-top: 20px;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.st-foot span { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 400; letter-spacing: 0; color: var(--accent-2); }

.js .statement .st-row,
.js .statement .st-total,
.js .statement .st-foot {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.statement.is-in .st-row { opacity: 1; transform: none; transition-delay: calc(250ms + var(--i) * 70ms); }
.statement.is-in .st-total { opacity: 1; transform: none; transition-delay: 760ms; }
.statement.is-in .st-foot { opacity: 1; transform: none; transition-delay: 860ms; }
.reveal-all .statement .st-row,
.reveal-all .statement .st-total,
.reveal-all .statement .st-foot { opacity: 1; transform: none; }

/* ---------------------------------------------------------
   Prospect File
   --------------------------------------------------------- */
.file {
  display: grid;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
@media (min-width: 960px) { .file { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); } }
.file-cover {
  display: grid;
  place-items: center;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 56px);
  background:
    radial-gradient(70% 60% at 30% 20%, rgba(61, 123, 255, 0.2), transparent 70%),
    var(--surface-2);
  box-shadow: inset -1px 0 0 var(--line);
}
.file-stack { position: relative; width: min(100%, 340px); }
.file-sheet {
  display: block;
  border-radius: 16px;
  background: var(--surface-3);
  box-shadow: inset 0 0 0 1px var(--line-2);
  transition: transform 1000ms var(--ease-out) 200ms;
}
.file-sheet-back, .file-sheet-mid { position: absolute; inset: 0; }
.file-sheet-back { background: #121620; }
.file-sheet-front {
  position: relative;
  padding: 26px;
  background: linear-gradient(180deg, #1A2030, #141925);
  box-shadow:
    inset 0 0 0 1px var(--line-2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 60px -30px rgba(0, 0, 0, 0.9);
}
.file.is-in .file-sheet-back,
.reveal-all .file-sheet-back,
html:not(.js) .file-sheet-back { transform: rotate(-7deg) translate(-14px, 10px); }
.file.is-in .file-sheet-mid,
.reveal-all .file-sheet-mid,
html:not(.js) .file-sheet-mid { transform: rotate(3.5deg) translate(10px, 6px); }
.fs-top { display: flex; justify-content: space-between; align-items: center; }
.fs-top img { height: 18px; width: auto; }
.fs-tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-2);
  background: var(--accent-tint-2);
}
.fs-title { margin-top: 30px; font-size: 26px; font-weight: 600; letter-spacing: -0.035em; }
.fs-sub { margin-top: 6px; font-size: 13.5px; color: var(--text-2); }
.fs-gates { margin-top: 22px; display: grid; gap: 11px; }
.fs-gates li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; }
.gate-check {
  display: grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--line-3);
  color: var(--on-accent);
  transition: background-color 300ms ease, box-shadow 300ms ease;
}
.gate-check .i {
  font-size: 11px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.file.is-in .gate-check,
.reveal-all .gate-check,
html:not(.js) .gate-check {
  background: var(--accent-fill);
  box-shadow: none;
  transition-delay: calc(500ms + var(--i) * 140ms);
}
.file.is-in .gate-check .i,
.reveal-all .gate-check .i,
html:not(.js) .gate-check .i {
  opacity: 1;
  transform: none;
  transition-delay: calc(500ms + var(--i) * 140ms);
}
.file-body { padding: clamp(32px, 4vw, 56px); }
.file-kicker { font-size: 14px; color: var(--text-3); }
.file-list { margin-top: 28px; display: grid; gap: 26px; }
.file-list li { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 18px; align-items: start; }
.ico {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-tint);
  box-shadow: inset 0 0 0 1px var(--accent-line);
  color: var(--accent-2);
  font-size: 22px;
}
.file-list h3 { font-size: 17px; letter-spacing: -0.015em; line-height: 1.3; }
.file-list p { margin-top: 4px; font-size: 15px; color: var(--text-2); }

/* ---------------------------------------------------------
   Engine: sticky storytelling
   --------------------------------------------------------- */
.engine-grid { display: grid; gap: 56px; }
@media (min-width: 1024px) {
  /* stretch (not start) so the side column is as tall as the steps and the heading can stick */
  .engine-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(56px, 8vw, 120px);
  }
  .engine-sticky { position: sticky; top: 120px; }
}
.engine-index { display: none; position: relative; margin-top: 48px; padding-left: 22px; }
@media (min-width: 1024px) { .engine-index { display: block; } }
.engine-rail {
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 1px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top center;
}
.engine-index ol { display: grid; gap: 14px; }
.engine-index li { font-size: 15px; color: var(--text-3); transition: color 250ms ease; }
.engine-index li.is-active { color: var(--text); }
.engine-steps { display: grid; gap: clamp(56px, 8vw, 112px); }
.engine-step { transition: opacity 400ms ease; }
@media (min-width: 1024px) {
  .js .engine-step:not(.is-active) { opacity: 0.4; }
  .engine-steps { padding-block: 8vh 16vh; }
}
.engine-step h3 { font-size: clamp(26px, 2.6vw, 36px); line-height: 1.1; letter-spacing: -0.035em; }
.engine-step p { margin-top: 16px; max-width: 56ch; color: var(--text-2); }
.engine-step .engine-key {
  margin-top: 20px;
  padding-left: 16px;
  box-shadow: inset 2px 0 0 var(--accent);
  color: var(--text);
  font-weight: 500;
}

/* 95 / 5 split */
.s95 { margin-top: clamp(96px, 12vw, 160px); display: grid; gap: 20px; }
@media (min-width: 960px) { .s95 { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); } }
.s95 > div { border-radius: var(--radius); padding: clamp(28px, 3.5vw, 48px); }
.s95-us { background: var(--surface); box-shadow: inset 0 0 0 1px var(--line-2); }
.s95-you {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(160deg, rgba(61, 123, 255, 0.16), rgba(61, 123, 255, 0.03) 60%),
    var(--surface);
  box-shadow: inset 0 0 0 1px var(--accent-line);
}
.s95-num {
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
}
.s95-you .s95-num { color: var(--accent-2); }
.s95 h3 { margin-top: 18px; font-size: 20px; letter-spacing: -0.02em; }
.s95-list { margin-top: 24px; display: grid; gap: 12px 28px; }
@media (min-width: 640px) { .s95-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.s95-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-2); }
.s95-list .i { margin-top: 5px; font-size: 13px; color: var(--accent-2); }
.s95-lead { margin-top: 10px; font-size: clamp(22px, 2.2vw, 28px); font-weight: 600; line-height: 1.2; letter-spacing: -0.03em; }
.s95-text { margin-top: 14px; color: var(--text-2); }
.s95-you .btn { margin-top: auto; align-self: flex-start; }
.s95-text { margin-bottom: 32px; }

/* ---------------------------------------------------------
   Spotlight surfaces (cursor-following light, fine pointers only)
   --------------------------------------------------------- */
.spot { position: relative; isolation: isolate; }
.spot::before,
.spot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
}
.spot::before {
  z-index: -1;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(61, 123, 255, 0.13), transparent 60%);
}
.spot::after {
  padding: 1px;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 0%), rgba(134, 172, 255, 0.6), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@media (hover: hover) and (pointer: fine) {
  .spot:hover::before,
  .spot:hover::after { opacity: 1; }
}

/* ---------------------------------------------------------
   Categories
   --------------------------------------------------------- */
.cat-grid { display: grid; gap: 20px; }
@media (min-width: 880px) { .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.cat-card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 48px);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.cat-label { font-size: 13px; font-weight: 500; color: var(--accent-2); }
.cat-card h3 { margin-top: 14px; font-size: clamp(28px, 2.8vw, 38px); line-height: 1.05; letter-spacing: -0.04em; }
.cat-sub { margin-top: 10px; font-size: 17px; font-weight: 500; color: var(--text); }
.cat-text { margin-top: 18px; font-size: 16px; color: var(--text-2); }
.checks { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.checks li { display: grid; grid-template-columns: 16px minmax(0, 1fr); gap: 12px; font-size: 15px; line-height: 1.5; }
.checks .i { margin-top: 5px; font-size: 13px; color: var(--accent-2); }
.cat-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 32px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}
.cat-link .i { font-size: 14px; color: var(--accent-2); transition: transform 200ms var(--ease-out); }
.cat-link::after { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.cat-link:focus-visible { outline: none; }
.cat-card:has(.cat-link:focus-visible) { outline: 2px solid var(--accent-2); outline-offset: 4px; }
@media (hover: hover) and (pointer: fine) { .cat-card:hover .cat-link .i { transform: translateX(4px); } }

/* ---------------------------------------------------------
   Technology bento
   --------------------------------------------------------- */
.bento { display: grid; gap: 16px; }
@media (min-width: 680px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-areas: "a a" "b c" "b d" "e f"; }
  .b-a { grid-area: a; } .b-b { grid-area: b; } .b-c { grid-area: c; }
  .b-d { grid-area: d; } .b-e { grid-area: e; } .b-f { grid-area: f; }
}
@media (min-width: 1024px) {
  .bento { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-areas: "a a b" "c d b" "e f f"; }
}
.bento-cell {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
  padding: clamp(24px, 2.6vw, 32px);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.bento-cell h3 { margin-top: auto; padding-top: 28px; font-size: 19px; line-height: 1.25; letter-spacing: -0.02em; }
.bento-cell p { font-size: 15px; color: var(--text-2); }
.b-a {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(61, 123, 255, 0.24), transparent 60%),
    var(--surface-2);
}
.b-a h3 { font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.035em; }
.b-a p { max-width: 48ch; }
.b-f {
  background:
    repeating-linear-gradient(135deg, rgba(237, 240, 246, 0.025) 0 1px, transparent 1px 11px),
    var(--surface);
}
.cal { margin-top: 28px; display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; }
.cal i {
  display: block;
  aspect-ratio: 1;
  border-radius: 6px;
  background: rgba(237, 240, 246, 0.04);
  box-shadow: inset 0 0 0 1px var(--line);
}
.cal i.on {
  background: var(--accent-fill);
  box-shadow: none;
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
  transition-delay: calc(400ms + var(--i) * 90ms);
}
.js .cal i.on { opacity: 0; transform: scale(0.85); }
.b-b.is-in .cal i.on, .reveal-all .cal i.on { opacity: 1; transform: none; }
.tech-closer {
  margin-top: clamp(72px, 9vw, 120px);
  max-width: 24ch;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

/* ---------------------------------------------------------
   Comparison table
   --------------------------------------------------------- */
.table-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.cmp { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.45; }
.cmp th, .cmp td { padding: 20px clamp(16px, 2.4vw, 32px); text-align: left; vertical-align: top; }
.cmp thead th {
  padding-block: 18px;
  border-bottom: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-3);
}
.cmp tbody tr + tr > * { border-top: 1px solid var(--line); }
.cmp tbody th { width: 30%; font-weight: 500; }
.cmp td { width: 35%; color: var(--text-2); }
.cmp .zb { background: var(--accent-tint); color: var(--text); box-shadow: inset 1px 0 0 var(--accent-line); }
.cmp thead .zb { color: var(--accent-2); }
.cmp tbody tr:last-child > * { font-size: 16.5px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.cmp tbody tr:last-child .zb { background: var(--accent-fill); color: var(--on-accent); box-shadow: none; }
.table-note { margin-top: 20px; max-width: 72ch; font-size: 14px; color: var(--text-3); }

@media (max-width: 719px) {
  .table-wrap { overflow: visible; background: none; box-shadow: none; border-radius: 0; }
  .cmp, .cmp tbody, .cmp tr { display: block; }
  .cmp thead { display: none; }
  .cmp tr {
    margin-bottom: 12px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: inset 0 0 0 1px var(--line-2);
  }
  .cmp tbody tr + tr > * { border-top: 0; }
  .cmp tbody th { display: block; width: auto; padding: 16px 18px 8px; font-size: 15.5px; }
  .cmp td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    width: auto;
    padding: 10px 18px;
    text-align: right;
  }
  .cmp td::before {
    content: attr(data-label);
    flex-shrink: 0;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-3);
    text-align: left;
  }
  .cmp td.zb { padding-bottom: 14px; box-shadow: inset 0 1px 0 var(--accent-line); }
  .cmp td.zb::before { color: var(--accent-2); }
  .cmp tbody tr:last-child { box-shadow: inset 0 0 0 1px var(--accent-line); }
  .cmp tbody tr:last-child > * { font-size: 15px; }
  .cmp tbody tr:last-child td.zb::before { color: rgba(247, 249, 255, 0.8); }
}

/* ---------------------------------------------------------
   Math: close-rate calculator
   --------------------------------------------------------- */
.rate { display: none; border: 0; padding: 0; margin: 0 0 32px; min-width: 0; }
.js .rate { display: grid; gap: 12px; justify-items: start; }
.rate-label { padding: 0; font-size: 15px; color: var(--text-2); }
.rate-seg {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 4px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.rate-seg label {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--text-2);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: color 200ms ease;
}
.rate-seg label.is-on { color: var(--on-accent); }
.rate-seg input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.rate-seg label:has(input:focus-visible) { outline: 2px solid var(--accent-2); outline-offset: 2px; }
.rate-thumb {
  position: absolute;
  z-index: 0;
  top: 4px; bottom: 4px; left: 4px;
  width: calc((100% - 8px) / 3);
  border-radius: 999px;
  background: var(--accent-fill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateX(100%);
  transition: transform 250ms var(--ease-in-out);
}
.math-grid { display: grid; gap: 20px; }
@media (min-width: 880px) { .math-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.math-card {
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.math-card h3 { margin-top: 12px; font-size: clamp(24px, 2.4vw, 30px); line-height: 1.1; letter-spacing: -0.03em; }
.math-facts { margin-top: 24px; display: grid; gap: 12px; }
.math-facts div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; font-size: 15px; }
.math-facts dt { color: var(--text-2); }
.math-facts dd { font-weight: 500; font-variant-numeric: tabular-nums; text-align: right; }
.math-result {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--accent-tint);
  box-shadow: inset 0 0 0 1px var(--accent-line);
}
.mr-k { font-size: 13px; color: var(--text-2); }
.mr-v {
  margin-top: 6px;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.mr-roi {
  margin-top: 8px;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--accent-2);
  transition: filter 200ms ease, opacity 200ms ease;
}
.mr-roi.swap { filter: blur(2px); opacity: 0.4; }
.math-table { margin-top: 20px; width: 100%; border-collapse: collapse; font-size: 14.5px; font-variant-numeric: tabular-nums; }
.math-table th {
  padding: 0 10px 10px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-3);
  text-align: left;
}
.math-table td { padding: 11px 10px; color: var(--text-2); transition: background-color 250ms ease, color 250ms ease; }
.math-table tr.is-on td { background: var(--accent-tint-2); color: var(--text); }
.math-table tr.is-on td:first-child { border-radius: 10px 0 0 10px; }
.math-table tr.is-on td:last-child { border-radius: 0 10px 10px 0; }
.math-note { margin-top: 20px; font-size: 14.5px; color: var(--text-2); }
.math-disclaimer { margin-top: 40px; max-width: 72ch; font-size: 14.5px; color: var(--text-3); }
.math-disclaimer strong { color: var(--text-2); }
@media (max-width: 479px) {
  .math-facts div { flex-direction: column; align-items: flex-start; gap: 2px; }
  .math-facts dd { text-align: left; }
  .rate-seg label { padding: 0 14px; }
  .math-table th, .math-table td { padding-inline: 6px; }
  .math-result { padding: 18px; }
}

/* ---------------------------------------------------------
   Why owners choose us
   --------------------------------------------------------- */
.reasons { display: grid; gap: 40px 48px; }
@media (min-width: 640px) { .reasons { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .reasons { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.reason h3 { padding-top: 20px; border-top: 1px solid var(--line-2); font-size: 19px; letter-spacing: -0.02em; }
.reason p { margin-top: 10px; font-size: 15.5px; color: var(--text-2); }

/* ---------------------------------------------------------
   Market exclusivity: manifesto
   --------------------------------------------------------- */
.excl { overflow: hidden; text-align: center; padding-block: clamp(120px, 16vw, 220px); }
.excl-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(237, 240, 246, 0.16) 1px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000 15%, transparent 75%);
  mask-image: radial-gradient(60% 60% at 50% 50%, #000 15%, transparent 75%);
}
.excl-pin {
  position: absolute;
  left: 71%; top: 24%;
  width: 10px; height: 10px;
  margin: -5px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(61, 123, 255, 0.18);
}
.excl-pin::before,
.excl-pin::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 1px var(--accent);
  opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .excl.is-in .excl-pin::before { animation: ripple 1800ms var(--ease-out) 300ms 1 both; }
  .excl.is-in .excl-pin::after { animation: ripple 1800ms var(--ease-out) 700ms 1 both; }
}
@keyframes ripple {
  from { opacity: 0.9; transform: scale(1); }
  to { opacity: 0; transform: scale(10); }
}
.excl-inner { position: relative; }
.excl-title {
  max-width: 14ch;
  margin-inline: auto;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.excl .lede { max-width: 56ch; margin: 28px auto 0; }

/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */
.faq-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(56px, 8vw, 120px);
  }
  .faq-sticky { position: sticky; top: 120px; }
}
.faq-sticky .btn { margin-top: 32px; }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-item:first-child { border-top: 1px solid var(--line-2); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 44px;
  padding: 24px 0;
  list-style: none;
  cursor: pointer;
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  transition: color 200ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 999px;
  color: var(--text-2);
  box-shadow: inset 0 0 0 1px var(--line-3);
  transition: background-color 200ms ease, box-shadow 200ms ease, color 200ms ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 1.5px;
  margin: -0.75px 0 0 -5px;
  border-radius: 1px;
  background: currentColor;
}
.faq-icon::after { transform: rotate(90deg); transition: transform 250ms var(--ease-out); }
.faq-item[open] .faq-icon { background: var(--accent-fill); color: var(--on-accent); box-shadow: none; }
.faq-item[open] .faq-icon::after { transform: rotate(0deg); }
@media (hover: hover) and (pointer: fine) { .faq-item summary:hover { color: var(--accent-2); } }
.faq-a { padding: 0 48px 26px 0; font-size: 16px; color: var(--text-2); }
.faq-a p + p { margin-top: 12px; }
@supports selector(::details-content) {
  .faq-item { interpolate-size: allow-keywords; }
  .faq-item::details-content {
    block-size: 0;
    overflow-y: clip;
    transition: block-size 220ms var(--ease-out), content-visibility 220ms allow-discrete;
  }
  .faq-item[open]::details-content { block-size: auto; }
}

/* ---------------------------------------------------------
   Finale
   --------------------------------------------------------- */
.finale {
  position: relative;
  overflow: hidden;
  padding-block: clamp(120px, 15vw, 200px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.finale-glow {
  position: absolute;
  left: 50%; top: 50%;
  width: 1200px; height: 720px;
  margin: -360px 0 0 -600px;
  pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(61, 123, 255, 0.17), transparent 70%);
}
.finale-inner { position: relative; max-width: 960px; }
.finale-title { font-size: clamp(44px, 7vw, 104px); line-height: 0.98; letter-spacing: -0.05em; }
.finale .lede { max-width: 48ch; margin: 28px auto 0; }
.choices { max-width: 780px; margin: 48px auto 0; display: grid; gap: 12px; }
@media (min-width: 720px) { .choices { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 16px;
  padding: 16px 16px 16px 28px;
  border-radius: 999px;
  text-align: left;
  background: var(--surface-2);
  box-shadow: inset 0 0 0 1px var(--line-2);
  user-select: none;
  -webkit-user-select: none;
  transition:
    transform 160ms var(--ease-out),
    background-color 250ms ease,
    box-shadow 250ms ease;
}
.choice:active { transform: scale(0.97); }
.choice-k { grid-column: 1; font-size: 13px; font-weight: 500; color: var(--accent-2); }
.choice-v { grid-column: 1; font-size: 17px; font-weight: 500; }
.choice-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--accent-fill);
  color: var(--on-accent);
  font-size: 17px;
  transition: transform 250ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .choice:hover { background: var(--surface-3); box-shadow: inset 0 0 0 1px var(--accent-line); }
  .choice:hover .choice-arrow { transform: translateX(3px); }
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 72px 0 calc(40px + env(safe-area-inset-bottom, 0px));
}
.foot-top { display: grid; gap: 40px; }
@media (min-width: 800px) { .foot-top { grid-template-columns: 2fr 1fr 1fr 1.3fr; } }
.foot-brand img { height: 26px; width: auto; }
.foot-brand p { margin-top: 18px; max-width: 36ch; font-size: 14px; color: var(--text-2); }
.footer h2 { margin-bottom: 12px; font-size: 13px; font-weight: 500; color: var(--text-3); }
.footer nav a { display: block; padding: 6px 0; font-size: 14.5px; color: var(--text-2); transition: color 200ms ease; }
@media (pointer: coarse) { .footer nav a { padding: 11px 0; } }
@media (hover: hover) and (pointer: fine) { .footer nav a:hover { color: var(--text); } }
.foot-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  font-size: 13px;
  color: var(--text-3);
}
@media (min-width: 800px) {
  .foot-bottom { grid-template-columns: auto minmax(0, 1fr); gap: 40px; }
  .foot-bottom p:last-child { text-align: right; }
}

/* ---------------------------------------------------------
   Reduced motion: fewer and gentler, opacity only
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .js .hero-chip,
  .js .hero-title .w,
  .js .hero-sub,
  .js .hero-actions,
  .js .hero-media { animation: fade 500ms ease both; }
  .js [data-reveal] { transform: none; transition: opacity 400ms ease; }
  .js .statement .st-row,
  .js .statement .st-total,
  .js .statement .st-foot,
  .js .cal i.on { transform: none; }
  .file-sheet, .vsl-poster { transition: none; }
}

/* ---------------------------------------------------------
   3D scroll layer (html.fx is set by scroll-fx.js only when
   motion is allowed). GSAP owns the motion here, so the CSS
   reveal system and any competing transitions switch off.
   --------------------------------------------------------- */
html.lenis { scroll-behavior: auto !important; }
html.fx [data-reveal] { opacity: 1; transform: none; transition: none; }
html.fx .engine-step { transition: none; }
html.fx .file-sheet { transition: none; }
html.fx .file-cover { perspective: 1400px; }
html.fx .file-stack { transform-style: preserve-3d; }
html.fx .bento { transform-style: preserve-3d; }
.vsl-3d { position: relative; }
html.fx .vsl-3d { transform-style: preserve-3d; will-change: transform; }

/* masked headline lines: room for descenders (g, y, p) inside the clip */
.fx-line-mask { padding-bottom: 0.12em; margin-bottom: -0.12em; }

/* Finale: thin rings of light lying in perspective (static without JS) */
.portal {
  position: absolute;
  left: 50%; top: 60%;
  width: min(1100px, 130vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  perspective: 1400px;
  pointer-events: none;
}
.portal-tilt {
  position: absolute;
  inset: 0;
  transform: rotateX(72deg);
  transform-style: preserve-3d;
}
.portal-ring {
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 50%;
  opacity: 0.6;
  background: conic-gradient(from 0deg,
    rgba(61, 123, 255, 0) 0deg,
    rgba(61, 123, 255, 0.75) 60deg,
    rgba(134, 172, 255, 0) 140deg,
    rgba(134, 172, 255, 0.4) 220deg,
    rgba(61, 123, 255, 0) 300deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.portal-ring-2 { inset: 14%; opacity: 0.35; }
