/* =========================================================================
   OTIEM: one page that reads like a film.
   Space Grotesk + JetBrains Mono. Orange / black / bone. No em dashes,
   no uniform card grid. Scroll is the timeline; CSS carries the floor,
   motion.js carries the choreography. Everything reads with JS off.
   ========================================================================= */

/* ---------------- tokens ---------------- */
:root {
  --black: #0A0A0A;
  --ink: #0E0D0B;
  --raise: #161513;
  --raise-2: #1C1B18;
  --line-dark: #262420;
  --white: #FFFFFF;
  --surface: #F6F5F2;
  --surface-2: #EFEEEA;
  --line-light: #E4E2DC;

  /* the warm shift */
  --bone: #F2EDE3;
  --bone-2: #E9E2D3;
  --ink-warm: #171410;
  --line-bone: #DED5C4;
  --muted-warm: #6E6353;

  --orange: #FF5A1F;
  --orange-light: #FF7A45;
  --orange-press: #E8480F;

  /* the one red thing on the page: stop */
  --red: #E5484D;

  --muted-dark: #9A968F;  /* muted text on dark */
  --muted-light: #6A665F; /* muted text on light */

  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --wrap: 1200px;
  --pad-x: clamp(20px, 5vw, 48px);
  --pad-y: clamp(80px, 11vw, 150px);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 9px;

  --nav-h: 74px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* section-local (overridden by sec-dark / sec-light / sec-shift) */
  --bg: var(--black);
  --fg: var(--white);
  --muted: var(--muted-dark);
  --line: var(--line-dark);
  --card-bg: var(--raise);
  --card-line: var(--line-dark);
}

/* ---------------- reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis-on { scroll-behavior: auto; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input { font: inherit; }
ul, ol { list-style: none; padding: 0; }

.mono {
  font-family: var(--mono);
  font-size: 0.9em;
  letter-spacing: -0.01em;
}

/* ---------------- a11y ---------------- */
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  background: var(--orange); color: var(--black);
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-weight: 600; transform: translateY(-160%); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------- layout ---------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.wrap-narrow { max-width: 840px; }

section { padding-block: var(--pad-y); position: relative; }

.sec-dark {
  background: var(--black); color: var(--white);
  --bg: var(--black); --fg: var(--white);
  --muted: var(--muted-dark); --line: var(--line-dark);
  --card-bg: var(--raise); --card-line: var(--line-dark);
}
.sec-light {
  background: var(--surface); color: var(--ink);
  --bg: var(--surface); --fg: var(--ink);
  --muted: var(--muted-light); --line: var(--line-light);
  --card-bg: var(--white); --card-line: var(--line-light);
}

/* ---------------- typography ---------------- */
.h-hero {
  font-weight: 600;
  font-size: clamp(1.75rem, 6.6vw, 5.4rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
}
.h2 {
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
h3 { font-weight: 600; letter-spacing: -0.02em; }

.accent { color: var(--orange); }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
}

/* mono kicker: the file-reference system */
.kicker {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--mono);
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(22px, 3vw, 34px);
}
.kicker.center { justify-content: center; }
.kicker-num {
  font-family: var(--mono);
  font-size: clamp(0.78rem, 1.05vw, 0.86rem);
  font-weight: 600; letter-spacing: 0.08em;
  color: var(--orange);
  position: relative; padding-right: 16px;
}
.kicker-num::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 4px; height: 4px; border-radius: 50%; background: var(--orange);
  transform: translateY(-50%);
}

