/* ============================================================================
   HUSSEIN AI LEAD MAGNET (Claude for Fitness Coaches)
   styles.css  -  ONE shared stylesheet for index.html + guide.html

   Locked to the husseinfht.com brand tokens (.research/hfht-tokens.json,
   hfht-desktop.png) and to the BUILD-SPEC integration contract.

   Design goal: award-tier, modern, 3D, glassmorphic depth on near-black with
   the orange accent. Anton condensed uppercase headline system with an orange
   key-phrase highlight, glass cards with gradient borders + layered shadows,
   hover tilt + magnetic CTA styling, copy-button / dropdown / checklist
   components, and a flawless 390px mobile layout for both pages.

   Motion (Three.js + GSAP + Lenis + vanilla-tilt) lives in motion.js. This file
   sets the *initial* hidden states for reveal/split so there is no FOUC, and
   the static reduced-motion fallbacks so the page is beautiful with zero JS.

   Hard rules honored: no pricing, NO em dashes, NO en dashes anywhere.
   ========================================================================== */

/* ---------------------------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------------------------- */
:root {
  /* Brand color (verbatim from the extracted tokens) */
  --bg: #000000;
  --bg-raise: #050505;            /* raised opaque band where dense copy lives */
  --bg-band: #0a0a0a;             /* opaque legibility band (guide prompt zones) */
  --bg-card: #111111;             /* solid brand card token */
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.70);
  --text-dim: rgba(255, 255, 255, 0.78);
  --text-faint: rgba(255, 255, 255, 0.50);
  --accent: #f25c05;              /* THE orange */
  --accent-hover: #ff7a2e;
  --accent-soft: rgba(242, 92, 5, 0.14);
  --accent-line: rgba(242, 92, 5, 0.45);

  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-soft: rgba(255, 255, 255, 0.06);

  /* alias used by the V5 photo frames + logo system (muted white "ink") */
  --ink: #ffffff;
  --ink-soft: rgba(255, 255, 255, 0.62);

  /* Glass surface (section 9.8, tuned for near-black) */
  --glass-bg: rgba(20, 20, 22, 0.55);
  --glass-bg-strong: rgba(16, 16, 18, 0.72);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.10);
  --glass-blur: blur(18px) saturate(140%);

  /* Brand shadows (verbatim values) */
  --cta-glow: 0 0 30px 0 rgba(242, 92, 5, 0.45), 0 0 0 7.5px rgba(242, 92, 5, 0.318);
  --cta-glow-soft: 0 0 24px 0 rgba(242, 92, 5, 0.35), 0 0 0 5px rgba(242, 92, 5, 0.22);
  --card-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --card-shadow-lift: 0 40px 80px -24px rgba(0, 0, 0, 0.72);
  --edge-glow: 0 0 0 1px rgba(242, 92, 5, 0.5), 0 0 40px -8px rgba(242, 92, 5, 0.45);

  /* Gradient border for glass cards (depth, premium feel) */
  --grad-border: linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0.04) 28%,
      rgba(242, 92, 5, 0.10) 72%,
      rgba(242, 92, 5, 0.30) 100%);

  /* Type */
  --font-display: "Anton", "Anton Fallback", "Arial Narrow", Arial, sans-serif;
  --font-body: "Manrope", "Manrope Fallback", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Fluid type scale (clamp, tracks live tokens: h1 72/75.6, h2 60/57, h3 20/25) */
  --fs-h1: clamp(2.5rem, 7.5vw, 5.25rem);
  --fs-h2: clamp(2rem, 5vw, 3.75rem);
  --fs-h3: clamp(1.1rem, 1.6vw, 1.375rem);
  --fs-eyebrow: 0.8125rem;        /* 13px */
  --fs-lead: clamp(1rem, 1.3vw, 1.25rem);
  --fs-body: 1rem;                /* 16px */
  --fs-btn: 1.125rem;             /* 18px */

  /* Spacing (8px base scale) */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-6: 24px; --sp-8: 32px; --sp-12: 48px; --sp-16: 64px;
  --sp-24: 96px; --sp-32: 128px;

  --container: 1200px;
  --container-narrow: 760px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-pad: clamp(56px, 8vw, 112px);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Reveal distance (overridden smaller on mobile) */
  --reveal-y: 40px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  color-scheme: dark;
}

/* ---------------------------------------------------------------------------
   2. RESET + BASE
   --------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: auto;          /* Lenis owns momentum; native fallback otherwise */
  /* V5 overflow fix: the bottom-right .light-leak-2 is position:fixed, so an
     ancestor's overflow (body{overflow-x:hidden}) can never clip it; only the
     initial containing block can. Clipping here drives horizontal overflow to 0
     on both pages, holds across the GSAP light-leak drift, and (unlike hidden)
     creates no new scroll container, so position:sticky on the header is intact. */
  overflow-x: clip;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Base ember backdrop so the page is never flat black before/without WebGL.
   The live canvas paints over this; reduced motion keeps it as the field. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 8%, rgba(242, 92, 5, 0.16) 0%, rgba(242, 92, 5, 0.05) 26%, transparent 58%),
    radial-gradient(140% 120% at 50% 120%, rgba(242, 92, 5, 0.10) 0%, transparent 55%),
    var(--bg);
}

img,
svg,
canvas { display: block; max-width: 100%; }

img { height: auto; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea,
select { font: inherit; color: inherit; }

::selection {
  background: rgba(242, 92, 5, 0.32);
  color: #fff;
}

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

/* Custom scrollbar (desktop, cosmetic) */
@media (pointer: fine) {
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: #000; }
  ::-webkit-scrollbar-thumb {
    background: rgba(242, 92, 5, 0.45);
    border-radius: 999px;
    border: 2px solid #000;
  }
  ::-webkit-scrollbar-thumb:hover { background: var(--accent); }
}

/* ---------------------------------------------------------------------------
   3. BACKGROUND SYSTEM (canvas + overlay depth layers)
   z-order: 0 canvas, 1 vignette+grain, 2 light leaks,
            3 content, 4 glass cards/nav/cta, 5 progress + cursor
   --------------------------------------------------------------------------- */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Radial vignette: darkens edges AND gently the whole frame, pulling the bright
   center in so the hero copy keeps contrast against the field. Two layers: a wide
   soft body darken that begins early (so the headline/lead zone is never fully
   exposed) plus the stronger edge falloff for cinematic depth. */
#fx-vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(135% 110% at 50% 40%,
      rgba(0, 0, 0, 0.10) 0%,
      rgba(0, 0, 0, 0.10) 12%,
      rgba(0, 0, 0, 0.34) 52%,
      rgba(0, 0, 0, 0.62) 80%,
      rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.30) 0%,
      rgba(0, 0, 0, 0.05) 22%,
      transparent 45%);
  mix-blend-mode: multiply;
}

/* 1px noise overlay to kill banding (SVG fractal noise, ~4.5% opacity) */
#fx-grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  /* gentle drift handled by motion.js if present; static is fine */
}

/* Light leaks: large blurred orange atmosphere blobs, GSAP drifted */
.light-leak {
  position: fixed;
  z-index: 2;
  pointer-events: none;
  width: 46vmax;
  height: 46vmax;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  background: radial-gradient(circle at center, rgba(242, 92, 5, 0.55) 0%, rgba(242, 92, 5, 0.18) 38%, transparent 70%);
  will-change: transform;
}
.light-leak.leak-a,
.light-leak.light-leak-1 { top: -14vmax; left: -10vmax; }
.light-leak.leak-b,
.light-leak.light-leak-2 { bottom: -18vmax; right: -12vmax; opacity: 0.18; }

/* Scroll progress bar (orange, top, width bound to scroll by motion.js) */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 60;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  box-shadow: 0 0 14px rgba(242, 92, 5, 0.7);
  transform-origin: 0 50%;
  pointer-events: none;
}

/* Optional desktop custom cursor */
#cursor-dot,
#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  pointer-events: none;
  border-radius: 50%;
  mix-blend-mode: screen;
  will-change: transform;
  opacity: 0;
}
#cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--accent);
}
#cursor-ring {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1.5px solid rgba(242, 92, 5, 0.65);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, margin 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  body.has-cursor #cursor-dot,
  body.has-cursor #cursor-ring { opacity: 1; }
  body.has-cursor { cursor: none; }
  body.has-cursor a,
  body.has-cursor button,
  body.has-cursor input,
  body.has-cursor summary,
  body.has-cursor label { cursor: none; }
}
#cursor-ring.is-active {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-color: var(--accent);
}

