/* ===========================================================
   VENOMPRO — design-04-batch
   Layout & aesthetic inspired by batch.film (minimalist,
   warm-white on black, condensed display type). Original CSS.
   Fonts: Oswald (condensed display) + Inter (grotesque body).
   =========================================================== */

:root {
  --black: #000;
  --ink: #121212;
  --grey-dark: #202020;
  --grey-light: #b3b3b3;
  --warm-white: #d5d6cf;
  --cream: #d5d6cf;          /* inverted-section background (batch.film) */
  --accent: #d5d6cf;         /* monochrome — batch.film has no bright accent */
  --ink-on-cream: #121212;

  --font-display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- NAV ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 12px var(--pad);
  background: rgba(12, 12, 12, .72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-dark);
}
/* invisible layout anchor in the centre — the morphing logo lands here */
.nav-brand {
  justify-self: center;
  display: block;
  width: clamp(110px, 12vw, 140px);
  height: 26px;
}
.nav-cta {
  justify-self: end;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .55);
  padding: 7px 15px;
  border-radius: 100px;
  white-space: nowrap;
  transition: opacity .2s ease, border-color .2s ease;
}
.nav-cta:hover { opacity: .7; border-color: #fff; }

/* Morphing brand logo (hero -> top bar) */
.brand-morph {
  position: fixed;
  top: 0; left: 0;
  z-index: 85;
  transform-origin: top left;
  will-change: transform;
  display: block;
  opacity: 0;
}
.brand-morph.is-snapping { transition: transform .35s cubic-bezier(.22, 1, .36, 1); }
.brand-morph img { width: 100%; height: 100%; display: block; }
/* Burger button (left) */
.nav-burger {
  justify-self: start;
  position: relative;
  z-index: 2;
  width: 34px; height: 22px;
  display: flex; flex-direction: column; justify-content: center; gap: 7px;
  background: none; border: 0; padding: 0; cursor: pointer;
}
.nav-burger span {
  display: block; height: 2px; width: 100%;
  background: #fff;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .25s ease;
}
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child  { transform: translateY(-4.5px) rotate(-45deg); }

/* Fullscreen menu */
.nav-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vh, 48px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .4s ease, transform .5s cubic-bezier(.22,1,.36,1), visibility .4s;
}
.nav-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.nav-menu-list { display: flex; flex-direction: column; align-items: center; gap: clamp(6px, 1.4vh, 14px); perspective: 760px; }
.nav-menu-link {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1.05;
  color: var(--warm-white);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .22s cubic-bezier(.22,1,.36,1), opacity .2s ease;
}
/* Real extruded geometry: JS (desktop) replaces the text with stacked layers that
   live at genuine Z depths inside a preserve-3d space, so tilting reveals true sides. */
.n3d { position: relative; display: inline-block; transform-style: preserve-3d; }
.n3d-face, .n3d-layer { white-space: nowrap; }
.n3d-face { position: relative; display: block; color: #f4f4ef; }
.n3d-layer {
  position: absolute; left: 0; top: 0; display: block; pointer-events: none;
  transform: translateZ(0);
  transition: transform .42s cubic-bezier(.22,1,.36,1);
}
/* at rest the layers stack flat behind the face (reads as normal text);
   on hover they fan out into real depth */
.nav-menu-link:hover .n3d-layer,
.nav-menu-link:focus-visible .n3d-layer {
  transform: translate3d(calc(var(--i) * .5px), calc(var(--i) * .62px), calc(var(--i) * -1.7px));
}
.nav-menu-link:hover .n3d,
.nav-menu-link:focus-visible .n3d {
  filter: drop-shadow(6px 11px 12px rgba(0,0,0,.5));
  transition: filter .42s ease;
}
/* plain links until JS upgrades them (mobile / no-JS keep flat accessible text) */
.nav-menu-link:not(.has-3d):hover { opacity: .55; }
.nav-menu-cta {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--black);
  background: var(--warm-white);
  padding: 14px 30px;
  border-radius: 100px;
  transition: opacity .2s ease;
}
.nav-menu-cta:hover { opacity: .85; }
body.menu-open { overflow: hidden; }

/* ---------- SKIP LINK ---------- */
.skip-link {
  position: fixed; top: -4em; left: 8px; z-index: 100;
  background: var(--accent); color: #000; padding: 10px 16px; border-radius: 6px;
  font-family: var(--font-display); letter-spacing: .1em; text-transform: uppercase; font-size: 12px;
  transition: top .2s ease;
}
.skip-link:focus { top: 8px; }

/* ---------- HEADER / HERO ---------- */
.section-header {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px var(--pad) clamp(48px, 9vh, 100px);
  position: relative;
}
.big-logo {
  /* invisible layout anchor — reserves space for the morphing hero logo */
  width: min(56vw, 540px);
  aspect-ratio: 1610 / 322;
  margin-bottom: clamp(60px, 15vh, 180px);
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}
.big-logo img { width: 100%; height: auto; display: block; }
.header-callout {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(34px, 5.4vw, 88px);
  line-height: 1.0;
  letter-spacing: .01em;
  max-width: none;
  white-space: nowrap;
}
.header-callout .hl { color: var(--warm-white); }
.hero-subline {
  color: var(--grey-light);
  font-family: var(--font-display);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: clamp(14px, 1.6vw, 20px);
  margin-top: clamp(24px, 4vw, 44px);
}
.countdown { display: flex; gap: clamp(12px, 3vw, 34px); margin: clamp(26px,4vw,44px) 0; }
.cd-cell { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cd-num {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(30px,5vw,60px);
  line-height: 1; color: var(--warm-white);
}
.cd-lbl {
  font-family: var(--font-display); letter-spacing: .2em; text-transform: uppercase;
  font-size: 10px; color: var(--grey-light);
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: clamp(28px, 5vw, 56px) auto 0;
  padding: 9px 18px;
  border: 1px solid var(--grey-dark);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-light);
}
.live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0,255,163,.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,255,163,.55); }
  70%  { box-shadow: 0 0 0 12px rgba(0,255,163,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,163,0); }
}

/* ---------- CONTENT HEADER (split) ---------- */
.content-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding-block: clamp(80px, 14vw, 180px);
  width: 100%;
  text-align: left;
}
.header-35-block { align-self: center; }
.header-65-block {
  position: relative;
  display: grid;
  gap: 18px;
}
.block-video.v1 { z-index: 3; }
.block-video.v2 { width: 64%; margin-left: auto; margin-top: -8%; z-index: 2; }
.block-video.v3 { width: 50%; margin-top: -6%; z-index: 1; opacity: .9; }
.block-video .media { aspect-ratio: 16 / 10; box-shadow: 0 24px 60px rgba(0,0,0,.6); }
.type-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 86px);
  line-height: .94;
  margin-bottom: 28px;
}
.type-body {
  color: var(--grey-light);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 52ch;
  margin-bottom: 30px;
}
.button {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--black);
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 100px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(213,214,207,.18); }
.button.ghost { background: transparent; color: var(--warm-white); border: 1px solid var(--grey-dark); }
.button.ghost:hover { border-color: var(--warm-white); box-shadow: none; }

/* media frame */
.media {
  position: relative;
  border: 1px solid var(--grey-dark);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ink);
}
.media video, .media img { width: 100%; height: 100%; object-fit: cover; }
.media .corner {
  position: absolute; width: 14px; height: 14px; opacity: .8;
  border-color: var(--warm-white); border-style: solid;
}
.corner.tl { top: 10px; left: 10px; border-width: 1px 0 0 1px; }
.corner.tr { top: 10px; right: 10px; border-width: 1px 1px 0 0; }
.corner.bl { bottom: 10px; left: 10px; border-width: 0 0 1px 1px; }
.corner.br { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }

/* ---------- INTRODUCING (centered feature) ---------- */
.introducing {
  text-align: center;
  padding-block: clamp(70px, 14vw, 170px);
  border-top: 1px solid var(--grey-dark);
}
.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--grey-light);
}
.big-name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(60px, 16vw, 240px);
  line-height: .9;
  margin: 8px 0 30px;
  color: var(--accent);
}
.intro-copy {
  max-width: 62ch;
  margin: 0 auto;
  color: var(--grey-light);
  font-size: clamp(16px, 1.4vw, 19px);
}

/* ---------- MOTTO ---------- */
.motto {
  text-align: center;
  padding-block: clamp(70px, 14vw, 160px);
  border-top: 1px solid var(--grey-dark);
}
.motto h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(34px, 6.5vw, 104px);
  line-height: .95;
}
.motto h2 .dim { color: var(--grey-dark); }