.section-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-head .lead { margin-top: 22px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* SplitText FOUC guard: hidden only when the fx class committed to motion.
   motion.js removes .fx if GSAP is unavailable. */
.fx [data-split] { visibility: hidden; }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 52px; padding-inline: 28px;
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn-sm { height: 44px; padding-inline: 20px; font-size: 14px; }

.btn-primary {
  background: var(--orange);
  color: var(--black);
  font-weight: 600;
  box-shadow: 0 10px 32px -12px rgba(255, 90, 31, 0.75);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-primary:active { background: var(--orange-press); transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line);
}
.sec-dark .btn-ghost:hover { border-color: #3a3833; background: var(--raise); transform: translateY(-2px); }
.sec-light .btn-ghost:hover { border-color: #cbc8c1; background: var(--surface-2); transform: translateY(-2px); }

.arr { transition: transform .18s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* ---------------- nav + the living ring ---------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .25s var(--ease), border-color .25s var(--ease), backdrop-filter .25s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line-dark);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.brand {
  display: inline-flex; align-items: center; gap: 1px;
  color: var(--white);
  will-change: transform;
}
.brand .mark {
  width: 24px; height: 24px;
  filter: drop-shadow(0 0 11px rgba(255, 90, 31, 0.55));
  transition: transform .3s var(--ease);
}
.brand:hover .mark { transform: rotate(90deg); }
.brand-word {
  font-weight: 600; font-size: 23px; letter-spacing: -0.04em;
  margin-left: -1px;
}

/* ring: base draws itself on load; progress arc tracks the scroll */
.fx .nav .ring-base {
  opacity: 0.3;
  stroke-dasharray: 100;
  animation: ring-draw 1.1s var(--ease) both;
}
.fx .nav .ring-progress {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset .25s linear;
}
@keyframes ring-draw {
  from { stroke-dashoffset: 100; }
  to   { stroke-dashoffset: 0; }
}

.nav-links {
  display: flex; gap: 36px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 15px; font-weight: 400; color: var(--muted-dark);
  transition: color .15s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--radius-sm); }
.nav-toggle .bars { display: block; width: 20px; margin-inline: auto; }
.nav-toggle .bars span {
  display: block; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle .bars span + span { margin-top: 5px; }

/* ---------------- hero: the promise ---------------- */
.hero {
  padding-top: clamp(132px, 17vh, 188px);
  padding-bottom: clamp(64px, 8vw, 104px);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-loop {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  opacity: 0.34;
}
.hero-bg-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 44% at 50% 6%, rgba(255, 90, 31, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,0.42) 0%, rgba(10,10,10,0.72) 34%, var(--black) 58%);
}
.hero-wrap { position: relative; z-index: 1; text-align: center; }
.hero-copy { width: 100%; }
.h-hero { margin-inline: auto; }
.hero-lead { max-width: 56ch; margin: 26px auto 0; }
.hero-cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; justify-content: center; }
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 12px 30px; justify-content: center;
  margin-top: 32px;
  font-size: 14px; font-weight: 400; color: var(--muted-dark);
}
.hero-tags li { display: inline-flex; align-items: center; gap: 9px; }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.14);
}

/* hero film centerpiece */
.video-stage { width: 100%; max-width: 1000px; min-width: 0; margin: clamp(52px, 7vw, 92px) auto 0; }
.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #000;
  box-shadow: 0 40px 110px -50px rgba(0,0,0,.9), 0 0 0 1px rgba(255,90,31,.08), 0 0 70px -30px rgba(255,90,31,.35);
}
.film { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; background: #000; }
.video-play {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(10,10,10,.25), rgba(10,10,10,.55));
  transition: opacity .25s var(--ease);
}
.video-frame.playing .video-play { opacity: 0; pointer-events: none; }
.vp-ring {
  display: grid; place-items: center;
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--orange); color: var(--black);
  box-shadow: 0 12px 40px -8px rgba(255,90,31,.7);
  transition: transform .2s var(--ease);
}
.vp-ring svg { width: 34px; height: 34px; margin-left: 3px; }
.video-play:hover .vp-ring { transform: scale(1.06); }
.vp-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--white); letter-spacing: -0.01em;
}
.vp-time {
  font-family: var(--mono);
  font-size: 12px; font-weight: 500; color: var(--muted-dark);
  border: 1px solid var(--line-dark); border-radius: 100px; padding: 3px 10px;
  background: rgba(0,0,0,.4);
}
.video-cap {
  margin-top: 18px; font-size: 14px; color: var(--muted-dark);
  max-width: 52ch; margin-inline: auto; text-align: center;
}

/* ---------------- shared image reveal ---------------- */
.img-reveal { overflow: hidden; border-radius: 16px; }
.img-reveal img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------- 01 · the weight ---------------- */
.sec-weight { padding-top: clamp(64px, 9vw, 120px); }
.weight-stage {
  min-height: 52vh;
  display: flex; align-items: center;
}
.weight-line {
  font-size: clamp(1.45rem, 3.4vw, 2.9rem);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.14;
  max-width: 24ch;
}
.weight-line + .weight-line { margin-top: clamp(16px, 2.4vw, 30px); }
.weight-line-final { color: var(--orange); }

.weight-close {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: center;
  margin-top: clamp(48px, 7vw, 100px);
}
.weight-img { max-width: 480px; }
.weight-img img { aspect-ratio: 3 / 4; }
.weight-close-line {
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  line-height: 1.4; letter-spacing: -0.02em;
  max-width: 34ch;
}
.weight-count {
  display: flex; align-items: baseline; gap: 20px;
  margin-top: clamp(26px, 3.4vw, 40px);
  padding-top: clamp(22px, 3vw, 32px);
  border-top: 1px solid var(--line-dark);
}
.wc-num {
  font-family: var(--mono);
  font-size: clamp(3rem, 6.4vw, 5.2rem);
  font-weight: 300; line-height: 1;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}