/* ---------------------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   --------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: var(--container-narrow); }

main { position: relative; z-index: 3; }

/* Content sits above the field. Glass/cards step up further. */
.site-header,
.hero,
.guide-hero,
.guide-section,
.mini-foot { position: relative; z-index: 3; }

/* Opaque legibility band for dense, prompt heavy guide zones so the field
   never fights the text. Applied via .band on a section wrapper. */
.band {
  background: var(--bg-band);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* ---------------------------------------------------------------------------
   5. SHARED GLASS SURFACE (gradient border + layered depth)
   --------------------------------------------------------------------------- */
.glass {
  position: relative;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow), var(--glass-highlight);
  isolation: isolate;
}

/* Gradient border via masked pseudo (crisper than a flat 1px) */
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-border);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

/* Subtle top sheen for depth */
.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 22%);
  pointer-events: none;
  z-index: 0;
}

/* ---------------------------------------------------------------------------
   6. TYPOGRAPHY SYSTEM
   --------------------------------------------------------------------------- */
.display,
h1.display,
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--text);
  text-wrap: balance;
}

h1.display,
.display {
  font-size: var(--fs-h1);
  line-height: 1.03;
}

.guide-section h2 {
  font-size: var(--fs-h2);
  line-height: 0.97;
  margin-bottom: var(--sp-4);
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Orange key phrase highlight inside an otherwise white headline.
   Kept on one line where possible (brand uses whitespace-nowrap). */
.accent {
  color: var(--accent);
  white-space: nowrap;
  /* Heat glow behind the orange phrase for depth, plus a dark halo so the orange
     key phrase keeps separation when it sits over warm crests of the field. */
  text-shadow: 0 0 24px rgba(242, 92, 5, 0.40), 0 2px 18px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Eyebrow / kicker */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}

/* Lead / subhead / value prop */
.lead {
  font-family: var(--font-body);
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 60ch;
}
/* The hero/guide-hero lead floats directly over the field, so give it a soft
   readability shadow (paired with the center scrim) without dimming body copy
   elsewhere in the guide. */
.hero .lead,
.guide-hero .lead {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.55);
}

/* Body copy, capped measure for readability. Line-height raised to 1.7 and
   stacked paragraphs get breathing room so dense sections never crowd. */
.guide-section p,
.play p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 66ch;
}
.guide-section p + p,
.play p + p { margin-top: var(--sp-4); }

/* SplitText reveal needs perspective + visible overflow on chars */
[data-split] {
  perspective: 800px;
}
.split-line { overflow: hidden; }

/* ---------------------------------------------------------------------------
   7. SITE HEADER (slim glass top bar, both pages)
   --------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  margin: var(--sp-4) auto 0;
  max-width: var(--container);
  width: calc(100% - 2 * var(--gutter));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 0.7rem clamp(14px, 2.4vw, 22px);
  border-radius: var(--radius-pill);
}

.site-header .wordmark,
.brand-wordmark {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
}
.brand-wordmark .accent { white-space: nowrap; }

/* right side link / apply button in the header */
.site-header a:not(.brand-wordmark),
.header-link,
.header-apply {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
}
.site-header a:not(.brand-wordmark):hover,
.header-link:hover { color: #fff; }

/* If the header link is styled as a small pill button (guide "Apply 1-on-1") */
.header-apply {
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius-pill);
  color: #fff;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.header-apply:hover {
  background: rgba(242, 92, 5, 0.24);
  box-shadow: 0 0 24px -6px rgba(242, 92, 5, 0.6);
  transform: translateY(-1px);
  color: #fff;
}

/* ---------------------------------------------------------------------------
   8. HERO (landing) + GUIDE HERO
   --------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(96px, 16vh, 180px) var(--gutter) clamp(64px, 12vh, 120px);
}
.hero > * { width: 100%; max-width: 960px; margin-inline: auto; }

/* Soft center scrim behind the hero copy so the value prop + headline always read
   over the brightest part of the field. Sits above the field, behind the content
   (content is z-index 3; this pseudo is z-index 0 within the relative .hero). Large,
   feathered, mostly transparent at the rim so it never looks like a hard box. */
.hero::before,
.guide-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: min(1120px, 132%);
  height: min(720px, 96%);
  background:
    radial-gradient(60% 58% at 50% 46%,
      rgba(5, 5, 6, 0.74) 0%,
      rgba(5, 5, 6, 0.58) 34%,
      rgba(5, 5, 6, 0.30) 58%,
      rgba(5, 5, 6, 0.0) 78%);
  filter: blur(8px);
  pointer-events: none;
}
.hero > *,
.guide-hero > * { position: relative; z-index: 1; }

.hero h1.display,
.guide-hero h1.display {
  /* Subtle depth shadow so the big white Anton headline reads crisply over the
     brightest crests of the field. Kept soft so it never looks like a drop shadow. */
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.5);
}
.hero h1.display { margin-bottom: var(--sp-6); }

.hero .lead { margin-bottom: clamp(28px, 4vw, 44px); }

/* Micro trust reassurance line under the form */
.microtrust {
  margin-top: var(--sp-6);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}
.microtrust .accent {
  color: var(--accent);
  white-space: normal;
  text-shadow: none;
}

/* ---------------------------------------------------------------------------
   8.1 FOUNDER MARK (landing hero) + WORKS-WITH PLATFORM ROW
   A small "this is from a real coach" trust chip above the eyebrow, plus a
   muted row of platform glyphs under the value prop. Photo is framed by the
   V5 FRAMING RULE: object-fit cover, focal object-position on the face, the
   orange edge lives on a ::after ring drawn OVER the image (never tints pixels).
   --------------------------------------------------------------------------- */
.founder-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto var(--sp-6);
  padding: 6px 16px 6px 6px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-highlight);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}
.founder-mark-photo {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--bg-card);   /* fallback fill while the image loads */
  isolation: isolate;
}
.founder-mark-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;            /* FRAMING RULE: preserve aspect, never distort */
  object-position: 50% 22%;     /* clean face-and-shoulders crop, hair crown kept, no chin clip */
}
.founder-mark-photo::after {    /* subtle orange ring drawn over the image */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--accent-line);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.founder-mark-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  text-align: left;
}
.founder-mark-name {
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.founder-mark-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-faint);
}

/* Base .brand-ico / .brand-ico--web live once in section 39 (V5 logo system);
   the works-with row only layers its own color overrides on top. */

/* works-with row: muted glyphs under the value prop, orange on hover */
.works-with {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin: 0 auto clamp(28px, 4vw, 44px);
}
.works-with-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.works-with-logos {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 1.2rem;
}
.works-with-logos .brand-ico { color: var(--text-muted); }
.works-with-logos .brand-ico--claude { color: var(--accent); }  /* the hero brand */
.works-with-logos a {
  display: inline-flex;
  line-height: 0;
}
.works-with-logos a:hover .brand-ico,
.works-with-logos a:focus-visible .brand-ico { color: var(--accent); }

/* Guide hero (shorter than a full landing hero) */
.guide-hero {
  position: relative;
  text-align: center;
  padding: clamp(120px, 20vh, 220px) var(--gutter) clamp(40px, 7vw, 80px);
  max-width: 960px;
  margin-inline: auto;
}
.guide-hero h1.display { margin-bottom: var(--sp-6); }
.guide-hero .lead { margin-bottom: var(--sp-6); }

/* small inline secondary button (Open claude.ai, Open the library) */
.btn-secondary,
a.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-secondary:hover {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 0 28px -10px rgba(242, 92, 5, 0.6);
}
.btn-secondary svg { width: 1em; height: 1em; }

