/* ============================================================================
   Automatic AEO — Marketing front-of-house
   "Lightship" editorial system: warm cream canvas, near-monochrome, one ember
   accent used sparingly. DM Sans (sole family) with tight negative tracking.
   20px frames, 100px pill interactives, no shadows, no gradients, generous air.
   ========================================================================== */

:root {
  /* colors */
  --cream: #faf6ef;
  --white: #ffffff;
  --obsidian: #000000;
  --pebble: #999999;
  --driftwood: #a1a1a1;
  --mist: #d9d9d9;
  --ember: #4f6536;        /* camo-sage accent (was ember orange) */
  --accent-deep: #3c4f29;  /* darker sage for hovers */
  --accent-soft: #d2ddc2;  /* pastel green for surface washes / bands */
  --hero-green: #4c5e3a;   /* deep camo stage for the hero / video placeholder */

  /* surfaces */
  --canvas: var(--cream);
  --card: var(--white);

  /* type */
  --font: 'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* radii */
  --r-card: 20px;
  --r-pill: 100px;

  /* layout */
  --maxw: 1440px;
  --gutter: 40px;
  --section-gap: 100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--canvas);
  color: var(--obsidian);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.48px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.mono { font-variant-numeric: tabular-nums; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.measure { max-width: 60ch; }

/* ---- type scale ---------------------------------------------------------- */
.display { font-size: clamp(44px, 7vw, 72px); line-height: 1.0; letter-spacing: -0.05em; font-weight: 700; }
.h-lg { font-size: clamp(34px, 5vw, 48px); line-height: 1.02; letter-spacing: -0.05em; font-weight: 700; }
.h { font-size: clamp(27px, 3.4vw, 34px); line-height: 1.1; letter-spacing: -0.03em; font-weight: 700; }
.h-sm { font-size: 24px; line-height: 1.2; letter-spacing: -0.72px; font-weight: 700; }
.sub { font-size: 22px; line-height: 1.2; letter-spacing: -0.66px; font-weight: 400; }
.lead { font-size: clamp(18px, 2vw, 20px); line-height: 1.3; letter-spacing: -0.6px; color: #2b2b2b; }
.cap { font-size: 12px; line-height: 1.2; letter-spacing: -0.36px; }
.muted { color: var(--pebble); }
.faint { color: var(--driftwood); }

/* ---- eyebrow / kicker ---------------------------------------------------- */
.kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--obsidian); }
.kicker.ember { color: var(--ember); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--obsidian); }
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--ember); display: block; }

/* ---- ghost links (the only interactive pattern) -------------------------- */
.ghost {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 16px; font-weight: 500; letter-spacing: -0.3px;
  color: var(--obsidian); cursor: pointer;
  background: none; border: none; font-family: var(--font);
  padding: 4px 0; position: relative;
}
.ghost::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--obsidian); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.ghost:hover::after { transform: scaleX(1); }
.ghost .arw { transition: transform .2s ease; }
.ghost:hover .arw { transform: translateX(4px); }
.ghost.lg { font-size: 20px; letter-spacing: -0.6px; }
.ghost.primary { font-weight: 700; }
.ghost.primary::after { height: 2px; background: var(--ember); transform: scaleX(1); }
.ghost.primary:hover::after { background: var(--obsidian); }
.ghost:focus-visible { outline: 2px solid var(--ember); outline-offset: 4px; border-radius: 2px; }

