/* ------------------------------------------------------------------
   Schola Nova — landing page
   Paper & ink. Warm off-white paper, near-black Times-family serif,
   graphite rules, one deep ink-blue accent, and an ink-blue drench for
   the thesis stage and the closing call.
------------------------------------------------------------------- */

:root {
  --bg: #f7f5f1;                      /* paper; hex so GSAP can tween to it */
  --bg-2: oklch(0.99 0.003 85);       /* a fresh sheet, for cards */
  --bg-3: oklch(0.94 0.008 85);
  --line: oklch(0.80 0.012 80);
  --line-soft: oklch(0.88 0.010 80);
  --ink: oklch(0.19 0.012 262);
  --ink-2: oklch(0.36 0.012 262);
  --ink-3: oklch(0.47 0.012 262);
  --paper: #f7f5f1;
  --paper-2: oklch(0.86 0.03 262);    /* muted paper on blue */
  --accent: oklch(0.42 0.15 262);     /* fountain-pen blue */
  --accent-ink: #f7f5f1;
  --accent-soft: oklch(0.42 0.15 262 / 0.09);
  --cobalt: #12295f;                  /* the drench; hex so GSAP can tween to it */
  --cobalt-2: #0d1f4a;
  --gold: oklch(0.86 0.09 82);        /* emphasis on blue */
  --ok: oklch(0.46 0.12 150);
  --warn: oklch(0.52 0.13 70);
  --no: oklch(0.50 0.18 25);
  --hand: oklch(0.32 0.08 262);       /* pen ink */

  --sans: "Tinos", "Times New Roman", Times, "Liberation Serif", serif;
  --serif: "Tinos", "Times New Roman", Times, "Liberation Serif", serif;
  --hand-font: "Caveat", "Segoe Print", "Bradley Hand", cursive;

  --gutter: clamp(1.25rem, 5vw, 5rem);
  --measure: 62ch;
  --radius: 4px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --z-nav: 30;
  --z-skip: 40;

  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.125rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; font-weight: 400; text-wrap: balance; letter-spacing: -0.01em; }
p { margin: 0; text-wrap: pretty; }
em { font-family: var(--serif); font-style: italic; font-weight: inherit; letter-spacing: 0; }
a { color: inherit; }
img, svg { max-width: 100%; }
table { border-collapse: collapse; }

.muted { color: var(--ink-2); }
.math { font-family: var(--serif); font-style: italic; }

