/* ============================================================
   CMD AI CREATIVES WORKSHOP — 12 Sept 2026
   Self-contained. Shares no CSS or JS with the agency site.

   Direction: calm, light, one idea per screen. Near-white base,
   two full-bleed dark blocks (the proof, and the price) for
   rhythm. Red appears on CTAs and nowhere else.
   Mobile-first — 90%+ of traffic is Instagram Reels on phones.
   ============================================================ */

:root {
  /* CMD palette, light. The creative work is the brightest thing. */
  --bg:      #FBFBFA;
  --card:    #FFFFFF;
  --ink:     #101012;
  --slate:   #55555C;
  --stone:   #8B8B93;
  --line:    rgba(16,16,18,.10);
  --line-2:  rgba(16,16,18,.06);
  --red:     #DA251D;

  /* Dark blocks */
  --dark:      #101012;
  --dark-2:    #1A1A1E;
  --dark-line: rgba(251,251,250,.14);
  --dark-mute: #A5A5AD;

  --shadow-sm: 0 1px 2px rgba(16,16,18,.04), 0 4px 16px rgba(16,16,18,.05);
  --shadow-md: 0 2px 6px rgba(16,16,18,.05), 0 18px 44px rgba(16,16,18,.09);

  /* Latin from the CMD brand fonts, Tamil from Anek Tamil via
     per-glyph fallback, so one headline can mix both cleanly. */
  --display: 'Big Shoulders Display', 'Anek Tamil', 'Arial Narrow', sans-serif;
  --text:    'Archivo', 'Anek Tamil', system-ui, -apple-system, sans-serif;
  --mono:    'Space Mono', ui-monospace, monospace;

  /* Type carries the hierarchy — size, weight and leading move as a set.
     Leading tightens as size grows; tracking goes negative on display
     sizes and stays near zero on body copy. */
  --fs-mono: clamp(0.66rem, 0.62rem + 0.2vw, 0.76rem);
  --fs-sm:   clamp(0.95rem, 0.91rem + 0.2vw, 1.05rem);
  --fs-body: clamp(1.06rem, 1rem + 0.3vw, 1.22rem);
  --fs-lead: clamp(1.2rem, 1.05rem + 0.75vw, 1.65rem);
  --fs-h3:   clamp(1.45rem, 1.2rem + 1.15vw, 2.1rem);
  --fs-h2:   clamp(2.3rem, 1.7rem + 2.6vw, 4rem);
  --fs-h1:   clamp(2.5rem, 1.7rem + 3.6vw, 4.9rem);

  --gutter: clamp(1.15rem, 0.85rem + 1.8vw, 2.75rem);
  --maxw:   1320px;
  --narrow: 720px;
  --pad-y:  clamp(2.9rem, 2rem + 3vw, 4.9rem);
  --radius: 16px;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height:auto keeps images with width/height attributes from rendering
   at intrinsic height once max-width shrinks them. */
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* ---------- LAYOUT ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--pad-y); }
/* With the padding cut, a hairline does the separating that whitespace
   used to. Dark blocks separate themselves. */
.section + .section:not(.section--dark) { border-top: 1px solid var(--line-2); }
.section--dark + .section { border-top: 0; }

/* Editorial grid: heading rail on the left, content taking the width.
   This is where most of the reclaimed space comes from. */
.sec { display: grid; gap: clamp(1.4rem, 1rem + 2vw, 2.6rem); }
@media (min-width: 1000px) {
  .sec { grid-template-columns: minmax(230px, 300px) minmax(0, 1fr); gap: 4rem; align-items: start; }
  .sec > .section-head { margin-bottom: 0; position: sticky; top: calc(var(--bar-h, 54px) + 1.6rem); }
}

