/* ============================================================
   Multiply Media — v3 · single-page "Create Well" site
   MINIMAL. More peace, more white space. This is a new way.
   The registers survive in color, not imagery:
   light = the goal · flat dark = the problem · gold = the bridge.
   (The illustrated imagery is staged for the On Consuming site.)
   ============================================================ */

:root {
  /* Light — The Word */
  --paper:    #F6F2E9;   /* bone — page ground */
  --paper-2:  #EDE5D6;   /* oat — alt sections */
  --surface:  #FDFBF6;   /* warm white — cards */
  --clay:     #7A5230;   /* warm accent */
  --olive:    #6E7355;   /* secondary accent */
  --navy:     #3E5C76;   /* slate blue — THE ANCHOR: UI, links, CTAs */
  --navy-2:   #2C4459;
  --ink:      #1E2A33;

  /* Dark — The Algorithm (flat, no imagery) */
  --iron:     #1E2A33;
  --feed:     #4F7CA8;   /* cold feed blue — the digital glow */
  --oxblood:  #5E2B2B;
  --gold:     #B0855C;   /* tarnished gold — the bridge */
  --cream:    #F7F4EE;
  --cream-muted: #A7B3BC;

  /* Text */
  --strong:   #1E2A33;
  --text:     #2B2E2C;
  --muted:    #6E6A60;

  /* Lines & shadow */
  --line:      #DAD2C4;
  --line-dark: rgba(247, 244, 238, 0.14);
  --shadow-sm: 0 1px 2px rgba(30, 42, 51, 0.05);
  --shadow-md: 0 14px 40px -22px rgba(30, 42, 51, 0.18);

  /* seamless aged-parchment grain — a whisper */
  --paper-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.04'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1080px;
  --radius:    12px;
  --radius-btn: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------ */
/* Reset                                                         */
/* ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
body {
  font-family: var(--font-body);
  background-color: var(--paper);
  background-image: var(--paper-grain);
  color: var(--text);
  line-height: 1.75;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--strong);
}
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.5rem); font-weight: 600; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 28px; }
.measure { max-width: 660px; }
.center { text-align: center; }
.measure.center { margin-inline: auto; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--clay); }
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.on-dark::before { background: var(--gold); }
.eyebrow.bare::before { display: none; }

.lead { font-size: clamp(1.12rem, 1.5vw, 1.3rem); color: var(--muted); line-height: 1.75; }

/* the brand headline accent — key word underlined in tarnished gold */
.hl-word {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.13em;
  text-decoration-skip-ink: none;
}

/* ------------------------------------------------------------ */
/* Buttons                                                       */
/* ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-weight: 600; font-size: 0.97rem;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius-btn);
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s ease, color .2s ease, border-color .2s ease;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--navy); color: var(--cream); }
.btn-primary:hover { background: var(--navy-2); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--strong); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(20, 28, 36, 0.04); }
.btn-ghost-light { background: transparent; color: var(--cream); border-color: rgba(244,239,231,0.30); }
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.03rem; }

/* ------------------------------------------------------------ */
/* Header — floating glass bubbles: brand chip left, menu right  */
/* ------------------------------------------------------------ */
.site-header {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 100;
  pointer-events: none;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-inline: clamp(14px, 2.4vw, 28px);
}
.glass {
  background: rgba(253, 251, 246, 0.62);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(30, 42, 51, 0.08);
  box-shadow: 0 12px 34px -16px rgba(30, 42, 51, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled .glass { background: rgba(253, 251, 246, 0.78); box-shadow: 0 14px 38px -16px rgba(30, 42, 51, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.55); }

.brand {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; letter-spacing: -0.01em;
  color: var(--strong);
  white-space: nowrap;
}
.brand .logo-mark { width: 24px; height: 24px; flex: none; color: var(--navy); }
.site-header .brand { pointer-events: auto; padding: 0.5rem 1.05rem 0.5rem 0.85rem; }

.nav-pill {
  pointer-events: auto;
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.32rem;
}
.nav-links { display: flex; align-items: center; gap: 0.1rem; list-style: none; padding: 0; margin: 0; }
.nav-links a {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem; font-weight: 500; color: var(--muted);
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--strong); background: rgba(30, 42, 51, 0.06); }
.nav-links a.ext::after { content: " ↗"; font-size: 0.8em; opacity: 0.7; }
.nav-cta-btn { padding: 0.52rem 1.1rem; font-size: 0.88rem; border-radius: 999px; gap: 0.3rem; }

/* ------------------------------------------------------------ */
/* HERO — light, typographic, at rest                            */
/* ------------------------------------------------------------ */
.hero {
  min-height: 92svh;
  display: grid; place-items: center;
  padding: 140px 24px 96px;
}
.hero-inner { max-width: 1020px; margin-inline: auto; text-align: center; }
.hero h1 {
  font-size: clamp(2.15rem, 5.4vw, 3.9rem);
  font-weight: 480;
  line-height: 1.1;
  margin: 1.5rem auto 1.8rem;
}
.hero h1 .line { display: block; white-space: nowrap; }
.hero .lead { margin: 0 auto 2.8rem; max-width: 600px; }
.hero-actions { display: flex; justify-content: center; }

/* "echo" — the problem word goes cold and repeats, quietly */
.echo-word { position: relative; display: inline-block; color: #5A6B77; }
.echo-word .ghost {
  position: absolute; left: 0; top: 0; pointer-events: none; user-select: none;
  color: var(--feed);
}
.echo-word .ghost.g1 { transform: translate(0.32em, 0.12em); opacity: 0.20; }
.echo-word .ghost.g2 { transform: translate(0.64em, 0.24em); opacity: 0.09; filter: blur(1px); }
.echo-word .word { position: relative; z-index: 1; }

/* the assessment, explained — sits under the single CTA */
.hero-assess {
  margin: 2.6rem auto 0;
  max-width: 480px;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero-assess .ha-label {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay);
  display: block; margin-bottom: 0.6rem;
}
.hero-assess p { font-size: 1.02rem; color: var(--muted); line-height: 1.7; }

/* gentle staggered entrance */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero-inner > * { animation: rise 1s var(--ease) both; }
.hero-inner > h1 { animation-delay: .12s; }
.hero-inner > .lead { animation-delay: .34s; }
.hero-inner > .hero-actions { animation-delay: .5s; }
.hero-inner > .hero-assess { animation-delay: .64s; }

/* ------------------------------------------------------------ */
/* Sections — generous air                                       */
/* ------------------------------------------------------------ */
.section { padding: clamp(104px, 13vw, 180px) 0; }
.section-sm { padding: clamp(72px, 9vw, 116px) 0; }
.sec-head { max-width: 680px; margin-bottom: clamp(2.6rem, 5vw, 4.2rem); }
.sec-head h2 { margin: 0.8rem 0 1rem; }

/* ------------------------------------------------------------ */
/* THE PROBLEM — flat dark. The register, without the imagery.   */
/* ------------------------------------------------------------ */
.problem {
  background: var(--iron);
  color: var(--cream);
  padding: clamp(104px, 13vw, 180px) 0;
}
.problem .sec-head h2 { color: var(--cream); max-width: 17ch; }
.problem .sec-head p { color: var(--cream-muted); max-width: 520px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.4rem); }
.problem-col { border-top: 1px solid var(--line-dark); padding-top: 1.6rem; }
.problem-col .pc-num { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; color: var(--gold); }
.problem-col h3 { color: var(--cream); font-size: 1.18rem; margin: 0.7rem 0 0.5rem; }
.problem-col p { color: var(--cream-muted); font-size: 0.94rem; }

/* ------------------------------------------------------------ */
/* WHAT WE DO — quiet strip + CTA + the film                     */
/* ------------------------------------------------------------ */
.services .eyebrow { justify-content: center; width: 100%; }
.services .eyebrow::after { content: ""; width: 18px; height: 2px; background: var(--clay); }
.services-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 2.6rem;
}
.service {
  text-align: center; padding: 0.4rem clamp(1rem, 3vw, 2.6rem);
  border-left: 1px solid var(--line);
}
.service:first-child { border-left: none; }
.service h3 { font-size: clamp(1.3rem, 2.1vw, 1.62rem); font-weight: 560; }
.service p { color: var(--muted); font-size: 0.92rem; margin-top: 0.45rem; }
.services-cta { display: flex; justify-content: center; gap: 0.85rem; flex-wrap: wrap; margin-top: clamp(2.6rem, 5vw, 4rem); }

/* the film slot */
.video-wrap { max-width: 880px; margin: clamp(3.4rem, 7vw, 6rem) auto 0; }
.video-frame {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  border-radius: var(--radius); overflow: hidden;
  background: radial-gradient(120% 120% at 50% 38%, #26333D 0%, var(--iron) 72%);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.video-frame .play {
  width: 78px; height: 78px; border-radius: 999px;
  background: rgba(247,244,238,0.95); display: grid; place-items: center;
  box-shadow: 0 14px 36px -12px rgba(0,0,0,0.4);
  transition: transform .25s var(--ease);
}
.video-frame:hover .play { transform: scale(1.06); }
.video-frame .play svg { width: 27px; height: 27px; color: var(--ink); margin-left: 4px; }
.video-frame .v-note {
  position: absolute; bottom: 18px; left: 0; right: 0; text-align: center;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(247,244,238,0.5);
}

/* ------------------------------------------------------------ */
/* THE STAKES — flat split. Dark → gold turn → light.            */
/* ------------------------------------------------------------ */
.stakes-wrap {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  max-width: 980px; margin-inline: auto;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stake-panel { padding: clamp(2.4rem, 5vw, 4rem) clamp(1.8rem, 4vw, 3.4rem); }
.stake-panel.dark { background: var(--iron); color: var(--cream); }
.stake-panel.light { background: var(--surface); }

.stake-label {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  display: block; margin-bottom: 1.8rem;
}
.stake-panel.dark .stake-label { color: var(--feed); }
.stake-panel.light .stake-label { color: var(--clay); }

.stake-list { list-style: none; padding: 0; display: grid; gap: 1.6rem; }
.stake-list li { display: flex; gap: 1rem; align-items: flex-start; }
.stake-mark {
  flex: none; width: 27px; height: 27px; margin-top: 0.28rem;
  border-radius: 999px; display: grid; place-items: center; font-size: 0.76rem;
}
.stake-panel.dark .stake-mark { border: 1px solid rgba(247,244,238,0.2); color: #C97B6B; }
.stake-panel.light .stake-mark { border: 1px solid var(--line); color: var(--olive); }
.stake-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.14rem, 1.8vw, 1.4rem); line-height: 1.22; letter-spacing: -0.01em; display: block; }
.stake-panel.dark .stake-title { color: var(--cream); }
.stake-panel.light .stake-title { color: var(--strong); }
.stake-sub { display: block; font-size: 0.9rem; margin-top: 0.22rem; }
.stake-panel.dark .stake-sub { color: var(--cream-muted); }
.stake-panel.light .stake-sub { color: var(--muted); }

.stake-turn {
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 999px;
  background: var(--gold); color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,0.4);
}
.stake-turn svg { width: 23px; height: 23px; }

/* ------------------------------------------------------------ */
/* MAKE THE MOVE — editorial rows. Type only. The new way.       */
/* ------------------------------------------------------------ */
.move-rows { border-top: 1px solid var(--line); }
.move-row {
  display: grid; grid-template-columns: 150px 1.05fr 1fr;
  gap: clamp(1.4rem, 3.5vw, 3.2rem); align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
}
.move-row .tag {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy);
}
.move-row .move {
  font-family: var(--font-display); font-weight: 520;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.18; letter-spacing: -0.015em; color: var(--strong);
}
.move-row .move .from { color: var(--muted); }
.move-row .move .arrow { color: var(--clay); padding-inline: 0.16em; }
.move-row .move .to {
  text-decoration: underline; text-decoration-color: var(--gold);
  text-decoration-thickness: 0.055em; text-underline-offset: 0.12em; text-decoration-skip-ink: none;
}
.move-row p { color: var(--muted); font-size: 0.96rem; }