/* pill chip (nav) */
.chip { display: inline-flex; align-items: center; font-size: 14px; font-weight: 400; letter-spacing: -0.3px; color: var(--obsidian); padding: 8px 0; position: relative; }
.chip::after { content: ''; position: absolute; left: 0; bottom: 4px; width: 100%; height: 1px; background: var(--obsidian); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.chip:hover::after { transform: scaleX(1); }

/* ---- header (liquid glass, floating) ------------------------------------- */
.site-header { position: fixed; top: 14px; left: 0; right: 0; z-index: 60; display: flex; justify-content: center; padding: 0 16px; pointer-events: none; }
.navbar {
  pointer-events: auto; position: relative; width: 100%; max-width: 1160px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 60px; padding: 0 12px 0 26px; border-radius: var(--r-pill);
  background: rgba(250,246,239,.5);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 10px 34px rgba(40,52,30,.12);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled .navbar { background: rgba(250,246,239,.74); box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 12px 38px rgba(40,52,30,.16); }
.wordmark { font-size: 15px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--obsidian); white-space: nowrap; }
.wordmark .o { color: var(--ember); margin: 0 2px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-login { font-size: 14px; color: #33363b; font-weight: 500; letter-spacing: -0.2px; }
.nav-login:hover { color: var(--obsidian); }
.nav-book { font-size: 14px; font-weight: 600; letter-spacing: -0.2px; color: #fff; background: var(--ember); padding: 11px 19px; border-radius: var(--r-pill); transition: background .2s ease, transform .05s ease; }
.nav-book:hover { background: var(--accent-deep); }
.nav-book:active { transform: translateY(1px); }
.nav-toggle { display: none; width: 42px; height: 42px; border: none; background: none; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--obsidian); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--obsidian); }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }

/* ---- sections ------------------------------------------------------------ */
.section { padding: var(--section-gap) 0; }
.section.tight { padding: 64px 0; }
.hr { height: 1px; background: var(--mist); border: none; }
.center { text-align: center; }
.sec-head { max-width: 64ch; }
.sec-head.center { margin: 0 auto; }
.sec-head .sub { margin-top: 16px; color: var(--pebble); }
.sec-head .kicker { display: block; margin-bottom: 18px; }

/* ---- hero ---------------------------------------------------------------- */
.hero { padding: 120px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 64px; align-items: center; }
.hero h1 { margin-top: 26px; max-width: 16ch; }
.hero h1 .em { color: var(--ember); }
.hero .lead { margin-top: 26px; max-width: 50ch; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 32px; margin-top: 40px; }
.hero-note { margin-top: 28px; font-size: 13px; letter-spacing: 0.02em; color: var(--driftwood); }
.hero-note b { color: var(--obsidian); font-weight: 500; }

/* framed product mock (the "photograph") */
.frame { background: var(--card); border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--mist); }
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 16px 18px; border-bottom: 1px solid var(--mist); }
.mock-bar i { width: 9px; height: 9px; border-radius: var(--r-pill); background: var(--mist); display: block; }
.mock-bar .mt { margin-left: 12px; font-size: 12px; color: var(--pebble); letter-spacing: -0.3px; }
.mock-body { padding: 10px 22px 14px; }
.mrow { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid var(--mist); }
.mrow:last-child { border-bottom: none; }
.mrow .nm { font-weight: 500; font-size: 15px; letter-spacing: -0.3px; }
.mrow .nm small { display: block; color: var(--driftwood); font-weight: 400; font-size: 12px; margin-top: 3px; }
.score { font-size: 15px; font-weight: 700; letter-spacing: -0.4px; min-width: 44px; text-align: right; }
.score.up { color: var(--obsidian); } .score.low { color: var(--pebble); }
.mock-foot { padding: 16px 22px; border-top: 1px solid var(--mist); display: flex; align-items: center; justify-content: space-between; }
.mock-foot .by { font-size: 12px; color: var(--driftwood); letter-spacing: -0.2px; }
.mock-foot .by b { color: var(--obsidian); font-weight: 500; }
.mock-foot .delta { font-size: 13px; font-weight: 700; color: var(--ember); letter-spacing: -0.3px; }