/* ---------------------------------------------------------------------------
   9. PRIMARY CTA (brand pill: orange glow + pulse, magnetic ready)
   --------------------------------------------------------------------------- */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-btn);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius-pill);
  padding: 1.15rem 2.6rem;
  min-height: 60px;
  box-shadow: var(--cta-glow);
  overflow: hidden;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s ease, transform 0.2s var(--ease-out), box-shadow 0.25s ease;
  animation: cta-pulse 2.8s ease-in-out infinite;
}
/* inner label sits above the sheen; motion.js may translate it at 0.5x */
.cta > span,
.cta .cta-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
/* moving sheen for life */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}
.cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 38px 2px rgba(242, 92, 5, 0.55), 0 0 0 9px rgba(242, 92, 5, 0.26);
}
.cta:hover::before { transform: translateX(120%); }
.cta:active { transform: translateY(0) scale(0.985); }

.cta .arrow { transition: transform 0.25s var(--ease-out); }
.cta:hover .arrow { transform: translateX(4px); }

/* disabled / sending state */
.cta:disabled,
.cta.is-sending {
  cursor: progress;
  opacity: 0.85;
  animation: none;
}
.cta.is-sending { pointer-events: none; }

/* magnetic CTA marker: motion.js applies transforms; keep will-change ready */
.cta-magnetic { will-change: transform; }

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 30px 0 rgba(242, 92, 5, 0.45), 0 0 0 7.5px rgba(242, 92, 5, 0.318); }
  50%      { box-shadow: 0 0 36px 2px rgba(242, 92, 5, 0.55), 0 0 0 11px rgba(242, 92, 5, 0.20); }
}

/* ---------------------------------------------------------------------------
   10. THE GATE FORM (landing)  -  form#lead-form.lead-form.glass
   --------------------------------------------------------------------------- */
.lead-form {
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  text-align: left;
}

/* a wrapper the inline script can toggle [hidden] on for returning visitors */
.lead-form .field-group,
.lead-form .form-fields {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* each labelled input row (Full Name, Email, Phone, Instagram). The label is
   visually hidden; the .field just holds one input so the column gap is even. */
.lead-form .field {
  display: flex;
  flex-direction: column;
}

/* visually hidden labels (a11y; placeholders describe each field) */
.lead-form label.vh,
.vh,
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.lead-form input {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 54px;
  font-size: 16px;            /* 16px+ prevents iOS zoom */
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 0 1.1rem;
  transition: border-color 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 400;
}
.lead-form input:hover { border-color: rgba(255, 255, 255, 0.18); }
.lead-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: var(--edge-glow);
}
/* invalid only after the user has interacted (native :user-invalid) */
.lead-form input:user-invalid { border-color: rgba(255, 90, 90, 0.7); }

/* the submit button stretches full width inside the form */
.lead-form .cta {
  width: 100%;
  margin-top: var(--sp-2);
}

/* form status line */
#form-status {
  position: relative;
  z-index: 2;
  min-height: 1.2em;
  margin-top: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-align: center;
}
#form-status.is-error { color: #ff8a6a; }

/* Returning visitor welcome line. The HTML uses #welcome-back / .welcome-back;
   .return-greeting is kept as a legacy alias. This line can float over the field
   for returning visitors (inputs hidden), so it gets the strongest readability
   treatment: larger, brighter, with a soft dark shadow so it never washes out. */
.welcome-back,
.return-greeting {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  margin-bottom: var(--sp-2);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.55);
}
.welcome-back[hidden] { display: none; }
.welcome-back .accent,
.return-greeting .accent { white-space: normal; text-shadow: none; }

/* When the form is in returning visitor mode, hide the inputs cleanly. The inline
   script sets [hidden] on the fields wrapper (.form-fields) and adds .is-returning
   to the button; support the legacy .field-group / form-level .is-returning too. */
.lead-form .form-fields[hidden],
.lead-form.is-returning .field-group,
.lead-form.is-returning input[hidden] { display: none; }
.lead-form.is-returning .return-greeting { display: block; }

/* ---------------------------------------------------------------------------
   11. MINI FOOTER (both pages)
   --------------------------------------------------------------------------- */
.mini-foot {
  text-align: center;
  padding: clamp(40px, 7vw, 80px) var(--gutter) clamp(36px, 5vw, 56px);
  font-size: 0.82rem;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}
.mini-foot a {
  color: var(--text-muted);
  font-weight: 600;
}
.mini-foot a:hover { color: var(--accent); }
.mini-foot .sep { opacity: 0.4; margin: 0 0.55rem; }
.mini-foot .brand-wordmark {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* Optional collapsed "Sources" disclosure in the guide footer */
.sources {
  margin: var(--sp-6) auto 0;
  max-width: 640px;
  font-size: 0.78rem;
  color: var(--text-faint);
}
.sources summary {
  cursor: pointer;
  list-style: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.sources summary::-webkit-details-marker { display: none; }
.sources ul { list-style: none; margin-top: var(--sp-3); display: grid; gap: 4px; }
.sources a { color: var(--text-muted); word-break: break-word; }
.sources a:hover { color: var(--accent); }

/* ---------------------------------------------------------------------------
   12. GUIDE SECTIONS (clean stacked blocks)
   --------------------------------------------------------------------------- */
.guide-section {
  width: 100%;
  margin-inline: auto;
  /* De-crammed vertical rhythm: far more air between sections so the guide
     breathes instead of reading as one continuous text wall. */
  padding-block: clamp(72px, 10vw, 132px);
  padding-inline: var(--gutter);
}
/* The reading column lives in .guide-container (760px). The section itself can
   span wider so figures with .bleed-wide can re-center past the text measure. */
.guide-section,
.guide-hero {
  max-width: min(960px, 100%);
}

/* Branded section divider: a center-fading orange filament with a glowing node
   dot, replacing the flat 1px hairline so the eye gets a brand beat + rest point
   between every section. */
.guide-section + .guide-section {
  border-top: none;
  position: relative;
}
.guide-section + .guide-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 82%);
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      var(--accent-line) 18%,
      var(--accent) 50%,
      var(--accent-line) 82%,
      transparent);
  opacity: 0.5;
}
.guide-section + .guide-section::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px 2px rgba(242, 92, 5, 0.7);
}
.guide-section .eyebrow { display: block; }

/* ---------------------------------------------------------------------------
   12.1 GUIDE READING COLUMN + RHYTHM (the de-cram contract)
   The HTML wraps section content in .guide-container; figures opt out wider
   via .bleed-wide. One owned rhythm, not browser defaults.
   --------------------------------------------------------------------------- */
.guide-container {
  width: 100%;
  max-width: var(--container-narrow);   /* 760px reading measure */
  margin-inline: auto;
}
/* Figures (diagrams, bars, loops) breathe wider, then re-center. Text never does. */
.bleed-wide {
  max-width: 920px;
  margin-inline: auto;
}

/* Section kicker: orange eyebrow above every H2, with a glowing tick rule that
   anchors each section start and breaks the monotony for near-zero cost.
   Note: the kicker is a <p>, so it is scoped under .guide-section/.guide-hero to
   out-specify the `.guide-section p` body-copy color rule (which would otherwise
   win on specificity and turn the kicker grey). */
.guide-section .section-kicker,
.guide-hero .section-kicker,
.section-kicker {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
  max-width: none;
}
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(242, 92, 5, 0.7);
}

/* Section title (h2.display.section-title) + intro. The intro is the one long
   paragraph per section; everything after it becomes a visual or a tight list. */
.section-title {
  font-size: var(--fs-h2);
  line-height: 0.97;
  margin-bottom: var(--sp-6);
  text-wrap: balance;
}
/* .section-intro is a <p>; scope it so it keeps its dim tone + 1.7 line-height
   instead of inheriting the `.guide-section p` muted color on specificity. */
.guide-section .section-intro,
.guide-hero .section-intro,
.section-intro {
  max-width: 60ch;
  font-size: var(--fs-lead);
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: var(--sp-12);
}