/* ---------- skip link ---------- */
.skip-link {
  position: fixed; left: 1rem; top: -4rem; z-index: var(--z-skip);
  padding: .6rem 1rem; background: var(--accent); color: var(--accent-ink);
  border-radius: var(--radius); font-weight: 700; text-decoration: none;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.4rem; border-radius: var(--radius);
  font: 700 1.0625rem/1 var(--sans); text-decoration: none; white-space: nowrap;
  border: 1px solid transparent;
  transition: transform .25s var(--ease-out), background-color .25s var(--ease-out), border-color .25s var(--ease-out), color .25s var(--ease-out);
}
.btn:active { transform: translateY(1px); }
.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { background: var(--cobalt); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: var(--bg-2); }
.btn--sm { padding: .6rem 1rem; font-size: .9375rem; }
.btn--lg { padding: 1.05rem 1.8rem; font-size: 1.125rem; }
.btn:focus-visible, a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem var(--gutter);
  background: oklch(0.97 0.005 85 / 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-out), transform .35s var(--ease-out);
}
.nav.is-scrolled { border-bottom-color: var(--line-soft); }
.nav.is-hidden { transform: translateY(-110%); }
.nav__brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; font-size: 1.15rem; text-decoration: none; letter-spacing: 0; }
.nav__mark { width: 22px; height: 22px; color: var(--accent); }
.nav__links { display: flex; gap: 1.75rem; }
.nav__links a { text-decoration: none; color: var(--ink-2); font-size: .9375rem; }
.nav__links a:hover { color: var(--ink); }
@media (max-width: 760px) { .nav__links { display: none; } }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: calc(6rem + 2vh) var(--gutter) 5rem;
  position: relative;
}
.hero::before {
  /* faint ruled board lines */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(to bottom, transparent 0 47px, oklch(0 0 0 / 0.07) 47px 48px);
  mask-image: radial-gradient(120% 90% at 30% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(120% 90% at 30% 40%, #000 30%, transparent 80%);
}
.hero__copy { position: relative; max-width: 40rem; }
.hero__title {
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.hero__title .line { display: block; }
.hero__title em { color: var(--accent); }
.hero__lede { margin-top: 1.6rem; max-width: var(--measure); color: var(--ink-2); font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.55; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero__note { margin-top: 1.5rem; color: var(--ink-3); font-size: .9375rem; }

/* session mockup */
.hero__visual { position: relative; }
.session {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 1rem 1.1rem 1.1rem;
  box-shadow: 0 30px 60px -32px oklch(0.2 0.02 262 / 0.45);
  font-size: .9375rem;
  display: grid; gap: .8rem;
  transform: rotate(-0.6deg);
}
.session__bar { display: flex; align-items: center; gap: .75rem; color: var(--ink-3); font-size: .8125rem; }
.session__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.session__title { flex: 1; }
.session__modes { display: flex; gap: 2px; background: var(--bg-3); border-radius: 999px; padding: 2px; }
.session__modes span { padding: .2rem .6rem; border-radius: 999px; }
.session__modes .is-on { background: var(--ink); color: var(--paper); font-weight: 700; }
.session__problem { color: var(--ink-2); }
.session__canvas {
  position: relative; min-height: 190px;
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-family: var(--hand-font); font-size: 1.55rem; line-height: 1.35; color: var(--hand);
}
.ink { white-space: nowrap; }
.ink sup { font-size: .6em; }
.ink--wrong { color: oklch(0.42 0.05 262); }
.check {
  position: absolute; right: .8rem;
  font: 700 .74rem/1 var(--sans); letter-spacing: .01em;
  color: var(--ok); background: oklch(0.46 0.12 150 / 0.08);
  border: 1px solid oklch(0.46 0.12 150 / 0.35);
  padding: .3rem .55rem; border-radius: 999px;
}
.check-1 { top: 1.1rem; } .check-2 { top: 3.4rem; } .check-3 { top: 5.7rem; }
.check--flag { color: var(--warn); background: oklch(0.52 0.13 70 / 0.08); border-color: oklch(0.52 0.13 70 / 0.4); }
.session__tutor { display: grid; gap: .5rem; }
.tutor {
  position: relative; background: var(--bg-3); border-radius: var(--radius); padding: .75rem .9rem .75rem 3.4rem;
  color: var(--ink); line-height: 1.45;
}
.tutor__who { position: absolute; left: .9rem; top: .8rem; font-size: .74rem; font-weight: 700; letter-spacing: .02em; color: var(--accent); }
.tutor__hint { display: inline-block; margin-left: .6rem; font-size: .72rem; font-weight: 600; color: var(--ink-3); border: 1px solid var(--line); border-radius: 999px; padding: .1rem .5rem; vertical-align: middle; }
.session__evidence { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .8125rem; color: var(--ink-2); }
.ev { border: 1px solid var(--line-soft); border-radius: 999px; padding: .3rem .7rem; }
.ev b { color: var(--ink); font-weight: 600; }

/* hero motion targets: visible by default; JS animates from */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 6rem; gap: 3rem; min-height: 0; }
  .session { transform: none; }
}
@media (max-width: 560px) {
  .session__title { display: none; }
  .session__canvas { font-size: 1.3rem; padding-bottom: .8rem; min-height: 0; }
  .ink { white-space: normal; }
  .check { position: static; display: inline-block; margin: .6rem .3rem 0 0; }
}

/* ---------- thesis (pinned) ---------- */
.thesis { position: relative; background: var(--bg); }
.thesis__stage {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
}
.thesis__wrap {
  position: relative;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.scene { position: absolute; inset: 0; padding: 0 var(--gutter); }
.beat {
  position: absolute;
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
  font-weight: 400;
  max-width: 34rem;
  text-wrap: balance;
}
.beat em { color: var(--accent); }
.scene-2 { color: var(--paper); }
.scene-2 .beat em { color: var(--gold); }
.conn { position: absolute; background: var(--ink-3); }
.scene-2 .conn { background: var(--paper-2); }

/* Rows: a beat, a connector, a beat, laid out in flow so the line never overlaps text */
.row { position: absolute; display: flex; align-items: center; gap: 1.25rem; }
.row .beat { position: static; }
.row .conn { position: static; flex: 0 0 auto; }

/* Scene 1 layout */
.beat-1 { left: 6%; top: 18%; }
.conn-1 { left: 7%; top: calc(18% + 6.4rem); width: 1px; height: 12%; transform-origin: top; }
.beat-2 { left: 6%; top: calc(30% + 6.6rem); }
.beat-4 { right: 6%; bottom: 16%; text-align: right; font-size: clamp(1.6rem, 3vw, 2.6rem); }

/* Scene 1b: the student flow */
.beat-f0 { left: 6%; top: 12%; color: var(--ink-2); font-weight: 400; font-size: clamp(1.05rem, 1.6vw, 1.35rem); }
.steps { position: absolute; left: 6%; right: 6%; top: 30%; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.steps__line { position: absolute; left: 0; right: 0; top: 5px; height: 1px; background: var(--ink-3); transform-origin: left; }
.step { position: relative; padding-top: 1.6rem; font-size: clamp(.95rem, 1.25vw, 1.15rem); line-height: 1.35; color: var(--ink-2); }
.step p { text-wrap: balance; }
.step__dot { position: absolute; top: 0; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--ink); }
.step--end { color: var(--ink); font-weight: 700; }
.step--end .step__dot { background: var(--accent); box-shadow: 0 0 0 6px var(--accent-soft); }
.step--end em { color: var(--accent); }
.row-f { left: 6%; right: 6%; top: 58%; }
.beat-f1 { max-width: 22rem; }
.conn-f { height: 1px; width: clamp(3rem, 8vw, 8rem); transform-origin: left; }
.beat-f2 { font-size: clamp(1rem, 1.4vw, 1.2rem); font-weight: 400; color: var(--ink-2); max-width: 30rem; }
.beat-f3 { left: 6%; bottom: 12%; }

/* Scene 2 layout */
.row-5 { left: 6%; top: 12%; right: 6%; }
.conn-3 { height: 1px; width: clamp(3rem, 8vw, 8rem); transform-origin: left; }
.beat-6 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
.beat-7 { left: 6%; top: calc(12% + 5.4rem); font-size: clamp(1rem, 1.4vw, 1.2rem); font-weight: 400; color: var(--paper-2); max-width: 34rem; }
.flow-wrap { position: absolute; left: 6%; right: 6%; top: 29%; height: 40%; display: flex; align-items: flex-start; }
.flow { width: 100%; height: 100%; }
.beat-8 { left: 6%; bottom: 19%; font-size: clamp(1.5rem, 2.6vw, 2.2rem); max-width: 44rem; }
.beat-9 { left: 6%; bottom: 9.5%; font-size: clamp(1rem, 1.3vw, 1.15rem); font-weight: 400; color: var(--paper-2); max-width: 40rem; }

.flow__label { font: 700 15px var(--sans); fill: var(--paper-2); letter-spacing: .01em; }
.flow__t { font: 400 16px var(--sans); fill: var(--paper); }
.flow__t--sub { font: italic 400 15px var(--serif); fill: var(--paper-2); }
.flow .draw { stroke: var(--paper-2); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.flow .draw--accent { stroke: var(--gold); stroke-width: 2; }
.flow .draw--strike { stroke: oklch(0.72 0.17 25); stroke-width: 3; }

.thesis__skip {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  color: var(--ink-3); font-size: .9375rem; text-decoration: underline; text-underline-offset: .25em;
}

/* Stacked fallback: phones and reduced motion. JS adds .is-static to .thesis. */
.thesis.is-static .thesis__stage { height: auto; overflow: visible; }
.thesis.is-static .thesis__wrap { padding-block: 4rem 3rem; }
.thesis.is-static .scene { position: static; padding: 0; display: grid; gap: 1.6rem; }
.thesis.is-static .scene-2 { margin-top: 3.5rem; padding: 2.5rem var(--gutter); background: var(--cobalt); border-radius: 8px; }
.thesis.is-static .beat { position: static; max-width: var(--measure); text-align: left; }
.thesis.is-static .row { position: static; display: grid; gap: 1.6rem; }
.thesis.is-static .scene-flow { margin-top: 3rem; }
.thesis.is-static .steps { position: static; grid-template-columns: 1fr; gap: 1.25rem; padding-left: 1.5rem; border-left: 1px solid var(--line); margin: .5rem 0 1rem; }
.thesis.is-static .steps__line { display: none; }
.thesis.is-static .step { padding-top: 0; }
.thesis.is-static .step__dot { left: calc(-1.5rem - 6px); top: .35rem; }
.thesis.is-static .beat-4 { text-align: left; }
.thesis.is-static .conn, .thesis.is-static .thesis__skip { display: none; }
.thesis.is-static .flow-wrap { position: static; height: auto; display: block; overflow-x: auto; margin: .5rem calc(-1 * var(--gutter)); padding: 0 var(--gutter); -webkit-overflow-scrolling: touch; }
.thesis.is-static .flow { display: block; width: 100%; min-width: 640px; height: auto; }
.thesis.is-static .beat-3 { margin-top: -1rem; }

/* ---------- intro ---------- */
.intro { padding: clamp(5rem, 12vh, 9rem) var(--gutter) clamp(3rem, 6vh, 5rem); max-width: 1200px; margin: 0 auto; }
.intro__title { font-size: clamp(2rem, 4.6vw, 3.8rem); line-height: 1.1; letter-spacing: -0.015em; max-width: 24ch; }
.intro__title .muted { font-weight: 400; }

/* ---------- how ---------- */
.how { max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter) 4rem; display: grid; gap: clamp(4rem, 9vh, 7rem); }
.how__item {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.how__item--flip .how__text { order: 2; }
.how__text h3 { font-size: clamp(1.5rem, 2.6vw, 2.15rem); line-height: 1.15; }
.how__text p { margin-top: 1rem; color: var(--ink-2); max-width: var(--measure); }
.modes { margin: 1.1rem 0 0; padding: 0; list-style: none; display: grid; gap: .45rem; color: var(--ink-2); }
.modes b { color: var(--ink); font-weight: 700; }
.how__fig { margin: 0; }
.how__fig figcaption { margin-top: .85rem; color: var(--ink-3); font-size: .9375rem; }
@media (max-width: 860px) {
  .how__item { grid-template-columns: 1fr; }
  .how__item--flip .how__text { order: 0; }
}

.mock {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; padding: 1.1rem;
  font-size: .9375rem; display: grid; gap: .75rem;
}
.mock__row { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem .7rem; border-radius: var(--radius); background: var(--bg-3); }
.mock__file { color: var(--ink); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock__status { color: var(--ink-3); white-space: nowrap; }
.mock__status.is-done { color: var(--ok); }
.mock__steps { margin-top: .4rem; display: grid; gap: .4rem; }
.mock__step { display: flex; gap: .7rem; align-items: center; color: var(--ink-2); padding: .3rem .2rem; }
.mock__step span { width: 1.6rem; height: 1.6rem; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-size: .78rem; font-weight: 700; color: var(--ink); }
.mock__answer { margin-top: .3rem; padding: .55rem .7rem; border-radius: var(--radius); border: 1px dashed var(--line); color: var(--ink-3); }
.mock__answer b { color: var(--accent); font-weight: 700; }

.ladder { display: grid; gap: .5rem; }
.ladder__rung { display: grid; grid-template-columns: 4rem 1fr; gap: .8rem; padding: .7rem .8rem; border-radius: var(--radius); background: var(--bg-3); color: var(--ink-2); }
.ladder__rung span { font-size: .78rem; font-weight: 700; color: var(--ink-3); align-self: start; padding-top: .15rem; }
.ladder__rung.is-used { color: var(--ink); }
.ladder__rung.is-used span { color: var(--accent); }
.ladder__rung.is-locked { border: 1px dashed var(--line); background: transparent; color: var(--ink-3); }
.mock__meta { color: var(--ink-3); font-size: .875rem; }
.mock__meta b { color: var(--ink); }

.mock__head { display: flex; justify-content: space-between; align-items: baseline; color: var(--ink-2); }
.mock__credit b { color: var(--ink); font-size: 1.35rem; font-weight: 600; margin-left: .3rem; }
.evtable { width: 100%; font-size: .9rem; }
.evtable th { text-align: left; font-weight: 600; color: var(--ink-3); font-size: .78rem; letter-spacing: .01em; padding: .3rem .4rem .55rem; border-bottom: 1px solid var(--line-soft); }
.evtable td { padding: .6rem .4rem; border-bottom: 1px solid var(--line-soft); color: var(--ink-2); vertical-align: middle; }
.evtable td:first-child { color: var(--ink); }
.evtable tr:last-child td { border-bottom: 0; }
.pill { display: inline-block; padding: .22rem .6rem; border-radius: 999px; font-size: .8rem; font-weight: 700; white-space: nowrap; }
.pill--ok { color: var(--ok); background: oklch(0.46 0.12 150 / 0.09); }
.pill--warn { color: var(--warn); background: oklch(0.52 0.13 70 / 0.10); }
.pill--no { color: var(--no); background: oklch(0.50 0.18 25 / 0.09); }

/* ---------- compare ---------- */
.section-title { font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.08; letter-spacing: -0.015em; }
.section-title em { color: var(--accent); }
.compare { max-width: 1200px; margin: 0 auto; padding: clamp(4rem, 10vh, 8rem) var(--gutter); }
.compare__scroll { margin-top: 2.5rem; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare__table { width: 100%; min-width: 640px; font-size: 1rem; }
.compare__table th, .compare__table td { padding: 1.1rem 1rem; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.compare__table thead th { font-weight: 600; color: var(--ink-3); font-size: .9375rem; padding-top: 0; }
.compare__table thead th.is-us { color: var(--accent); }
.compare__table tbody th { font-weight: 400; color: var(--ink); width: 26%; }
.compare__table td { color: var(--ink-2); width: 37%; }
.compare__table td.is-us { color: var(--ink); background: var(--accent-soft); }
.compare__table tbody tr:last-child th, .compare__table tbody tr:last-child td { border-bottom: 0; }
.compare__table tbody tr:last-child td.is-us { font-weight: 700; }

@media (max-width: 640px) {
  .compare__scroll { overflow: visible; }
  .compare__table { min-width: 0; }
  .compare__table thead { display: none; }
  .compare__table tbody tr { display: grid; gap: .5rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line-soft); }
  .compare__table tbody tr:last-child { border-bottom: 0; }
  .compare__table tbody th, .compare__table td { display: block; padding: 0; border: 0; width: auto; }
  .compare__table tbody th { font-size: 1.125rem; margin-bottom: .2rem; }
  .compare__table td::before { content: attr(data-label); display: block; font-size: .78rem; font-weight: 600; color: var(--ink-3); margin-bottom: .1rem; }
  .compare__table td.is-us { background: none; }
  .compare__table td.is-us::before { color: var(--accent); }
}

/* ---------- instructors ---------- */
.instructors { max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter) clamp(4rem, 10vh, 8rem); }
.instructors__head { max-width: 46rem; }
.instructors__head p { margin-top: 1rem; color: var(--ink-2); font-size: 1.125rem; }
.facts { margin: 3rem 0 0; display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line-soft); }
.fact { padding: 1.75rem 1.5rem 1.75rem 0; border-bottom: 1px solid var(--line-soft); }
.fact dt { font-weight: 700; font-size: 1.2rem; }
.fact dd { margin: .6rem 0 0; color: var(--ink-2); max-width: 44ch; }
@media (min-width: 620px) { .facts { grid-template-columns: 1fr 1fr; } .fact:nth-child(odd) { padding-right: 2.5rem; } .fact:nth-child(even) { padding-left: 2.5rem; border-left: 1px solid var(--line-soft); } }

/* ---------- cta ---------- */
.cta {
  margin: 0 var(--gutter) 4rem; padding: clamp(4rem, 10vh, 7rem) var(--gutter);
  background: var(--cobalt); color: var(--paper); border-radius: 8px; text-align: center;
  display: grid; justify-items: center; gap: 1.25rem;
}
.cta__title { font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1.05; letter-spacing: -0.015em; max-width: 18ch; }
.cta__title em { color: var(--gold); }
.cta__lede { color: var(--paper-2); max-width: 40ch; font-size: 1.125rem; }
.cta .btn--accent { margin-top: .5rem; background: var(--paper); color: var(--cobalt); }
.cta .btn--accent:hover { background: #fff; }
.cta__fine { color: var(--paper-2); font-size: .9375rem; }

/* ---------- footer ---------- */
.footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1.5rem var(--gutter) 2.5rem; color: var(--ink-3); font-size: .9375rem; border-top: 1px solid var(--line-soft); }

/* ---------- motion prefs ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