/* ---- engine strip -------------------------------------------------------- */
.strip { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 30px; padding: 32px 0; }
.strip .lbl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--driftwood); margin-right: 8px; }
.strip .eng { font-size: 18px; font-weight: 500; letter-spacing: -0.5px; color: #6f6f6f; }

/* ---- split panels (problem/outcome) ------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.panel { border-radius: var(--r-card); padding: 36px; background: var(--card); border: 1px solid var(--mist); }
.panel.accent { background: var(--cream); border-color: var(--obsidian); }
.panel h3 { margin-bottom: 22px; }
.panel ul { list-style: none; display: grid; gap: 16px; }
.panel li { display: flex; gap: 14px; font-size: 16px; letter-spacing: -0.3px; align-items: flex-start; line-height: 1.35; }
.panel li .mk { flex: none; width: 22px; font-weight: 700; }
.panel.cold li .mk { color: var(--pebble); }
.panel.warm li .mk { color: var(--ember); }
.panel.warm li .mk.dark { color: var(--obsidian); }

/* ---- editorial steps (numbered) ----------------------------------------- */
.steps { margin-top: 64px; display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 120px 1fr; gap: 32px; padding: 40px 0; border-top: 1px solid var(--mist); align-items: start; }
.steps .step:last-child { border-bottom: 1px solid var(--mist); }
.step .n { font-size: 48px; font-weight: 700; letter-spacing: -2.4px; line-height: 1; color: var(--mist); }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--pebble); font-size: 17px; letter-spacing: -0.4px; line-height: 1.4; max-width: 60ch; }

/* ---- feature mosaic ------------------------------------------------------ */
.mosaic { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tile { background: var(--card); border: 1px solid var(--mist); border-radius: var(--r-card); padding: 32px; }
.tile.offset { transform: translateY(28px); }
.tile .ico { font-size: 22px; line-height: 1; }
.tile h3 { margin: 22px 0 9px; font-size: 20px; letter-spacing: -0.6px; font-weight: 700; }
.tile p { color: var(--pebble); font-size: 15px; letter-spacing: -0.3px; line-height: 1.4; }

/* ---- pricing ------------------------------------------------------------- */
.pricing { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price { background: var(--card); border: 1px solid var(--mist); border-radius: var(--r-card); padding: 38px 32px; display: flex; flex-direction: column; position: relative; }
.price.feature { border-color: var(--obsidian); }
.price .tag { position: absolute; top: 24px; right: 24px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ember); }
.price .pname { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--driftwood); }
.price .amount { margin: 22px 0 6px; display: flex; align-items: baseline; gap: 8px; }
.price .amount b { font-size: 56px; font-weight: 700; letter-spacing: -2.8px; line-height: 1; }
.price .amount .per { color: var(--driftwood); font-size: 15px; letter-spacing: -0.3px; }
.price .pdesc { color: var(--pebble); font-size: 15px; letter-spacing: -0.3px; min-height: 46px; line-height: 1.35; }
.price ul { list-style: none; display: grid; gap: 13px; margin: 26px 0 30px; padding-top: 26px; border-top: 1px solid var(--mist); }
.price li { display: flex; gap: 12px; font-size: 15px; letter-spacing: -0.3px; align-items: flex-start; line-height: 1.3; }
.price li::before { content: '—'; color: var(--ember); flex: none; }
.price .ghost { margin-top: auto; }
.price-foot { margin-top: 40px; text-align: center; color: var(--pebble); font-size: 16px; letter-spacing: -0.4px; }
.price-foot b { color: var(--obsidian); font-weight: 700; }

/* ---- ember accent band (the rare wash) ----------------------------------- */
.ember-band { background: var(--accent-soft); border-radius: var(--r-card); padding: 64px 48px; color: var(--obsidian); }
.ember-band .kicker { color: rgba(0,0,0,.6); }
.ember-band h2 { color: var(--obsidian); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 44px; }
.stat { text-align: left; }
.stat b { display: block; font-size: clamp(40px, 5vw, 60px); font-weight: 700; letter-spacing: -3px; line-height: 1; }
.stat span { display: block; margin-top: 12px; font-size: 15px; letter-spacing: -0.3px; color: rgba(0,0,0,.7); max-width: 22ch; }

