/* =============================================================
   /two-minutes/invest — Investor Pathway + Pitch Companion
   Aesthetic locked per Raptor Build Directive (4/27/2026 PM):
   - Palette: true black #0A0A0A / off-white #F5F1E8 / muted gold #C9A96E
   - Type:    Fraunces (display) + Manrope (body)
   - Texture: 4% opacity gold-tinted SVG film grain
   - Register: A24 / Letterboxd, restraint over flourish
   ============================================================= */

:root {
  --bg: #0A0A0A;
  --bg-deeper: #050505;
  --text: #F5F1E8;
  --text-dim: rgba(245, 241, 232, 0.62);
  --text-faint: rgba(245, 241, 232, 0.38);
  --gold: #C9A96E;
  --gold-warm: #A07840;
  --gold-soft: rgba(201, 169, 110, 0.12);
  --gold-line: rgba(201, 169, 110, 0.32);
  --line: rgba(245, 241, 232, 0.10);
  --line-strong: rgba(245, 241, 232, 0.22);
  --inset: rgba(245, 241, 232, 0.02);

  --display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --pad-x: clamp(1.25rem, 5vw, 4rem);
  --pad-y: clamp(2rem, 7vh, 5rem);
  --stack-gap: clamp(1.25rem, 2.5vh, 2rem);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Film grain — 4% opacity, gold-tinted (mask noise → gold fill). */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  background-color: var(--gold);
  opacity: 0.04;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  -webkit-mask-size: 200px 200px;
  mask-size: 200px 200px;
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
}

/* Screen layout — full viewport, centered stack, generous negative space. */
.app { display: block; }

.screen {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad-y) var(--pad-x);
  position: relative;
}

.screen > .intro-stack,
.screen > .question-stack,
.screen > .persona-stack {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: var(--stack-gap);
}

/* Type roles */
.display {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.display--xl { font-size: clamp(2.4rem, 7vw, 4.4rem); font-weight: 600; }
.display--lg { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 500; }
.display--md { font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 500; }

.italic { font-style: italic; }
.gold { color: var(--gold); }

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.eyebrow--gold { color: var(--gold); }

.lede {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.35;
}

.prose {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  max-width: 60ch;
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-warm);
}

/* Buttons — stark, large, sharp corners (per directive). */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 1.15rem 2.4rem;
  min-height: 56px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
  border-radius: 0;
  text-decoration: none;
  align-self: flex-start;
}
.btn:hover, .btn:focus-visible {
  background: var(--gold);
  color: var(--bg);
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--primary { /* alias for explicit primary intent */ }

.link {
  font-family: var(--body);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 0;
  color: var(--text-faint);
  transition: color 200ms ease;
  align-self: flex-start;
}
.link:hover, .link:focus-visible { color: var(--gold); }
.link:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.link--subtle { margin-top: 1.5rem; }

a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 180ms ease;
}
a:hover, a:focus-visible { color: var(--text); }

/* a11y helpers */
.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;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* =============================================================
   Intro screen + Logan Lucky aside
   ============================================================= */

.screen--intro .intro-stack {
  gap: clamp(0.9rem, 2vh, 1.4rem);
}

.display--upper {
  text-transform: uppercase;
  letter-spacing: 0.012em;
}

.intro-stack .lede {
  margin-top: -0.25rem;
  margin-bottom: 0.4rem;
}

.aside-note {
  border: 1px solid var(--gold-line);
  background: var(--gold-soft);
  padding: clamp(1.4rem, 3vw, 1.8rem) clamp(1.4rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: clamp(0.9rem, 2.4vh, 1.5rem);
}

.aside-note .prose {
  font-size: 0.94rem;
  line-height: 1.62;
}
.aside-note__close {
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.4;
  margin-top: 0.2rem;
  color: var(--gold);
}

.btn--center {
  align-self: center;
  margin-top: clamp(1rem, 2.5vh, 1.75rem);
}

/* =============================================================
   Question screen + progress bar + radio options
   ============================================================= */

/* Question layout: progress pinned to top, question + options
   centered in remaining space. Generous negative space per directive. */
.screen--question {
  align-items: stretch;
  justify-content: flex-start;
}

.screen--question .question-stack {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.progress {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
  margin-bottom: clamp(2.5rem, 7vh, 4.5rem);
}

.progress__label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--gold-warm);
  margin: 0;
}