.wc-label { font-size: 14px; color: var(--muted-dark); max-width: 30ch; line-height: 1.5; }

/* ---------------- 02 · the shift (warm palette) ---------------- */
.sec-shift {
  background: var(--bone); color: var(--ink-warm);
  --bg: var(--bone); --fg: var(--ink-warm);
  --muted: var(--muted-warm); --line: var(--line-bone);
  --card-bg: #FBF7EF; --card-line: var(--line-bone);
}
.shift-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.shift-copy .h2 { max-width: 15ch; }
.otium-def {
  margin: clamp(26px, 3.4vw, 38px) 0;
  padding: 4px 0 4px 26px;
  border-left: 2px solid var(--orange);
}
.od-word {
  display: block;
  font-family: var(--mono);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 400; letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.od-gloss { display: block; font-size: 16px; line-height: 1.6; color: var(--muted-warm); max-width: 46ch; }
/* mid-scrub contrast: once the palette passes 50% (shift-lit), secondary text
   steps to a readable dark-side tone with the headline (no 1.6:1 transient) */
.sec-shift.shift-lit .od-gloss,
.sec-shift.shift-lit .kicker { color: #4A4237; }
.shift-copy .lead { max-width: 52ch; }
.shift-img img { aspect-ratio: 3 / 2; }
.name-reveal {
  margin: clamp(64px, 9vw, 130px) auto 0;
  text-align: center;
  font-size: clamp(1.55rem, 3.6vw, 3rem);
  font-weight: 600; letter-spacing: -0.035em; line-height: 1.15;
  max-width: 22ch;
}

/* ---------------- 03 · a day with aria (stacked deck) ---------------- */
.sec-day { padding-bottom: clamp(96px, 13vw, 180px); }
.day-rail {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}
.day-clock-stick { position: sticky; top: calc(var(--nav-h) + 12vh); }
.day-clock {
  display: block;
  font-family: var(--mono);
  font-size: clamp(3.2rem, 7.4vw, 6.6rem);
  font-weight: 200; line-height: 1;
  letter-spacing: -0.06em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.day-clock-cap {
  display: block; margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-dark);
}
.day-cards { display: grid; gap: clamp(20px, 3vw, 34px); }
.day-card {
  position: sticky;
  top: calc(var(--nav-h) + 20px + var(--stack, 0px));
  background: var(--raise);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.8vw, 36px);
  box-shadow: 0 -20px 60px -34px rgba(0, 0, 0, 0.9);
}
.day-card:nth-child(2) { --stack: 12px; }
.day-card:nth-child(3) { --stack: 24px; }
.day-card:nth-child(4) { --stack: 36px; }
.day-card:nth-child(5) { --stack: 48px; }
.day-card:nth-child(6) { --stack: 60px; }
.day-card:nth-child(7) { --stack: 72px; }
.dc-head {
  display: flex; align-items: baseline; gap: 18px;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}
.dc-time {
  font-family: var(--mono);
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  flex: none;
}
.dc-head h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.1; letter-spacing: -0.025em; }
.dc-copy { font-size: 15px; color: var(--muted-dark); max-width: 62ch; margin-bottom: 20px; }
.dc-body { display: grid; gap: 16px; }
.day-card.has-media .dc-body {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: stretch;
}
.dc-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #000;
  min-height: 160px;
}
.dc-media video { width: 100%; height: 100%; object-fit: cover; }

/* equal-height cards on desktop so the deck edges stay clean */
@media (min-width: 901px) {
  .day-card { min-height: 560px; display: flex; flex-direction: column; }
  .dc-body { flex: 1; align-content: start; }
  .day-card.has-media .dc-body { align-items: stretch; align-content: stretch; }
}

/* doc-flow folds vertically inside a day card */
.day-card .doc-flow { grid-template-columns: 1fr; gap: 10px; justify-items: stretch; }
.day-card .doc-in {
  flex-direction: row; align-items: center; gap: 13px;
  padding: 13px 16px; min-width: 0;
}
.day-card .doc-in .doc-ic { margin-bottom: 0; width: 36px; height: 36px; }
.day-card .doc-arrow { transform: rotate(90deg); justify-self: center; }
.day-card .doc-arrow svg { width: 20px; height: 20px; }