/* ---------- FEATURE GRID ---------- */
.features {
  padding-block: clamp(60px, 12vw, 140px);
  border-top: 1px solid var(--grey-dark);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 50px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-dark);
  border: 1px solid var(--grey-dark);
}
.feature-card {
  background: var(--ink);
  padding: 36px 30px 44px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.feature-card .num {
  font-family: var(--font-display);
  color: var(--accent);
  letter-spacing: .2em;
  font-size: 13px;
  margin-bottom: 22px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 14px;
}
.feature-card p { color: var(--grey-light); font-size: 15.5px; }

/* ---------- ROADMAP ---------- */
.roadmap { padding-block: clamp(60px, 12vw, 140px); border-top: 1px solid var(--grey-dark); }
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.road-card {
  border: 1px solid var(--grey-dark);
  border-radius: 6px;
  padding: 28px 24px;
  background: linear-gradient(180deg, var(--ink), #0a0a0a);
}
.road-card .soon {
  font-family: var(--font-display);
  letter-spacing: .2em;
  font-size: 11px;
  color: var(--grey-light);
  text-transform: uppercase;
}
.road-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 22px;
  margin: 14px 0 8px;
}
.road-card p { color: var(--grey-light); font-size: 14px; }

/* ---------- PARTNERS ---------- */
.partners {
  padding-block: clamp(50px, 9vw, 100px);
  border-top: 1px solid var(--grey-dark);
  text-align: center;
}
.partners .label {
  font-family: var(--font-display);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-light);
  margin-bottom: 36px;
}
.partner-row {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 6vw, 70px);
  align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  font-size: clamp(18px, 2.4vw, 30px);
  color: var(--grey-dark);
}
.partner-row span { transition: color .2s ease; }
.partner-row span:hover { color: var(--warm-white); }

/* ---------- CTA STRIP ---------- */
.cta {
  text-align: center;
  padding-block: clamp(80px, 16vw, 200px);
  border-top: 1px solid var(--grey-dark);
}
.cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 9vw, 140px);
  line-height: .92;
  margin-bottom: 36px;
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--grey-dark);
  padding-block: 60px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot-logo {
  display: inline-block;
  width: clamp(150px, 16vw, 210px);
}
.foot-logo img { width: 100%; height: auto; display: block; }
.foot-col h5 {
  font-family: var(--font-display);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-light);
  margin-bottom: 16px;
}
.foot-col a { display: block; color: var(--grey-light); font-size: 15px; padding: 4px 0; }
.foot-col a:hover { color: var(--warm-white); }
.foot-bottom {
  margin-top: 50px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--grey-dark); font-size: 13px;
  border-top: 1px solid var(--grey-dark); padding-top: 24px;
}

/* ---------- INVERTED (cream) SECTIONS — batch.film signature ---------- */
.invert { background: var(--cream); color: var(--ink-on-cream); border-top: none; }
.invert .eyebrow { color: rgba(18,18,18,.55); }
.invert .big-headline,
.invert .section-title,
.invert .type-h1,
.invert .type-h1.white { color: var(--ink-on-cream); }
.invert .intro-copy,
.invert .type-body { color: rgba(18,18,18,.7); }
.invert .media { border-color: rgba(18,18,18,.18); background: #c7c8c1; }
.invert .media .corner { border-color: var(--ink-on-cream); }
.invert .button { background: var(--black); color: var(--warm-white); }
.invert .button:hover { box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.invert .button.ghost { background: transparent; color: var(--ink-on-cream); border-color: rgba(18,18,18,.3); }
.invert .inline-link { color: var(--ink-on-cream); text-decoration: underline; }

/* ---------- INTRODUCING wrapper as section ---------- */
.section-4.introducing { padding-inline: var(--pad); }
.eyebrow.left { text-align: left; margin-bottom: 14px; }
.inline-link { color: var(--accent); }
.inline-link:hover { text-decoration: underline; }
.big-headline {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(36px, 6vw, 92px); line-height: .95; margin: 8px auto 28px; max-width: 16ch;
}

/* ---------- FEATURES (Seven technologies) — sticky horizontal carousel ---------- */
.hscroll-section { position: relative; border-top: 1px solid var(--grey-dark); }
.hscroll-driver { position: relative; height: 360vh; }
.hscroll-pin {
  position: sticky; top: 0; height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(28px, 5vh, 64px); overflow: hidden;
}
.hscroll-head { flex: none; }
.hscroll-head .section-title { margin-bottom: 0; }
.hscroll-track {
  display: flex; flex-wrap: nowrap; align-items: stretch; gap: 24px;
  padding-inline: var(--pad); will-change: transform; transform: translate3d(0,0,0); flex: none;
}
.feat-card {
  background: var(--ink); border: 1px solid var(--grey-dark); border-radius: 8px;
  padding: 34px 30px 40px; flex: 0 0 auto; width: clamp(300px, 27vw, 400px);
  display: flex; flex-direction: column; transition: border-color .4s ease, transform .4s ease;
}
.feat-card:hover { border-color: var(--grey-light); transform: translateY(-4px); }
.feat-card .num { font-family: var(--font-display); color: var(--grey-light); letter-spacing: .14em; text-transform: uppercase; font-size: 12px; margin-bottom: 22px; }
.feat-card h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 26px; margin-bottom: 14px; }
.feat-card p { color: var(--grey-light); font-size: 15px; }

/* ---------- HOW IT WORKS — pill accordion ---------- */
.section-how { padding-block: clamp(60px,12vw,140px); border-top: 1px solid var(--grey-dark); }
.hiw-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(32px, 5vw, 80px); align-items: start; margin-top: 44px; position: relative; }
.hiw-left { position: relative; padding-left: 60px; }
.hiw-stage { position: sticky; top: 96px; aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; background: var(--grey-dark); border: 1px solid var(--grey-dark); }
.hiw-stage-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.04); transition: opacity .6s ease, transform .9s ease; }
.hiw-stage-img.is-active { opacity: 1; transform: scale(1); }
.hiw-nav { position: absolute; left: 0; top: 2px; display: flex; flex-direction: column; gap: 8px; z-index: 1; }
.hiw-arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--grey-dark);
  background: var(--ink); color: var(--grey-light); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .3s ease, border-color .3s ease, transform .2s ease; padding: 0;
}
.hiw-arrow:hover { color: var(--warm-white); border-color: var(--warm-white); }
.hiw-arrow:active { transform: scale(.92); }
.hiw-arrow svg { width: 16px; height: 16px; }
.hiw-pills { display: flex; flex-direction: column; gap: 10px; }
.hiw-step { display: flex; flex-direction: column; }
.hiw-pill {
  display: inline-flex; align-items: center; gap: 12px; align-self: flex-start;
  padding: 11px 24px 11px 12px; border-radius: 999px; border: 1px solid var(--grey-dark);
  background: var(--ink); color: var(--warm-white);
  font-family: var(--font-display); font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  font-size: 15px; cursor: pointer; transition: border-color .35s ease, transform .2s ease; min-height: 44px;
}
.hiw-pill:hover { border-color: var(--grey-light); }
.hiw-pill:active { transform: scale(.97); }
.hiw-pill-ico { position: relative; width: 22px; height: 22px; border-radius: 50%; border: 1px solid currentColor; display: inline-flex; flex-shrink: 0; transition: background .35s ease, border-color .35s ease; }
.hiw-pill-ico::before, .hiw-pill-ico::after { content: ""; position: absolute; background: currentColor; top: 50%; left: 50%; transition: transform .35s ease, opacity .35s ease, width .35s ease, height .35s ease; }
.hiw-pill-ico::before { width: 9px; height: 1.4px; transform: translate(-50%,-50%); border-radius: 1px; }
.hiw-pill-ico::after { width: 1.4px; height: 9px; transform: translate(-50%,-50%); border-radius: 1px; }
.hiw-step.is-open .hiw-pill { border-color: var(--warm-white); }
.hiw-step.is-open .hiw-pill-ico { background: var(--warm-white); border-color: var(--warm-white); color: var(--ink); }
.hiw-step.is-open .hiw-pill-ico::before { background: var(--ink); width: 6px; height: 6px; border-radius: 50%; }
.hiw-step.is-open .hiw-pill-ico::after { width: 0; height: 0; opacity: 0; }
.hiw-pill-label { font-feature-settings: "tnum"; white-space: nowrap; }
.hiw-card {
  max-height: 0; overflow: hidden; opacity: 0; margin-top: 0; padding: 0 22px;
  border-radius: 14px; background: var(--ink); border: 1px solid transparent;
  transition: max-height .55s ease, opacity .4s ease, padding .4s ease, margin-top .4s ease, border-color .4s ease;
}
.hiw-step.is-open .hiw-card { max-height: 720px; opacity: 1; padding: 18px 24px 24px; margin-top: 10px; border-color: var(--grey-dark); }
.hiw-card h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: clamp(20px,2vw,28px); line-height: 1.12; margin-bottom: 12px; }
.hiw-card p { font-size: 15px; color: var(--grey-light); line-height: 1.55; margin: 0; max-width: 48ch; }
.hiw-card-img { display: none; }