.progress__track {
  width: 100%;
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.progress__fill {
  height: 100%;
  background: var(--gold);
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.question-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vh, 2rem);
  margin-top: auto;
  margin-bottom: auto;
}

.options {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  min-height: 56px;
  border: 1px solid var(--line-strong);
  background: var(--inset);
  cursor: pointer;
  transition: border-color 200ms ease, background-color 200ms ease;
  position: relative;
}

.option:hover { border-color: var(--gold-line); background: var(--gold-soft); }
.option:hover .option__marker { border-color: var(--gold); }

.option--selected {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.option__input {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden; white-space: nowrap;
}

.option__marker {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  margin-top: 4px;
  position: relative;
  transition: border-color 200ms ease;
}

.option--selected .option__marker { border-color: var(--gold); }
.option--selected .option__marker::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.option__label {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text);
  flex: 1;
}

.option:has(.option__input:focus-visible) {
  border-color: var(--gold);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* =============================================================
   Persona output card
   ============================================================= */

.screen--persona .persona-stack {
  gap: clamp(0.95rem, 2.4vh, 1.5rem);
}

.screen--persona .display--lg.gold {
  color: var(--gold);
  margin-top: -0.15rem;
  margin-bottom: 0.15rem;
  text-wrap: balance;
}

.notice {
  border: 1px solid var(--gold-line);
  background: var(--gold-soft);
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1.15rem, 3vw, 1.6rem);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
}

.notice .prose { font-size: 0.94rem; line-height: 1.6; }

.range {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--text-dim);
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4em;
}

.range__value {
  font-family: var(--display);
  color: var(--gold);
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.005em;
}

.practice {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.practice__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practice__item {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
}

.practice__item::before {
  content: '·';
  position: absolute;
  left: 0.45rem;
  top: -0.18em;
  color: var(--gold);
  font-size: 1.7em;
  line-height: 1;
}

.comm {
  margin-top: 0.2rem;
}

.comm__label {
  margin-right: 0.35em;
}

.screen--persona .btn--center {
  margin-top: clamp(1rem, 2.5vh, 1.6rem);
}

/* =============================================================
   Tool B — Pitch Companion
   Cinematic vertical scroll. 10 sections, generous negative space.
   Two motion moments only per directive: cold-open shimmer-in +
   IntersectionObserver fade-ups. prefers-reduced-motion already
   neutralizes all transitions globally above.
   ============================================================= */

/* Pitch shell escapes the .screen single-viewport contract. */
.pitch-shell {
  display: block;
  width: 100%;
  position: relative;
}

/* Sticky scroll progress at top of viewport. */
.pitch-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--line);
  z-index: 8000;
  pointer-events: none;
}
.pitch-progress__fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 80ms linear;
}

.pitch {
  display: block;
  width: 100%;
}

/* Chapter base — fade-up on scroll into view */
.chapter {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 12vh, 8rem) var(--pad-x);
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.chapter.is-visible { opacity: 1; transform: none; }

.chapter__inner {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.4vh, 1.5rem);
}
.chapter__inner--center {
  align-items: center;
  text-align: center;
}

.chapter__num {
  color: var(--gold-warm);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
}
.chapter__lede {
  color: var(--text-dim);
  font-size: 1rem;
  margin-top: -0.25rem;
  max-width: 60ch;
}

.prose-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 60ch;
}