/* mockups (shared shell) */
.mock {
  background: var(--raise-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px -46px rgba(0, 0, 0, 0.85);
}
.mock-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-dark);
}
.mock-tag { font-size: 13px; font-weight: 500; color: var(--white); }
.mock-status { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted-dark); }
.mock-status .dot { width: 7px; height: 7px; }

/* chat + voice mocks */
.mock-chat .chat-body, .mock-voice .chat-body { padding: 20px 18px 24px; display: grid; gap: 14px; }
.bubble { border-radius: 14px; padding: 13px 15px; font-size: 15px; line-height: 1.5; max-width: 88%; }
.bubble-you { justify-self: end; background: rgba(255,90,31,.12); color: var(--white); border: 1px solid rgba(255,90,31,.25); border-bottom-right-radius: 5px; }
.bubble-aria { justify-self: start; background: var(--raise); color: var(--white); border: 1px solid var(--line-dark); border-bottom-left-radius: 5px; }
.bubble-aria p { margin: 0; }
.vn-tag {
  display: block;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.06em; color: var(--orange);
  margin-bottom: 7px;
}
.source-chip {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 12px;
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 500; color: var(--orange);
  background: rgba(255,90,31,.1); border: 1px solid rgba(255,90,31,.28);
  border-radius: 100px; padding: 4px 11px;
}
.sc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* document flow */
.doc-flow { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: clamp(10px, 1.6vw, 18px); }
.doc-in {
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
  padding: 20px 18px; min-width: 140px;
}
.doc-ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: rgba(255,90,31,.12); color: var(--orange); margin-bottom: 4px; }
.doc-ic svg { width: 22px; height: 22px; }
.doc-name { font-family: var(--mono); font-size: 12.5px; font-weight: 500; color: var(--white); }
.doc-meta { font-size: 12px; color: var(--muted-dark); }
.doc-arrow { color: var(--orange); }
.doc-arrow svg { width: 24px; height: 24px; }
.doc-out { display: flex; flex-direction: column; }
.doc-points { padding: 14px 16px 4px; display: grid; gap: 10px; }
.doc-points li {
  position: relative; padding-left: 18px; font-size: 13px; line-height: 1.45; color: #cfccc6;
}
.doc-points li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 7px; height: 7px; border-radius: 2px; background: var(--orange);
}
.audio-bar {
  display: flex; align-items: center; gap: 12px;
  margin: 8px 16px 16px; padding: 10px 13px;
  background: var(--raise); border: 1px solid var(--line-dark); border-radius: 10px;
  min-width: 200px;
}
.bubble .audio-bar { margin: 0; background: transparent; border: none; padding: 2px 0; }
.audio-play { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--orange); color: var(--black); flex: none; }
.audio-play svg { width: 15px; height: 15px; margin-left: 1px; }
.audio-wave { display: flex; align-items: center; gap: 3px; flex: 1; height: 26px; }
.audio-wave i { flex: 1; background: var(--orange); border-radius: 2px; opacity: .55; height: 30%; }
.audio-wave i:nth-child(2n) { height: 65%; }
.audio-wave i:nth-child(3n) { height: 90%; opacity: .8; }
.audio-wave i:nth-child(4n) { height: 45%; }
.audio-wave i:nth-child(5n) { height: 75%; }
.audio-time { font-family: var(--mono); font-size: 11.5px; color: var(--muted-dark); flex: none; }

/* brief card (the 07:00 dispatch, kept deliberately paper-white) */
.brief-card {
  background: var(--surface-2); border: 1px solid var(--line-light); border-radius: 12px;
  padding: 6px 4px;
  align-self: center;
}
.brief-row { display: grid; grid-template-columns: 86px 1fr; gap: 12px; padding: 11px 16px; align-items: baseline; }
.brief-row + .brief-row { border-top: 1px solid var(--line-light); }
.brief-k { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--orange-press); }
.brief-v { font-size: 13.5px; line-height: 1.4; color: var(--ink); }

/* run list (12:00, memory folding) */
.run-list { padding: 8px 6px; }
.run-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; font-size: 14.5px; color: var(--white); }
.run-ic { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; flex: none; }
.run-item.done .run-ic { background: rgba(255, 90, 31, 0.14); color: var(--orange); }
.run-ic svg { width: 14px; height: 14px; }