/* numbered start steps (ordered cards) */
.start-steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.start-steps > li {
  position: relative;
  counter-increment: step;
  padding: clamp(18px, 2.4vw, 24px) clamp(18px, 2.4vw, 26px) clamp(18px, 2.4vw, 24px) clamp(62px, 7vw, 72px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline-soft);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.start-steps > li:hover {
  border-color: var(--accent-line);
  background: rgba(242, 92, 5, 0.05);
  transform: translateX(3px);
}
.start-steps > li::before {
  content: counter(step);
  position: absolute;
  left: clamp(16px, 2vw, 20px);
  top: clamp(16px, 2vw, 22px);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 9px;
}
.start-steps strong { color: #fff; font-weight: 700; }

/* prompting tips list */
.tips {
  list-style: none;
  display: grid;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  max-width: 66ch;
}
.tips li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-muted);
}
.tips li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(242, 92, 5, 0.7);
}
.tips strong { color: #fff; }

/* generic "steps in the app" ordered list inside a play */
.app-steps {
  margin: var(--sp-4) 0 var(--sp-6);
  padding-left: 1.3rem;
  display: grid;
  gap: 0.55rem;
  color: var(--text-muted);
  max-width: 66ch;
}
.app-steps li { padding-left: 0.35rem; }
.app-steps li::marker {
  color: var(--accent);
  font-weight: 700;
}
.app-steps strong { color: #fff; }

/* ---------------------------------------------------------------------------
   13. THE FOUR PLAYS  -  section.guide-section.play + orange index chip
   --------------------------------------------------------------------------- */
.play { position: relative; }
.play-head {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
/* orange index chip (1 to 4, NOT module style 00) */
.play-index,
.play .index-chip {
  flex: 0 0 auto;
  width: clamp(46px, 6vw, 58px);
  height: clamp(46px, 6vw, 58px);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1;
  color: #fff;
  background: linear-gradient(150deg, var(--accent), #c4470a);
  border-radius: 14px;
  box-shadow: 0 10px 26px -8px rgba(242, 92, 5, 0.6), var(--glass-highlight);
  margin-top: 0.1em;
}
.play-head h2 { margin-bottom: 0; }

/* ---------------------------------------------------------------------------
   14. COPY-PASTE PROMPT BLOCK  -  .prompt[data-prompt]
   --------------------------------------------------------------------------- */
.prompt {
  position: relative;
  margin: var(--sp-4) 0;
  border-radius: var(--radius);
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow), var(--glass-highlight);
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.prompt::before {  /* gradient edge */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-border);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
}
.prompt:hover,
.prompt:focus-within {
  border-color: var(--accent-line);
  box-shadow: var(--edge-glow), var(--card-shadow);
}

.prompt-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: 0.7rem 0.7rem 0.7rem 1.1rem;
  border-bottom: 1px solid var(--hairline-soft);
  background: rgba(0, 0, 0, 0.25);
}
.prompt-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* copy button */
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hairline);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.copy-btn::before {  /* tiny copy glyph */
  content: "";
  width: 11px; height: 11px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  box-shadow: 2.5px 2.5px 0 -1.5px rgba(0, 0, 0, 0.6), 3.5px 3.5px 0 -1.5px currentColor;
  opacity: 0.9;
}
.copy-btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent-line);
  transform: translateY(-1px);
}
.copy-btn:active { transform: translateY(0); }

/* success transient state (.copied added for ~1.5s) */
.copy-btn.copied {
  color: #0a0a0a;
  background: var(--accent);
  border-color: var(--accent);
}
.copy-btn.copied::before {
  width: 6px; height: 11px;
  border: solid #0a0a0a;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  box-shadow: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* the code surface (monospace, copyable, never SplitText animated) */
.prompt-body {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: clamp(16px, 2.2vw, 22px);
  overflow-x: auto;
  background: rgba(0, 0, 0, 0.32);
}
.prompt-body code {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  white-space: pre-wrap;
  word-break: break-word;
  display: block;
}
/* highlight the [blanks] the coach fills in */
.prompt-body code .blank,
.prompt-body code mark {
  color: var(--accent);
  background: rgba(242, 92, 5, 0.12);
  padding: 0 3px;
  border-radius: 3px;
}

/* short title that sits above a copy-paste prompt (used in the expanded
   prompt libraries inside each "Go deeper" dropdown) */
.prompt-title {
  margin: var(--sp-4) 0 0.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.prompt-title::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: 0.55rem;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(242, 92, 5, 0.7);
}
.prompt-title + .prompt { margin-top: 0; }
.go-deeper-body .prompt-title:first-child { margin-top: 0.4rem; }

/* small intro line that opens an expanded prompt library */
.prompt-lib-intro {
  margin: var(--sp-4) 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 66ch;
}

/* ---------------------------------------------------------------------------
   15. "GO DEEPER" DROPDOWN  -  details.go-deeper > summary
   --------------------------------------------------------------------------- */
.go-deeper {
  margin-top: var(--sp-4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--hairline-soft);
  overflow: hidden;
}
.go-deeper > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.3rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s ease, background 0.2s ease;
  user-select: none;
}
.go-deeper > summary::-webkit-details-marker { display: none; }
.go-deeper > summary:hover { color: #fff; background: rgba(242, 92, 5, 0.05); }

/* leading pill dot */
.go-deeper > summary::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(242, 92, 5, 0.8);
}

/* chevron that rotates on open */
.go-deeper > summary::after {
  content: "";
  width: 9px; height: 9px;
  margin-left: auto;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease-out);
}
.go-deeper[open] > summary::after { transform: rotate(-135deg); }

/* dropdown inner content */
.go-deeper-body { padding: 0 1.3rem 1.2rem; }
.go-deeper-body .prompt:first-of-type { margin-top: 0.4rem; }

/* the "what to watch for" caveat */
.caveat {
  margin-top: var(--sp-4);
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(242, 92, 5, 0.06);
  font-size: 0.92rem;
  color: var(--text-muted);
}
.caveat strong { color: #fff; }
.caveat .caveat-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

/* GSAP may animate height; provide a graceful zero JS open */
@media (prefers-reduced-motion: reduce) {
  .go-deeper[open] > summary::after { transition: none; }
}

/* ---------------------------------------------------------------------------
   16. BONUS CARD  -  section#bonus, glass + data-tilt
   --------------------------------------------------------------------------- */
#bonus { max-width: var(--container-narrow); }
.bonus-card,
#bonus .glass {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  text-align: left;
  overflow: hidden;
}

/* data-tilt: 3D tilt is applied by vanilla-tilt; preserve 3d for inner depth */
[data-tilt] {
  transform-style: preserve-3d;
  transform: perspective(1000px);
  will-change: transform;
}
[data-tilt] > * { transform: translateZ(0.01px); }

/* inner orange spotlight follows --mx/--my (set by motion.js on pointermove) */
[data-tilt]::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
      260px circle at var(--mx, 50%) var(--my, 0%),
      rgba(242, 92, 5, 0.18),
      transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
[data-tilt]:hover::after { opacity: 1; }

#bonus h3,
.bonus-card .bonus-tag,
.bonus-card p,
.bonus-card .btn-secondary { position: relative; z-index: 2; }
.bonus-card .btn-secondary { margin-top: var(--sp-4); }

/* vanilla-tilt glare element (if it injects .js-tilt-glare) */
.js-tilt-glare { border-radius: inherit !important; }

/* ---------------------------------------------------------------------------
   17. CHECKLIST  -  #checklist-list, items toggle .checked
   --------------------------------------------------------------------------- */
#checklist-list {
  list-style: none;
  display: grid;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}
#checklist-list li,
.check-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.2rem 1rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline-soft);
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.18s var(--ease-out), color 0.25s ease;
}
#checklist-list li:hover,
.check-item:hover {
  border-color: var(--accent-line);
  background: rgba(242, 92, 5, 0.05);
  transform: translateX(3px);
}

/* the checkbox box (a leading ::before square that fills when checked) */
#checklist-list li::before,
.check-item::before {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 7px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.2s ease, border-color 0.2s ease;
}