/* ---------- VIDEO DEMO — full-screen scroll-expand (batch.film) ---------- */
.section-seeit { position: relative; border-top: 1px solid var(--grey-dark); background: var(--black); }
.seeit-driver { position: relative; height: 220vh; }
.seeit-pin { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.seeit-pin .demo-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: var(--ink);
  clip-path: inset(16% 22% round 48px); will-change: clip-path;
}
.seeit-caption {
  position: absolute; left: var(--pad); bottom: clamp(28px, 6vh, 64px); z-index: 2;
  text-shadow: 0 2px 24px rgba(0,0,0,.6); pointer-events: none;
}
.seeit-caption .eyebrow { color: var(--warm-white); margin-bottom: 8px; }
.seeit-title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  color: var(--warm-white); font-size: clamp(34px, 6vw, 92px); line-height: .94;
}
.seeit-play {
  position: absolute; top: 50%; left: 50%; z-index: 3;
  transform: translate(-50%, -50%);
  width: clamp(64px, 7vw, 88px); height: clamp(64px, 7vw, 88px);
  display: flex; align-items: center; justify-content: center;
  border: 0; border-radius: 50%; cursor: pointer;
  background: var(--warm-white); color: var(--black);
  box-shadow: 0 10px 40px rgba(0,0,0,.45);
  transition: transform .25s cubic-bezier(.22,1,.36,1), opacity .3s ease, visibility .3s;
}
.seeit-play svg { width: 38%; height: 38%; margin-left: 8%; }
.seeit-play:hover { transform: translate(-50%, -50%) scale(1.08); }
.seeit-play.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* ---------- PRODUCT TEST ---------- */
.section-test { position: relative; border-top: 1px solid var(--grey-dark); }
.test-driver { position: relative; height: 260vh; }
.test-pin { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.test-copy { position: absolute; top: clamp(80px,12vh,140px); left: var(--pad); z-index: 2; max-width: 46%; }
.test-copy .eyebrow { margin-bottom: 14px; }
.test-media { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.test-media img {
  height: 78%; width: auto; max-width: none;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.45));
  transform-origin: center center; will-change: transform;
  transform: translate3d(24%, -10%, 0) scale(0.52);
}

/* ---------- TESTIMONIALS ---------- */
.section-testi { padding-block: clamp(60px,12vw,140px); border-top: 1px solid var(--grey-dark); }
.section-testi .type-body { max-width: 64ch; margin-bottom: 50px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--grey-dark); border: 1px solid var(--grey-dark); }
.testi-card { background: var(--ink); padding: 34px 30px; display: flex; flex-direction: column; gap: 24px; }
.testi-card blockquote { font-size: 17px; line-height: 1.5; color: var(--warm-white); }
.testi-card figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.avatar { width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto; object-fit: cover; }
.testi-card figcaption strong { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; }
.testi-card figcaption em { display: block; font-style: normal; color: var(--grey-light); font-size: 13px; }

/* ---------- PRICING ---------- */
.section-pricing { padding-block: clamp(60px,12vw,140px); border-top: 1px solid var(--grey-dark); }
.section-pricing .type-body { margin-bottom: 44px; }
.pricing-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-inline: var(--pad); scrollbar-width: thin; }
.price-card {
  background: var(--ink); border: 1px solid var(--grey-dark); border-radius: 6px;
  padding: 30px 26px; width: 300px; flex: 0 0 auto; scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 14px;
}
.price-card.featured { border-color: var(--accent); }
.price-card h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 22px; }
.price-card .price { font-family: var(--font-display); font-weight: 700; font-size: 40px; line-height: 1; }
.price-card .price span { font-size: 15px; color: var(--grey-light); font-weight: 500; }
.price-card .tagline { color: var(--grey-light); font-size: 14px; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 4px 0 8px; }
.price-card li { font-size: 14px; color: var(--warm-white); padding-left: 18px; position: relative; }
.price-card li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.price-card .button { margin-top: auto; text-align: center; }
.price-card .badge {
  align-self: flex-start; font-family: var(--font-display); letter-spacing: .14em;
  text-transform: uppercase; font-size: 11px; color: #000; background: var(--accent);
  padding: 4px 10px; border-radius: 100px;
}
.price-card .price { display: flex; align-items: baseline; gap: 4px; }
.price-card .price .amt { font-size: 40px; line-height: 1; color: var(--warm-white); font-weight: 700; }
.price-card .desc { color: var(--grey-light); font-size: 13.5px; line-height: 1.55; }
.price-card .feat-label {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; font-size: 11px; color: var(--grey-light);
  padding-top: 14px; border-top: 1px solid var(--grey-dark); margin-top: 4px;
}
.price-card li.inherited { color: var(--grey-light); }

/* Billing toggle */
.billing-toggle {
  display: inline-flex; gap: 4px; margin: 24px 0 0;
  border: 1px solid var(--grey-dark); border-radius: 100px; padding: 4px;
}
.billing-btn {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; font-size: 12px; color: var(--grey-light);
  background: transparent; border: 0; cursor: pointer;
  padding: 9px 20px; border-radius: 100px; transition: background .25s, color .25s;
}
.billing-btn.active { background: var(--warm-white); color: #000; }

/* ---------- FAQ ---------- */
.section-faq { padding-block: clamp(40px,7vw,80px); border-top: 1px solid var(--grey-dark); }
.section-faq .faq-wrap { text-align: center; }
.section-faq .eyebrow.left { text-align: center; }
.section-faq .section-title { font-size: clamp(22px,2.8vw,34px); margin-bottom: 28px; }
.faq-list { margin: 20px auto 0; border-top: 1px solid var(--grey-dark); max-width: 760px; text-align: left; }
.faq-item { border-bottom: 1px solid var(--grey-dark); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 15px 0; display: flex; align-items: center;
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .02em; font-size: clamp(14px,1.3vw,17px);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; margin-left: auto; color: var(--grey-light); font-size: 20px; }
.faq-item[open] summary::after { content: "–"; color: var(--accent); }
.faq-item p { color: var(--grey-light); padding-bottom: 16px; max-width: 70ch; font-size: 14px; line-height: 1.55; }

/* ---------- BLOG ---------- */
.section-blog { padding-block: clamp(60px,12vw,140px); border-top: 1px solid var(--grey-dark); }
.blog-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(24px,4vw,50px); margin: 40px 0 30px; }
.blog-featured {
  display: flex; flex-direction: column; justify-content: flex-start;
  border: 1px solid var(--grey-dark); border-radius: 6px; padding: 34px;
  background: linear-gradient(180deg, var(--ink), #0a0a0a); min-height: 340px;
  transition: border-color .2s;
}
.blog-featured:hover { border-color: var(--accent); }
.blog-cover { margin: -34px -34px 26px; aspect-ratio: 16/9; overflow: hidden; border-radius: 6px 6px 0 0; background: var(--grey-dark); }
.blog-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.blog-featured:hover .blog-cover img { transform: scale(1.04); }
.blog-eyebrow { font-family: var(--font-display); letter-spacing: .2em; text-transform: uppercase; font-size: 12px; color: var(--grey-light); margin-bottom: 14px; }
.blog-featured h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: clamp(24px,3vw,38px); line-height: 1.05; margin-bottom: 20px; }
.blog-list { display: flex; flex-direction: column; }
.blog-row { display: flex; gap: 16px; align-items: center; padding: 16px 0; border-top: 1px solid var(--grey-dark); transition: color .2s; }
.blog-row:first-child { border-top: none; }
.blog-thumb { flex: 0 0 92px; width: 92px; height: 68px; border-radius: 4px; overflow: hidden; background: var(--grey-dark); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-row-text { flex: 1; min-width: 0; }
.blog-row h4 { font-family: var(--font-display); font-weight: 500; text-transform: uppercase; font-size: 17px; line-height: 1.2; margin-bottom: 8px; }
.blog-row:hover h4 { color: var(--accent); }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--grey-light); }
.tag { font-family: var(--font-display); letter-spacing: .12em; text-transform: uppercase; border: 1px solid var(--grey-dark); padding: 3px 9px; border-radius: 100px; color: var(--warm-white); }