/* relationship + nudge (15:00) */
.rel-list { padding: 14px 14px 4px; display: grid; gap: 9px; }
.rel-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,.02); border: 1px solid var(--line-dark);
}
.rel-name { font-size: 14px; font-weight: 500; color: var(--white); }
.rel-flag { font-family: var(--mono); font-size: 10.5px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.rel-flag.cold { color: var(--orange); background: rgba(255,90,31,.12); border: 1px solid rgba(255,90,31,.3); }
.rel-flag.warm { color: var(--muted-dark); background: transparent; border: 1px solid var(--line-dark); }
.mail-body { padding: 14px 18px; font-size: 14.5px; line-height: 1.6; color: var(--muted-dark); }
.approve-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-top: 1px solid var(--line-dark); flex-wrap: wrap; }
.approve-note { font-size: 13px; color: var(--muted-dark); }

/* training options (18:00) */
.train-list { padding: 10px 10px; display: grid; gap: 8px; }
.train-list li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 12px 14px; border-radius: 10px;
  background: rgba(255,255,255,.02); border: 1px solid var(--line-dark);
}
.train-k {
  flex: none;
  font-family: var(--mono);
  font-size: 12px; font-weight: 600; color: var(--orange);
  border: 1px solid rgba(255,90,31,.35); border-radius: 7px;
  padding: 2px 9px;
}
.train-v { font-size: 14px; color: var(--white); line-height: 1.45; }

/* ---------------- 04 · memory you can check (the ledger) ---------------- */
.ledger {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ledger-head, .ledger-row {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) 110px minmax(0, 1.5fr) 64px;
  gap: 18px;
  padding: 15px 24px;
  align-items: center;
}
.ledger-head {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-light);
  background: var(--surface-2);
  border-bottom: 1px solid var(--line-light);
}
.ledger-row { border-bottom: 1px solid var(--line-light); }
.lg-fact { font-size: 15px; color: var(--ink); line-height: 1.45; }
.lg-chip {
  justify-self: start;
  font-family: var(--mono);
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  padding: 4px 11px; border-radius: 100px;
  white-space: nowrap;
}
.lg-observed { color: var(--orange-press); background: rgba(255,90,31,.1); border: 1px solid rgba(255,90,31,.4); }
.lg-derived { color: var(--ink); background: var(--surface-2); border: 1px solid #CFCabc; border-color: #CBC6B8; }
.lg-inferred { color: var(--muted-light); background: transparent; border: 1px dashed #BDB8AB; }
.lg-src { font-family: var(--mono); font-size: 12px; color: var(--muted-light); }
.lg-conf { font-family: var(--mono); font-size: 12.5px; color: var(--ink); font-variant-numeric: tabular-nums; }

.ledger-query {
  padding: 24px;
  background: var(--surface);
  display: grid; gap: 12px;
}
.lq-q {
  justify-self: end;
  font-size: 15px; color: var(--ink);
  background: var(--white); border: 1px solid var(--line-light);
  border-radius: 14px; border-bottom-right-radius: 5px;
  padding: 12px 16px;
  max-width: 80%;
}
.lq-a { justify-self: start; }
.lq-type {
  display: inline-block;
  font-family: var(--mono);
  font-size: 15px; font-weight: 500;
  color: var(--ink);
  background: var(--bone-2);
  border: 1px solid var(--line-bone);
  border-radius: 14px; border-bottom-left-radius: 5px;
  padding: 12px 16px;
  min-width: 2ch;
}
.ledger-close {
  margin-top: clamp(22px, 3vw, 32px);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--muted-light);
  max-width: 52ch;
}

/* typewriter caret */
.typing::after {
  content: "";
  display: inline-block;
  width: 2px; height: 1em;
  margin-left: 3px;
  vertical-align: -0.12em;
  background: currentColor;
  animation: caret 0.9s steps(1) infinite;
}
@keyframes caret { 50% { opacity: 0; } }

/* ---------------- 05 · your lock on the door ---------------- */
.priv-list { border-top: 1px solid var(--line-dark); }
.priv-row {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding-block: clamp(28px, 3.5vw, 44px);
  border-bottom: 1px solid var(--line-dark);
}
.priv-no {
  font-family: var(--mono);
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; line-height: 0.9;
  letter-spacing: -0.04em; color: var(--orange); opacity: .9;
  min-width: 1.6em;
  font-variant-numeric: tabular-nums;
}
.priv-text { max-width: 60ch; }
.priv-text h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); letter-spacing: -0.03em; margin-bottom: 10px; }
.priv-text p { font-size: clamp(1rem, 1.25vw, 1.1rem); color: var(--muted); }