/* Full-bleed dark blocks — the two moments of contrast on the page */
.section--dark { background: var(--dark); color: #FBFBFA; }
.section--dark .muted,
.section--dark .lead { color: var(--dark-mute); }
.section--dark .h2, .section--dark .h3 { color: #FBFBFA; }

/* Most sections are centered and narrow. Calm beats dense. */
.center { text-align: center; }
.narrow { max-width: var(--narrow); margin-inline: auto; }

.mono {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.kicker {
  display: block;
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}

.h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--fs-h2);
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.lead { font-size: var(--fs-lead); line-height: 1.45; color: var(--slate); }
.lead b { color: inherit; font-weight: 600; }
.muted { color: var(--slate); }

.section-head { margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.4rem); }
.section-head .lead { margin-top: .85rem; max-width: 42ch; }
.section-head.center .lead { margin-inline: auto; }
/* Gallery keeps a full-width header so the grid gets the whole row. */
.section-head--row { display: flex; flex-wrap: wrap; align-items: flex-end; gap: .6rem 2.5rem; }
.section-head--row .lead { margin-top: 0; flex: 1 1 24ch; }
.kicker { margin-bottom: .7rem; }

/* ---------- BUTTONS — the only red on the page ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 1.15em 2.2em;
  font-family: var(--text); font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  font-weight: 700; letter-spacing: 0.005em;
  border: 1.5px solid var(--red); border-radius: 100px;
  background: var(--red); color: #fff;
  transition: transform .14s ease-out, box-shadow .35s var(--ease), background .25s var(--ease);
  box-shadow: 0 6px 22px rgba(218,37,29,.20);
  text-align: center; line-height: 1.2;
}
.btn:hover { box-shadow: 0 10px 32px rgba(218,37,29,.32); }
.btn:active { transform: scale(0.98); }
.btn--block { width: 100%; }
.btn--ghost {
  background: none; color: var(--ink); border-color: var(--line);
  box-shadow: none; font-weight: 600;
}
.btn--ghost:hover { border-color: var(--ink); box-shadow: none; }
.section--dark .btn--ghost { color: #FBFBFA; border-color: var(--dark-line); }
.section--dark .btn--ghost:hover { border-color: #FBFBFA; }
.btn__meta { font-weight: 400; opacity: .8; }

/* ---------- TOP BAR ---------- */
/* Translucent chrome with content scrolling underneath, not an opaque
   strip. The material follows what is beneath it, and the edge only
   appears once there is content behind the bar. */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,251,250,.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: background .45s var(--ease), border-color .45s var(--ease);
}
.topbar--edge { border-bottom-color: var(--line-2); }
.topbar--on-dark {
  background: rgba(16,16,18,.72);
  border-bottom-color: rgba(251,251,250,.10);
}
.topbar--on-dark .topbar__logo .w { fill: #FBFBFA; }
.topbar__in { display: flex; align-items: center; justify-content: center; padding-block: 0.85rem; }
.topbar__logo { width: 64px; height: auto; }
.topbar__logo .w { fill: var(--ink); font-family: var(--display); font-weight: 900; font-size: 130px; letter-spacing: -2px; }
.topbar__logo .p { fill: var(--red); }

/* ---------- 1 · HERO ---------- */
.hero { padding-block: clamp(2rem, 1.2rem + 3.5vw, 4.2rem); }
.hero__in { display: grid; gap: clamp(1.8rem, 1.2rem + 3vw, 3rem); }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--mono); font-size: var(--fs-mono); letter-spacing: .2em;
  text-transform: uppercase; color: var(--slate);
  margin-bottom: clamp(.9rem, 2vw, 1.4rem);
}
.hero__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex: none; }

.hero__title {
  font-family: var(--display); font-weight: 800;
  font-size: var(--fs-h1); line-height: 0.97; letter-spacing: -0.02em;
  text-wrap: balance;
}
/* Anek Tamil runs optically larger than the condensed Latin at the same
   size, so Tamil is scaled to match. */
.hero__title .ta { font-size: 0.68em; font-weight: 700; letter-spacing: 0; }