/* ---- faq ----------------------------------------------------------------- */
.faq { max-width: 820px; margin: 56px auto 0; }
.qa { border-top: 1px solid var(--mist); }
.faq .qa:last-child { border-bottom: 1px solid var(--mist); }
.qa summary { cursor: pointer; list-style: none; padding: 26px 0; font-size: 20px; font-weight: 500; letter-spacing: -0.5px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: '+'; font-size: 24px; font-weight: 400; color: var(--ember); transition: transform .2s ease; flex: none; line-height: 1; }
.qa[open] summary::after { transform: rotate(45deg); }
.qa .ans { padding: 0 0 28px; color: var(--pebble); font-size: 16px; letter-spacing: -0.4px; line-height: 1.45; max-width: 70ch; }

/* ---- book / calendly ----------------------------------------------------- */
.book-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: start; }
.book-points { list-style: none; margin-top: 32px; display: grid; gap: 18px; }
.book-points li { display: flex; gap: 14px; align-items: flex-start; font-size: 17px; letter-spacing: -0.4px; line-height: 1.35; }
.book-points li .mk { color: var(--ember); font-weight: 700; flex: none; }
.cal-shell { background: var(--card); border: 1px solid var(--mist); border-radius: var(--r-card); overflow: hidden; min-height: 680px; }
.calendly-inline-widget { min-width: 320px; height: 700px; }

/* ---- final cta ----------------------------------------------------------- */
.cta-band { text-align: center; max-width: 24ch; margin: 0 auto; }
.cta-band .lead { margin: 20px auto 0; max-width: 52ch; color: var(--pebble); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; margin-top: 40px; }

/* ---- page hero (subpages) ------------------------------------------------ */
.page-hero { padding: 134px 0 40px; }
.page-hero h1 { margin-top: 24px; max-width: 18ch; }
.page-hero .lead { margin-top: 24px; max-width: 58ch; }
.page-hero .hero-cta { margin-top: 38px; }

/* ---- deliverables grid (service) ----------------------------------------- */
.del-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.del { background: var(--card); border: 1px solid var(--mist); border-radius: var(--r-card); padding: 34px; display: flex; gap: 22px; }
.del .ico { font-size: 22px; line-height: 1; flex: none; }
.del h3 { font-size: 20px; letter-spacing: -0.6px; font-weight: 700; }
.del p { color: var(--pebble); font-size: 15px; letter-spacing: -0.3px; margin-top: 8px; line-height: 1.4; }

/* ---- timeline (service) -------------------------------------------------- */
.timeline { margin-top: 56px; }
.tl { display: grid; grid-template-columns: 180px 1fr; gap: 36px; padding: 34px 0; border-top: 1px solid var(--mist); }
.timeline .tl:last-child { border-bottom: 1px solid var(--mist); }
.tl .when { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ember); padding-top: 4px; }
.tl h3 { font-size: 22px; letter-spacing: -0.66px; font-weight: 700; }
.tl p { color: var(--pebble); font-size: 16px; letter-spacing: -0.4px; margin-top: 8px; line-height: 1.4; max-width: 64ch; }

/* ---- footer -------------------------------------------------------------- */
.footer { padding: 72px 0 40px; border-top: 1px solid var(--mist); }
.foot-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
.foot-brand { font-size: 16px; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase; }
.foot-brand .o { color: var(--ember); }
.foot-blurb { margin-top: 16px; max-width: 36ch; color: var(--pebble); font-size: 15px; letter-spacing: -0.3px; line-height: 1.4; }
.foot-cols { display: flex; gap: 72px; flex-wrap: wrap; }
.foot-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--driftwood); margin-bottom: 18px; }
.foot-col a { display: block; font-size: 15px; letter-spacing: -0.3px; margin-bottom: 12px; color: var(--obsidian); }
.foot-col a:hover { color: var(--ember); }
.foot-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--mist); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; letter-spacing: -0.2px; color: var(--driftwood); }