/* ------------------------------------------------------------ */
/* ON CONSUMING — the small slate box                            */
/* ------------------------------------------------------------ */
.consume-box {
  max-width: 760px; margin-inline: auto;
  background: var(--navy); color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(1.9rem, 4vw, 2.7rem) clamp(1.7rem, 4vw, 2.9rem);
  display: flex; align-items: center; gap: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.consume-box .cb-text { flex: 1; }
.consume-box .cb-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: #A7C0D4; display: block; margin-bottom: 0.7rem; }
.consume-box h3 { color: var(--cream); font-size: clamp(1.22rem, 2vw, 1.46rem); margin-bottom: 0.45rem; }
.consume-box p { color: rgba(247,244,238,0.78); font-size: 0.95rem; max-width: 46ch; }
.consume-box .btn { flex: none; }

/* ------------------------------------------------------------ */
/* ASSESSMENT — the destination. Ends in the light.              */
/* ------------------------------------------------------------ */
.assessment { border-top: 1px solid var(--line); }
.assessment .inner { max-width: 720px; margin-inline: auto; text-align: center; }
.assessment h2 { max-width: 18ch; margin: 0.9rem auto 1.2rem; }
.assessment .lead { margin-bottom: 2.6rem; }
.assessment .hero-actions { justify-content: center; }
.assessment .note { margin-top: 1.6rem; font-size: 0.88rem; color: var(--muted); }
.assessment .note a { color: var(--navy); font-weight: 600; }
.assessment .note a:hover { color: var(--clay); }

/* ------------------------------------------------------------ */
/* THE MULTIPLY ASSESSMENT — modal                               */
/* ------------------------------------------------------------ */
dialog.assess {
  border: none; padding: 0; margin: auto;
  width: min(580px, 94vw);
  max-height: min(760px, 92dvh);
  background: var(--surface);
  background-image: var(--paper-grain);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: 0 40px 90px -30px rgba(12, 15, 19, 0.5);
  overflow: hidden auto;
}
dialog.assess::backdrop { background: rgba(12, 15, 19, 0.52); backdrop-filter: blur(3px); }

.assess-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.1rem 0.85rem 1.3rem;
}
.assess-back {
  background: none; border: none; padding: 0.2rem 0.3rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.assess-back:hover { color: var(--strong); }
.assess-progress {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--clay);
  margin-inline: auto;
}
.assess-back[hidden] + .assess-progress { margin-left: 0.2rem; }
.assess-close {
  background: none; border: none; padding: 0 0.3rem;
  font-size: 1.5rem; line-height: 1; color: var(--muted);
}
.assess-close:hover { color: var(--strong); }
.assess-track { height: 2px; background: var(--line); }
.assess-fill { display: block; height: 100%; width: 0%; background: var(--gold); transition: width 0.35s var(--ease); }