.hero__sub {
  margin-top: clamp(.9rem, 2vw, 1.3rem);
  font-size: clamp(1.15rem, 1rem + 0.85vw, 1.75rem);
  line-height: 1.25; color: var(--slate); font-weight: 500;
  max-width: 26ch; text-wrap: balance;
}
.hero__promise {
  margin-top: clamp(.9rem, 1.8vw, 1.2rem);
  font-size: var(--fs-body); line-height: 1.5; color: var(--slate); max-width: 44ch;
}
.hero__promise b { color: var(--ink); font-weight: 600; }

/* The buy card. On phones it follows the pitch; on desktop it fills the
   column that was empty margin. */
.hero__card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: clamp(1.2rem, .9rem + 1.4vw, 1.8rem);
  align-self: start;
}
.hero__card-h {
  font-family: var(--mono); font-size: var(--fs-mono); letter-spacing: .18em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 1rem;
}
.hero__proof { list-style: none; display: grid; gap: .85rem; }
.hero__proof li {
  display: grid; gap: .1rem; padding-left: 1.5rem; position: relative;
  font-size: var(--fs-sm); line-height: 1.35;
}
.hero__proof li::before {
  content: "✓"; position: absolute; left: 0; top: .05em;
  font-family: var(--mono); font-size: .85em; color: var(--red);
}
.hero__proof b { font-weight: 700; }
.hero__proof span { color: var(--slate); font-size: .92em; }

.hero__buy { margin-top: 1.3rem; padding-top: 1.2rem; border-top: 1px solid var(--line-2); }
.hero__price { display: flex; align-items: baseline; gap: .6rem; margin-bottom: .8rem; }
.hero__now {
  font-family: var(--display); font-weight: 900; font-size: clamp(2.4rem, 2rem + 1.6vw, 3.2rem);
  line-height: .9; letter-spacing: -0.03em;
}
.hero__price s { font-family: var(--display); font-weight: 700; font-size: 1.35rem; color: var(--stone); }
.hero__logistics {
  margin-top: .8rem; font-family: var(--mono); font-size: var(--fs-mono);
  letter-spacing: .1em; text-transform: uppercase; color: var(--stone); line-height: 1.7;
}
.hero__logistics b { color: var(--ink); font-weight: 400; }

/* On phones the hero must still read in one screen, so the card sheds
   its chrome and the three artifacts — Section 5 covers them properly a
   moment later. What stays is price, CTA and the logistics line. */
@media (max-width: 899px) {
  .hero__card { background: none; box-shadow: none; padding: 0; }
  .hero__card-h, .hero__proof { display: none; }
  .hero__buy { margin-top: 0; padding-top: 0; border-top: 0; }
  .hero__in { gap: clamp(1.1rem, .8rem + 1.5vw, 1.6rem); }
}

@media (min-width: 900px) {
  .hero { min-height: calc(100svh - var(--bar-h, 54px)); display: flex; align-items: center; }
  .hero__in {
    width: 100%;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
    gap: clamp(2.5rem, 1rem + 4vw, 5rem); align-items: center;
  }
}