/* checked state */
#checklist-list li.checked,
.check-item.checked {
  color: var(--text-faint);
  border-color: var(--accent-line);
  background: rgba(242, 92, 5, 0.07);
}
#checklist-list li.checked::before,
.check-item.checked::before {
  background: var(--accent);
  border-color: var(--accent);
}
/* the check mark glyph (drawn on a ::after positioned over the box) */
#checklist-list li.checked::after,
.check-item.checked::after {
  content: "";
  position: absolute;
  left: calc(1.1rem + 9px);
  top: calc(1rem + 5px);
  width: 6px; height: 11px;
  border: solid #0a0a0a;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
#checklist-list li.checked .check-text,
.check-item.checked .check-text {
  text-decoration: line-through;
  text-decoration-color: rgba(242, 92, 5, 0.6);
}
.check-text { line-height: 1.5; }

/* ---------------------------------------------------------------------------
   18. CLOSING CTA  -  section#cta.cta-final
   --------------------------------------------------------------------------- */
.cta-final {
  position: relative;
  text-align: center;
  max-width: 800px;
}
.cta-final h2 { margin-bottom: var(--sp-4); }
.cta-final p {
  margin-inline: auto;
  margin-bottom: clamp(28px, 4vw, 40px);
  color: var(--text-dim);
}
.cta-final .accent { white-space: normal; }
.cta-final .cta { margin-inline: auto; }

/* a soft glowing plinth behind the final CTA for emphasis */
.cta-final::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: clamp(10px, 5vw, 40px);
  transform: translateX(-50%);
  width: min(520px, 80%);
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(242, 92, 5, 0.22), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

/* ---------------------------------------------------------------------------
   19. REVEAL / SPLIT INITIAL HIDDEN STATES (avoid FOUC; motion.js animates in)
   Only hidden when JS+motion will run. no-js / reduced motion show final.
   --------------------------------------------------------------------------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(var(--reveal-y));
  will-change: transform, opacity;
}
/* SplitText sets its own initial state; before it runs we soft hide the H1
   to prevent a flash of unsplit text, then motion.js reveals it. */
html.js [data-split] { opacity: 0; }
/* Once motion.js has split + queued the animation it adds .is-ready, which
   restores opacity so the per char timeline is what is visible. */
html.js [data-split].is-ready { opacity: 1; }

/* If JS fails or is disabled, never leave content hidden. */
html:not(.js) [data-reveal],
html:not(.js) [data-split] {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================================
   20. RESPONSIVE  -  TABLET
   ========================================================================== */
@media (max-width: 900px) {
  .play-head { gap: var(--sp-3); }
  .guide-section { padding-block: clamp(64px, 9vw, 104px); }
}

/* ============================================================================
   21. RESPONSIVE  -  MOBILE (<= 768px), flawless 390px layout, both pages
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --reveal-y: 24px;
    --gutter: 20px;
  }

  body { line-height: 1.58; }

  /* slimmer sticky header, keep it tidy at 390px */
  .site-header {
    margin-top: var(--sp-3);
    padding: 0.6rem 0.85rem 0.6rem 1rem;
    width: calc(100% - 2 * var(--gutter));
  }
  .site-header .wordmark,
  .brand-wordmark { font-size: 0.9rem; letter-spacing: 0.01em; }
  .header-apply { padding: 0.45rem 0.85rem; font-size: 0.72rem; }
  .site-header a:not(.brand-wordmark),
  .header-link { font-size: 0.72rem; }

  /* hero spacing (leave room for sticky CTA bar at bottom) */
  .hero {
    min-height: 100svh;
    padding: clamp(96px, 22vh, 150px) var(--gutter) 96px;
    text-align: center;
  }
  .hero h1.display { letter-spacing: -0.02em; line-height: 1.04; }
  .hero .lead { font-size: 1.02rem; }

  /* founder mark + works-with row stay tidy and centered at 390px */
  .founder-mark { margin-bottom: var(--sp-4); padding: 5px 14px 5px 5px; gap: 10px; }
  .founder-mark-photo { width: 38px; height: 38px; }
  .founder-mark-name { font-size: 0.8rem; }
  .works-with { gap: 8px 14px; margin-bottom: clamp(24px, 6vw, 36px); }
  .works-with-logos { gap: 16px; }

  .guide-hero { padding: clamp(108px, 24vh, 160px) var(--gutter) 40px; }

  /* full width form + big tap targets */
  .lead-form {
    max-width: 100%;
    padding: 20px 18px 22px;
    border-radius: var(--radius);
  }
  .lead-form input { min-height: 54px; }

  /* full width CTAs, min 56px tap height */
  .cta {
    width: 100%;
    min-height: 56px;
    padding: 1rem 1.4rem;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
  }
  .btn-secondary { width: 100%; justify-content: center; }

  /* plays: chip + heading stay on one row, scaled down */
  .play-head {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-3);
  }
  .play-index,
  .play .index-chip {
    width: 44px; height: 44px;
    font-size: 1.25rem;
    border-radius: 12px;
    margin-top: 0;
  }

  .guide-section { padding-block: clamp(56px, 14vw, 88px); padding-inline: var(--gutter); }
  .guide-section p,
  .play p,
  .tips,
  .app-steps,
  .section-intro,
  .steps-list,
  .tips-list { max-width: 100%; }

  /* prompt blocks: tighter, code wraps, copy button stays reachable */
  .prompt-head { padding: 0.6rem 0.6rem 0.6rem 0.9rem; }
  .prompt-label { font-size: 0.64rem; letter-spacing: 0.12em; }
  .copy-btn { padding: 0.5rem 0.8rem; font-size: 0.68rem; }
  .prompt-body { padding: 16px; }
  .prompt-body code { font-size: 0.82rem; }

  .start-steps > li { padding: 16px 16px 16px 56px; }
  .start-steps > li::before { width: 28px; height: 28px; left: 14px; top: 16px; }

  /* checklist comfy on touch */
  #checklist-list li,
  .check-item { padding: 0.95rem 1rem; }

  /* light leaks softer on mobile (perf + taste) */
  .light-leak { filter: blur(60px); opacity: 0.2; }

  /* never run the desktop cursor on touch */
  body.has-cursor { cursor: auto; }
  body.has-cursor #cursor-dot,
  body.has-cursor #cursor-ring { display: none; }
}

/* very small phones (<= 380px): keep headlines from overflowing */
@media (max-width: 380px) {
  :root { --gutter: 16px; }
  .hero h1.display,
  .guide-hero h1.display { font-size: clamp(2.1rem, 12vw, 2.6rem); }
  .accent { white-space: normal; }   /* allow wrap so nothing clips */
}

/* ============================================================================
   22. STICKY MOBILE CTA BAR (landing only, conversion aid)
   Hidden by default; inline script / motion.js may reveal it after scroll
   past the hero by adding .is-visible. Structurally always available.
   ========================================================================== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -12px 30px -10px rgba(0, 0, 0, 0.6), var(--glass-highlight);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease-out);
}
.sticky-cta .cta { width: 100%; animation: none; }
.sticky-cta.is-visible { transform: translateY(0); }

@media (max-width: 768px) {
  .sticky-cta { display: block; }
  /* leave room so the footer is not hidden behind the bar */
  body[data-page="landing"] .mini-foot { padding-bottom: 96px; }
}
/* allow the inline script to fully remove the bar (e.g. returning visitor) */
.sticky-cta[hidden] { display: none !important; }

/* ============================================================================
   23. REDUCED MOTION  -  static, beautiful, zero motion (mandatory)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  /* show all content at its final state, no FOUC trickery */
  [data-reveal],
  [data-split],
  html.js [data-reveal],
  html.js [data-split] {
    opacity: 1 !important;
    transform: none !important;
  }

  /* freeze the CTA pulse + sheen */
  .cta { animation: none !important; }
  .cta::before { display: none; }

  /* replace the WebGL field with a static brand gradient: motion.js should
     not init the canvas under reduced motion; hide it and let body::before
     provide the ember backdrop. */
  #bg-canvas { display: none !important; }
  #fx-grain { opacity: 0.03; }
  .light-leak { display: none; }

  /* no custom cursor */
  #cursor-dot,
  #cursor-ring { display: none !important; }
  body.has-cursor { cursor: auto !important; }

  /* tilt + magnetic become inert visually */
  [data-tilt] { transform: none !important; }
  [data-tilt]::after { display: none; }

  /* keep the heat backdrop a touch richer since the canvas is off */
  body::before {
    background:
      radial-gradient(120% 95% at 50% 6%, rgba(242, 92, 5, 0.20) 0%, rgba(242, 92, 5, 0.06) 30%, transparent 62%),
      radial-gradient(140% 120% at 50% 122%, rgba(242, 92, 5, 0.10) 0%, transparent 55%),
      var(--bg);
  }
}

/* ============================================================================
   24. PRINT (graceful, tidy)
   ========================================================================== */