/* ---------- WAITLIST FORM ---------- */
.waitlist-form { margin-top: 26px; max-width: 520px; }
.identity-row { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.identity-row label { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: var(--warm-white); cursor: pointer; }
.identity-row input { accent-color: var(--accent); }
.email-row { display: flex; gap: 10px; flex-wrap: wrap; }
.email-row input {
  flex: 1 1 240px; background: var(--ink); border: 1px solid var(--grey-dark);
  color: var(--warm-white); padding: 14px 16px; border-radius: 100px; font-family: var(--font-body); font-size: 15px;
}
.email-row input:focus { outline: none; border-color: var(--accent); }
.email-row .button { border: none; cursor: pointer; }
.form-msg { color: var(--grey-light); font-size: 13px; margin: 14px 0; }
.oauth-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.oauth-btn {
  flex: 1 1 auto; background: transparent; border: 1px solid var(--grey-dark); color: var(--warm-white);
  padding: 12px 18px; border-radius: 100px; font-family: var(--font-display); letter-spacing: .06em;
  text-transform: uppercase; font-size: 12px; cursor: pointer;
}
.oauth-btn:disabled { opacity: .45; cursor: not-allowed; }
.fine-print { color: var(--grey-light); font-size: 12px; }

/* ---------- FOOTER EXTRAS ---------- */
.foot-loc { display: block; color: var(--grey-light); font-size: 15px; padding: 4px 0; }
.foot-social { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--grey-dark); }
.foot-social a { color: var(--grey-light); font-size: 13px; }
.foot-social a:hover { color: var(--warm-white); }
.foot-bottom a { color: var(--grey-light); }
.foot-bottom a:hover { color: var(--warm-white); }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 60;
  max-width: 640px; margin-inline: auto;
  background: var(--ink); border: 1px solid var(--grey-dark); border-radius: 10px;
  padding: 18px 22px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.cookie-banner.hide { display: none; }
.cookie-banner p { font-size: 14px; color: var(--grey-light); flex: 1 1 260px; }
.cookie-banner a { color: var(--accent); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .button, .cookie-actions .oauth-btn { padding: 10px 18px; cursor: pointer; }

/* ---------- BEFORE / AFTER SLIDER ---------- */
.section-fullvid { padding: clamp(60px,10vw,120px) var(--pad); border-top: 1px solid var(--grey-dark); }
.video-compare { position: relative; max-width: 1080px; margin-inline: auto; padding: clamp(16px,3vw,34px); }
.borders { position: absolute; inset: 0; pointer-events: none; }
.corner-svg { position: absolute; width: 26px; height: 26px; border: 2px solid var(--warm-white); opacity: .7; }
.corner-svg._1 { top: 0; left: 0; border-width: 2px 0 0 2px; }
.corner-svg._2 { top: 0; right: 0; border-width: 2px 2px 0 0; }
.corner-svg._3 { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.corner-svg._4 { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.ba-slider {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
  user-select: none;
  cursor: ew-resize;
  touch-action: none;
}
.ba-slider.tall { aspect-ratio: 4 / 5; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { position: absolute; inset: 0; width: 100%; overflow: hidden; clip-path: inset(0 50% 0 0); }
.ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: var(--warm-white); transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
}
.ba-grip {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--warm-white); border: 2px solid var(--ink);
  box-shadow: 0 4px 18px rgba(0,0,0,.5);
  position: relative;
}
.ba-grip::before, .ba-grip::after {
  content: ""; position: absolute; top: 50%; width: 0; height: 0;
  border-block: 5px solid transparent;
}
.ba-grip::before { left: 8px; border-right: 7px solid var(--ink); transform: translateY(-50%); }
.ba-grip::after  { right: 8px; border-left: 7px solid var(--ink); transform: translateY(-50%); }
.ba-tag {
  position: absolute; bottom: 14px; font-family: var(--font-display);
  letter-spacing: .15em; font-size: 11px; text-transform: uppercase;
  background: rgba(0,0,0,.55); color: var(--warm-white); padding: 5px 10px; border-radius: 4px;
}
.ba-tag-before { right: 14px; }
.ba-tag-after { left: 14px; }

/* ---------- ANIMATED CALLOUT (black) ---------- */
.black-sections { background: var(--black); border-top: 1px solid var(--grey-dark); }
.section-callout01 { padding: clamp(90px,18vw,220px) var(--pad); text-align: center; }
.callout01 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(34px, 6vw, 96px); line-height: 1.02;
}
.callout-lead { color: var(--warm-white); }
.typed { color: var(--accent); }
.typed::after { content: "|"; color: var(--accent); animation: caret 1s step-end infinite; }
@keyframes caret { 50% { opacity: 0; } }

/* ---------- QUALITY ---------- */
.section-quality { padding-block: clamp(60px,12vw,140px); border-top: 1px solid var(--grey-dark); }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,6vw,80px); align-items: center; }
.type-h1.white { color: var(--warm-white); }
.quality-content { padding-right: 4%; }

/* ---------- WHITE CALLOUT ---------- */
.white-section { background: var(--warm-white); color: var(--black); }
.section-start { padding: clamp(90px,16vw,200px) var(--pad); text-align: center; }
.callout02 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(40px,8vw,120px); line-height: .94; color: var(--black);
}
.type-body.dark { color: #333; }
.type-body.limitmax { max-width: 56ch; margin: 30px auto 0; }

/* ---------- FUTURE / COMING SOON ---------- */
.section-future { padding-block: clamp(60px,12vw,140px); border-top: 1px solid var(--grey-dark); }
.future-head {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(28px,4vw,52px); margin: 0 var(--pad) 50px; max-width: var(--maxw);
  margin-inline: auto; padding-inline: var(--pad);
}
.future-list { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.batchnew {
  display: grid; grid-template-columns: 220px 1.4fr 2fr; gap: 30px; align-items: center;
  padding: 34px 0; border-top: 1px solid var(--grey-dark);
}
.batchnew:last-child { border-bottom: 1px solid var(--grey-dark); }
.live-badge.grey { margin: 0; border-color: var(--grey-dark); color: var(--grey-light); }
.live-dot.grey { background: var(--grey-light); animation: none; box-shadow: none; }
.batchnew-title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(26px,3vw,40px);
}
.batchnewbody { color: var(--grey-light); font-size: 15.5px; }

/* ---------- PRODUCTS CAROUSEL ---------- */
.products-carousel { padding-block: clamp(60px,12vw,120px); border-top: 1px solid var(--grey-dark); overflow: hidden; }
.products-track {
  display: flex; gap: 18px; width: max-content;
  animation: scroll-x 38s linear infinite;
  padding-inline: var(--pad);
}
.products-carousel:hover .products-track { animation-play-state: paused; }
.products-slide { width: clamp(220px, 24vw, 340px); flex: 0 0 auto; }
.products-slide img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border: 1px solid var(--grey-dark); border-radius: 4px;
}
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- FOUNDING ACCESS / FINAL CTA ---------- */
.section-claim {
  padding: clamp(70px,12vw,150px) var(--pad);
  border-top: 1px solid var(--grey-dark);
}
.claim-inner {
  max-width: 720px; margin-inline: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.claim-title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  color: var(--warm-white); font-size: clamp(36px,5.6vw,76px); line-height: .98;
  letter-spacing: .01em; margin: 14px 0 0;
}
.claim-sub {
  color: var(--grey-light); font-size: clamp(15px,1.6vw,18px); line-height: 1.55;
  max-width: 52ch; margin: 20px 0 0;
}
.claim-meter { width: 100%; max-width: 520px; margin: 34px 0 0; }
.claim-meter-bar {
  height: 6px; border-radius: 100px; background: var(--grey-dark); overflow: hidden;
}
.claim-meter-bar span { display: block; height: 100%; background: var(--warm-white); border-radius: 100px; }
.claim-meter-labels {
  display: flex; justify-content: space-between; margin-top: 10px;
  font-family: var(--font-display); letter-spacing: .1em; text-transform: uppercase;
  font-size: 11px; color: var(--grey-light);
}
.claim-form { margin-inline: auto; width: 100%; }
.claim-form .identity-row { justify-content: center; }
.claim-form .button { margin-right: 0; }