/* the kill switch: the one red thing on the page */
.killswitch {
  display: flex; align-items: center; gap: 22px;
  margin-top: clamp(32px, 4vw, 48px); padding: 26px 30px;
  background: var(--raise);
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
}
.kill-chip {
  flex: none;
  font-family: var(--mono);
  font-size: 16px; font-weight: 600;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.held .kill-chip { background: var(--red); color: var(--black); }
.killswitch p { font-size: 15px; color: #c4c0ba; }
.kill-status { display: inline-block; color: var(--red); min-width: 1ch; }

/* stop: everything on the page holds its breath */
.held *, .held *::before, .held *::after {
  animation-play-state: paused !important;
  transition: none !important;
}

/* ---------------- 06 · the box ---------------- */
.box-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: center;
}
.box-img { max-width: 480px; }
.box-img img { aspect-ratio: 3 / 4; }
.box-para {
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.6; color: var(--ink);
  max-width: 54ch;
}
.muted-para { color: var(--muted-light); }
.term {
  margin-block: clamp(22px, 3vw, 32px);
  background: var(--ink);
  border: 1px solid #2A2723;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px -46px rgba(20, 16, 10, 0.55);
  max-width: 520px;
}
.term-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid #2A2723;
}
.term-dots { display: inline-flex; gap: 6px; }
.term-dots i { width: 10px; height: 10px; border-radius: 50%; background: #33302B; }
.term-title { font-family: var(--mono); font-size: 12px; color: var(--muted-dark); }
.term-line {
  padding: 20px 18px 22px;
  font-family: var(--mono);
  font-size: 14.5px; letter-spacing: -0.01em;
  color: #EDEAE4;
}
.term-prompt { color: var(--orange); margin-right: 4px; }
.box-gate {
  margin-top: clamp(52px, 7vw, 90px);
  font-size: clamp(1.3rem, 2.7vw, 2.2rem);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.22;
  max-width: 30ch;
}

/* ---------------- 07 · early access + marquee ---------------- */
.sec-early { padding-top: 0; }
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line-light);
  padding-block: 16px;
  margin-bottom: clamp(56px, 8vw, 104px);
  background: var(--surface-2);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.mq-set { display: flex; align-items: center; flex: none; }
.mq-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-light);
  white-space: nowrap;
  padding-inline: 34px;
  position: relative;
}
.mq-item::after {
  content: ""; position: absolute; right: -3px; top: 50%;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); opacity: .5;
  transform: translateY(-50%);
}
@keyframes marquee { to { transform: translateX(-50%); } }

.tag-now {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 600; color: var(--orange);
  background: rgba(255, 90, 31, 0.12);
  padding: 2px 9px; border-radius: 100px;
  letter-spacing: 0.04em;
}

.early-card {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(32px, 5vw, 72px);
  padding: clamp(36px, 5vw, 64px);
  position: relative; overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 90, 31, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px -56px rgba(255,90,31,.45);
}
.early-glow {
  position: absolute; top: -40%; right: 0;
  width: min(60%, 440px); height: 130%; max-width: 100%;
  background: radial-gradient(circle at 70% 40%, rgba(255, 90, 31, 0.14), transparent 65%);
  pointer-events: none;
}
.early-main { position: relative; }
.early-main .kicker { margin-bottom: 18px; }
.early-main .h2 { margin-bottom: 16px; }
.early-form { display: flex; gap: 10px; margin-top: 30px; flex-wrap: wrap; }
.early-form input {
  flex: 1; min-width: 200px;
  height: 52px; padding-inline: 18px;
  background: var(--surface);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  color: var(--ink);
}
.early-form input::placeholder { color: var(--muted-light); }
.early-form input:focus-visible { border-color: var(--orange); outline-offset: 1px; }
.form-status { margin-top: 14px; font-size: 14px; color: var(--orange-press); min-height: 1.2em; }
.form-status.error { color: var(--orange-press); }

.early-list { position: relative; align-self: center; display: grid; gap: 15px; }
.early-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink); line-height: 1.45; }
.li-ic { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; margin-top: 1px; background: rgba(255, 90, 31, 0.14); color: var(--orange); }
.li-ic svg { width: 13px; height: 13px; }