/* ---------- 2 · ANGLE STRIP (message match for ad variants) ---------- */
.angles { padding-block: clamp(1.5rem, 1rem + 1.8vw, 2.4rem); border-block: 1px solid var(--line-2); }
.angles__list { list-style: none; display: grid; gap: .7rem; }
.angles__list li { font-size: var(--fs-sm); line-height: 1.4; color: var(--stone); }
@media (min-width: 700px)  { .angles__list { grid-template-columns: 1fr 1fr; gap: 1rem 2.5rem; } }
@media (min-width: 1060px) {
  .angles__list { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .angles__list li { padding-left: 1.2rem; border-left: 1px solid var(--line); }
}

/* ---------- 3 · SIDE-BY-SIDE · the proof (dark) ---------- */
.proof__stack { display: grid; gap: clamp(2rem, 1.4rem + 2.4vw, 3.2rem); }
@media (min-width: 900px) {
  /* Caption sits beside the pair instead of stacking under it — the copy
     is short and the row is wide, so the height was pure waste. */
  .proof__item {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(15rem, 24ch);
    gap: 0 clamp(1.6rem, 1rem + 2vw, 3rem); align-items: center;
  }
  .proof__item .cmp__title { grid-column: 2; grid-row: 1; align-self: end; margin-bottom: .6rem; }
  .proof__item .cmp { grid-column: 1; grid-row: 1 / span 2; }
  .proof__item .cmp__caption { grid-column: 2; grid-row: 2; align-self: start; margin-top: 0; }
}

.cmp {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--dark-2);
  touch-action: pan-y;
  --pos: 50%;
}
.cmp__side { position: relative; margin: 0; }
.cmp__side img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; background: var(--dark-2); }
.cmp__label {
  position: absolute; bottom: .6rem; z-index: 2;
  display: inline-flex; align-items: baseline; gap: .45em;
  font-family: var(--mono); font-size: clamp(0.55rem, 0.52rem + 0.16vw, 0.64rem);
  letter-spacing: .12em; text-transform: uppercase;
  background: rgba(12,12,14,.82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--dark-line); border-radius: 100px;
  padding: .5em .8em; color: var(--dark-mute); white-space: nowrap;
}
.cmp__label b { color: #FBFBFA; font-weight: 700; letter-spacing: .08em; }
.cmp__side--a .cmp__label { left: .6rem; }
.cmp__side--b .cmp__label { right: .6rem; }
.cmp__verdict { font-weight: 700; }
.cmp__side--a .cmp__verdict { color: var(--stone); }
.cmp__side--b .cmp__verdict { color: #FBFBFA; }

.cmp__title {
  font-family: var(--mono); font-size: var(--fs-mono); letter-spacing: .2em;
  text-transform: uppercase; color: var(--stone); margin-bottom: .9rem;
}
.cmp__caption {
  margin-top: 1rem; font-size: var(--fs-sm); line-height: 1.55;
  color: var(--dark-mute); max-width: 62ch;
}
.cmp__caption b { color: #FBFBFA; font-weight: 600; }

/* Mobile: drag-slider comparison */
@media (max-width: 767px) {
  .cmp__side--b { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos)); }
  .cmp__handle {
    position: absolute; top: 0; bottom: 0; left: var(--pos); z-index: 3;
    width: 2px; background: #FBFBFA; transform: translateX(-1px);
    cursor: ew-resize; touch-action: none;
  }
  .cmp__handle::after {
    content: "◀ ▶"; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--mono); font-size: .6rem; letter-spacing: .1em; color: var(--dark);
    background: #FBFBFA; border-radius: 100px; padding: .5em .7em; white-space: nowrap;
  }
  .cmp__hint {
    position: absolute; top: .6rem; left: 50%; transform: translateX(-50%); z-index: 4;
    font-family: var(--mono); font-size: .55rem; letter-spacing: .14em; text-transform: uppercase;
    background: rgba(12,12,14,.82); border: 1px solid var(--dark-line); border-radius: 100px;
    padding: .45em .85em; color: var(--dark-mute); transition: opacity .3s;
  }
  .cmp.is-touched .cmp__hint { opacity: 0; }
  /* Only promote while a finger is down — a permanent layer costs memory. */
  .cmp.is-dragging .cmp__side--b { will-change: clip-path; }
  .cmp.is-dragging .cmp__handle { will-change: left; }
}
/* Desktop: true side-by-side */
@media (min-width: 768px) {
  .cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--dark-line); }
  .cmp__handle, .cmp__hint { display: none; }
  .cmp__side img { aspect-ratio: 1 / 1; }
}

