/* The Tactics Academy · Founding Membership
   Theme tokens first, then the page's own classes. Engine selectors untouched.
   Depth comes from light, layers, overlap and shadow. No texture grids. */

:root {
  --navy: #141D24;
  --navy-deep: #0E151B;
  --navy-raise: #1A252E;
  --cream: #FAF7F0;
  --cream-deep: #F1EBDF;
  --ink: #1D2730;
  --muted: #56616B;
  --light: #C7D1D9;
  --light-soft: #8FA1AE;
  --blue: #3281BC;
  --blue-deep: #2A6C9E;
  --blue-light: #6FAEE6;
  --hair-light: rgba(255,255,255,.1);
  --hair-ink: rgba(29,39,48,.12);

  --sc-canvas: var(--navy);
  --sc-surface: var(--navy-raise);
  --sc-ink: #F4F1EA;
  --sc-ink-soft: var(--light-soft);
  --sc-accent: var(--blue-light);
  --sc-accent-ink: var(--navy);
  --sc-font-display: "Instrument Serif", "Times New Roman", Georgia, serif;
  --sc-font-text: "DM Sans", system-ui, sans-serif;
  --sc-font-mono: "DM Sans", system-ui, sans-serif;
  --sc-leading-body: 1.65;
  --sc-maxw: 78rem;
  --sc-shadow-color: 206 30% 4%;
}

html { scroll-behavior: smooth; }
body { overflow-x: clip; background: var(--navy); }
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 400; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; top: -100px; left: 16px; padding: 12px 18px; background: var(--blue); color: #fff; z-index: 100; border-radius: 10px; }
.skip:focus { top: 12px; }

/* ------------------------------------------------------------- grounds -- */
.ground--navy {
  --sc-ink: #F4F1EA; --sc-ink-soft: var(--light-soft); --sc-accent: var(--blue-light); --sc-canvas: var(--navy);
  color: var(--sc-ink);
  background-color: var(--navy);
  background-image: linear-gradient(180deg, #172129 0%, var(--navy) 45%, var(--navy-deep) 100%);
}
.ground--cream {
  --sc-ink: var(--ink); --sc-ink-soft: var(--muted); --sc-accent: var(--blue); --sc-canvas: var(--cream);
  color: var(--ink);
  background-color: var(--cream);
  background-image: linear-gradient(180deg, #FDFBF7 0%, var(--cream) 40%, var(--cream-deep) 100%);
}
/* A hard cut from navy to cream gets a shadow lip so the cream reads as a sheet laid over the screen. */
.ground--cream { position: relative; }
.ground--cream::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.4));
  pointer-events: none;
}
.ground--navy + .ground--cream { box-shadow: 0 -18px 40px -20px rgba(0,0,0,.55); }