/* ---------------- faq ---------------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: 100%; text-align: left;
  padding: 24px 4px;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem); font-weight: 500; letter-spacing: -0.02em;
  color: var(--fg);
}
.faq-q:hover { color: var(--orange); }
.plus { position: relative; flex: none; width: 18px; height: 18px; }
.plus::before, .plus::after {
  content: ""; position: absolute; background: var(--orange);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item.open .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s var(--ease); }
.faq-a .inner { padding: 0 4px 26px; font-size: 16px; line-height: 1.7; color: var(--muted); max-width: 66ch; }

/* ---------------- footer ---------------- */
.footer { padding-block: clamp(60px, 7vw, 88px) 40px; border-top: 1px solid var(--line-dark); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-tag { font-size: 14.5px; color: var(--muted-dark); max-width: 38ch; line-height: 1.6; }
.foot-h { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 16px; letter-spacing: 0.02em; text-transform: uppercase; }
.foot-col ul { display: grid; gap: 11px; }
.foot-col a { font-size: 14.5px; color: var(--muted-dark); transition: color .15s var(--ease); }
.foot-col a:hover { color: var(--white); }
.footer-bot { padding-top: 28px; border-top: 1px solid var(--line-dark); }
.legal { font-size: 13.5px; color: var(--muted-dark); }

/* ---------------- reveal animation (IO floor) ---------------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal[data-d="1"] { transition-delay: .08s; }
.js .reveal[data-d="2"] { transition-delay: .16s; }
.js .reveal[data-d="3"] { transition-delay: .24s; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------------- reduced motion: kill it all ---------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .fx [data-split] { visibility: visible; }
  .marquee-track { animation: none; }
  .typing::after { animation: none; }
  .fx .nav .ring-base { animation: none; stroke-dashoffset: 0; }
  .fx .nav .ring-progress { display: none; }
}

/* ---------------- responsive ---------------- */
@media (max-width: 1024px) {
  .early-card { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .weight-close { grid-template-columns: 1fr; }
  .weight-img { max-width: 420px; }
  .shift-grid { grid-template-columns: 1fr; }
  .shift-img { max-width: 560px; }
  .day-rail { grid-template-columns: 1fr; }
  .day-clockcol { display: none; }
  .day-card.has-media .dc-body { grid-template-columns: 1fr; }
  .box-grid { grid-template-columns: 1fr; }
  .box-img { max-width: 420px; }
  .ledger-head { display: none; }
  .ledger-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 20px; }
  .lg-conf::before { content: "conf "; color: var(--muted-light); }
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0; transform: none;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-dark);
    padding: 8px var(--pad-x) 20px;
    opacity: 0; visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .nav.menu-open .nav-links { opacity: 1; visibility: visible; }
  .nav.menu-open { background: rgba(10, 10, 10, 0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
  .nav-links a { padding: 15px 4px; border-bottom: 1px solid var(--line-dark); font-size: 16px; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav.menu-open .bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.menu-open .bars span:nth-child(2) { opacity: 0; }
  .nav.menu-open .bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  html.menu-lock { overflow: hidden; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; margin-inline: auto; }
  .hero-cta .btn { width: 100%; }
  .weight-count { flex-direction: column; gap: 10px; }
  .priv-row { grid-template-columns: 1fr; gap: 6px; }
  .priv-no { font-size: 2.2rem; }
  .killswitch { flex-direction: column; align-items: flex-start; gap: 14px; }
  .early-form { flex-direction: column; }
  .early-form .btn { width: 100%; }
  .doc-flow { grid-template-columns: 1fr; }
  .doc-arrow { transform: rotate(90deg); justify-self: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .day-card { position: static; }
}

/* stick the day clock: the column must stretch to the full pinned height */
.day-clockcol { align-self: stretch; }

/* ---------------- early access form: honeypot + status link ---------------- */
/* the honeypot lives off canvas; humans never see it, bots fill it */
.hp-field {
  position: absolute !important;
  left: -9999px; top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-status a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =========================================================================
   surface texture: the ring motif, debossed into the page.
   Quiet outline marks + dot-grid survey accents + orange annotation ticks.
   Pure CSS, zero JS, invisible to reduced motion concerns (nothing moves).
   ========================================================================= */

/* content sits above the texture layer */
.sec-weight > .wrap, .sec-shift > .wrap, .sec-day > .wrap,
.sec-memory > .wrap, .sec-box > .wrap, .sec-early > .wrap {
  position: relative; z-index: 1;
}

/* the kicker annotates its section: a hairline runs out to the margin */
.kicker:not(.center)::after {
  content: "";
  flex: 1;
  align-self: center;
  height: 1px;
  min-width: 40px;
  background: linear-gradient(90deg, var(--line), transparent 82%);
}

/* debossed ring marks: the logo pressed into the surface, barely there */
.sec-weight::after,
.sec-day::before,
.sec-memory::after,
.sec-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.sec-weight::after {
  width: 440px; height: 440px;
  right: -150px; top: 80px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 0 30px rgba(255, 255, 255, 0.013);
}
.sec-day::before {
  width: 300px; height: 300px;
  left: -130px; bottom: 160px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.sec-memory::after {
  width: 400px; height: 400px;
  right: -140px; top: 70px;
  border: 1px solid rgba(14, 13, 11, 0.05);
  box-shadow: inset 0 0 0 28px rgba(14, 13, 11, 0.015);
}
.sec-box::after {
  width: 260px; height: 260px;
  left: -100px; bottom: 120px;
  border: 1px solid rgba(14, 13, 11, 0.055);
}

/* dot-grid survey accents */
.sec-day::after,
.sec-early::before {
  content: "";
  position: absolute;
  width: 168px; height: 114px;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, currentColor 1px, transparent 1.6px);
  background-size: 19px 19px;
}
.sec-day::after {
  top: clamp(90px, 10vw, 140px); right: var(--pad-x);
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.09;
}
.sec-early::before {
  bottom: 70px; left: var(--pad-x);
  color: rgba(14, 13, 11, 0.6);
  opacity: 0.1;
}

/* the bespoke beat: the hero ring mark echoes as a fine watermark behind
   the OTIVM marble, a chop pressed into the paper. It is drawn in warm ink,
   so it develops as the palette shift exhales from black to bone. */
.sec-shift::after {
  content: "";
  position: absolute;
  top: clamp(60px, 9vw, 120px);
  right: clamp(-90px, -5vw, -40px);
  width: clamp(340px, 38vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: clamp(11px, 1.5vw, 17px) solid rgba(23, 20, 16, 0.035);
  background: radial-gradient(circle, rgba(23, 20, 16, 0.035) 0 16.5%, transparent calc(16.5% + 1px));
  pointer-events: none;
  z-index: 0;
}

/* keep the texture off small screens: density without clutter */
@media (max-width: 700px) {
  .sec-weight::after, .sec-day::before, .sec-day::after,
  .sec-memory::after, .sec-box::after,
  .sec-early::before, .sec-shift::after { display: none; }
}

/* ---------------- hover: rows and cards annotate themselves ---------------- */
@media (hover: hover) and (pointer: fine) {
  .ledger-row { transition: background .18s var(--ease), box-shadow .18s var(--ease); }
  .ledger-row:hover {
    background: #FCFBF7;
    box-shadow: inset 2px 0 0 var(--orange);
  }
  .ledger-row:hover .lg-src { color: var(--ink); }
  .ledger-row:hover .lg-conf { color: var(--orange-press); }

  .day-card {
    transition: transform .25s var(--ease), border-color .25s var(--ease);
  }
  .day-card::after {
    content: "";
    position: absolute;
    top: -1px; left: clamp(22px, 2.8vw, 36px);
    width: 0; height: 2px;
    background: var(--orange);
    transition: width .3s var(--ease);
  }
  .day-card:hover {
    transform: translateY(-3px);
    border-color: #35322C;
  }
  .day-card:hover::after { width: 56px; }
}

/* =========================================================================
   subpages: privacy / thanks / 404. Same house, smaller rooms.
   Static pages, no JS required, they read whole with everything off.
   ========================================================================= */
.page-nav {
  position: absolute; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid var(--line-dark);
}
.page-main {
  padding-top: calc(var(--nav-h) + clamp(56px, 9vw, 110px));
  padding-bottom: clamp(72px, 10vw, 130px);
  min-height: calc(100vh - 220px);
}
.page-main .section-head { margin-bottom: clamp(28px, 4vw, 44px); }
.page-close {
  margin-top: clamp(32px, 4vw, 48px);
  font-size: 15.5px; color: var(--muted-dark);
  max-width: 60ch;
}
.page-close a { color: var(--orange); }
.page-close a:hover { color: var(--orange-light); }
.priv-text p a { color: var(--orange); }
.priv-text p a:hover { color: var(--orange-light); }

/* 404: the honest two words, page sized */
.nf-main {
  min-height: calc(100vh - 180px);
  display: grid; align-items: center;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 60px;
}
.nf-code {
  font-family: var(--mono);
  font-size: clamp(4.6rem, 15vw, 10rem);
  font-weight: 200; line-height: 1; letter-spacing: -0.06em;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}
.nf-chip {
  display: inline-block;
  font-family: var(--mono);
  font-size: 15px; font-weight: 500;
  color: var(--white);
  background: var(--raise);
  border: 1px solid var(--line-dark);
  border-radius: 14px; border-bottom-left-radius: 5px;
  padding: 12px 16px;
  margin-top: clamp(22px, 3vw, 32px);
}
.nf-copy {
  margin-top: 20px;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--muted-dark);
  max-width: 46ch;
}
.nf-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