/* ---------- 4 · OUTPUT GALLERY ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(.55rem, 1.4vw, 1.1rem);
  list-style: none;
}
@media (min-width: 620px)  { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .gallery { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1180px) { .gallery { grid-template-columns: repeat(5, 1fr); } }

.gal {
  position: relative; border-radius: 12px; overflow: hidden;
  background: var(--card); cursor: zoom-in; display: block; padding: 0; width: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gal:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gal img, .gal video { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.gal__tag {
  position: absolute; left: .5rem; bottom: .5rem;
  font-family: var(--mono); font-size: clamp(0.5rem, 0.47rem + 0.16vw, 0.58rem);
  letter-spacing: .1em; text-transform: uppercase; color: #FBFBFA;
  background: rgba(12,12,14,.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: 100px; padding: .45em .7em;
}
.gal__play {
  position: absolute; right: .5rem; top: .5rem;
  font-size: .58rem; color: #FBFBFA; background: rgba(12,12,14,.78);
  border-radius: 100px; padding: .4em .65em; font-family: var(--mono); letter-spacing: .1em;
}
.gallery__note { margin-top: 1rem; color: var(--stone); font-size: var(--fs-sm); }

/* Lightbox */
.lightbox {
  --p: 1; /* see .modal — defaults to the shown state */
  position: fixed; inset: 0; z-index: 200; display: none;
  padding: var(--gutter);
  align-items: center; justify-content: center;
  /* Blur and scrim ramp together, so the surface reads as a material
     arriving rather than a flat opacity fade. */
  background: rgba(10,10,12,calc(.94 * var(--p)));
  backdrop-filter: blur(calc(18px * var(--p)));
  -webkit-backdrop-filter: blur(calc(18px * var(--p)));
}
.lightbox.is-open { display: flex; }
.lightbox img, .lightbox video {
  max-width: min(92vw, 900px); max-height: 84vh; width: auto; border-radius: 10px;
  will-change: transform;
}
.lightbox__close, .lightbox__cap { opacity: var(--p); }
.lightbox__close {
  position: absolute; top: 1rem; right: 1rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--dark-line); border-radius: 100px; padding: .7em 1.1em; color: #FBFBFA;
}
.lightbox__cap {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dark-mute); text-align: center; width: 90%;
}

/* ---------- 5 · WHAT YOU WALK OUT WITH ---------- */
.walkout__grid { display: grid; gap: clamp(1.4rem, 1rem + 2vw, 2.6rem); align-items: center; }
@media (min-width: 700px) { .walkout__grid { grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); } }
.walkout__map { border-radius: var(--radius); overflow: hidden; background: var(--card); box-shadow: var(--shadow-md); }
.artifacts { list-style: none; display: grid; gap: 1.1rem; counter-reset: a; text-align: left; }
.artifacts li { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.artifacts li::before {
  counter-increment: a; content: counter(a, decimal-leading-zero);
  font-family: var(--mono); font-size: var(--fs-mono); letter-spacing: .1em;
  color: var(--red); padding-top: .35em;
}
.artifacts h3 { font-family: var(--text); font-size: var(--fs-body); font-weight: 700; margin-bottom: .2rem; }
.artifacts p { font-size: var(--fs-sm); color: var(--slate); line-height: 1.45; }

/* ---------- 6 · CURRICULUM ---------- */
.curr { list-style: none; display: grid; text-align: left; }
@media (min-width: 760px) { .curr { grid-template-columns: 1fr 1fr; column-gap: clamp(1.8rem, 1rem + 2.5vw, 3.5rem); } }
.curr__row {
  display: grid; gap: .25rem 1.2rem; grid-template-columns: auto 1fr;
  border-top: 1px solid var(--line-2); padding-block: clamp(.9rem, 1.6vw, 1.25rem);
}
.curr__row:last-child { border-bottom: 1px solid var(--line-2); }
@media (min-width: 760px) {
  /* Keep the rule pattern intact when the list splits into two columns. */
  .curr__row:nth-last-child(2) { border-bottom: 1px solid var(--line-2); }
}
.curr__time {
  font-family: var(--mono); font-size: var(--fs-mono); letter-spacing: .14em;
  text-transform: uppercase; color: var(--stone); padding-top: .45em; white-space: nowrap;
}
.curr__body h3 {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-h3);
  line-height: 1.1; letter-spacing: -0.01em; margin-bottom: .35rem;
}
.curr__body p { font-size: var(--fs-sm); color: var(--slate); max-width: 46ch; line-height: 1.5; }
.curr__body b { color: var(--ink); font-weight: 600; }
@media (min-width: 480px) { .curr__row { grid-template-columns: 5.2rem 1fr; } }
.curr__total {
  margin-top: 1rem; font-family: var(--mono); font-size: var(--fs-mono);
  letter-spacing: .16em; text-transform: uppercase; color: var(--stone);
}