/* ---------------------------------------------------------------- type -- */
.display {
  font-family: var(--sc-font-display);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.028em;
  text-wrap: balance;
  color: var(--sc-ink);
}
.display em { font-style: italic; color: var(--sc-accent); }
.display--xl { font-size: clamp(3rem, 1.6rem + 5.4vw, 6.4rem); letter-spacing: -0.032em; }
.display--lg { font-size: clamp(2.6rem, 1.5rem + 3.9vw, 4.9rem); }
.display--md { font-size: clamp(2.1rem, 1.5rem + 2.1vw, 3.3rem); line-height: 1.06; letter-spacing: -0.022em; }
.lede { font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem); line-height: 1.5; color: var(--sc-ink); max-width: 34rem; text-wrap: pretty; }
.body { color: var(--sc-ink-soft); max-width: 36rem; text-wrap: pretty; }
.ground--navy .body { color: var(--light); }
.small { font-size: 0.875rem; color: var(--sc-ink-soft); max-width: 32rem; }
.ground--navy .small { color: var(--light-soft); }
.kicker {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--blue-deep);
  display: inline-flex; align-items: center; gap: 0.6em;
}
.kicker::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: currentColor; }
.kicker--light { color: var(--blue-light); }
.nums { font-variant-numeric: tabular-nums; }
.stack > * + * { margin-top: 1.25rem; }
.stack > .kicker + * { margin-top: 1.4rem; }
.stack > h2 + .body, .stack > h2 + p { margin-top: 1.6rem; }
.wrap { width: 100%; max-width: var(--sc-maxw); margin-inline: auto; padding-inline: var(--sc-gutter); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 3.25rem; padding: 0.85rem 1.5rem;
  background: linear-gradient(180deg, #3B8BC6, var(--blue)); color: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: 10px;
  font: 600 0.9rem/1 var(--sc-font-text); letter-spacing: 0.01em; text-decoration: none; white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 8px 22px -10px rgba(50,129,188,.7), 0 2px 4px rgba(0,0,0,.18);
  transition: background 150ms var(--sc-ease-out), transform 150ms var(--sc-ease-out), box-shadow 150ms var(--sc-ease-out);
}
.button:active { transform: translateY(1px); }
.button:disabled { background: #E8EDF1; border-color: #D6DFE5; color: #43535E; cursor: not-allowed; box-shadow: none; }
.button--full { width: 100%; }
.button--sm { min-height: 2.6rem; padding: 0.6rem 1rem; font-size: 0.82rem; }
@media (hover: hover) and (pointer: fine) {
  .button:not(:disabled):hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(50,129,188,.6), 0 2px 4px rgba(0,0,0,.2); }
}
.textlink { color: var(--light); text-decoration: none; font-weight: 500; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 2px; transition: color 150ms var(--sc-ease-out), border-color 150ms var(--sc-ease-out); }
@media (hover: hover) and (pointer: fine) { .textlink:hover { color: #fff; border-color: var(--blue-light); } }

/* --------------------------------------------------------------- header -- */
.site {
  position: fixed; inset: 0 0 auto 0; z-index: var(--sc-z-chrome);
  color: #F4F1EA;
  transition: color 320ms var(--sc-ease-out), background-color 320ms var(--sc-ease-out), box-shadow 320ms var(--sc-ease-out), backdrop-filter 320ms var(--sc-ease-out);
}
.site__inner {
  width: 100%; max-width: var(--sc-maxw); margin-inline: auto; padding: 1rem var(--sc-gutter);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem;
}
.site.is-scrolled { background-color: rgba(20,29,36,.72); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 10px 30px -18px rgba(0,0,0,.6); }
.site.is-scrolled.is-cream { color: var(--ink); background-color: rgba(250,247,240,.78); box-shadow: 0 1px 0 rgba(29,39,48,.08), 0 10px 30px -22px rgba(29,39,48,.35); }
.brand { display: inline-flex; align-items: center; gap: 0.75rem; color: inherit; text-decoration: none; }
.brand__tile { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(180deg, #1E2A34, #141D24); box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, 0 6px 16px -8px rgba(0,0,0,.7); }
.brand__tile img { width: 36px; height: 36px; }
.brand__name { font-family: var(--sc-font-display); font-size: 1.4rem; letter-spacing: -0.01em; white-space: nowrap; }
.brand--small .brand__tile { width: 32px; height: 32px; } .brand--small .brand__tile img { width: 27px; height: 27px; }
.brand--small .brand__name { font-size: 1.15rem; }
.site__nav { display: flex; justify-content: center; gap: 2rem; font-size: 0.88rem; font-weight: 500; }
.site__nav a { color: inherit; opacity: 0.78; text-decoration: none; transition: opacity 150ms var(--sc-ease-out); }
@media (hover: hover) and (pointer: fine) { .site__nav a:hover { opacity: 1; } }

/* ---------------------------------------------------------------- hero -- */
.hero__stage { isolation: isolate; display: grid; align-content: center; }
.hero__light {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(70rem 40rem at 78% 30%, rgba(50,129,188,.22), transparent 70%),
    radial-gradient(40rem 30rem at 10% 90%, rgba(50,129,188,.08), transparent 70%),
    radial-gradient(120% 90% at 50% 100%, transparent 50%, rgba(8,13,17,.75) 100%);
}
.hero__world {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: clip;
  opacity: 0.66;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.5) 22%, #000 48%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.5) 22%, #000 48%);
}
.hero__grid {
  position: relative; z-index: 1;
  width: 100%; max-width: 84rem; margin-inline: auto; padding: 7rem var(--sc-gutter) 6rem;
  display: grid; grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr); gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.hero__copy { max-width: 34rem; }
.hero__scene { position: relative; }
.hero__proof { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.chip {
  position: absolute; display: inline-flex; align-items: baseline; gap: 0.5rem; max-width: 16rem;
  padding: 0.7rem 1rem; border-radius: 12px;
  background: rgba(12,18,23,.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14); color: #E6ECF1;
  font-size: 0.8rem; line-height: 1.3;
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 24px 50px -24px rgba(0,0,0,.9), 0 6px 14px -8px rgba(0,0,0,.6);
}
.chip strong { font-family: var(--sc-font-display); font-weight: 400; font-size: 1.7rem; line-height: 0.9; color: #fff; letter-spacing: -0.02em; }
.chip--a { left: -1.5rem; top: 4%; transform: rotate(-2deg); }
.chip--b { right: -0.5rem; bottom: 2%; transform: rotate(1.5deg); }
.hero__copy .display { margin-top: 1.4rem; }
.hero__copy .lede { margin-top: 1.5rem; color: var(--light); }
.hero__actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.hero__foot {
  position: absolute; left: var(--sc-gutter); right: var(--sc-gutter); bottom: 1.6rem; z-index: 1;
  display: flex; gap: 1.5rem; align-items: baseline; padding-top: 1rem; border-top: 1px solid var(--hair-light);
  font-size: 0.875rem; color: var(--light-soft);
}
.hero__foot strong { color: #fff; font-weight: 600; }
.hero__foot-label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; color: var(--blue-light); white-space: nowrap; }

/* --------------------------------------------------------------- board --
   The board is an SVG plate in perspective. Depth: a floor shadow under it, a
   lit top edge, the marks glowing softly, and the plate tilting toward the
   reader as the act advances. */
.board { position: relative; perspective: 1600px; perspective-origin: 50% 40%; }
.board::before {
  content: ""; position: absolute; left: 6%; right: 6%; bottom: -4%; height: 40%;
  background: radial-gradient(60% 60% at 50% 50%, rgba(0,0,0,.6), transparent 70%);
  filter: blur(18px); transform: translateZ(-1px); pointer-events: none;
}
.board__svg { display: block; width: 100%; height: auto; overflow: visible; transform-origin: 50% 60%; }
.board--hero .board__svg {
  --tilt: calc(46deg - 14deg * clamp(0, var(--sc-p, 0) / 0.7, 1));
  transform: rotateX(var(--tilt)) rotateZ(-8deg) translateZ(0);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.55)) drop-shadow(0 4px 10px rgba(0,0,0,.35));
}
.board--close .board__svg { transform: rotateX(38deg) rotateZ(-8deg); filter: drop-shadow(0 40px 60px rgba(0,0,0,.55)); }
.board__plate { fill: #1E2B36; stroke: rgba(255,255,255,.14); stroke-width: 1.5; }
.board__lines { fill: none; stroke: rgba(255,255,255,.34); stroke-width: 2; }
.board__lines .board__spot { fill: rgba(255,255,255,.34); stroke: none; }
.dot { stroke-width: 2.5; }
.dot--blue { fill: var(--blue); stroke: #fff; filter: drop-shadow(0 3px 4px rgba(0,0,0,.5)); }
.dot--white { fill: #F4F1EA; stroke: #141D24; filter: drop-shadow(0 3px 4px rgba(0,0,0,.5)); }
.ball { fill: #fff; stroke: #141D24; stroke-width: 1.5; }
.mk__stroke { fill: none; stroke: #fff; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 6px rgba(255,255,255,.35)); }
.mk--ring .mk__stroke, .mk--spare .mk__stroke { stroke: var(--blue-light); stroke-dasharray: none; }
.mk--spare .mk__stroke { stroke: #fff; }
.mk__head { fill: none; stroke: #fff; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; opacity: 0; transition: opacity 160ms var(--sc-ease-out); }
.mk__fill { fill: var(--blue); opacity: 0; }
.mk__label { opacity: 0; }
.mk__label rect { fill: rgba(14,21,27,.92); stroke: rgba(255,255,255,.18); stroke-width: 1; }
.mk__label text { fill: #fff; font: 600 15px var(--sc-font-text); letter-spacing: 0.02em; }
.mk--ring .mk__label rect, .mk--lane .mk__label rect { fill: var(--blue); stroke: rgba(255,255,255,.3); }
.board--read.is-drawing .mk__stroke { transition: stroke-dashoffset 900ms var(--sc-ease-out); }
.board--read.is-drawing .mk__fill { transition: opacity 700ms var(--sc-ease-out); }
.board--read.is-drawing .mk__label { transition: opacity 400ms var(--sc-ease-out) 500ms; }

/* ---------------------------------------------------------- desk chapters -- */
.chapter { position: relative; padding-block: clamp(4.5rem, 9vw, 9rem); }
.chapter--thinking { padding-top: clamp(5rem, 10vw, 10rem); }
.thinking { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 6vw, 6rem); align-items: end; }
.thinking__tile {
  position: relative; border-radius: 16px; overflow: clip; background: #fff; border: 1px solid var(--hair-ink);
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 1px 3px rgba(29,39,48,.06), 0 30px 60px -28px rgba(29,39,48,.45), 0 60px 120px -60px rgba(50,129,188,.25);
  margin-top: -9rem;
}
.thinking__tile img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.thinking__tile figcaption { display: flex; justify-content: space-between; gap: 1rem; padding: 0.9rem 1.1rem; font-size: 0.8rem; color: var(--muted); border-top: 1px solid var(--hair-ink); background: #fff; }
.thinking__tile figcaption a { color: var(--blue-deep); font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(42,108,158,.35); }
.thinking__link { display: block; }
.step .textlink { align-self: flex-start; margin-top: 1.4rem; }

/* ---------------------------------------------------------------- peak -- */
.peak__stage { display: grid; align-items: center; isolation: isolate; }
.peak__light {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60rem 36rem at 30% 45%, rgba(50,129,188,.16), transparent 70%),
    radial-gradient(120% 100% at 50% 100%, transparent 45%, rgba(8,13,17,.7) 100%);
}
.peak__world {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-size: cover; background-position: 50% 50%; opacity: 0.35;
}
.peak__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; padding-block: 6rem 5rem; max-width: none; }
.monitor { position: relative; }
.monitor__screen {
  position: relative; aspect-ratio: 12 / 5; border-radius: 14px; overflow: clip;
  background: var(--navy-raise);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 50px 100px -40px rgba(0,0,0,.9), 0 12px 28px -14px rgba(0,0,0,.7), 0 0 160px -30px rgba(50,129,188,.35);
  isolation: isolate;
}
.monitor__frame { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 360ms var(--sc-ease-out); }
.monitor__frame.is-on { opacity: 1; }
.monitor__board { display: grid; align-items: center; padding: 2% 4%; background: linear-gradient(180deg, #1B2731, #121B22); perspective: none; box-sizing: border-box; }
.monitor__board::before { display: none; }
.monitor__board .board__svg { transform: none; filter: drop-shadow(0 16px 30px rgba(0,0,0,.5)); }
.monitor__glass { position: absolute; inset: 0; z-index: 4; pointer-events: none; background: linear-gradient(165deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 30%, transparent 55%); }
.monitor__bar { display: flex; justify-content: space-between; gap: 1rem; margin-top: 0.9rem; font-size: 0.8rem; color: var(--light-soft); }
.monitor__bar .nums { color: var(--light); }
.track { list-style: none; margin: 1.1rem 0 0; padding: 1rem 0 0; display: flex; justify-content: space-between; gap: 0.75rem; border-top: 1px solid var(--hair-light); font-size: 0.85rem; color: var(--light-soft); }
.track li { position: relative; transition: color 200ms var(--sc-ease-out); }
.track li::before { content: ""; position: absolute; left: 0; right: 0; top: calc(-1rem - 1px); height: 2px; background: var(--blue-light); transform: scaleX(0); transform-origin: left; transition: transform 260ms var(--sc-ease-out); }
.track li.is-on { color: #fff; }
.track li.is-on::before { transform: scaleX(1); }

.peak__copy { position: relative; min-height: 22rem; }
.step { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; }
.step > * + * { margin-top: 1.1rem; }
.step > .kicker + * { margin-top: 1.4rem; }
.step .body { color: var(--light); }
.step .small { margin-top: 1.6rem; }
.read__verdict { color: #fff; }

/* the signature move: the board becomes a control */
.read { position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; margin: 0; padding: 0; border: 0; background: transparent; cursor: crosshair; font: inherit; color: inherit; }
.read[hidden] { display: none; }
.read:focus-visible { outline: 2px solid var(--blue-light); outline-offset: -3px; border-radius: 14px; }
.read__hint {
  position: absolute; left: 50%; top: 0.9rem; translate: -50% 0;
  padding: 0.5rem 0.9rem; border-radius: 999px;
  background: rgba(14,21,27,.88); color: #fff; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em; white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 8px 20px -8px rgba(0,0,0,.7);
  transition: opacity 200ms var(--sc-ease-out);
}
.read.is-answered .read__hint, .read.is-revealed .read__hint { opacity: 0; }
.read__ring {
  position: absolute; width: 5.4%; aspect-ratio: 1; border-radius: 999px; translate: -50% -50%;
  border: 3px solid #fff; opacity: 0; transform: scale(0.6); box-shadow: 0 0 0 2px rgba(20,29,36,.5), 0 0 18px rgba(255,255,255,.5);
  transition: opacity 260ms var(--sc-ease-out), transform 420ms var(--sc-ease-out);
  pointer-events: none;
}
.read__ring.is-on { opacity: 1; transform: scale(1); animation: ring-drop 420ms var(--sc-ease-out); }
@keyframes ring-drop { from { transform: scale(1.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---------------------------------------------------------------- pain -- */
.pain__stage { display: grid; align-content: center; }
.pain__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; padding-block: 6rem; }
.pain__lines { position: relative; min-height: 24rem; margin-top: 2rem; }
.pain__line { position: absolute; inset-inline: 0; top: 0; display: block; max-width: 30rem; }
.pain__line.display--lg { font-size: clamp(2.4rem, 1.4rem + 3.2vw, 4.2rem); }
.pain__line--turn { line-height: 1.12; letter-spacing: -0.018em; color: var(--ink); max-width: 30rem; }
.pain__line--turn em { color: var(--blue); }
.chaos {
  position: relative; aspect-ratio: 1050 / 680; width: 100%; max-width: 32rem; justify-self: end;
  border-radius: 16px; background: linear-gradient(180deg, #FFFFFF, #F6F2EA); border: 1px solid var(--hair-ink);
  box-shadow: 0 1px 0 rgba(255,255,255,1) inset, 0 1px 3px rgba(29,39,48,.06), 0 40px 70px -34px rgba(29,39,48,.45), 0 80px 140px -70px rgba(50,129,188,.25);
  overflow: clip; isolation: isolate;
}
.chaos__world { position: absolute; inset: -1.5%; z-index: 0; background-image: url(assets/world-board.webp); background-size: cover; background-position: 50% 50%; opacity: 0; mix-blend-mode: multiply; filter: saturate(.85) contrast(1.05); pointer-events: none; will-change: opacity, filter; }
.chaos__svg { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; overflow: visible; transform-origin: 50% 50%; will-change: transform; }
.cb__lines { fill: none; stroke: rgba(29,39,48,.16); stroke-width: 2; }
.cb__lines .cb__spot { fill: rgba(29,39,48,.16); stroke: none; }
.cb__scribble { fill: none; stroke: #2B3640; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; opacity: 0; }
.cb__scribble--blue { stroke: var(--blue-deep); }
.cb__morph { fill: none; stroke: #2B3640; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; opacity: 0; transition: stroke 400ms var(--sc-ease-out); }
.cb__morph.is-clean { stroke: var(--blue-deep); filter: drop-shadow(0 4px 6px rgba(42,108,158,.25)); }
.cb__head { fill: none; stroke: var(--blue-deep); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; opacity: 0; transition: opacity 160ms var(--sc-ease-out); }
.cb__lane { fill: var(--blue); opacity: 0; }
.cb__dot { stroke-width: 2.5; opacity: 0; }
.cb__dot--blue { fill: var(--blue); stroke: #fff; filter: drop-shadow(0 3px 4px rgba(29,39,48,.35)); }
.cb__dot--white { fill: #fff; stroke: var(--ink); filter: drop-shadow(0 3px 4px rgba(29,39,48,.3)); }
.cb__label { opacity: 0; }
.cb__label rect { fill: var(--ink); stroke: rgba(255,255,255,.4); stroke-width: 1; }
.cb__label text { fill: #fff; font: 600 15px var(--sc-font-text); letter-spacing: 0.02em; }
.cb__label--blue rect { fill: var(--blue); }
.chaos__cap { position: absolute; left: 1.1rem; bottom: 0.9rem; z-index: 2; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; display: grid; }
.chaos__cap > span { grid-area: 1 / 1; transition: opacity 300ms var(--sc-ease-out), transform 300ms var(--sc-ease-out); }
.chaos__cap-a { color: var(--muted); }
.chaos__cap-b { color: var(--blue-deep); opacity: 0; transform: translateY(6px); }
.chaos.is-framework .chaos__cap-a { opacity: 0; transform: translateY(-6px); }
.chaos.is-framework .chaos__cap-b { opacity: 1; transform: none; }

/* ---------------------------------------------------------------- fund -- */
.fund__stage { display: grid; align-content: center; isolation: isolate; }
.fund__world { position: absolute; inset: 0; z-index: -1; pointer-events: none; background-size: cover; background-position: 50% 60%; opacity: 0.42; mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.7) 60%, transparent 100%); -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.7) 60%, transparent 100%); }
.fund__light { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(60rem 36rem at 75% 40%, rgba(50,129,188,.18), transparent 70%), linear-gradient(180deg, rgba(14,21,27,.55), rgba(14,21,27,.2) 40%, rgba(14,21,27,.8)); }
.fund__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; padding-block: 6rem 5rem; }
.fund__copy > * + * { margin-top: 1.25rem; }
.fund__copy > .kicker + * { margin-top: 1.4rem; }
.fund__copy .small { margin-top: 1.6rem; }
.fund__scene { position: relative; height: min(34rem, 62vh); }
.fund__pot { position: absolute; left: 0; top: 0; width: 9.5rem; text-align: center; }
.pot__ring { width: 7.5rem; height: 7.5rem; transform: rotate(-90deg); filter: drop-shadow(0 10px 20px rgba(0,0,0,.5)); }
.pot__track { fill: rgba(255,255,255,.04); stroke: rgba(255,255,255,.14); stroke-width: 8; }
.pot__fill { fill: none; stroke: var(--blue-light); stroke-width: 8; stroke-linecap: round; filter: drop-shadow(0 0 8px rgba(111,174,230,.55)); }
.fund__pot.is-full .pot__fill { stroke: #fff; }
.pot__label { display: block; margin-top: 0.6rem; font-size: 0.78rem; font-weight: 600; color: #fff; }
.pot__sub { display: block; margin-top: 0.2rem; font-size: 0.72rem; color: var(--light-soft); }
.fund__entries { list-style: none; margin: 0; padding: 0; position: absolute; left: 11.5rem; top: 0; width: min(19rem, 46%); }
.entry {
  position: relative; padding: 0.8rem 1rem; margin-bottom: 0.55rem; border-radius: 10px;
  background: linear-gradient(180deg, #26343F, #1B2630); border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 14px 30px -18px rgba(0,0,0,.8);
  opacity: 0; will-change: transform, opacity; transform-origin: 0 0;
}
.entry__kicker { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-light); }
.entry__title { display: block; margin-top: 0.25rem; font-family: var(--sc-font-display); font-size: 1.15rem; line-height: 1.15; color: #F4F1EA; }
.entry--winner { z-index: 3; }
.entry--winner.is-picked { border-color: rgba(111,174,230,.7); box-shadow: 0 0 0 1px rgba(111,174,230,.4), 0 0 30px -6px rgba(111,174,230,.5), 0 14px 30px -18px rgba(0,0,0,.8); }
.entry--winner.is-landed { background: linear-gradient(180deg, #FFFFFF, #F6F2EA); border-color: rgba(42,108,158,.5); box-shadow: 0 1px 0 rgba(255,255,255,1) inset, 0 10px 24px -14px rgba(29,39,48,.4); }
.entry--winner.is-landed .entry__kicker { color: var(--blue-deep); }
.entry--winner.is-landed .entry__title { color: var(--ink); }
.fund__judge { position: absolute; left: 11.5rem; bottom: 0; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-light); opacity: 0; }
.issue {
  position: absolute; right: 0; bottom: 0; width: min(22rem, 50%);
  padding: 1.2rem 1.3rem 1.3rem; border-radius: 14px;
  background: linear-gradient(180deg, #FCFAF5, #F3EEE3); color: var(--ink); border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 40px 80px -36px rgba(0,0,0,.9), 0 10px 26px -14px rgba(0,0,0,.6);
  opacity: 0.35; will-change: transform, opacity;
}
.issue__mast { display: flex; align-items: center; gap: 0.5rem; font-family: var(--sc-font-display); font-size: 0.92rem; white-space: nowrap; padding-bottom: 0.7rem; border-bottom: 1px solid var(--hair-ink); }
.brand__tile--xs { width: 22px; height: 22px; border-radius: 6px; box-shadow: none; }
.brand__tile--xs img { width: 19px; height: 19px; }
.issue__tag { margin-left: auto; flex-shrink: 0; font-family: var(--sc-font-text); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-deep); white-space: nowrap; }
.issue__row { display: grid; grid-template-columns: 4.6rem minmax(0, 1fr); gap: 0.75rem; align-items: start; padding: 0.85rem 0; border-bottom: 1px solid var(--hair-ink); }
.issue__row--next { grid-template-columns: minmax(0, 1fr); border-bottom: 0; padding-bottom: 0.2rem; }
.issue__thumb { width: 4.6rem; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 6px; }
.issue__meta { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-deep); }
.issue__title { margin-top: 0.25rem; font-family: var(--sc-font-display); font-size: 1.02rem; line-height: 1.15; color: var(--ink); }
.issue__slot { margin-top: 0.45rem; height: 3.9rem; border-radius: 10px; border: 1px dashed rgba(29,39,48,.22); }
.issue__by { margin-top: 0.4rem; font-size: 0.74rem; color: var(--muted); }
.issue__badge { position: absolute; right: 1rem; top: -0.9rem; padding: 0.4rem 0.75rem; border-radius: 999px; background: var(--blue); color: #fff; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; box-shadow: 0 8px 20px -8px rgba(50,129,188,.9); opacity: 0; }

/* ------------------------------------------------------------- evidence -- */
.evidence { position: relative; padding-block: 1.5rem clamp(5rem, 9vw, 9rem); }
.evidence__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.evidence__b { margin-top: clamp(3rem, 8vw, 8rem); }
.plate img { width: 100%; height: auto; border-radius: 12px; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, 0 40px 80px -36px rgba(0,0,0,.9), 0 10px 24px -14px rgba(0,0,0,.6); }
.evidence figcaption { margin-top: 1.1rem; max-width: 28rem; }
.evidence figcaption strong { display: block; color: #fff; font-weight: 500; margin-bottom: 0.35rem; }
.evidence figcaption span { display: block; font-size: 0.9rem; color: var(--light-soft); }

/* --------------------------------------------------------------- inside -- */
.inside { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.rows { list-style: none; margin: 0; padding: 0; }
.paper {
  background: #fff; border-radius: 16px; border: 1px solid var(--hair-ink); padding: 0.4rem 2rem;
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 1px 3px rgba(29,39,48,.05), 0 24px 50px -30px rgba(29,39,48,.35);
}
.rows li { padding: 1.6rem 0 1.4rem; border-top: 1px solid var(--hair-ink); }
.rows li:first-child { border-top: 0; }
.rows h3 { font-family: var(--sc-font-display); font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); letter-spacing: -0.015em; line-height: 1.1; color: var(--ink); }
.rows p { margin-top: 0.7rem; color: var(--muted); max-width: 30rem; text-wrap: pretty; }

/* --------------------------------------------------------------- course -- */
.chapter--course { padding-top: 0; }
.course { display: grid; grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; max-width: 62rem; padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--hair-ink); }
.course__cover { position: relative; max-width: 260px; justify-self: center; perspective: 1200px; }
.course__book { position: relative; border-radius: 8px; overflow: clip; transform-style: preserve-3d; transform: rotateY(-14deg) rotateX(4deg); box-shadow: 0 50px 80px -34px rgba(29,39,48,.55), 0 10px 20px -10px rgba(29,39,48,.35), 0 1px 0 rgba(255,255,255,.6) inset; animation: book-float 7s ease-in-out infinite; }
.course__book img { border-radius: 8px; display: block; }
.course__shine { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.28) 46%, rgba(255,255,255,.05) 52%, transparent 62%); transform: translateX(-120%); animation: book-shine 7s ease-in-out infinite; pointer-events: none; }
.course__tag { position: absolute; right: -1.6rem; top: 1.2rem; display: grid; justify-items: center; gap: 0.05rem; padding: 0.7rem 0.9rem 0.75rem; border-radius: 12px; background: linear-gradient(180deg, #3B8BC6, var(--blue)); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 16px 30px -14px rgba(50,129,188,.9); transform: rotate(6deg); }
.course__tag strong { font-family: var(--sc-font-display); font-weight: 400; font-size: 1.8rem; line-height: 0.9; letter-spacing: -0.02em; }
.course__tag span { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: .9; }
@keyframes book-float { 0%, 100% { transform: rotateY(-14deg) rotateX(4deg) translateY(0); } 50% { transform: rotateY(-8deg) rotateX(2deg) translateY(-10px); } }
@keyframes book-shine { 0%, 55% { transform: translateX(-120%); } 75%, 100% { transform: translateX(120%); } }

/* -------------------------------------------------------------- founder -- */
.founder { position: relative; padding-block: clamp(4.5rem, 9vw, 9rem); isolation: isolate; }
.founder__world { position: absolute; inset: 0; z-index: -2; pointer-events: none; background-size: cover; background-position: 50% 50%; opacity: 0.3; mask-image: linear-gradient(90deg, rgba(0,0,0,.35) 0%, #000 60%); -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,.35) 0%, #000 60%); }
.founder__light { position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(50rem 34rem at 80% 50%, rgba(50,129,188,.16), transparent 70%), linear-gradient(90deg, rgba(20,29,36,.85) 0%, rgba(20,29,36,.3) 55%, rgba(20,29,36,.6) 100%); }
.founder__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.75fr); gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.founder__copy .body { max-width: 34rem; }
.credentials { font-size: 0.85rem; color: var(--blue-light); padding-top: 0.6rem; }
.proof { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--hair-light); max-width: 34rem; }
.proof li { padding: 1.1rem 1.2rem 1.1rem 0; border-bottom: 1px solid var(--hair-light); display: grid; gap: 0.25rem; }
.proof li:nth-child(odd) { border-right: 1px solid var(--hair-light); }
.proof li:nth-child(even) { padding-left: 1.2rem; }
.proof strong { font-family: var(--sc-font-display); font-weight: 400; font-size: 2rem; line-height: 1; color: #fff; letter-spacing: -0.02em; }
.proof span { font-size: 0.82rem; line-height: 1.35; color: var(--light-soft); }
.letter { margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--hair-light); max-width: 32rem; }
.letter p { font-family: var(--sc-font-display); font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.5rem); line-height: 1.3; color: #F4F1EA; letter-spacing: -0.01em; text-wrap: pretty; }
.letter p + p { margin-top: 0.9rem; }
.letter__sig { margin-top: 1.1rem !important; font-style: italic; color: var(--blue-light) !important; }
.founder__photo { position: relative; }
.founder__card {
  position: absolute; left: -2.6rem; bottom: 4.2rem; z-index: 2; width: 13.5rem;
  padding: 1rem 1.1rem 1.1rem; border-radius: 12px;
  background: linear-gradient(180deg, #FCFAF5, #F3EEE3); color: var(--ink); border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 40px 80px -36px rgba(0,0,0,.9), 0 10px 26px -14px rgba(0,0,0,.6);
  transform: rotate(-2deg); display: grid; gap: 0.3rem;
}
.founder__card-num { font-family: var(--sc-font-display); font-size: 2.6rem; line-height: 0.9; letter-spacing: -0.03em; color: var(--blue-deep); }
.founder__card-text { font-size: 0.8rem; line-height: 1.35; color: var(--muted); }
.founder__frame { border-radius: 14px; overflow: clip; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, 0 50px 100px -44px rgba(0,0,0,.95), 0 12px 28px -14px rgba(0,0,0,.7); }
.founder__frame img { width: 100%; height: auto; max-height: 34rem; object-fit: cover; }
.founder__photo figcaption { margin-top: 0.9rem; font-size: 0.8rem; color: var(--light-soft); }

/* -------------------------------------------------------------- members -- */
.chapter--members { padding-bottom: clamp(3rem, 6vw, 5rem); }
.members__head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.stars { display: inline-block; font-size: 0.85rem; letter-spacing: 0.22em; color: #C9982E; }
.film { position: relative; z-index: 2; max-width: 56rem; margin: 0 auto clamp(-2.5rem, -3vw, -2rem); }
.film__frame { position: relative; border-radius: 18px; overflow: clip; background: var(--navy); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 50px 100px -44px rgba(20,29,36,.75), 0 16px 34px -18px rgba(20,29,36,.5); }
.film__video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; background: var(--navy); }
.film__cap { display: flex; flex-wrap: wrap; gap: 0.4rem 0.8rem; align-items: baseline; margin: 1rem 0.4rem 0; font-size: 0.85rem; color: var(--muted); }
.film__cap strong { color: var(--ink); font-weight: 600; }
.lead-quote {
  position: relative; z-index: 1; margin-top: clamp(3.5rem, 6vw, 5rem); display: grid; grid-template-columns: minmax(0, 0.26fr) minmax(0, 1fr); gap: clamp(1rem, 4vw, 3rem); align-items: start;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3.5rem) clamp(5rem, 8vw, 7rem);
  border-radius: 18px; background: linear-gradient(180deg, #FFFFFF, #FBF8F2); border: 1px solid var(--hair-ink);
  box-shadow: 0 1px 0 rgba(255,255,255,1) inset, 0 1px 3px rgba(29,39,48,.05), 0 30px 60px -32px rgba(29,39,48,.35);
}
.lead-quote__index { font-family: var(--sc-font-display); font-size: clamp(5rem, 10vw, 9rem); line-height: 0.8; letter-spacing: -0.05em; color: rgba(29,39,48,.1); }
.lead-quote__body blockquote { margin: 0.9rem 0 0; }
.lead-quote__body blockquote.display--md { font-size: clamp(1.7rem, 1.2rem + 1.9vw, 3rem); line-height: 1.12; max-width: 26ch; }
.lead-quote figcaption { margin-top: 1.6rem; display: grid; gap: 0.15rem; font-size: 0.9rem; }
.lead-quote figcaption strong { color: var(--ink); font-weight: 600; }
.lead-quote figcaption span { color: var(--muted); font-size: 0.82rem; }
.quotes { list-style: none; margin: -3.6rem 0 0; padding: 0 clamp(0.5rem, 3vw, 2.5rem); position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; align-items: start; }
.quote {
  padding: 1.5rem 1.5rem 1.4rem; border-radius: 14px;
  background: linear-gradient(180deg, #FFFFFF, #FCFAF5); border: 1px solid var(--hair-ink);
  box-shadow: 0 1px 0 rgba(255,255,255,1) inset, 0 1px 3px rgba(29,39,48,.06), 0 30px 60px -30px rgba(29,39,48,.4);
  transform-style: preserve-3d;
}
.quote:nth-child(2) { margin-top: 2.4rem; }
.quote:nth-child(3) { margin-top: 4.6rem; }
.quote blockquote { margin: 0.8rem 0 0; font-family: var(--sc-font-display); font-size: 1.35rem; line-height: 1.22; letter-spacing: -0.01em; color: var(--ink); text-wrap: pretty; }
.quote__by { margin-top: 1.2rem; padding-top: 0.9rem; border-top: 1px solid var(--hair-ink); display: grid; gap: 0.15rem; font-size: 0.85rem; }
.quote__by strong { color: var(--ink); font-weight: 600; }
.quote__by span { color: var(--muted); font-size: 0.78rem; }
.members__foot { margin-top: clamp(2.5rem, 5vw, 4rem); font-size: 0.95rem; color: var(--muted); max-width: 36rem; }
.members__foot .nums { font-family: var(--sc-font-display); font-size: 1.6rem; color: var(--ink); margin-right: 0.2rem; }

/* -------------------------------------------------------------- pricing -- */
.pricing__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.offer { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.offer__copy .body { margin-top: 1.2rem; }
.routes { margin: 0; }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2.5rem); align-items: start; margin-top: clamp(2.5rem, 5vw, 4rem); }
.capture { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; margin-top: clamp(3rem, 6vw, 5rem); padding: clamp(1.8rem, 4vw, 3rem); border-radius: 18px; background: linear-gradient(180deg, #FFFFFF, #FBF8F2); border: 1px solid var(--hair-ink); box-shadow: 0 1px 0 rgba(255,255,255,1) inset, 0 30px 60px -32px rgba(29,39,48,.35); }
.capture__copy > * + * { margin-top: 1rem; }
.capture__form iframe { display: block; width: 100%; height: 150px; border: 0; border-radius: 12px; background: transparent; }
.capture__alt { margin-top: 0.6rem; font-size: 0.78rem; color: var(--muted); }
.capture__alt a { color: var(--blue-deep); }
.routes > div { border-top: 1px solid var(--hair-ink); padding: 1.2rem 0; max-width: 32rem; }
.routes dt { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.routes dd { margin: 0.4rem 0 0; font-size: 0.95rem; color: var(--muted); }
.price {
  position: relative;
  padding: 2.4rem; border-radius: 16px; background: linear-gradient(180deg, #fff, #FCFBF8); border: 1px solid rgba(50,129,188,.3);
  box-shadow: 0 1px 0 rgba(255,255,255,1) inset, 0 1px 3px rgba(29,39,48,.06), 0 40px 80px -40px rgba(50,129,188,.45), 0 24px 40px -30px rgba(29,39,48,.3);
}
.price__badge { position: absolute; right: 1.4rem; top: -0.95rem; padding: 0.45rem 0.85rem; border-radius: 999px; background: var(--blue); color: #fff; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; box-shadow: 0 8px 20px -8px rgba(50,129,188,.9); transform: rotate(2deg); }
.price__label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; color: var(--blue-deep); }
.price__amount { display: flex; align-items: baseline; gap: 0.6rem; margin-top: 0.8rem; }
.price__amount strong { font-family: var(--sc-font-display); font-weight: 400; font-size: 5.6rem; line-height: 1; letter-spacing: -0.04em; color: var(--ink); }
.price__amount span { color: var(--muted); }
.price__who { margin-top: 0.7rem; font-size: 0.875rem; color: var(--muted); max-width: 18rem; }
.price__list { list-style: none; margin: 1.4rem 0; padding: 1.3rem 0; border-top: 1px solid var(--hair-ink); border-bottom: 1px solid var(--hair-ink); }
.price__list li { position: relative; padding-left: 1.5rem; font-size: 0.92rem; color: var(--ink); margin-block: 0.6rem; }
.price__list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 0.55rem; height: 0.55rem; border-radius: 999px; background: var(--blue); }
.price__note { margin-top: 0.8rem; font-size: 0.8rem; color: var(--muted); text-align: center; }
.price__alt { margin-top: 1rem; font-size: 0.82rem; color: var(--muted); text-align: center; }
.price__alt a { color: var(--blue-deep); font-weight: 500; }
.price__renewal { margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--hair-ink); font-size: 0.8rem; color: var(--muted); }
.price--annual { background: linear-gradient(180deg, #1E2B36, #141D24); color: #F4F1EA; border-color: rgba(111,174,230,.4); box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, 0 40px 80px -40px rgba(20,29,36,.8), 0 24px 40px -30px rgba(50,129,188,.5); }
.price--annual .price__label { color: var(--blue-light); }
.price--annual .price__amount strong, .price--annual .price__list li { color: #F4F1EA; }
.price--annual .price__amount span, .price--annual .price__who, .price--annual .price__note, .price--annual .price__renewal { color: var(--light-soft); }
.price--annual .price__list { border-color: var(--hair-light); }
.price--annual .price__renewal { border-color: var(--hair-light); }
.price--annual .price__list li::before { background: var(--blue-light); }
.price__bonus { font-weight: 500; }
.price--annual .price__bonus::before { background: #fff; box-shadow: 0 0 0 3px rgba(111,174,230,.3); }
.price__badge--annual { background: #fff; color: var(--blue-deep); }

/* ------------------------------------------------------------------ faq -- */
.chapter--faq { padding-top: 0; }
.faq { display: grid; grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr); gap: clamp(2rem, 7vw, 7rem); padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--hair-ink); }
.faq__list details { border-top: 1px solid var(--hair-ink); padding: 1.2rem 0; }
.faq__list details:last-child { border-bottom: 1px solid var(--hair-ink); }
.faq__list summary { display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem; cursor: pointer; list-style: none; font-weight: 500; color: var(--ink); }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { content: "+"; font-size: 1.3rem; line-height: 1; color: var(--blue); }
.faq__list details[open] summary::after { content: "−"; }
.faq__list p { margin-top: 1rem; font-size: 0.95rem; color: var(--muted); max-width: 40rem; text-wrap: pretty; }
@media (hover: hover) and (pointer: fine) { .faq__list summary:hover { color: var(--blue-deep); } }

/* ---------------------------------------------------------------- close -- */
.close__stage { isolation: isolate; display: grid; align-content: center; }
.close__light { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(70rem 40rem at 75% 40%, rgba(50,129,188,.2), transparent 70%), radial-gradient(120% 90% at 50% 100%, transparent 50%, rgba(8,13,17,.8) 100%); }
.close__world { position: absolute; inset: 0; z-index: -1; pointer-events: none; background-size: cover; background-position: 50% 50%; opacity: 0.5; mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.6) 30%, #000 60%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.6) 30%, #000 60%); }
.close__grid { position: relative; z-index: 1; width: 100%; max-width: var(--sc-maxw); margin-inline: auto; padding: 6rem var(--sc-gutter) 7rem; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.close__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.close__foot {
  position: absolute; left: var(--sc-gutter); right: var(--sc-gutter); bottom: 1.6rem; z-index: 2;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding-top: 1.2rem; border-top: 1px solid var(--hair-light);
  font-size: 0.8rem; color: var(--light-soft);
}
.close__foot .brand { color: #F4F1EA; }

/* -------------------------------------------------------------- tablet -- */
@media (max-width: 1100px) {
  .peak__grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); }
  .site__nav { display: none; }
  .quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote:nth-child(3) { margin-top: 0; }
}

/* --------------------------------------------------------------- phone -- */
@media (max-width: 860px) {
  .site__inner { padding: 0.75rem var(--sc-gutter); gap: 1rem; }
  .brand__name { display: none; }
  .hero__stage { display: grid; grid-template-rows: minmax(0, 1fr) auto; align-content: stretch; overflow: clip; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto minmax(0, 1fr); gap: 0.6rem; padding: 4.5rem var(--sc-gutter) 0.4rem; min-height: 0; }
  .hero__copy { order: 1; }
  .hero__scene { order: 2; width: 100%; height: 100%; min-height: 0; margin: 0; display: grid; place-items: center; }
  .board--hero { width: 100%; height: 100%; min-height: 0; display: grid; place-items: center; }
  .board--hero .board__svg { width: 100%; height: 100%; }
  .board--hero .board__svg { --tilt: calc(34deg - 14deg * clamp(0, var(--sc-p, 0) / 0.7, 1)); transform: rotateX(var(--tilt)) rotateZ(-4deg); }
  .hero__copy .display--xl { font-size: clamp(2.6rem, 1.6rem + 6vw, 3.6rem); }
  .hero__copy .lede { font-size: 1rem; margin-top: 1rem; }
  .hero__actions { margin-top: 1.4rem; gap: 1rem; }
  .hero__foot { position: static; margin: 0 var(--sc-gutter) 0.9rem; align-self: end; padding: 0.7rem 0.9rem; border-top: 0; border-radius: 10px; background: rgba(12,18,23,.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: var(--light); flex-direction: row; flex-wrap: wrap; align-items: baseline; gap: 0.2rem 0.8rem; font-size: 0.78rem; line-height: 1.35; }
  .hero__world { mask-image: linear-gradient(180deg, transparent 0%, #000 50%); -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 50%); opacity: 0.5; }

  .thinking, .inside, .course, .founder__grid, .offer, .faq, .close__grid { grid-template-columns: minmax(0, 1fr); }
  .thinking { gap: 2rem; }
  .thinking__tile { margin-top: 0; }
  .paper { padding: 0.2rem 1.3rem; }
  .course__cover { max-width: 180px; justify-self: start; order: 2; margin-top: 1rem; }
  .course__tag { right: -1rem; top: 0.6rem; padding: 0.5rem 0.7rem; }
  .course__tag strong { font-size: 1.4rem; }

  .peak__grid { grid-template-columns: minmax(0, 1fr); gap: 1.4rem; align-content: center; padding-block: 5rem 2rem; }
  .monitor__screen { border-radius: 10px; }
  .track { font-size: 0.75rem; gap: 0.4rem; }
  .peak__copy { min-height: 18rem; }
  .step .display--md { font-size: clamp(1.7rem, 1.3rem + 2.4vw, 2.2rem); }
  .step .body { font-size: 0.95rem; }
  .step .small { display: none; }
  .read__hint { font-size: 0.72rem; top: 0.6rem; }

  .pain__grid { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; padding-block: 5rem 3rem; }
  .pain__lines { min-height: 12.5rem; margin-top: 1rem; }
  .pain__line--turn.display--md { font-size: clamp(1.5rem, 1.2rem + 2vw, 2rem); }
  .pain__line.display--lg { font-size: clamp(1.9rem, 1.4rem + 3.5vw, 2.6rem); }
  .pain__stage { align-content: start; overflow: clip; }
  .pain__grid { padding-block: 4.5rem 1.5rem; }
  .chaos { aspect-ratio: 680 / 1050; width: auto; height: min(46vh, 32rem); max-width: 100%; justify-self: center; }
  .chaos__world { background-image: url(assets/world-board-v.webp); }
  .chaos__cap { left: 0.9rem; bottom: 0.8rem; font-size: 0.66rem; }
  .hero__proof { display: none; }
  .proof { grid-template-columns: minmax(0, 1fr); }
  .proof li:nth-child(odd) { border-right: 0; }
  .proof li:nth-child(even) { padding-left: 0; }
  .proof strong { font-size: 1.7rem; }
  .founder__card { left: 0.9rem; bottom: 3.6rem; width: 11rem; padding: 0.8rem 0.9rem 0.9rem; }
  .founder__card-num { font-size: 2rem; }
  .lead-quote { grid-template-columns: minmax(0, 1fr); gap: 0.5rem; padding: 1.6rem 1.4rem 4rem; }
  .lead-quote__index { font-size: 4rem; }
  .quotes { grid-template-columns: minmax(0, 1fr); margin-top: -2.6rem; padding-inline: 0.8rem; gap: 0.9rem; }
  .quote:nth-child(2), .quote:nth-child(3) { margin-top: 0; }
  .film { margin-bottom: 0; }
  .film__frame { border-radius: 12px; }
  .lead-quote { margin-top: 1.5rem; }
  .quote blockquote { font-size: 1.15rem; }
  .fund__grid { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; padding-block: 5rem 3rem; }
  .fund__copy .display--lg { font-size: clamp(2rem, 1.4rem + 4vw, 2.8rem); }
  .fund__copy .small { display: none; }
  .fund__scene { height: 17rem; }
  .fund__pot { width: 6rem; }
  .pot__ring { width: 4.8rem; height: 4.8rem; }
  .pot__sub { display: none; }
  .fund__entries { left: 7rem; width: 44%; }
  .entry { padding: 0.5rem 0.7rem; margin-bottom: 0.35rem; }
  .entry__title { font-size: 0.9rem; }
  .entry:nth-child(n+4) { display: none; }
  .fund__judge { display: none; }
  .issue { width: 48%; padding: 0.8rem 0.9rem 0.9rem; }
  .issue__row--real, .issue__tag { display: none; }
  .issue__mast { font-size: 0.8rem; white-space: normal; }
  .issue__slot { height: 2.9rem; }
  .evidence__grid { grid-template-columns: minmax(0, 1fr); }
  .evidence__b { margin-top: 0; }
  .founder__frame img { max-height: 28rem; }
  .founder__photo { order: -1; }
  .price { padding: 1.7rem; }
  .plans, .capture { grid-template-columns: minmax(0, 1fr); }
  .capture { padding: 1.4rem; gap: 1.2rem; }
  .price__amount strong { font-size: 4.6rem; }
  .close__stage { align-content: start; overflow: clip; }
  .close__grid { padding: 4.5rem var(--sc-gutter) 0.5rem; gap: 1.2rem; }
  .close__copy .display--xl { font-size: clamp(2.2rem, 1.5rem + 5vw, 3.2rem); }
  .close__actions { margin-top: 1.4rem; gap: 0.8rem 1.2rem; }
  .board--close { width: 74%; margin: 0 auto; }
  .board--close .board__svg { transform: rotateX(30deg) rotateZ(-4deg); }
  .close__foot { position: static; margin: 0.6rem var(--sc-gutter) 0.8rem; padding-top: 0.8rem; flex-direction: row; align-items: center; justify-content: space-between; gap: 0.6rem; font-size: 0.74rem; }
}

/* short phone viewports (browser bars showing): tighten the pinned heroes so nothing clips */
@media (max-width: 860px) and (max-height: 720px) {
  .hero__grid { padding-top: 4rem; gap: 0.6rem; }
  .hero__copy .display--xl { font-size: clamp(2.2rem, 1.4rem + 5.5vw, 3rem); }
  .hero__copy .lede { font-size: 0.92rem; }
  .hero__actions { margin-top: 1rem; }
  .hero__foot { font-size: 0.72rem; padding: 0.5rem 0.8rem; }
  .close__grid { padding-top: 4rem; }
  .board--close { width: 60%; }
  .chaos { height: min(42vh, 32rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .board--hero .board__svg { --tilt: 34deg; }
  .monitor__frame, .track li, .read__ring, .mk__stroke, .mk__fill, .mk__label, .cb__morph, .cb__head, .chaos__cap > span { transition: none !important; }
  .course__book, .course__shine { animation: none !important; }
  .read__ring.is-on { animation: none; }
}