@media print {
  #bg-canvas, #fx-vignette, #fx-grain, .light-leak,
  #scroll-progress, #cursor-dot, #cursor-ring, .sticky-cta { display: none !important; }
  body { background: #fff; color: #000; }
  .glass, .prompt { background: #fff; border: 1px solid #ccc; box-shadow: none; }
  .accent { color: #c4470a; }
}

/* ============================================================================
   25. GUIDE V4 UPGRADE  -  PLAY HEAD (chip + icon), reconciles HTML class drift
   The guide HTML uses .play-chip / .play-head-text (not the old .play-index).
   Style them to match the approved orange index-chip look, plus a per-play
   ghost icon watermark threading a visual motif through the 4 plays.
   ========================================================================== */
.play-head-text { min-width: 0; }
.play-head-text .section-kicker { margin-bottom: var(--sp-2); }
.play-head-text .section-title { margin-bottom: 0; }

.play-chip {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  width: clamp(46px, 6vw, 58px);
  height: clamp(46px, 6vw, 58px);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1;
  color: #fff;
  background: linear-gradient(150deg, var(--accent), #c4470a);
  border-radius: 14px;
  box-shadow: 0 10px 26px -8px rgba(242, 92, 5, 0.6), var(--glass-highlight);
  margin-top: 0.1em;
}
/* the digit sits above the ghost watermark icon */
.play-chip { isolation: isolate; }
.play-chip > * { position: relative; z-index: 2; }

/* per-play ghost icon watermark behind the number (set via .chip-icon SVG, or a
   CSS fallback glyph using a mask). Kept faint so the digit stays dominant. */
.play-chip .chip-icon {
  position: absolute;
  right: 4px;
  bottom: 3px;
  width: 16px;
  height: 16px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.55);
  opacity: 0.9;
  pointer-events: none;
}

/* ============================================================================
   26. ONBOARDING STEP GRID (#start)  -  2x2 icon cards (was a tall stack)
   ========================================================================== */
.step-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-12);
  counter-reset: stepg;
}
.step-card {
  position: relative;
  overflow: hidden;
  counter-increment: stepg;
  padding: clamp(20px, 2.6vw, 26px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline-soft);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.step-card:hover {
  border-color: var(--accent-line);
  background: rgba(242, 92, 5, 0.05);
  transform: translateY(-3px);
}
/* big Anton number watermark in the corner */
.step-num {
  position: absolute;
  right: 14px;
  top: 8px;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: rgba(242, 92, 5, 0.10);
  pointer-events: none;
}
/* per-step SVG icon (injected by the engine / HTML). Orange, soft glow. */
.step-icon {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  color: var(--accent);
  margin-bottom: var(--sp-3);
  filter: drop-shadow(0 0 8px rgba(242, 92, 5, 0.5));
}
.step-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: var(--sp-2);
  color: #fff;
}
.step-copy {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  max-width: none;
}

/* devices-sync node figure that sits above the grid (small, does not compete) */
.viz-sync { min-height: 132px; padding-block: clamp(16px, 2.4vw, 22px); }
.viz-sync svg { width: 100%; height: auto; display: block; }
.viz-sync .sync-link {
  fill: none;
  stroke: var(--accent-line);
  stroke-width: 1.5;
}
.viz-sync .sync-dash {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 5px rgba(242, 92, 5, 0.8));
}
.viz-sync .sync-pill {
  fill: rgba(255, 255, 255, 0.03);
  stroke: var(--hairline);
  stroke-width: 1;
}
.viz-sync .sync-core {
  fill: var(--accent-soft);
  stroke: var(--accent);
  stroke-width: 1.5;
}
.viz-sync text {
  fill: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================================
   27. STEPS-LIST TIMELINE + TIPS CARD (de-cram the long how-to lists)
   ========================================================================== */
.steps-heading {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: #fff;
  margin: var(--sp-8) 0 var(--sp-4);
}
.steps-list {
  list-style: none;
  position: relative;
  counter-reset: stepl;
  margin: var(--sp-4) 0 var(--sp-8);
  padding-left: 2.2rem;
  display: grid;
  gap: var(--sp-3);
  max-width: 66ch;
}
/* the orange left rail; can draw 0 -> full when the section enters (data-viz=rail) */
.steps-list::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-line), transparent);
  opacity: 0.6;
  transform-origin: top center;
}
.steps-list > li {
  position: relative;
  counter-increment: stepl;
  padding-left: 0.4rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.steps-list > li::before {
  content: counter(stepl);
  position: absolute;
  left: -2.2rem;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
}
.steps-list strong { color: #fff; }

/* quick prompting tips become a glass mini-card with a lightbulb + orange dots */
.tips-card {
  position: relative;
  margin-top: var(--sp-8);
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow), var(--glass-highlight);
}
.tips-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
/* lightbulb glyph before the tips title (inline SVG via mask, orange, glowing) */
.tips-title::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: var(--accent);
  filter: drop-shadow(0 0 6px rgba(242, 92, 5, 0.7));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3Cpath d='M15.09 14c.18-.98.65-1.74 1.41-2.5A4.65 4.65 0 0 0 18 8 6 6 0 0 0 6 8c0 1 .23 2.23 1.5 3.5A4.61 4.61 0 0 1 8.91 14'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3Cpath d='M15.09 14c.18-.98.65-1.74 1.41-2.5A4.65 4.65 0 0 0 18 8 6 6 0 0 0 6 8c0 1 .23 2.23 1.5 3.5A4.61 4.61 0 0 1 8.91 14'/%3E%3C/svg%3E") center / contain no-repeat;
}
.tips-list {
  list-style: none;
  display: grid;
  gap: var(--sp-3);
}
.tips-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.tips-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(242, 92, 5, 0.7);
}
.tips-list strong { color: #fff; }

/* ============================================================================
   28. SHARED VIZ SHELL  -  near-black figure panel for every diagram/chart
   ========================================================================== */
.viz {
  position: relative;
  margin: clamp(28px, 4vw, 48px) auto;
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--hairline-soft);
  box-shadow: var(--card-shadow), var(--glass-highlight);
  overflow: hidden;
  isolation: isolate;
}
/* same masked gradient edge as .prompt for cohesion across the page */
.viz::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-border);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}
.viz > * { position: relative; z-index: 1; }
.viz svg { width: 100%; height: auto; display: block; overflow: visible; }
.viz-cap {
  margin-top: var(--sp-3);
  font-size: 0.8rem;
  color: var(--text-faint);
  text-align: center;
  letter-spacing: 0.04em;
}

/* Reserve height on each figure so the on-scroll reveal never shifts layout. */
.viz-research-flow { min-height: 260px; }
.viz-time-bar      { min-height: 180px; }
.viz-script-structure { min-height: 300px; }
.viz-hook-loop     { min-height: 420px; }
.viz-ops-hub       { min-height: 360px; }

/* Shared SVG primitives across the diagrams (nodes, connectors, labels, packet) */
.viz .node-box {
  fill: rgba(255, 255, 255, 0.03);
  stroke: var(--hairline);
  stroke-width: 1;
}
.viz .node-core {
  fill: rgba(242, 92, 5, 0.10);
  stroke: var(--accent);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 10px rgba(242, 92, 5, 0.35));
}
.viz .connector {
  fill: none;
  stroke: var(--accent-line);
  stroke-width: 1.5;
}
.viz .connector-strong {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
}
.viz .tick {
  stroke: var(--accent);
  stroke-width: 1.5;
}
.viz .viz-label {
  fill: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.viz .viz-label--accent { fill: var(--accent); }
.viz .viz-label--display {
  fill: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.viz .viz-label--faint {
  fill: var(--text-faint);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.viz .packet {
  fill: var(--accent);
  filter: drop-shadow(0 0 6px rgba(242, 92, 5, 0.9));
  offset-rotate: 0deg;
}

/* ============================================================================
   29. THE TIME-BAR (manual hours vs minutes with Claude)
   ========================================================================== */
.bar-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: var(--sp-4);
  margin: var(--sp-3) 0;
}
.bar-label {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.bar-track {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hairline-soft);
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  transition: width 1.1s var(--ease-out);
}
.bar-fill--manual { background: linear-gradient(90deg, #3a2a22, #6b4a38); }
.bar-fill--claude {
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  box-shadow: 0 0 18px rgba(242, 92, 5, 0.6);
}
/* JS adds .is-on when the figure enters; the static fallback (no .is-on) below
   uses --to so the bars are full even with zero JS / reduced motion. */
.bar-fill.is-on { width: var(--to); }
.bar-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  min-width: 5ch;
  text-align: right;
}

/* ============================================================================
   30. SCRIPT-STRUCTURE ANATOMY (Hook / Value / CTA)
   ========================================================================== */
.script-anatomy { display: grid; gap: var(--sp-3); }
.sa-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(16px, 2.4vw, 22px) clamp(18px, 2.6vw, 24px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline-soft);
  border-left: 3px solid var(--accent);
}
/* the charging left-border wipe (0 -> full height) the engine triggers on enter */
.sa-band::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(242, 92, 5, 0.8);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.6s var(--ease-out);
}
.sa-band.is-charged::after,
.viz-script-structure[data-viz].is-drawn .sa-band::after { transform: scaleY(1); }
.sa-tag {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sa-tag svg { width: 16px; height: 16px; color: var(--accent); }
.sa-note {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-top: 4px;
}
.sa-skeleton { display: grid; gap: 7px; margin-top: 10px; }
.sa-skeleton i {
  display: block;
  height: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  transform-origin: left center;
}
.sa-skeleton i:nth-child(1) { width: 92%; }
.sa-skeleton i:nth-child(2) { width: 78%; }
.sa-skeleton i:nth-child(3) { width: 64%; }
.sa-band--cta .sa-fakepill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 8px;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--cta-glow-soft);
}