/* ---------- REVEAL ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .content-header { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .quality-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .header-65-block { margin-top: 30px; }
  .block-video.v2 { width: 78%; }
  .block-video.v3 { width: 62%; }

  /* Seven technologies → native horizontal swipe */
  .hscroll-section { padding-block: clamp(48px,10vw,80px); }
  .hscroll-driver { height: auto; }
  .hscroll-pin { position: relative; height: auto; overflow: visible; gap: 24px; }
  .hscroll-track {
    transform: none !important; overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding: 4px var(--pad) 22px; gap: 16px; scrollbar-width: none;
  }
  .hscroll-track::-webkit-scrollbar { display: none; }
  .feat-card { width: min(82vw, 360px); scroll-snap-align: center; }

  /* How it works → inline accordion: image lives inside each expanded card */
  .hiw-grid { grid-template-columns: 1fr; gap: 0; margin-top: 28px; }
  .hiw-left { padding-left: 44px; }
  .hiw-stage { display: none; }
  .hiw-card-img {
    display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover;
    border-radius: 10px; margin-bottom: 16px; background: var(--grey-dark);
  }
  .hiw-step.is-open .hiw-card { max-height: 1000px; }

  /* See it → static responsive video card (no scroll-expand) */
  .seeit-driver { height: auto; }
  .seeit-pin { position: relative; height: auto; overflow: visible; padding: clamp(48px,10vw,80px) var(--pad); }
  .seeit-pin .demo-video {
    position: relative; inset: auto; width: 100%; height: auto;
    aspect-ratio: 16 / 9; clip-path: none !important; border-radius: 16px;
  }
  .seeit-caption { position: static; margin-top: 22px; text-shadow: none; }

  /* Try it → stacked, left-aligned header (matches other sections), no scroll-scale */
  .test-driver { height: auto; }
  .test-pin {
    position: relative; height: auto; overflow: visible;
    padding: clamp(48px,10vw,80px) var(--pad);
  }
  .test-copy { position: static; max-width: none; }
  .test-media { position: static; inset: auto; margin-top: 32px; }
  .test-media img { height: auto; width: 88%; max-width: 460px; transform: none !important; }
}
@media (max-width: 640px) {
  /* keep the centred logo from colliding with the CTA — CTA lives in the burger menu */
  .nav-cta { display: none; }
  /* hero headline wraps on narrow screens */
  .header-callout { white-space: normal; max-width: 18ch; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
  .claim-form .button { width: 100%; text-align: center; }
  .claim-form .email-row input { flex-basis: 100%; }
  /* pricing cards snap to ~one per screen */
  .price-card { width: min(80vw, 320px); }
  /* countdown stays on one line */
  .countdown { gap: clamp(8px, 3vw, 18px); }
  .cd-num { font-size: clamp(26px, 8vw, 40px); }
  /* tighten hero top spacing under the fixed bar */
  .section-header { padding-top: 96px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ===========================================================
   SUBPAGES (Features, How it works, …)
   =========================================================== */

/* Static brand logo in the top bar (subpages have no morphing hero logo) */
.nav-brand.is-static { width: clamp(112px, 13vw, 150px); height: 28px; }
.nav-brand.is-static img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* Page hero (shared) */
.page-hero {
  padding: clamp(104px, 12vw, 148px) var(--pad) clamp(30px, 4.5vw, 52px);
  border-bottom: 1px solid var(--grey-dark);
  text-align: center;
}
.page-hero .wrap { padding-inline: 0; }
.page-hero .eyebrow,
.page-hero .eyebrow.left { text-align: center; margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .96;
  letter-spacing: .005em;
  margin: 0;
}
.page-hero .lead {
  color: var(--grey-light);
  font-size: clamp(15px, 1.35vw, 19px);
  max-width: 52ch;
  line-height: 1.6;
  margin: 16px auto 0;
}

/* ---------- FEATURE EXPLORER (hover list → modal) ---------- */
.ft-explorer { padding-block: clamp(50px, 9vw, 110px); }
.ft-list { list-style: none; text-align: center; }
.ft-list li { display: block; }
.ft-row {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  background: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  color: var(--warm-white);
  transition: opacity .3s ease, transform .45s cubic-bezier(.2,.7,.2,1);
}
.ft-list:hover .ft-row { opacity: .3; }
.ft-list .ft-row:hover { opacity: 1; transform: scale(1.04); }
.ft-row .ft-name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(30px, 6vw, 86px);
  line-height: 1.04;
  letter-spacing: .01em;
}
.ft-row .ft-idx {
  position: relative;
  top: -.85em;
  margin-left: .26em;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(11px, 1.2vw, 16px);
  letter-spacing: .12em;
  color: var(--grey-light);
  vertical-align: super;
}
.ft-explorer .ft-hint {
  text-align: center;
  margin-top: clamp(30px, 5vw, 56px);
  font-family: var(--font-display);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-light);
}
@media (hover: none) {
  .ft-list:hover .ft-row { opacity: 1; }
  .ft-list .ft-row:hover { transform: none; }
}

/* ---------- FEATURE MODAL ---------- */
.feat-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(0,0,0,.82);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.feat-modal.is-open { opacity: 1; visibility: visible; transition: opacity .3s ease, visibility 0s linear 0s; }
.feat-modal-card {
  position: relative; width: 100%; max-width: 720px; max-height: 88vh;
  background: var(--ink); border: 1px solid var(--grey-dark); border-radius: 16px;
  box-shadow: 0 60px 120px rgba(0,0,0,.6);
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  transform: translateY(16px) scale(.98); transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.feat-modal.is-open .feat-modal-card { transform: translateY(0) scale(1); }
.feat-modal-card::-webkit-scrollbar { width: 6px; }
.feat-modal-card::-webkit-scrollbar-thumb { background: var(--grey-dark); border-radius: 3px; }
.feat-modal-close {
  position: sticky; top: 16px; margin: 0 16px 0 auto;
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid var(--grey-dark);
  color: var(--warm-white); cursor: pointer; z-index: 2;
  transition: background .2s ease, transform .2s ease;
}
.feat-modal-close:hover { background: rgba(255,255,255,.14); transform: scale(1.05); }
.feat-modal-close svg { width: 16px; height: 16px; }
.feat-modal-body { padding: 0 clamp(26px, 5vw, 52px) clamp(40px, 6vw, 60px); margin-top: -38px; }
.feat-modal-eyebrow {
  display: inline-block;
  font-family: var(--font-display); letter-spacing: .28em; text-transform: uppercase;
  font-size: 12px; color: var(--grey-light); padding: 30px 0 22px;
}
.feat-modal h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(26px, 3.6vw, 44px); line-height: 1.02; letter-spacing: .01em;
  color: var(--warm-white); margin: 0 0 26px; max-width: 22ch;
}
.feat-modal-body p { font-size: clamp(15px, 1.05vw, 16px); line-height: 1.65; color: var(--grey-light); margin: 0 0 16px; max-width: 56ch; }
.feat-modal-body p.lead { font-size: clamp(16px, 1.15vw, 18px); color: var(--warm-white); font-weight: 500; margin-bottom: 22px; }
.feat-modal-list { list-style: none; margin: 8px 0 22px; display: flex; flex-direction: column; gap: 8px; }
.feat-modal-list li { position: relative; padding-left: 22px; font-size: 15px; color: var(--grey-light); line-height: 1.5; }
.feat-modal-list li::before { content: "—"; position: absolute; left: 0; color: var(--warm-white); }
.feat-modal-why { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--grey-dark); }
.feat-modal-why-label {
  display: block; font-family: var(--font-display);
  font-size: 11px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--warm-white); margin-bottom: 14px;
}
body.feat-modal-open { overflow: hidden; }
@media (max-width: 600px) {
  .feat-modal { padding: 12px; }
  .feat-modal-card { max-height: 92vh; border-radius: 14px; }
  .feat-modal-body { padding: 0 22px 40px; }
}

/* ---------- HOW IT WORKS — sticky-stack step cards ---------- */
.hw-stack { padding-block: clamp(40px, 7vw, 90px) clamp(80px, 14vw, 180px); }
.hw-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: clamp(32px, 5vw, 56px);
}
.hw-step {
  position: sticky;
  top: 92px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--grey-dark);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}
.hw-step:nth-child(1) { top: 92px; }
.hw-step:nth-child(2) { top: 108px; }
.hw-step:nth-child(3) { top: 124px; }
.hw-step:nth-child(4) { top: 140px; }
.hw-step:nth-child(5) { top: 156px; }
.hw-step:nth-child(6) { top: 172px; }
.hw-step:nth-child(7) { top: 188px; }
.hw-step:nth-child(8) { top: 204px; }
.hw-step-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5vw, 68px); line-height: 1;
  color: var(--warm-white); letter-spacing: .01em;
  margin-bottom: 10px;
}
.hw-step-label {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--grey-light); margin-bottom: 16px;
}
.hw-step h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(24px, 3vw, 40px); line-height: 1.02; letter-spacing: .01em;
  color: var(--warm-white); margin: 0 0 16px;
}
.hw-step p {
  margin: 0 0 14px; font-size: clamp(15px, 1.2vw, 16px); line-height: 1.6;
  color: var(--grey-light); max-width: 56ch;
}
.hw-step ul {
  margin: 16px 0 0; padding-left: 18px;
  font-size: 14px; line-height: 1.7; color: var(--grey-light); max-width: 56ch;
}
.hw-media {
  width: 100%; aspect-ratio: 4 / 3;
  border-radius: 14px; overflow: hidden; background: var(--black);
}
.hw-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 760px) {
  .hw-steps { gap: 16px; }
  .hw-step {
    grid-template-columns: 1fr; gap: 22px;
    padding: 26px 22px; border-radius: 16px;
  }
  .hw-step:nth-child(1) { top: 78px; }
  .hw-step:nth-child(2) { top: 86px; }
  .hw-step:nth-child(3) { top: 94px; }
  .hw-step:nth-child(4) { top: 102px; }
  .hw-step:nth-child(5) { top: 110px; }
  .hw-step:nth-child(6) { top: 118px; }
  .hw-step:nth-child(7) { top: 126px; }
  .hw-step:nth-child(8) { top: 134px; }
}