.assess-body { padding: 1.9rem clamp(1.4rem, 5vw, 2.4rem) 2.3rem; }
.assess-q { font-size: clamp(1.3rem, 2.4vw, 1.62rem); line-height: 1.22; }
.assess-hint { font-size: 0.88rem; color: var(--muted); margin-top: 0.4rem; }

.assess-opts { display: grid; gap: 0.55rem; margin-top: 1.4rem; }
.assess-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 0.9rem;
  width: 100%; text-align: left;
  padding: 0.92rem 1.1rem;
  background: transparent;
  border: 1px solid var(--line); border-radius: 9px;
  font-size: 0.96rem; font-weight: 500; color: var(--strong); line-height: 1.4;
  transition: border-color .18s ease, background .18s ease;
}
.assess-opt:hover { border-color: var(--navy); }
.assess-opt .opt-sub { display: block; font-size: 0.8rem; font-weight: 400; color: var(--muted); margin-top: 0.1rem; }
.assess-opt .opt-mark {
  flex: none; width: 22px; height: 22px; border-radius: 999px;
  display: grid; place-items: center; font-size: 0.7rem;
  border: 1px solid var(--line); color: transparent;
  transition: all .18s ease;
}
.assess-opt.is-selected { border-color: var(--navy); background: rgba(62, 92, 118, 0.06); }
.assess-opt.is-selected .opt-mark { background: var(--navy); border-color: var(--navy); color: var(--cream); }