/* ============================================================================
   31. STAT COUNTERS STRIP (#viral)
   ========================================================================== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  text-align: center;
  margin: clamp(28px, 4vw, 48px) auto;
}
.stat { min-width: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 26px rgba(242, 92, 5, 0.4);
}
.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ============================================================================
   32. BONUS CARD UPGRADE  -  drifting ember flare + kicker/title/copy + corner draw
   The HTML uses .bonus-kicker / .bonus-title / .bonus-copy / .cta-bonus / .bonus-flare
   on the existing .glass [data-tilt] card.
   ========================================================================== */
.bonus-kicker {
  position: relative;
  z-index: 2;
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}
.bonus-title {
  position: relative;
  z-index: 2;
  font-size: var(--fs-h3);
  line-height: 1.1;
  margin-bottom: var(--sp-3);
}
.bonus-copy {
  position: relative;
  z-index: 2;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}
.bonus-card .cta-bonus,
#bonus .cta-bonus {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

/* the drifting orange ember blob in the card's top-right */
.bonus-flare {
  position: absolute;
  right: -40px;
  top: -40px;
  z-index: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(48px);
  opacity: 0.5;
  background: radial-gradient(circle at center, rgba(242, 92, 5, 0.55), transparent 70%);
  animation: bonus-drift 9s ease-in-out infinite;
}
@keyframes bonus-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-20px, 14px) scale(1.12); }
}

/* one-shot corner bracket that draws on reveal to frame "ACTUAL CONTENT" */
.bonus-bracket {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  pointer-events: none;
}
.bonus-bracket path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(242, 92, 5, 0.7));
}

/* ============================================================================
   33. CHECKLIST PROGRESS RING (#checklist)
   ========================================================================== */
.check-progress {
  position: relative;
  width: 120px;
  height: 120px;
  margin: var(--sp-6) auto var(--sp-8);
}
.ring { transform: rotate(-90deg); }
.ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 8;
}
.ring-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(242, 92, 5, 0.7));
  stroke-dasharray: 326.7;      /* 2 * pi * 52 */
  stroke-dashoffset: 326.7;     /* JS drives this: 326.7 * (1 - done/8) */
  transition: stroke-dashoffset 0.6s var(--ease-out);
}
.ring-readout {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  font-family: var(--font-display);
  line-height: 1;
}
.ring-done { font-size: 2rem; color: var(--accent); }
.ring-total { color: var(--text-faint); }
/* celebratory all-done state (JS adds .is-complete) */
.check-progress.is-complete .ring-readout { color: var(--accent); }
.check-progress.is-complete .ring-fill {
  filter: drop-shadow(0 0 14px rgba(242, 92, 5, 0.9));
}

/* ============================================================================
   34. CLOSING CTA EMBER UPGRADE  -  breathing plinth + one-shot ember sparks
   ========================================================================== */
/* make the existing .cta-final plinth breathe (slow, calm) */
.cta-final::before { animation: cta-plinth-breathe 4s ease-in-out infinite; }
@keyframes cta-plinth-breathe {
  0%, 100% { opacity: 0.85; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;    transform: translateX(-50%) scale(1.06); }
}

/* one-shot rising ember sparks burst when the CTA enters (data-viz=ember-burst).
   The engine spawns .ember-spark children; CSS provides their float-up keyframe. */
.ember-burst {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 6vw, 56px);
  width: 1px;
  height: 1px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.ember-spark {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px 1px rgba(242, 92, 5, 0.8);
  opacity: 0;
  animation: ember-rise 1.5s var(--ease-out) forwards;
}
@keyframes ember-rise {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.6); }
  18%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx, 0), -90px) scale(1); }
}

/* ============================================================================
   35. MATRIX PROMPT-DECODE OVERLAY
   The real prompt text stays in .prompt-body code (authoritative, copyable);
   the engine animates a separate aria-hidden overlay over it, then removes it.

   PLACEMENT CONTRACT: the engine appends .matrix-overlay INSIDE .prompt-body
   (which is already position:relative). That guarantees the per-character glyphs
   line up pixel-perfect over the real code, since the overlay shares the body box
   and the exact same padding, font, size, line-height, and wrapping. The overlay
   is purely visual (aria-hidden, pointer-events none) and is removed on completion.
   ========================================================================== */
.matrix-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  margin: 0;
  pointer-events: none;
  /* mirror .prompt-body box exactly so glyphs sit directly over the real text */
  padding: clamp(16px, 2.2vw, 22px);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
  color: rgba(242, 92, 5, 0.55);
}
.matrix-overlay .mx-scramble { color: rgba(242, 92, 5, 0.5); }          /* not yet resolved */
.matrix-overlay .mx-edge {
  color: var(--accent-hover);
  text-shadow: 0 0 8px rgba(242, 92, 5, 0.9), 0 0 2px rgba(242, 92, 5, 0.7);
}                                                                        /* leading edge */
.matrix-overlay .mx-locked { color: rgba(255, 255, 255, 0.9); }         /* resolved */

/* hide the real code only while the overlay is decoding, but keep it copyable */
.prompt.is-decoding .prompt-body code { opacity: 0; }
.prompt-body code { transition: opacity 0.25s ease; }

/* ============================================================================
   36. V4 RESPONSIVE  -  mobile (<= 768px), flawless at 390px
   ========================================================================== */
@media (max-width: 768px) {
  /* play head stays one row, chip + title scaled to fit 390px */
  .play-chip { width: 44px; height: 44px; font-size: 1.25rem; border-radius: 12px; margin-top: 0; }

  /* onboarding cards stack to one column */
  .step-grid { grid-template-columns: 1fr; gap: var(--sp-3); margin-top: var(--sp-8); }
  .step-copy { font-size: 0.92rem; }

  /* stat counters stack so the big numbers never crowd */
  .stat-strip { grid-template-columns: 1fr; gap: var(--sp-6); }

  /* time-bar collapses the rigid 3-col grid; label over track, number trailing */
  .bar-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "label label"
      "track num";
    gap: var(--sp-2) var(--sp-3);
    row-gap: 6px;
  }
  .bar-label { grid-area: label; }
  .bar-track { grid-area: track; }
  .bar-num   { grid-area: num; min-width: 4ch; }

  /* figures: trim padding, keep the masked edge and reserved height */
  .viz { padding: clamp(16px, 4vw, 22px); }
  .viz-hook-loop { min-height: 360px; }
  .viz-ops-hub { min-height: 300px; }

  /* steps timeline slightly tighter */
  .steps-list { padding-left: 2rem; }
  .steps-list > li::before { left: -2rem; }

  /* progress ring a touch smaller so it never dominates the fold */
  .check-progress { width: 104px; height: 104px; }
  .ring-done { font-size: 1.7rem; }

  /* matrix overlay font tracks the prompt code size on mobile */
  .matrix-overlay { padding: 16px; font-size: 0.82rem; }
}