/* ---- responsive ---------------------------------------------------------- */
@media (max-width: 960px) {
  :root { --gutter: 24px; --section-gap: 72px; }
  .hero-grid, .split, .mosaic, .pricing, .stat-row, .del-grid, .book-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .tile.offset { transform: none; }
  .step { grid-template-columns: 70px 1fr; gap: 22px; }
  .step .n { font-size: 34px; }
  .tl { grid-template-columns: 1fr; gap: 8px; }
  .book-grid { gap: 36px; }
}
@media (max-width: 820px) {
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(250,246,239,.94);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    backdrop-filter: blur(18px) saturate(170%);
    border: 1px solid rgba(255,255,255,.5); border-radius: 22px;
    padding: 10px 18px; box-shadow: 0 12px 38px rgba(40,52,30,.16);
  }
  .nav-links.open { display: flex; }
  .nav-links .chip { padding: 15px 4px; }
  .nav-links .chip::after { display: none; }
  .nav-login { display: none; }
  .nav-toggle { display: flex; }
  .hero-cta, .cta-actions { gap: 22px; }
}

/* ---- home: glass-era additions ------------------------------------------- */
/* hero stage (deep camo; swap background for a <video>/<img> later) */
.hero-home {
  position: sticky; top: 0; z-index: 0;
  min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  padding: 110px 0 96px; color: #e7e4dc; overflow: hidden;
  background-color: var(--hero-green);
  background-image: url('hero.jpg');
  background-image: image-set(url('hero.webp') type('image/webp'), url('hero.jpg') type('image/jpeg'));
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-home::after { content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(16,20,12,.56) 0%, rgba(16,20,12,.40) 45%, rgba(16,20,12,.64) 100%); }
/* the content that slides up over the pinned hero */
.below { position: relative; z-index: 1; background: var(--canvas); border-radius: 30px 30px 0 0; margin-top: 0; box-shadow: 0 -26px 60px rgba(20,23,28,.12); }
.hero-home .hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.hero-home h1 { margin-top: 22px; color: #F4EFE3; text-shadow: 0 2px 30px rgba(0,0,0,.42); }
.hero-home .lead { margin: 24px auto 0; max-width: 58ch; }
.hero-home .hero-cta { justify-content: center; margin-top: 42px; }
.hero-home .hero-note { color: rgba(255,255,255,.72); }
.hero-home .hero-note b { color: #fff; }

.eyebrow.light { color: rgba(255,255,255,.88); }
.eyebrow.light::before { background: #fff; opacity: .85; }
.lead.light { color: rgba(244,239,227,.88); text-shadow: 0 1px 18px rgba(0,0,0,.4); }
.ghost.light { color: #fff; }
.ghost.light::after { background: #fff; }
.ghost.light.primary::after { background: #fff; }

.btn-solid { display: inline-flex; align-items: center; gap: 9px; color: var(--obsidian); font-weight: 600; font-size: 16px; letter-spacing: -0.3px; padding: 15px 26px; border-radius: var(--r-pill);
  background: rgba(250,246,239,.5);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 10px 34px rgba(40,52,30,.12);
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease; }
.btn-solid:hover { background: rgba(250,246,239,.62); transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 14px 40px rgba(40,52,30,.18); }
.btn-solid .arw { transition: transform .2s ease; }
.btn-solid:hover .arw { transform: translateX(4px); }
.btn-solid:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* trackers */
.trackers { padding: 66px 0; }
.trackers-label { text-align: center; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--driftwood); }
.tracker-row { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px 56px; }
.tracker { display: inline-flex; align-items: center; gap: 12px; color: #6f6f6f; transition: color .2s ease; }
.tracker svg { width: 26px; height: 26px; flex: none; }
.tracker img { height: 26px; width: auto; flex: none; display: block; }
.tracker span { font-size: 19px; font-weight: 500; letter-spacing: -0.5px; }

/* narrative (replaces "the shift") */
.narrative { text-align: center; }
.narrative .inner { max-width: 880px; margin: 0 auto; }
.narrative .kicker { display: block; margin-bottom: 28px; }
.statement { font-size: clamp(23px, 3.1vw, 33px); line-height: 1.26; letter-spacing: -0.035em; font-weight: 500; }
.statement + .statement { margin-top: 26px; color: var(--pebble); }
.narrative .closer { margin-top: 42px; font-size: clamp(26px, 3.6vw, 38px); line-height: 1.15; letter-spacing: -0.04em; font-weight: 700; }
.narrative .closer .em { color: var(--ember); }

/* product explainer (high-level "what it is") */
.explain-row { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.explain { background: var(--card); border: 1px solid var(--mist); border-radius: var(--r-card); padding: 36px; }
.explain .xn { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; color: var(--ember); }
.explain h3 { font-size: 24px; letter-spacing: -0.7px; font-weight: 700; margin: 16px 0 10px; }
.explain p { color: var(--pebble); font-size: 15px; letter-spacing: -0.3px; line-height: 1.45; }
.explain-summary { margin-top: 36px; text-align: center; font-size: 19px; letter-spacing: -0.5px; color: var(--obsidian); }
.explain-summary b { font-weight: 700; }

@media (max-width: 960px) {
  .explain-row { grid-template-columns: 1fr; }
  .hero-home { padding: 100px 0 72px; }
}

/* ---- multi-page additions ------------------------------------------------ */
/* active nav chip */
.chip.active { font-weight: 500; }
.chip.active::after { transform: scaleX(1); }

/* editorial two-column block (text + framed visual) */
.editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.editorial.flip .ed-visual { order: -1; }
.ed-text .lead { margin-top: 20px; }
.ed-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 32px; align-items: center; }

/* home entry cards (editorial navigation into the site) */
.nav-cards { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.nav-card { display: flex; flex-direction: column; min-height: 230px; background: var(--card); border: 1px solid var(--mist); border-radius: var(--r-card); padding: 32px; transition: border-color .2s ease, transform .2s ease; }
.nav-card:hover { border-color: var(--obsidian); transform: translateY(-3px); }
.nav-card .nc-k { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--driftwood); }
.nav-card h3 { font-size: 26px; letter-spacing: -0.8px; font-weight: 700; margin-top: 14px; }
.nav-card p { color: var(--pebble); font-size: 15px; letter-spacing: -0.3px; margin-top: 10px; line-height: 1.4; }
.nav-card .arw { color: var(--ember); font-weight: 700; margin-top: auto; padding-top: 24px; font-size: 22px; }

@media (max-width: 960px) {
  .editorial { grid-template-columns: 1fr; gap: 40px; }
  .editorial.flip .ed-visual { order: 0; }
  .nav-cards { grid-template-columns: 1fr; }
}

/* ---- legal / prose (privacy, terms) -------------------------------------- */
.legal { max-width: 760px; }
.legal .upd { font-size: 13px; letter-spacing: 0.02em; color: var(--driftwood); margin-bottom: 8px; }
.legal h2 { font-size: 22px; letter-spacing: -0.66px; font-weight: 700; margin: 46px 0 14px; }
.legal h2:first-of-type { margin-top: 4px; }
.legal h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.4px; margin: 26px 0 8px; }
.legal p { color: #2b2b2b; font-size: 16px; letter-spacing: -0.3px; line-height: 1.6; margin-bottom: 16px; }
.legal ul { list-style: none; display: grid; gap: 10px; margin: 0 0 18px; }
.legal li { display: flex; gap: 12px; font-size: 16px; letter-spacing: -0.3px; line-height: 1.5; color: #2b2b2b; }
.legal li::before { content: '—'; color: var(--ember); flex: none; }
.legal a { color: var(--ember); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--accent-deep); }
.legal strong { font-weight: 700; color: var(--obsidian); }
.legal .lead-in { font-size: 17px; color: var(--obsidian); margin-bottom: 8px; }