/* ---------- 7 · TOOLS ---------- */
.tools__box {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: clamp(1.3rem, 1rem + 1.8vw, 2.2rem);
  text-align: left; display: grid; gap: 1.6rem;
}
@media (min-width: 700px) { .tools__box { grid-template-columns: 1fr 1fr; gap: 2.4rem; } }
.tools__box h3 { font-family: var(--text); font-size: var(--fs-body); font-weight: 700; margin-bottom: .7rem; }
.tools__list { list-style: none; display: grid; gap: .7rem; }
.tools__list li { font-size: var(--fs-sm); color: var(--slate); padding-left: 1.3rem; position: relative; line-height: 1.5; }
.tools__list li::before { content: "→"; position: absolute; left: 0; color: var(--stone); }
.tools__caveat {
  font-size: var(--fs-sm); color: var(--slate); line-height: 1.6;
  border-left: 2px solid var(--line); padding-left: 1rem; margin-top: 1.1rem;
}

/* ---------- 8 · NO UPSELL ---------- */
.noupsell { display: grid; gap: clamp(1.2rem, 1rem + 1.5vw, 2.5rem); align-items: center; }
@media (min-width: 900px) { .noupsell { grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); } }
.noupsell__line {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2rem, 1.4rem + 3.2vw, 3.8rem); line-height: 1;
  letter-spacing: -0.02em; max-width: 18ch; text-wrap: balance;
}
.noupsell p { font-size: var(--fs-lead); color: var(--slate); max-width: 44ch; line-height: 1.45; }
.noupsell .kicker { grid-column: 1 / -1; margin-bottom: 0; }
.noupsell p b { color: var(--ink); font-weight: 600; }

/* ---------- 9 · FOR / NOT FOR ---------- */
.fit { display: grid; gap: clamp(1.5rem, 1rem + 2vw, 3rem); text-align: left; }
@media (min-width: 620px) { .fit { grid-template-columns: 1fr 1fr; } }
.fit__col h3 {
  font-family: var(--mono); font-size: var(--fs-mono); letter-spacing: .2em;
  text-transform: uppercase; color: var(--stone); margin-bottom: .9rem;
  padding-bottom: .7rem; border-bottom: 1px solid var(--line-2);
}
.fit__col--yes h3 { color: var(--red); }
.fit__col ul { list-style: none; display: grid; gap: .75rem; }
.fit__col li { font-size: var(--fs-body); line-height: 1.45; padding-left: 1.6rem; position: relative; color: var(--slate); }
.fit__col li::before { position: absolute; left: 0; top: 0; font-family: var(--mono); font-size: .8em; }
.fit__col--yes li::before { content: "✓"; color: var(--red); }
.fit__col--no li::before { content: "✕"; color: var(--stone); }

/* ---------- 10 · ROHAN ---------- */
.rohan { display: grid; gap: clamp(1.3rem, 1rem + 2vw, 2.8rem); align-items: center; text-align: left; }
@media (min-width: 620px) { .rohan { grid-template-columns: minmax(0,.3fr) minmax(0,.7fr); } }
.rohan__photo { border-radius: var(--radius); overflow: hidden; background: var(--card); box-shadow: var(--shadow-sm); }
.rohan__quote {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.5rem, 1.1rem + 2.2vw, 2.4rem); line-height: 1.08;
  letter-spacing: -0.015em; margin-bottom: 1.4rem; text-wrap: balance;
}
.rohan p { color: var(--slate); font-size: var(--fs-body); line-height: 1.55; max-width: 60ch; }
.rohan p + p { margin-top: .9rem; }
.rohan p b { color: var(--ink); font-weight: 600; }