/* ============================================================================
   37. V4 REDUCED MOTION + NO-JS  -  every new visual degrades to a fully-drawn,
   beautiful STATIC state. Section 23 already neutralizes durations globally;
   here we force the FINAL drawn state for elements that rely on JS to animate in.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  /* time-bar: bars at full target width, real numbers already shown in HTML */
  .bar-fill { width: var(--to) !important; transition: none !important; }

  /* script anatomy: left-border wipes fully present, no charge animation */
  .sa-band::after { transform: scaleY(1) !important; transition: none !important; }

  /* bonus ember: no drift, just a static warm glow */
  .bonus-flare { animation: none !important; }

  /* closing CTA: static plinth, no breathing, no sparks */
  .cta-final::before { animation: none !important; }
  .ember-burst { display: none !important; }

  /* matrix: never scramble; the real code is shown, overlay never appears */
  .matrix-overlay { display: none !important; }
  .prompt.is-decoding .prompt-body code { opacity: 1 !important; }

  /* diagram packets are motion-only accents; hide them, the drawn diagram remains */
  .viz .packet,
  .viz-sync .sync-dash { display: none !important; }

  /* progress ring transitions instantly (offset still set by JS = real progress) */
  .ring-fill { transition: none !important; }
}

/* No-JS path: html lacks the .js / motion-ready hook, so the matrix overlay is
   never injected and the code is always visible. Bars and anatomy fall back to
   their static CSS state because .is-on / .is-charged are JS-only; ensure the
   bars still read as full and the anatomy borders are present without JS. */
html:not(.motion-ready) .bar-fill { width: var(--to); }
html:not(.motion-ready) .sa-band::after { transform: scaleY(1); }

/* ============================================================================
   38. V4 PRINT  -  keep the new figures tidy on paper
   ========================================================================== */
@media print {
  .viz, .step-card, .tips-card, .stat-strip, .check-progress { background: #fff; border: 1px solid #ccc; box-shadow: none; }
  .bonus-flare, .ember-burst, .matrix-overlay, .viz .packet { display: none !important; }
  .stat-num, .ring-done, .bar-num { color: #c4470a; }
}

/* ============================================================================
   39. V5  -  HUSSEIN PHOTOGRAPHY + PLATFORM LOGOS + WORK-WITH-HUSSEIN
   FRAMING RULE (non-negotiable): every photo <img> is width/height 100%, block,
   object-fit COVER (never fill/100% 100%), with a focal object-position that
   keeps Hussein's whole face in the safe area. Aspect-ratio matches the source
   (portrait 4/5, landscape 16/9). Rounding lives on the frame (overflow hidden);
   the orange edge is a ::after ring drawn OVER the image so tint never touches
   the photo pixels. No geometry-warping transforms on any image.
   ========================================================================== */

/* ---- shared inline brand glyphs (inherit currentColor for theme tinting) --- */
.brand-ico {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  fill: currentColor;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.brand-ico--web { fill: none; }            /* the globe is a stroke icon */
a:hover > .brand-ico,
.brand-ico:hover { color: var(--accent); }

/* store glyph used inside the store badges (white on glass) */
.store-ico {
  width: 22px;
  height: 22px;
  fill: currentColor;
  color: #fff;
  flex: 0 0 auto;
}

/* ---- PLACEMENT B: studio band (16/9, wide establishing shot) -------------- */
.studio-band-section { padding-block: clamp(8px, 2vw, 24px); }
.studio-band {
  position: relative;
  margin: var(--sp-2) auto var(--sp-6);
  width: 100%;
  max-width: 340px;              /* portrait feature, centered, not a stretched band */
  aspect-ratio: 4 / 5;           /* portrait ratio matches the new portrait source */
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow:
    0 26px 60px -28px rgba(0, 0, 0, 0.85),
    var(--glass-highlight);
  isolation: isolate;
}
.studio-band img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;             /* FRAMING RULE: preserve aspect, never distort */
  object-position: 50% 18%;      /* face in the upper third, no crown/chin clip */
}
.studio-band-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(20px, 4vw, 34px) clamp(18px, 4vw, 30px) clamp(16px, 3vw, 24px);
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  line-height: 1.45;
  color: var(--ink);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(0, 0, 0, 0) 100%
  );
  /* anchor bottom-LEFT over the dark LED side, never over his face */
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 100%;
}
.studio-band-eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--accent);
}
.studio-band::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--accent-line);
  pointer-events: none;
}

/* ---- PLACEMENT A (re-homed): WORK WITH HUSSEIN section + portrait (4/5) ---- */
.work-with {
  position: relative;
}
.work-with-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}
/* the portrait: clean founder shot, face upper-center, framed 4/5 */
.founder-portrait {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;           /* portrait ratio matches the source */
  border-radius: var(--radius-lg);
  overflow: hidden;              /* clip the photo to the rounded frame */
  background: var(--bg-card);    /* fallback fill while the image loads */
  box-shadow:
    0 18px 44px -18px rgba(0, 0, 0, 0.8),
    var(--glass-highlight);
  isolation: isolate;
}
.founder-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;             /* FRAMING RULE: preserve aspect, never distort */
  object-position: 50% 28%;      /* face in the upper third, no chin/crown crop */
}
.founder-portrait::after {       /* subtle orange edge over the image */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--accent-line);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 -28px 40px -28px rgba(242, 92, 5, 0.35);
  pointer-events: none;
}
.work-with-copy { text-align: left; }
.work-with-copy .section-kicker::before { display: none; }
.work-with-copy .section-title { margin-bottom: var(--sp-4); }
.work-with-copy .section-intro {
  margin-bottom: var(--sp-8);
  max-width: 54ch;
}

/* ---- scroll photo breathers (Hussein presence between the plays) --------- */
.photo-break .guide-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.break-photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow:
    0 18px 44px -18px rgba(0, 0, 0, 0.8),
    var(--glass-highlight);
  isolation: isolate;
}
.break-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;            /* aspect set inline per photo, so this never distorts */
  object-position: 50% 28%;
}
.break-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--accent-line);
  box-shadow: inset 0 -30px 44px -30px rgba(242, 92, 5, 0.4);
  pointer-events: none;
}
.break-quote {
  max-width: 28ch;
  margin: var(--sp-4) auto 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  line-height: 1.4;
  color: var(--ink);
}
.break-quote::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin: 0 auto var(--sp-3);
  background: var(--accent);
}
.break-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: var(--sp-3) auto 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.break-cta:hover { color: #ff7a2e; border-bottom-color: currentColor; }
.break-cta .arrow { transition: transform 0.2s ease; }
.break-cta:hover .arrow { transform: translateX(4px); }

/* ---- top-of-guide bridge + per-play bridge CTAs --------------------------- */
.lead-bridge {
  max-width: 58ch;
  margin: calc(var(--sp-6) * -1 + 2px) auto var(--sp-6);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.6;
  color: var(--text-faint);
}
.play-bridge {
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--hairline-soft);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 66ch;
}
.play-bridge a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.play-bridge a:hover { color: var(--accent-hover); }
.play-bridge a .arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease-out);
}
.play-bridge a:hover .arrow { transform: translateX(4px); }

/* ---- platform logo row (footer) ------------------------------------------- */
.platform-row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  margin-left: 0.4rem;
}
.platform-row a {
  display: inline-flex;
  color: var(--ink-soft);
}
.platform-row a:hover { color: var(--accent); }

/* IG glyph inline before the bonus-card library link */
.cta-bonus .brand-ico--ig {
  font-size: 1.05em;
  margin-right: 0.1em;
  color: currentColor;
}

/* ---- store badges (App Store + Play Store) in Step 1 ---------------------- */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--sp-4);
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  text-decoration: none;
  color: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.store-badge:hover { border-color: var(--accent-line); transform: translateY(-1px); }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.05; }
.store-badge-top { font-size: 0.62rem; letter-spacing: 0.04em; color: var(--ink-soft); }
.store-badge-name { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.02em; }

/* ---- V5 photo + section mobile breakpoint --------------------------------- */
@media (max-width: 600px) {
  .studio-band { aspect-ratio: 4 / 5; max-width: 300px; }   /* keep portrait on phones, no bad crop */
  .studio-band-cap { max-width: 100%; }
  .work-with-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .founder-portrait { max-width: 240px; }
  .work-with-copy { text-align: center; }
  .work-with-copy .section-intro { margin-inline: auto; }
}