/* ---------- USE CASES — horizontal card carousel ---------- */
.uc-explorer { padding-block: clamp(40px, 7vw, 90px); }
.uc-controls { display: flex; justify-content: flex-end; gap: 10px; padding-inline: var(--pad); margin-bottom: 20px; }
.uc-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--grey-dark); background: transparent; color: var(--warm-white);
  display: grid; place-items: center; cursor: pointer; padding: 0;
  transition: border-color .25s, background .25s, transform .15s;
}
.uc-arrow:hover { border-color: var(--grey-light); background: rgba(255,255,255,.04); }
.uc-arrow:active { transform: scale(.93); }
.uc-arrow:disabled { opacity: .3; cursor: default; }
.uc-arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.uc-track {
  display: flex; gap: 18px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px var(--pad) 24px; scrollbar-width: none;
}
.uc-track::-webkit-scrollbar { display: none; }
.uc-card {
  flex: 0 0 auto; width: min(82vw, 360px); scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 14px;
  background: var(--ink); border: 1px solid var(--grey-dark); border-radius: 18px;
  padding: 36px 30px; transition: border-color .3s, transform .4s cubic-bezier(.2,.7,.2,1);
}
.uc-card:hover { border-color: var(--grey-light); transform: translateY(-6px); }
.uc-tag {
  align-self: flex-start; font-family: var(--font-display); font-weight: 600;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--grey-light);
  padding: 5px 11px; border: 1px solid var(--grey-dark); border-radius: 100px;
}
.uc-card h3 {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(20px, 1.9vw, 25px); line-height: 1.1; letter-spacing: .01em; color: var(--warm-white);
}
.uc-card p { color: var(--grey-light); font-size: 15px; line-height: 1.6; }
.uc-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 4px 0 0; }
.uc-card li { font-size: 14px; color: var(--warm-white); padding-left: 18px; position: relative; }
.uc-card li::before { content: "—"; position: absolute; left: 0; color: var(--grey-light); }

/* ---------- ABOUT ---------- */
.ab-section { padding-block: clamp(40px, 7vw, 90px); }
.ab-intro { max-width: 820px; }
.ab-intro > p {
  font-family: var(--font-display); font-weight: 500; text-transform: none;
  font-size: clamp(22px, 2.6vw, 34px); line-height: 1.25; letter-spacing: .005em;
  color: var(--warm-white);
}
.ab-bullets { list-style: none; margin: clamp(26px, 4vw, 44px) 0 0; display: flex; flex-direction: column; gap: 14px; }
.ab-bullets li {
  position: relative; padding-left: 30px;
  font-size: clamp(15px, 1.3vw, 17px); line-height: 1.5; color: var(--grey-light);
}
.ab-bullets li::before {
  content: ""; position: absolute; left: 0; top: .65em;
  width: 16px; height: 2px; background: var(--grey-light);
}
.ab-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--grey-dark); border: 1px solid var(--grey-dark); border-radius: 16px;
  overflow: hidden; margin-top: clamp(40px, 6vw, 72px);
}
.ab-stat { background: var(--ink); padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 32px); }
.ab-stat-num {
  font-family: var(--font-display); font-weight: 700; line-height: 1;
  font-size: clamp(34px, 4.4vw, 60px); color: var(--warm-white);
}
.ab-stat-label {
  display: block; margin-top: 10px; font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--grey-light);
}
.ab-prose, .ab-prose-2 { max-width: 760px; }
.ab-prose { margin-top: clamp(24px, 4vw, 44px); }
.ab-lede { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; color: var(--warm-white); margin: 0 0 18px; }
.ab-emph { font-family: var(--font-display); font-weight: 500; }
.ab-steps {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; font-size: clamp(18px, 2vw, 26px); color: var(--warm-white); margin: 22px 0;
}
.ab-quiet { color: var(--grey-light); font-size: clamp(15px, 1.3vw, 17px); line-height: 1.6; }
.ab-prose-2 { margin-top: clamp(28px, 4vw, 48px); }
.ab-line { color: var(--grey-light); font-size: clamp(15px, 1.3vw, 17px); line-height: 1.6; margin: 0 0 14px; }
.ab-line-strong { color: var(--warm-white); font-weight: 500; }
.ab-cinematic { padding-block: clamp(70px, 12vw, 150px); border-top: 1px solid var(--grey-dark); }
.ab-cinematic-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.ab-cinematic-h {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(30px, 5.4vw, 68px); line-height: .98; letter-spacing: .01em; color: var(--warm-white);
}
.ab-cinematic-h span { display: block; color: var(--grey-light); }
.ab-cinematic-body { margin-top: clamp(28px, 4vw, 48px); }
.ab-cinematic-body p { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; color: var(--grey-light); margin: 0 0 16px; }
.ab-cinematic-break { color: var(--warm-white); font-family: var(--font-display); font-weight: 500; }
.ab-cinematic-close {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .02em; font-size: clamp(18px, 2vw, 26px); color: var(--warm-white) !important; margin-top: 24px !important;
}
@media (max-width: 680px) {
  .ab-stats { grid-template-columns: 1fr 1fr; }
}

/* ---------- CONTACT ---------- */
.ct-section { padding-block: clamp(40px, 7vw, 90px); }
.ct-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
@media (min-width: 880px) { .ct-grid { grid-template-columns: 1.2fr 1fr; } }
.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  background: var(--ink); border: 1px solid var(--grey-dark);
  border-radius: 18px; padding: clamp(28px, 4vw, 44px);
}
.contact-form .form-eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: .26em; text-transform: uppercase; color: var(--grey-light); margin: 0;
}
.contact-form h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(24px, 3vw, 36px); line-height: 1.02; color: var(--warm-white); margin: 0 0 6px;
}
.form-row label {
  display: block; font-size: 12px; letter-spacing: .04em;
  color: var(--grey-light); margin-bottom: 7px;
}
.form-row input,
.form-row textarea {
  width: 100%; box-sizing: border-box; font-family: var(--font-body); font-size: 15px;
  padding: 13px 16px; color: var(--warm-white);
  background: var(--black); border: 1px solid var(--grey-dark); border-radius: 10px;
  outline: none; transition: border-color .2s;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: #6b6b6b; }
.form-row input:focus,
.form-row textarea:focus { border-color: var(--warm-white); }
.form-row textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.contact-form .button { align-self: flex-start; margin-top: 6px; cursor: pointer; }
.form-msg { display: none; margin: 6px 0 0; padding: 12px 16px; border-radius: 10px; font-size: 14px; line-height: 1.5; }
.form-msg[data-state="success"] { display: block; background: rgba(213,214,207,.08); border: 1px solid var(--grey-dark); color: var(--warm-white); }
.form-msg[data-state="error"] { display: block; background: rgba(213,214,207,.04); border: 1px solid var(--grey-dark); color: var(--grey-light); }
.contact-info-lede { color: var(--grey-light); font-size: clamp(15px, 1.3vw, 17px); line-height: 1.6; margin: 0 0 28px; max-width: 44ch; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--grey-dark); border: 1px solid var(--grey-dark); border-radius: 16px; overflow: hidden; }
.info-card { background: var(--ink); padding: clamp(22px, 3vw, 30px); display: flex; flex-direction: column; gap: 8px; }
.info-icon { color: var(--grey-light); }
.info-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.info-label { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--warm-white); }
.info-value { font-size: 14px; color: var(--grey-light); text-decoration: none; line-height: 1.45; }
a.info-value:hover { color: var(--warm-white); }
.info-value { overflow-wrap: anywhere; }
@media (max-width: 560px) { .info-grid { grid-template-columns: 1fr; } }