/* ---------- 11 · PRICE + CTA (dark) ---------- */
.price__grid { display: grid; gap: clamp(1.8rem, 1.2rem + 3vw, 3.5rem); align-items: center; }
@media (min-width: 860px) {
  .price__grid { grid-template-columns: minmax(0,1.05fr) minmax(300px,.95fr); }
  .price__right { border-left: 1px solid var(--dark-line); padding-left: clamp(2rem, 1rem + 3vw, 3.5rem); }
}
.price__tags { display: flex; align-items: baseline; gap: 1rem; }
.price__now {
  font-family: var(--display); font-weight: 900; line-height: .88;
  font-size: clamp(3.6rem, 2.4rem + 7vw, 6.5rem); letter-spacing: -0.03em;
}
.price__was {
  font-family: var(--display); font-weight: 700; color: var(--stone);
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2.4rem); text-decoration: line-through;
}
.price__anchor {
  margin-top: .8rem; font-size: var(--fs-sm); color: var(--dark-mute);
  max-width: 44ch; line-height: 1.5;
}
.price__anchor b { color: #FBFBFA; font-weight: 600; }

.price__incl {
  list-style: none; display: grid; gap: .6rem;
  margin-top: clamp(1.2rem, 2.5vw, 1.8rem); text-align: left;
}
@media (min-width: 560px) and (max-width: 859px) { .price__incl { grid-template-columns: 1fr 1fr; column-gap: 2rem; } }
.price__incl li { font-size: var(--fs-sm); color: var(--dark-mute); padding-left: 1.5rem; position: relative; }
.price__incl li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-family: var(--mono); font-size: .8em; }

.price__when {
  font-family: var(--mono); font-size: var(--fs-mono); letter-spacing: .14em;
  text-transform: uppercase; color: var(--stone); line-height: 1.9;
  padding-bottom: 1.1rem; border-bottom: 1px solid var(--dark-line);
  margin-bottom: 1.3rem;
}
.price__when b { color: #FBFBFA; font-weight: 400; }

/* The ONE countdown on the page — real date only */
.countdown { display: flex; gap: 1.4rem; margin-bottom: 1.4rem; }
.countdown__unit { min-width: 3.4rem; }
.countdown__n {
  font-family: var(--display); font-weight: 800; line-height: 1;
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.3rem);
}
.countdown__l {
  font-family: var(--mono); font-size: .5rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--stone); margin-top: .5rem;
}
.countdown__note {
  font-family: var(--mono); font-size: var(--fs-mono); letter-spacing: .14em;
  text-transform: uppercase; color: var(--stone); margin-bottom: .8rem;
}
.price__fine { margin-top: .9rem; font-size: .82rem; color: var(--stone); line-height: 1.5; }

/* ---------- 12 · FAQ ---------- */
.faq { list-style: none; text-align: left; }
@media (min-width: 900px) {
  /* Eight questions in one column was a very tall, very empty block. */
  .faq { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 1rem + 3vw, 4rem); display: grid; align-content: start; }
}
.faq__item { border-bottom: 1px solid var(--line-2); }
.faq__item:first-child { border-top: 1px solid var(--line-2); }
@media (min-width: 900px) { .faq__item:nth-child(2) { border-top: 1px solid var(--line-2); } }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.2rem;
  padding-block: clamp(.9rem, 1.7vw, 1.15rem); text-align: left;
  font-size: var(--fs-body); font-weight: 600; line-height: 1.35;
}
.faq__q::after { content: "+"; font-family: var(--mono); color: var(--red); flex: none; font-size: 1.15em; }
.faq__item.is-open .faq__q::after { content: "–"; }
/* Height is spring-driven from JS; the wrapper stays in flow so a
   re-target mid-animation continues from the current height. */