.assess-actions { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.7rem; flex-wrap: wrap; }
.assess-restart {
  background: none; border: none; padding: 0;
  font-size: 0.88rem; font-weight: 600; color: var(--muted);
}
.assess-restart:hover { color: var(--strong); }
.assess-note { font-size: 0.82rem; color: var(--muted); margin-top: 1.1rem; }

/* result screen */
.assess-profile {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 1.4rem;
}
.assess-scale { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.5rem; }
.assess-scale .scale-label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.assess-scale .scale-track { position: relative; flex: 1; height: 2px; background: var(--line); }
.assess-scale .scale-dot {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 14px; height: 14px; border-radius: 999px;
  background: var(--gold); box-shadow: 0 0 0 4px rgba(176, 133, 92, 0.22);
}
.assess-read { color: var(--muted); font-size: 0.98rem; margin-top: 0.7rem; }
.assess-offer { margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }
.assess-form { margin-top: 1.2rem; }
.assess-fields { display: grid; grid-template-columns: 1fr 1.25fr; gap: 0.6rem; }
.assess-fields input {
  width: 100%; padding: 0.85rem 1rem;
  font: inherit; font-size: 0.95rem; color: var(--strong);
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 9px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.assess-fields input::placeholder { color: var(--muted); }
.assess-fields input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(62, 92, 118, 0.14); }
.assess-hp { position: absolute; left: -5000px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* discovery form — chips, textarea */
.disc-label {
  font-family: var(--font-mono); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay);
  display: block; margin: 1.3rem 0 0.55rem;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.5rem 0.95rem;
  background: transparent;
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.89rem; font-weight: 500; color: var(--strong);
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.chip:hover { border-color: var(--navy); }
.chip.is-selected { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.disc-err { display: none; font-size: 0.82rem; color: #8A4B3D; margin-top: 0.45rem; }
.disc-err.show { display: block; }
.assess-ta {
  width: 100%; margin-top: 1.3rem; padding: 0.85rem 1rem;
  font: inherit; font-size: 0.95rem; color: var(--strong);
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 9px;
  min-height: 86px; resize: vertical;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.assess-ta::placeholder { color: var(--muted); }
.assess-ta:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(62, 92, 118, 0.14); }
@media (max-width: 520px) {
  .assess-fields { grid-template-columns: 1fr; }
}
.assess-offer .ap-label {
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--clay); display: block; margin-bottom: 0.35rem;
}
.assess-offer p { font-size: 0.95rem; color: var(--text); }

/* ------------------------------------------------------------ */
/* Footer — ink                                                  */
/* ------------------------------------------------------------ */
.site-footer { background: var(--iron); color: var(--cream-muted); padding: 56px 0 36px; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid var(--line-dark); }
.site-footer .brand { color: var(--cream); font-size: 1.1rem; }
.site-footer .brand .logo-mark { color: var(--gold); }
.footer-tag { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 1.02rem; margin-top: 0.7rem; }
.footer-links { list-style: none; padding: 0; display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.92rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 24px; font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.04em; }

/* ------------------------------------------------------------ */
/* Reveal on scroll                                              */
/* ------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ */
/* Responsive                                                    */
/* ------------------------------------------------------------ */
@media (max-width: 960px) {
  .problem-grid { grid-template-columns: 1fr; max-width: 560px; }
  .services-row { grid-template-columns: 1fr; gap: 1.7rem; max-width: 440px; margin-inline: auto; }
  .service { border-left: none; border-top: 1px solid var(--line); padding-top: 1.6rem; }
  .service:first-child { border-top: none; padding-top: 0; }
  /* the page still moves dark → light reading downward */
  .stakes-wrap { grid-template-columns: 1fr; }
  .stake-turn { position: relative; top: auto; left: auto; transform: none; margin: -27px auto; }
  .stake-turn svg { transform: rotate(90deg); }
  .move-row { grid-template-columns: 1fr; gap: 0.65rem; align-items: start; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .nav-links { display: none; }
  .site-header .brand { font-size: 1rem; padding: 0.45rem 0.9rem 0.45rem 0.75rem; }
  .nav-cta-btn { padding: 0.5rem 0.95rem; font-size: 0.82rem; }
  .hero { padding-top: 120px; }
  .hero h1 .line { white-space: normal; }
  /* the ghost-echo trails clip at the viewport edge on small screens */
  .echo-word .ghost { display: none; }
  .consume-box { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 480px) {
  .hide-sm { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