/* ---------- AUTH (login / signup) ---------- */
.auth-shell { min-height: calc(100svh - 200px); display: flex; align-items: center; justify-content: center; padding: clamp(80px, 14vw, 140px) var(--pad) clamp(60px, 9vw, 100px); }
.auth-wrap { width: 100%; max-width: 440px; text-align: center; }
.auth-eyebrow { font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--grey-light); margin: 0 0 14px; }
.auth-wrap h1 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(34px, 5vw, 56px); line-height: 1; letter-spacing: .02em; color: var(--warm-white); margin: 0; }
.auth-switch { font-size: 14px; color: var(--grey-light); margin: 12px 0 28px; }
.auth-switch a { color: var(--warm-white); text-decoration: underline; text-underline-offset: 3px; }
.auth-card { text-align: left; background: var(--ink); border: 1px solid var(--grey-dark); border-radius: 18px; padding: clamp(28px, 4vw, 40px); }
.sso-grid { display: flex; flex-direction: column; gap: 10px; }
.sso-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; cursor: pointer; font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--warm-white); background: var(--black); border: 1px solid var(--grey-dark); border-radius: 100px; padding: 13px 18px; transition: border-color .2s, background-color .2s; }
.sso-btn:hover { border-color: var(--grey-light); background: #181818; }
.sso-btn svg { width: 18px; height: 18px; }
.form-divider { display: flex; align-items: center; gap: 14px; margin: 22px 0; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-light); }
.form-divider::before, .form-divider::after { content: ""; flex: 1; height: 1px; background: var(--grey-dark); }
.auth-form { display: flex; flex-direction: column; gap: 8px; }
.auth-form label { font-size: 12px; letter-spacing: .04em; color: var(--grey-light); margin-bottom: 2px; }
.auth-form input { width: 100%; box-sizing: border-box; font-family: var(--font-body); font-size: 15px; padding: 13px 16px; color: var(--warm-white); background: var(--black); border: 1px solid var(--grey-dark); border-radius: 10px; outline: none; transition: border-color .2s; }
.auth-form input::placeholder { color: #6b6b6b; }
.auth-form input:focus { border-color: var(--warm-white); }
.auth-form .button { width: 100%; margin-top: 12px; cursor: pointer; }
.auth-fine { margin: 14px 0 0; color: var(--grey-light); font-size: 12px; text-align: center; }
.auth-msg { margin: 4px 0 0; font-size: 13px; line-height: 1.5; }
.auth-msg.ok { color: var(--warm-white); }
.auth-msg.error { color: var(--grey-light); }
.auth-foot { margin: 24px 0 0; text-align: center; font-size: 14px; color: var(--grey-light); }
.auth-foot a { color: var(--warm-white); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- LEGAL / LONGFORM ---------- */
.legal-shell { padding-block: clamp(40px, 7vw, 90px) clamp(70px, 12vw, 150px); }
.legal-wrap { max-width: 820px; }
.legal-meta { font-size: 13px; color: var(--grey-light); margin: 14px 0 0; }
.legal-body { margin-top: clamp(32px, 5vw, 52px); }
.legal-body h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(20px, 2.4vw, 30px); line-height: 1.05; letter-spacing: .01em; color: var(--warm-white); margin: clamp(36px, 5vw, 52px) 0 14px; }
.legal-body h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(16px, 1.6vw, 19px); letter-spacing: .02em; color: var(--warm-white); margin: 28px 0 10px; }
.legal-body p, .legal-body li { color: var(--grey-light); font-size: clamp(15px, 1.2vw, 16px); line-height: 1.7; }
.legal-body p { margin: 0 0 16px; }
.legal-body ul { margin: 0 0 16px; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-body a { color: var(--warm-white); text-decoration: underline; text-underline-offset: 3px; }
.legal-body strong { color: var(--warm-white); font-weight: 600; }
.legal-toc { display: flex; flex-wrap: wrap; gap: 8px; margin-top: clamp(24px, 4vw, 36px); }
.legal-toc a { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--grey-light); border: 1px solid var(--grey-dark); border-radius: 100px; padding: 8px 14px; text-decoration: none; transition: color .2s, border-color .2s; }
.legal-toc a:hover { color: var(--warm-white); border-color: var(--grey-light); }
.legal-cards { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: clamp(32px, 5vw, 52px); }
@media (min-width: 640px) { .legal-cards { grid-template-columns: 1fr 1fr; } }
.legal-card { display: block; text-decoration: none; background: var(--ink); border: 1px solid var(--grey-dark); border-radius: 16px; padding: 26px 24px; transition: border-color .3s, transform .4s cubic-bezier(.2,.7,.2,1); }
.legal-card:hover { border-color: var(--grey-light); transform: translateY(-4px); }
.legal-card h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 18px; letter-spacing: .02em; color: var(--warm-white); margin: 0 0 8px; }
.legal-card p { color: var(--grey-light); font-size: 14px; line-height: 1.55; margin: 0; }
.legal-lede { font-family: var(--font-display); font-weight: 400; font-size: clamp(18px, 2vw, 24px); line-height: 1.45; color: var(--warm-white); margin: 20px 0 0; }
.legal-body .in-short { background: var(--ink); border-left: 2px solid var(--grey-light); border-radius: 0 10px 10px 0; padding: 14px 18px; margin: 0 0 18px; font-size: 14.5px; line-height: 1.6; color: var(--grey-light); }
.legal-body .in-short-label { display: inline; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; color: var(--warm-white); margin-right: 6px; }
.legal-body .table-wrap { overflow-x: auto; margin: 0 0 20px; border: 1px solid var(--grey-dark); border-radius: 12px; }
.legal-body table { width: 100%; border-collapse: collapse; min-width: 520px; }
.legal-body th, .legal-body td { text-align: left; padding: 12px 14px; font-size: 14px; line-height: 1.5; border-bottom: 1px solid var(--grey-dark); color: var(--grey-light); vertical-align: top; }
.legal-body th { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: 12px; color: var(--warm-white); background: var(--ink); }
.legal-body tr:last-child td { border-bottom: 0; }
.legal-body td strong { color: var(--warm-white); }
.legal-body em { font-style: italic; }
.legal-body .callout { background: var(--ink); border: 1px solid var(--grey-dark); border-radius: 12px; padding: 18px 20px; margin: 0 0 20px; color: var(--grey-light); font-size: 14.5px; line-height: 1.65; }
.legal-body .callout p { margin: 0 0 12px; }
.legal-body .callout p:last-child { margin-bottom: 0; }
.legal-body .callout strong { color: var(--warm-white); }
.legal-body .pref-panel { border: 1px solid var(--grey-dark); border-radius: 14px; overflow: hidden; margin: 4px 0 18px; }
.legal-body .pref-cat { display: flex; align-items: center; gap: 18px; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--grey-dark); }
.legal-body .pref-cat:last-child { border-bottom: 0; }
.legal-body .pref-cat-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .02em; color: var(--warm-white); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.legal-body .pref-cat-desc { font-size: 13.5px; line-height: 1.55; color: var(--grey-light); }
.legal-body .badge { font-family: var(--font-body); font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 11px; color: var(--grey-light); border: 1px solid var(--grey-dark); border-radius: 100px; padding: 2px 9px; }
.legal-body .toggle { position: relative; display: inline-block; width: 44px; height: 26px; flex-shrink: 0; cursor: pointer; }
.legal-body .toggle input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.legal-body .toggle-track { position: absolute; inset: 0; border-radius: 100px; background: var(--grey-dark); border: 1px solid #2e2e2e; transition: background .25s; }
.legal-body .toggle-thumb { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--grey-light); transition: transform .25s, background .25s; }
.legal-body .toggle input:checked ~ .toggle-track { background: var(--warm-white); }
.legal-body .toggle input:checked ~ .toggle-thumb { transform: translateX(18px); background: var(--black); }
.legal-body .toggle input:disabled { cursor: not-allowed; }
.legal-body .pref-actions { display: flex; align-items: center; gap: 16px; margin: 0 0 24px; flex-wrap: wrap; }
.legal-body .btn-save { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 13px; color: var(--black); background: var(--warm-white); border: 0; border-radius: 100px; padding: 11px 22px; cursor: pointer; transition: opacity .2s; }
.legal-body .btn-save:hover { opacity: .85; }
.legal-body .pref-status { font-size: 13px; color: var(--grey-light); }
.legal-body .browser-list { list-style: none; padding: 0; }
.legal-body .browser-list li { display: flex; flex-direction: column; gap: 2px; padding: 12px 0; border-bottom: 1px solid var(--grey-dark); }
.legal-body .browser-list li:last-child { border-bottom: 0; }
.legal-body .browser-name { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: .03em; color: var(--warm-white); }

/* ---------- ERROR PAGES ---------- */
.err-shell { min-height: calc(100svh - 200px); display: flex; align-items: center; justify-content: center; text-align: center; padding: clamp(90px, 16vw, 160px) var(--pad) clamp(60px, 9vw, 100px); }
.err-wrap { max-width: 560px; }
.err-code { font-family: var(--font-display); font-weight: 700; font-size: clamp(90px, 22vw, 200px); line-height: .9; letter-spacing: .01em; color: var(--warm-white); }
.err-wrap h1 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(24px, 3vw, 38px); letter-spacing: .01em; color: var(--warm-white); margin: 10px 0 14px; }
.err-wrap p { color: var(--grey-light); font-size: clamp(15px, 1.4vw, 17px); line-height: 1.6; margin: 0 auto 28px; max-width: 44ch; }