.faq__a { height: 0; overflow: hidden; opacity: 0; }
.faq__a > :last-child { margin-bottom: 1.2rem; }
.faq__a p { font-size: var(--fs-sm); color: var(--slate); max-width: 58ch; line-height: 1.6; }
.faq__a p + p { margin-top: .8rem; }

/* ---------- FOOTER ---------- */
.footer { padding-block: clamp(1.8rem, 1.4rem + 1.5vw, 2.6rem); border-top: 1px solid var(--line-2); }
.footer__in {
  display: flex; flex-wrap: wrap; gap: .8rem 2rem;
  justify-content: space-between; align-items: center;
}
.footer a, .footer .mono { color: var(--stone); }
.footer a:hover { color: var(--ink); }
.footer__links { display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; }

/* ---------- STICKY MOBILE CTA ---------- */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(251,251,250,.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: .9rem;
  transform: translateY(110%); transition: transform .35s var(--ease);
}
.stickybar.is-visible { transform: translateY(0); }
.stickybar__price { display: grid; line-height: 1.1; flex: none; }
.stickybar__now { font-family: var(--display); font-weight: 800; font-size: 1.6rem; letter-spacing: -0.02em; }
.stickybar__was { font-family: var(--mono); font-size: .54rem; letter-spacing: .1em; color: var(--stone); text-decoration: line-through; }
.stickybar .btn { flex: 1; padding: .95em 1rem; font-size: .95rem; }
@media (min-width: 900px) { .stickybar { display: none; } }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- ACCESSIBILITY PREFERENCES -----------------------------
   Three independent signals, honoured separately. Reduced motion is
   not "no feedback" — it is a gentler, non-vestibular equivalent, so
   opacity changes that aid comprehension stay.
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .stickybar { transition: none; }
  /* Springs already land instantly (see motion.js); this covers the
     remaining CSS-driven movement with a short cross-fade. */
  .btn, .gal { transition: opacity .18s ease, box-shadow .18s ease; }
  .gal:hover { transform: none; }
  .btn:active { transform: none; }
  .topbar { transition: none; }
  .lightbox img, .lightbox video { transform: none !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .topbar { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .topbar--on-dark { background: var(--dark); }
  .lightbox { background: rgba(10,10,12,calc(.98 * var(--p))); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .cmp__label, .cmp__hint, .gal__tag, .gal__play { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--dark); }
}

@media (prefers-contrast: more) {
  :root { --line: rgba(16,16,18,.3); --line-2: rgba(16,16,18,.2); --stone: #5A5A62; --slate: #2A2A30; }
  .topbar { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom-color: var(--line); }
  .gal, .tools__box, .walkout__map, .rohan__photo { border: 1px solid var(--line); }
  .cmp__label, .gal__tag { border: 1px solid rgba(251,251,250,.5); background: #000; }
  .btn--ghost { border-color: var(--ink); }
}

/* ---------- THANK YOU PAGE ---------- */
.ty { min-height: 100svh; display: flex; align-items: center; padding-block: var(--pad-y); text-align: center; }
.ty__badge {
  display: inline-flex; align-items: center; gap: .5em; font-family: var(--mono);
  font-size: var(--fs-mono); letter-spacing: .2em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1.6rem;
}
.ty__steps {
  list-style: none; counter-reset: s; display: grid; gap: 1.6rem;
  margin: 2.4rem auto 0; max-width: 640px; text-align: left;
}
.ty__steps li { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; }
.ty__steps li::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  font-family: var(--mono); font-size: var(--fs-mono); color: var(--red); padding-top: .35em;
}
.ty__steps h3 { font-family: var(--text); font-size: var(--fs-body); font-weight: 700; margin-bottom: .3rem; }
.ty__steps p { font-size: var(--fs-sm); color: var(--slate); line-height: 1.6; }
.ty__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.4rem; justify-content: center; }