/* Cold Open — full viewport, cinematic centering, shimmer-in title */
.chapter--cold-open {
  min-height: 100vh;
  min-height: 100dvh;
  align-items: center;
  border-top: 0;
  position: relative;
  padding: clamp(5rem, 14vh, 9rem) var(--pad-x);
  opacity: 1;
  transform: none;
}
.cold-open__brand { letter-spacing: 0.36em; opacity: 0.85; }
.cold-open__title {
  font-size: clamp(3.4rem, 12vw, 8.5rem);
  font-weight: 600;
  letter-spacing: 0.012em;
  line-height: 1.0;
  margin: clamp(1rem, 3vh, 2rem) 0 clamp(1rem, 2vh, 1.5rem);
  background: linear-gradient(
    100deg,
    var(--text) 0%,
    var(--text) 35%,
    var(--gold) 50%,
    var(--text) 65%,
    var(--text) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerIn 2400ms cubic-bezier(0.22, 1, 0.36, 1) 200ms both;
}
.cold-open__tagline {
  color: var(--gold);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
}

@keyframes shimmerIn {
  0%   { background-position: 100% 0; opacity: 0; transform: translateY(8px); }
  35%  { opacity: 1; transform: translateY(0); }
  100% { background-position: 0% 0; opacity: 1; transform: none; }
}

.scroll-prompt {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 3rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-faint);
}
.scroll-prompt__label { letter-spacing: 0.3em; font-size: 0.7rem; }
.scroll-prompt__chev {
  font-size: 1.2rem;
  color: var(--gold);
  animation: scrollBounce 2200ms ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* Logline display line */
.logline {
  text-wrap: balance;
  max-width: 22ch;
}

/* Display—XXL for cold open scale */
.display--xxl {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.02;
}

/* =================== Cards (comparables / crew / incentives) =================== */

.cards {
  list-style: none;
  padding: 0;
  margin: clamp(0.5rem, 1.5vh, 1rem) 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.card {
  border: 1px solid var(--line-strong);
  background: var(--inset);
  transition: border-color 220ms ease, background-color 220ms ease,
              opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(16px);
}
.card.is-visible { opacity: 1; transform: none; }
.card:hover { border-color: var(--gold-line); }

.card__head {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.6rem 1.5rem;
  padding: 1.05rem 1.3rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-family: var(--body);
}
.card__head:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.card__title {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  letter-spacing: 0.012em;
  line-height: 1.25;
  grid-column: 1;
}
.card__meta {
  font-size: 0.74rem;
  color: var(--text-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  grid-column: 2;
  justify-self: end;
  text-align: right;
  line-height: 1.5;
}
.card__box {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 600;
  grid-column: 3;
  justify-self: end;
  text-align: right;
  line-height: 1.4;
}
.card__chev {
  grid-column: 3;
  justify-self: end;
  font-family: var(--body);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  transition: transform 240ms ease;
  align-self: center;
}
.card--expanded .card__chev { transform: rotate(45deg); }

/* When card has a card__box (comparables), use fixed-range columns so meta and
   box align consistently across rows regardless of content length. Without
   this, long meta strings (e.g. "2018 · THE ORCHARD / MOVIEPASS FILMS") crush
   the title column and force titles like "HELL OR HIGH WATER" to wrap to 3
   lines. minmax() ranges keep desktop alignment clean and let the existing
   mobile breakpoint at 640px collapse to a 2-column stack. */
.card__head:has(.card__box) {
  grid-template-columns: minmax(8rem, 14rem) minmax(11rem, 16rem) minmax(0, 1fr) auto;
  gap: 0.6rem 1.5rem;
}
.card__head:has(.card__box) .card__chev { grid-column: 4; }
.card__head:has(.card__box) .card__title {
  font-size: clamp(0.98rem, 1.7vw, 1.15rem);
}
.card__head:has(.card__box) .card__box {
  text-align: right;
  white-space: normal;
}

.card__detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.card__detail-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 1.3rem;
}
.card--expanded .card__detail {
  grid-template-rows: 1fr;
}
.card--expanded .card__detail-inner {
  padding: 0 1.3rem 1.2rem;
}
.card__detail-inner .prose { padding-top: 0.2rem; }
.card__detail-inner .prose + .prose { margin-top: 0.65rem; }
.card__detail-inner .prose.italic.gold {
  color: var(--gold);
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.45;
}

/* Casting wishlist — sub-element inside expanded character card detail.
   Set off by a thin gold rule + a small gold-warm label, with the names in
   dimmed body italic. Only renders when the data entry has castingWishlist. */
.card__casting {
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--gold-line);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.card__casting-label {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  color: var(--gold-warm);
}
.card__casting-names {
  font-family: var(--body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-dim);
  font-style: italic;
}

/* Logan Lucky context — sibling to comp tiles, not a 5th tile.
   Centered, smaller type, gold rule above + below. Per Comps Architecture v2. */
.ll-context {
  margin: clamp(1.6rem, 4vh, 2.4rem) auto 0;
  padding: clamp(1.1rem, 2.6vh, 1.5rem) 1rem;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 56ch;
  align-self: center;
}
.ll-context__eyebrow {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.34em;
}
.ll-context__body {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: none;
  margin: 0 auto;
}

/* =================== Story Engine — three movements =================== */

.movements {
  display: flex;
  flex-direction: column;
  gap: clamp(1.4rem, 3vh, 2rem);
  margin-top: clamp(0.5rem, 2vh, 1.25rem);
}
.movement {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.5rem;
  row-gap: 0.4rem;
  border-left: 1px solid var(--gold-line);
  padding-left: 1.4rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.movement.is-visible { opacity: 1; transform: none; }
.movement__num {
  grid-row: 1;
  grid-column: 1;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  align-self: center;
}
.movement__title {
  grid-row: 1;
  grid-column: 2;
  margin: 0;
}
.movement .prose {
  grid-row: 2;
  grid-column: 1 / -1;
}

/* =================== Package ledger =================== */

.ledger {
  margin: clamp(0.5rem, 1.5vh, 1rem) 0 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.ledger__row {
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) 1fr;
  gap: 1.4rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.ledger__row.is-visible { opacity: 1; transform: none; }
.ledger__label {
  color: var(--gold-warm);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  margin: 0;
}
.ledger__value {
  color: var(--text);
  font-family: var(--body);
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
}

/* =================== The Ask =================== */

.chapter--ask .chapter__inner { gap: 1.25rem; }
.ask-block { gap: 1rem; max-width: 60ch; }
.ask-cta { margin: 0.5rem 0; }
.ask-cta__link {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.005em;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 0.15em;
  transition: color 200ms ease, border-color 200ms ease;
}
.ask-cta__link:hover, .ask-cta__link:focus-visible {
  color: var(--text);
  border-bottom-color: var(--gold);
}
.closing-tagline {
  margin-top: clamp(1.2rem, 3vh, 2rem);
  text-wrap: balance;
}
.ask-retake { margin-top: 1.5rem; opacity: 0.7; }
.ask-retake:hover { opacity: 1; }

/* =================== Footer =================== */

.pitch-footer {
  border-top: 1px solid var(--line);
  padding: clamp(2rem, 5vh, 3rem) var(--pad-x);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--text-faint);
}
.pitch-footer__entity { color: var(--text-faint); opacity: 0.75; font-size: 0.7rem; }

/* Mobile breakpoint */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .screen > .intro-stack,
  .screen > .question-stack,
  .screen > .persona-stack { gap: 1.4rem; }
  .btn { width: 100%; padding: 1.1rem 1.5rem; align-self: stretch; }
  .btn--center { align-self: stretch; }
  .link, .link--subtle { align-self: center; }
  .aside-note { padding: 1.25rem; }

  .progress { margin-bottom: clamp(1.5rem, 4vh, 2.5rem); }
  .option { padding: 0.95rem 1.1rem; gap: 0.85rem; }
  .option__label { font-size: 0.96rem; }
  .question-content { gap: 1.1rem; }

  .screen--persona .persona-stack { gap: 1.1rem; }
  .practice__item { font-size: 0.96rem; }
  .notice { padding: 1rem 1.1rem; }

  /* Tool B */
  .chapter { padding: clamp(2.5rem, 8vh, 4.5rem) var(--pad-x); }
  .chapter--cold-open { padding-top: clamp(4rem, 14vh, 7rem); }
  .cold-open__title { font-size: clamp(3rem, 18vw, 5rem); }
  .card__head {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 0.4rem;
  }
  .card__head:has(.card__box) {
    grid-template-columns: 1fr auto;
  }
  .card__title { grid-column: 1; grid-row: 1; }
  .card__meta { grid-column: 1; grid-row: 2; justify-self: start; }
  .card__box { grid-column: 2; grid-row: 1; }
  .card__chev { grid-column: 2; grid-row: 2; justify-self: end; }
  .card__head:has(.card__box) .card__chev { grid-column: 2; grid-row: 2; }

  .ll-context {
    padding: 1rem 0.5rem;
    margin-top: 1.4rem;
  }
  .ll-context__body { font-size: 0.8rem; }

  .ledger__row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 0.85rem 0;
  }
  .ask-cta__link { font-size: 1.05rem; }
  .movement {
    grid-template-columns: 1fr;
    padding-left: 1rem;
  }
  .movement__num { grid-column: 1; grid-row: 1; }
  .movement__title { grid-column: 1; grid-row: 2; margin-top: 0.2rem; }
  .movement .prose { grid-row: 3; }
}