/* ---------- BLOG INDEX ---------- */
.blog-shell { padding-block: clamp(40px, 7vw, 90px) clamp(70px, 12vw, 150px); }
.mck-head { max-width: 760px; }
.mck-h1 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(34px, 6vw, 72px); line-height: .98; letter-spacing: .01em;
  color: var(--warm-white); margin: 10px 0 18px;
}
.mck-lede { color: var(--grey-light); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; max-width: 60ch; }
.mck-topics-wrap { margin: clamp(28px, 4vw, 44px) 0 clamp(32px, 5vw, 52px); overflow-x: auto; scrollbar-width: none; }
.mck-topics-wrap::-webkit-scrollbar { display: none; }
.mck-topics { display: flex; gap: 8px; flex-wrap: wrap; }
.mck-chip {
  flex: 0 0 auto; cursor: pointer; white-space: nowrap;
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--grey-light);
  background: transparent; border: 1px solid var(--grey-dark); border-radius: 100px;
  padding: 9px 16px; transition: color .2s, border-color .2s, background-color .2s;
}
.mck-chip:hover { color: var(--warm-white); border-color: var(--grey-light); }
.mck-chip.is-active { background: var(--warm-white); color: #000; border-color: var(--warm-white); }
.mck-frame {
  width: 100%; aspect-ratio: 16/10; border-radius: 14px; overflow: hidden;
  background: var(--grey-dark); border: 1px solid var(--grey-dark);
}
.mck-frame img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(1) contrast(1.05); }
.mck-cat {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--grey-light);
}
.mck-byline { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 13px; color: var(--grey-light); }
.mck-byline .sep { opacity: .5; }
.mck-feature {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center;
  text-decoration: none; background: var(--ink); border: 1px solid var(--grey-dark);
  border-radius: 20px; padding: clamp(24px, 3vw, 36px); margin-bottom: clamp(40px, 6vw, 64px);
  transition: border-color .3s;
}
.mck-feature:hover { border-color: var(--grey-light); }
.mck-feature .mck-frame--lead { aspect-ratio: 4/3; }
.mck-feature-body { display: flex; flex-direction: column; gap: 14px; }
.mck-feature-body h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(22px, 2.6vw, 36px); line-height: 1.04; letter-spacing: .01em; color: var(--warm-white); margin: 0;
}
.mck-excerpt, .mck-item-excerpt { color: var(--grey-light); font-size: 15px; line-height: 1.6; margin: 0; }
.mck-grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 3vw, 40px); }
@media (min-width: 600px) { .mck-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .mck-grid { grid-template-columns: repeat(3, 1fr); } }
.mck-item-link { display: flex; flex-direction: column; gap: 12px; text-decoration: none; }
.mck-item-link .mck-frame { margin-bottom: 2px; transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.mck-item-link:hover .mck-frame { transform: translateY(-4px); }
.mck-item h3 {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.12; letter-spacing: .01em; color: var(--warm-white); margin: 0;
}
.mck-item-link:hover h3 { color: #fff; }
.mck-pager { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: clamp(48px, 7vw, 80px); border-top: 1px solid var(--grey-dark); padding-top: clamp(28px, 4vw, 44px); }
.mck-page-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--warm-white); text-decoration: none; }
.mck-page-btn.is-disabled { opacity: .35; pointer-events: none; }
.mck-page-btn svg { width: 18px; height: 18px; }
.mck-page-numbers { display: flex; align-items: center; gap: 6px; }
.mck-page {
  cursor: pointer; min-width: 38px; height: 38px; padding: 0 10px; border-radius: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--grey-light); background: transparent; border: 1px solid var(--grey-dark);
  transition: color .2s, border-color .2s, background-color .2s;
}
.mck-page:hover { color: var(--warm-white); border-color: var(--grey-light); }
.mck-page.is-active { background: var(--warm-white); color: #000; border-color: var(--warm-white); }
.mck-page-dots { color: var(--grey-light); padding: 0 4px; }
@media (max-width: 720px) {
  .mck-feature { grid-template-columns: 1fr; }
}

/* ---------- BLOG ARTICLE ---------- */
.art-shell { padding-block: clamp(40px, 7vw, 90px) clamp(70px, 12vw, 150px); }
.art-wrap { max-width: 760px; }
.art-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-light); text-decoration: none; margin-bottom: clamp(24px, 4vw, 36px); transition: color .2s; }
.art-back:hover { color: var(--warm-white); }
.art-back svg { width: 14px; height: 14px; }
.art-cat { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 14px; }
.art-title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(30px, 5vw, 56px); line-height: 1; letter-spacing: .01em; color: var(--warm-white); margin: 0 0 18px; }
.art-deck { font-family: var(--font-display); font-weight: 400; font-size: clamp(17px, 2vw, 22px); line-height: 1.4; color: var(--warm-white); margin: 0 0 20px; max-width: 56ch; }
.art-byline { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; color: var(--grey-light); }
.art-byline .sep { opacity: .5; }
.art-byline strong { color: var(--warm-white); font-weight: 600; }
.art-cover { width: 100%; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; background: var(--grey-dark); border: 1px solid var(--grey-dark); margin: clamp(28px, 4vw, 40px) 0 0; }
.art-cover img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(1) contrast(1.05); }
.art-share { display: flex; align-items: center; gap: 10px; padding: 16px 0; border-top: 1px solid var(--grey-dark); border-bottom: 1px solid var(--grey-dark); margin: clamp(28px, 4vw, 40px) 0 0; }
.art-share-label { font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-light); margin-right: 4px; }
.art-share-btn { width: 36px; height: 36px; display: grid; place-items: center; background: transparent; border: 1px solid var(--grey-dark); color: var(--warm-white); border-radius: 50%; transition: background-color .2s, color .2s, border-color .2s; }
.art-share-btn:hover { background: var(--warm-white); color: var(--black); border-color: var(--warm-white); }
.art-share-btn svg { width: 16px; height: 16px; }
.legal-body .pull-quote { border-left: 2px solid var(--grey-light); padding: 6px 0 6px 22px; margin: 28px 0; }
.legal-body .pull-quote p { font-family: var(--font-display); font-weight: 500; font-size: clamp(18px, 2.2vw, 24px); line-height: 1.35; color: var(--warm-white); margin: 0; }
.legal-body .takeaways { background: var(--ink); border: 1px solid var(--grey-dark); border-radius: 14px; padding: 22px 24px; margin: 32px 0; }
.legal-body .takeaways-label { font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 12px; }
.legal-body .takeaways ul { margin: 0; }
.art-author { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--ink); border: 1px solid var(--grey-dark); border-radius: 14px; margin: clamp(40px, 6vw, 56px) 0 0; }
.art-author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--grey-dark); color: var(--warm-white); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 18px; flex-shrink: 0; }
.art-author-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .02em; color: var(--warm-white); margin: 0 0 4px; }
.art-author-desc { font-size: 13.5px; line-height: 1.55; color: var(--grey-light); margin: 0; }
.art-related { margin: clamp(48px, 7vw, 80px) 0 0; border-top: 1px solid var(--grey-dark); padding-top: clamp(28px, 4vw, 44px); }
.art-related h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(18px, 2vw, 24px); letter-spacing: .02em; color: var(--warm-white); margin: 0 0 18px; }
.art-related-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .art-related-grid { grid-template-columns: repeat(3, 1fr); } }
.art-related-card { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px; border: 1px solid var(--grey-dark); border-radius: 14px; text-decoration: none; transition: border-color .2s, transform .4s cubic-bezier(.2,.7,.2,1); }
.art-related-card:hover { border-color: var(--grey-light); transform: translateY(-4px); }
.art-related-cat { font-family: var(--font-display); font-weight: 600; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--grey-light); }
.art-related-title { font-family: var(--font-display); font-weight: 600; font-size: 15px; line-height: 1.25; color: var(--warm-white); }

/* ---------- CTA CARD ---------- */
.section-cta { padding-block: clamp(60px, 11vw, 130px); border-top: 1px solid var(--grey-dark); }
.cta-card {
  text-align: center;
  border: 1px solid var(--grey-dark); border-radius: 16px;
  padding: clamp(48px, 8vw, 88px) clamp(24px, 6vw, 64px);
  background: var(--ink);
}
.cta-card h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(30px, 5vw, 64px); line-height: .96; letter-spacing: .01em;
  margin: 14px 0 16px;
}
.cta-card p { color: var(--grey-light); max-width: 48ch; margin: 0 auto 32px; }

/* ---------- SUBPAGE responsive ---------- */
@media (max-width: 900px) {
  .page-hero { padding-top: clamp(96px, 20vw, 124px); }
}
