/* ============================================================
   PrepHike — Light editorial premium · deep forest green
   Type: Schibsted Grotesk (UI/display) · Fraunces italic (soul)
         JetBrains Mono (labels/numbers)
   ============================================================ */

:root {
  --bg:        #FAFAF8;
  --bg-alt:    #F1F1EC;
  --ink:       #0E0E0C;
  --ink-soft:  #54534D;
  --ink-faint: #8A897F;
  --line:      #E2E1D8;
  --accent:    #1A4D3C;
  --accent-2:  #246b53;
  --accent-soft:#E7F0EB;
  --paper-edge:#EFEEE6;

  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 4.5rem);

  --font-sans: "Schibsted Grotesk", "Segoe UI", sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

a { color: inherit; text-decoration: none; }
em { font-family: var(--font-serif); font-style: italic; font-weight: 500; }

/* ---------- grain texture ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- shared ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.mono-tag {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.accent-word { color: var(--accent); font-family: var(--font-serif); font-style: italic; font-weight: 600; }
.muted { color: var(--ink-faint); }

.h2 {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  font-weight: 700;
  max-width: 16ch;
}

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 9rem) var(--pad);
  border-top: 1px solid var(--line);
}
.section__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__lead {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.55;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--accent); color: #fff;
  font-weight: 600; font-size: .98rem;
  padding: .95rem 1.6rem; border-radius: 100px;
  border: 1px solid var(--accent);
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 34px -14px rgba(14,14,12,.5); }
.btn--sm { padding: .6rem 1.1rem; font-size: .86rem; }
.btn--lg { padding: 1.15rem 2.2rem; font-size: 1.1rem; }

.link-arrow {
  font-weight: 500; color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px; transition: color .3s, border-color .3s;
}
.link-arrow:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem var(--pad);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, padding .4s, background .4s;
}
.nav.scrolled { border-color: var(--line); padding-top: .8rem; padding-bottom: .8rem; }
.nav__brand { font-size: 1.25rem; font-weight: 800; letter-spacing: -.03em; }
.nav__dot { color: var(--accent); }
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-size: .92rem; color: var(--ink-soft); font-weight: 500;
  position: relative; transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 0;
  background: var(--accent); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
@media (max-width: 820px) { .nav__links { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(8rem, 18vw, 13rem) var(--pad) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; max-width: 60rem; }
.hero__title {
  font-size: clamp(2.9rem, 9.2vw, 7rem);
  line-height: .98; letter-spacing: -.04em; font-weight: 800;
  margin-bottom: 2rem;
}
.hero__title span { display: block; }
.hero__title em { color: var(--accent); }
.hero__sub {
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  color: var(--ink-soft); max-width: 50ch; line-height: 1.55;
  margin-bottom: 2.6rem;
}
.hero__cta { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 4.5rem; }
.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  padding-top: 2.4rem; border-top: 1px solid var(--line); max-width: 46rem;
}
.stat__num {
  display: block; font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 700; letter-spacing: -.03em; color: var(--accent); line-height: 1;
}
.stat__label { display: block; margin-top: .7rem; font-size: .85rem; color: var(--ink-soft); line-height: 1.4; }
@media (max-width: 620px) { .hero__stats { grid-template-columns: 1fr; gap: 1.6rem; } }

/* giant watermark */
.hero__mark {
  position: absolute; right: calc(-1 * var(--pad)); bottom: -3vw; z-index: 1;
  pointer-events: none; user-select: none;
}
.hero__mark-line {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(8rem, 26vw, 22rem); line-height: .8;
  color: var(--accent); opacity: .06; letter-spacing: -.04em;
}

/* ---------- problem ---------- */
.problem__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 1.4rem; margin-bottom: 3rem; }
.problem__col {
  padding: 2rem; border: 1px solid var(--line); border-radius: 14px; background: var(--bg);
}
.problem__col--accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.problem__col--accent .mono-tag { color: var(--accent-soft); }
.problem__col .mono-tag { margin-bottom: 1rem; display: block; }
.problem__line {
  font-size: clamp(1.2rem, 2.4vw, 1.85rem); line-height: 1.45; letter-spacing: -.015em;
  max-width: 36ch;
}
.problem__line strong { color: var(--accent); font-weight: 700; }
@media (max-width: 720px) { .problem__grid { grid-template-columns: 1fr; } }

/* ---------- method ---------- */
.phase {
  display: grid; grid-template-columns: 5.5rem 1fr; gap: 1.5rem;
  padding: 1.8rem 0; border-top: 1px solid var(--line); list-style: none;
}
.phases { list-style: none; }
.phase--zero {
  background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 16px; padding: 1.8rem; margin-bottom: 1.5rem;
  grid-template-columns: 5.5rem 1fr;
}
.phase__no {
  font-size: 1.7rem; font-weight: 600; color: var(--accent);
  font-family: var(--font-mono); letter-spacing: 0; line-height: 1;
}
.phase__title { font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 700; letter-spacing: -.02em; margin-bottom: .6rem; }
.phase__body p { color: var(--ink-soft); max-width: 60ch; }
.phase__body strong { color: var(--ink); }
@media (max-width: 620px) {
  .phase, .phase--zero { grid-template-columns: 1fr; gap: .5rem; }
  .phase__no { font-size: 1.3rem; }
}

/* ---------- founders ---------- */
.founder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.founder {
  padding: 2rem 1.8rem; border: 1px solid var(--line); border-radius: 16px;
  background: var(--bg); display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.founder:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -28px rgba(14,14,12,.28); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.founder__jump {
  font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.3rem;
  display: flex; align-items: baseline; gap: .5rem;
}
.founder__pct {
  font-family: var(--font-serif); font-style: italic; font-weight: 600;
  font-size: 2.4rem; color: var(--accent); letter-spacing: -.02em;
}
.founder__name { font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; }
.founder__role { margin: .5rem 0 1.1rem; display: block; }
.founder__bio { font-size: .95rem; color: var(--ink-soft); line-height: 1.55; margin-bottom: 1.4rem; }
.founder__coaches { font-size: .9rem; color: var(--ink); line-height: 1.5; margin-bottom: 1.6rem; }
.founder__coaches .mono-tag { display: block; margin-bottom: .35rem; color: var(--accent); }
.founder__link {
  margin-top: auto; font-weight: 600; font-size: .9rem; color: var(--accent);
  align-self: flex-start; border-bottom: 1px solid transparent; transition: border-color .3s;
}
.founder__link:hover { border-color: var(--accent); }
@media (max-width: 880px) { .founder-grid { grid-template-columns: 1fr; max-width: 30rem; } }

/* ---------- proof / reviews ---------- */
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.review {
  padding: 2.4rem 2.2rem; border: 1px solid var(--line); border-radius: 18px; background: var(--bg);
  display: flex; flex-direction: column; gap: 1.3rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.review:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -28px rgba(14,14,12,.28); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.review__pct {
  font-family: var(--font-serif); font-style: italic; font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 3.4rem); color: var(--accent); line-height: 1; letter-spacing: -.02em;
}
.review__quote { font-size: 1.18rem; line-height: 1.5; color: var(--ink); letter-spacing: -.01em; margin: 0; }
.review__line { font-size: 1.08rem; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.review__by { display: flex; flex-direction: column; gap: .3rem; margin-top: auto; }
.review__name { font-weight: 700; font-size: 1.05rem; }
.review__role { color: var(--ink-faint); }
.review__link { font-weight: 600; font-size: .88rem; color: var(--accent); align-self: flex-start; margin-top: .4rem; border-bottom: 1px solid transparent; transition: border-color .3s; }
.review__link:hover { border-color: var(--accent); }
.proof__note { margin-top: 2.4rem; font-size: .9rem; color: var(--ink-faint); line-height: 1.5; max-width: 60ch; }
@media (max-width: 760px) { .review-grid { grid-template-columns: 1fr; } }

/* ---------- pricing ---------- */
.price-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-bottom: 3.5rem; }
.price-card {
  padding: 2rem 1.8rem; border: 1px solid var(--line); border-radius: 16px; background: var(--bg);
  display: flex; flex-direction: column;
}
.price-card--accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.price-card--accent .mono-tag, .price-card--accent .price-card__desc { color: var(--accent-soft); }
.price-card__step { margin-bottom: 1.6rem; }
.price-card__amt {
  font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700; letter-spacing: -.04em; line-height: 1;
  margin-bottom: .6rem;
}
.price-card--accent .price-card__amt { font-family: var(--font-serif); font-style: italic; font-weight: 600; }
.price-card__name { font-weight: 600; font-size: 1.05rem; margin-bottom: .7rem; }
.price-card__desc { font-size: .9rem; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 820px) { .price-flow { grid-template-columns: 1fr; max-width: 28rem; } }

/* staircase — architectural step profile: each block draws its tread + riser,
   all resting on a ground line; steps tick up in sequence on view */
.stairs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  align-items: end; margin-bottom: 2.4rem;
  border-bottom: 3px solid var(--accent);   /* the ground the staircase rests on */
}
.stair {
  display: flex; flex-direction: column;
  padding: 1.5rem 1.4rem; background: var(--bg);
  border-top: 3px solid var(--accent);      /* tread (the step you stand on) */
  border-left: 2px solid var(--accent);     /* riser (the vertical face) */
  position: relative;
}
.stair:last-child { border-right: 2px solid var(--accent); }
.stair:nth-child(1) { min-height: 13.5rem; }
.stair:nth-child(2) { min-height: 17.5rem; }
.stair:nth-child(3) { min-height: 21.5rem; }
.stair:nth-child(4) { min-height: 25.5rem; }
.stair--top { background: var(--accent); color: #fff; }
.stair--top .stair__desc, .stair--top .mono-tag { color: var(--accent-soft); }
.stair__step { display: block; margin-bottom: 1rem; }
.stair__amt { font-size: clamp(1.55rem, 2.6vw, 2.15rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; margin-bottom: .55rem; }
.stair--top .stair__amt { font-family: var(--font-serif); font-style: italic; font-weight: 600; }
.stair__name { font-weight: 600; font-size: 1rem; margin-bottom: .55rem; letter-spacing: -.01em; }
.stair__desc { font-size: .86rem; color: var(--ink-soft); line-height: 1.5; }
/* climb-in: each step ticks up, one after another */
.stairs .stair { opacity: 0; }
.stairs.climb .stair { animation: stepUp .5s var(--ease) forwards; }
.stairs.climb .stair:nth-child(1) { animation-delay: .05s; }
.stairs.climb .stair:nth-child(2) { animation-delay: .24s; }
.stairs.climb .stair:nth-child(3) { animation-delay: .43s; }
.stairs.climb .stair:nth-child(4) { animation-delay: .62s; }
@keyframes stepUp {
  0%   { opacity: 0; transform: translateY(32px); }
  65%  { opacity: 1; transform: translateY(-5px); }
  100% { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .stairs .stair { opacity: 1 !important; }
  .stairs.climb .stair { animation: none !important; }
}
.stairs__safety {
  padding: 1.15rem 1.5rem; background: var(--accent-soft); border-radius: 12px;
  font-size: .95rem; color: var(--ink); margin-bottom: 3rem; line-height: 1.5;
  border: 1px solid color-mix(in srgb, var(--accent) 15%, transparent);
}
.stairs__safety .mono-tag { color: var(--accent); margin-right: .5rem; }
.ex-walk { font-size: 1.05rem; line-height: 1.65; color: var(--ink); max-width: 62ch; margin-bottom: 1rem; }
@media (max-width: 980px) {
  .stairs { grid-template-columns: 1fr; align-items: stretch; gap: .6rem; border-bottom: none; }
  .stair {
    min-height: 0 !important;
    border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 12px;
  }
  .stair--top { border-color: var(--accent); }
}

.examples .mono-tag { display: block; margin-bottom: 1rem; }
.ex-table { width: 100%; border-collapse: collapse; font-size: .98rem; }
.ex-table th {
  text-align: left; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-faint); font-weight: 500;
  padding: .8rem 1rem; border-bottom: 1px solid var(--line);
}
.ex-table td { padding: 1rem; border-bottom: 1px solid var(--line); }
.ex-table tbody tr:last-child td { border-bottom: none; }
.ex-table td:last-child { color: var(--accent); font-weight: 600; }
.ex-note { margin-top: 1.4rem; font-size: .82rem; color: var(--ink-faint); line-height: 1.5; max-width: 60ch; }

/* ---------- coverage / skill clouds ---------- */
.cov { margin-bottom: 2.4rem; }
.cov__head {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; margin-bottom: 1.2rem;
}
.cov__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.cov__dot--no { background: var(--ink-faint); }
.track-cloud {
  padding: 1.3rem 1.5rem; border: 1px solid var(--line); border-radius: 16px;
  background: var(--bg); margin-bottom: .8rem;
}
.track-cloud--no { background: var(--bg-alt); }
.track-cloud__name { font-weight: 600; font-size: 1.02rem; margin-bottom: 1rem; letter-spacing: -.01em; }
.track-cloud__tag {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-left: .5rem;
}
.cloud { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill {
  padding: .45rem .95rem; border-radius: 100px; font-size: .85rem;
  border: 1px solid var(--line); background: var(--bg); line-height: 1.2;
  transition: transform .25s var(--ease);
}
.pill--coach {
  background: var(--accent-soft); color: var(--accent); font-weight: 500;
  border-color: color-mix(in srgb, var(--accent) 22%, transparent);
}
.pill--coach:hover { transform: translateY(-2px); }
.pill--no { color: var(--ink-faint); border-style: dashed; background: transparent; }

/* ---------- who ---------- */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.who-col { padding: 2.2rem; border-radius: 16px; border: 1px solid var(--line); }
.who-col--yes { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 18%, transparent); }
.who-col--no { background: var(--bg-alt); }
.who-col__head { font-weight: 700; font-size: 1.15rem; margin-bottom: 1.4rem; letter-spacing: -.01em; }
.who-list { list-style: none; }
.who-list li { padding: .65rem 0 .65rem 1.7rem; position: relative; border-bottom: 1px dashed var(--line); color: var(--ink); }
.who-list li:last-child { border-bottom: none; }
.who-col--yes .who-list li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.who-col--no .who-list li::before { content: "—"; position: absolute; left: 0; color: var(--ink-faint); }
.who-note { margin-top: 1.4rem; font-size: .88rem; color: var(--ink-soft); line-height: 1.5; font-style: italic; }
@media (max-width: 720px) { .who-grid { grid-template-columns: 1fr; } }

/* ---------- faq ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; letter-spacing: -.01em;
  transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item__icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-item__icon::before, .faq-item__icon::after {
  content: ""; position: absolute; background: var(--accent); transition: transform .3s var(--ease);
}
.faq-item__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-item__icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item[open] .faq-item__icon::after { transform: scaleY(0); }
.faq-item p { padding: 0 0 1.6rem; color: var(--ink-soft); max-width: 62ch; line-height: 1.6; }

/* ---------- final cta ---------- */
.cta { border-top: 1px solid var(--line); }
.cta__inner {
  background: var(--accent); color: #fff; border-radius: 24px;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem); text-align: center;
  position: relative; overflow: hidden;
}
.cta__inner .kicker { color: var(--accent-soft); }
.cta__title { font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: 1.02; letter-spacing: -.03em; font-weight: 700; max-width: 18ch; margin: 0 auto 1.5rem; }
.cta__title em { color: #fff; opacity: .85; }
.cta__sub { color: var(--accent-soft); max-width: 44ch; margin: 0 auto 2.5rem; font-size: 1.08rem; }
.cta .btn--lg { background: #fff; color: var(--accent); border-color: #fff; }
.cta .btn--lg:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.cta__fine { display: block; margin-top: 1.6rem; color: color-mix(in srgb, var(--accent-soft) 70%, transparent); }

/* ---------- footer ---------- */
.footer {
  max-width: var(--maxw); margin: 0 auto; padding: 4rem var(--pad);
  border-top: 1px solid var(--line); text-align: center;
}
.footer__brand { font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: .6rem; }
.footer__tag { font-family: var(--font-serif); font-style: italic; color: var(--ink-soft); font-size: 1.15rem; margin-bottom: 2rem; }
.footer__links { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.footer__links a { font-size: .9rem; color: var(--ink-soft); transition: color .3s; }
.footer__links a:hover { color: var(--accent); }
.footer__fine { font-size: .8rem; color: var(--ink-faint); }

/* ---------- legal / terms page ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(7rem, 14vw, 10rem) var(--pad) 4rem; }
.legal__back { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); display: inline-block; margin-bottom: 2.4rem; }
.legal__back:hover { text-decoration: underline; }
.legal__title { font-size: clamp(2.4rem, 6vw, 3.8rem); letter-spacing: -.03em; font-weight: 700; line-height: 1.02; margin-bottom: .7rem; }
.legal__meta { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1.6rem; }
.legal__intro { font-size: 1.12rem; color: var(--ink-soft); line-height: 1.6; padding-bottom: 2.4rem; border-bottom: 1px solid var(--line); margin-bottom: 1rem; }
.legal h2 { font-size: 1.35rem; letter-spacing: -.02em; font-weight: 700; margin: 2.8rem 0 .9rem; color: var(--ink); }
.legal h2 .num { font-family: var(--font-mono); color: var(--accent); font-size: .95rem; margin-right: .55rem; }
.legal p { color: var(--ink-soft); line-height: 1.68; margin-bottom: 1rem; }
.legal ul { margin: 0 0 1.1rem 1.2rem; }
.legal li { color: var(--ink-soft); line-height: 1.6; margin-bottom: .55rem; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a:not(.legal__back) { color: var(--accent); border-bottom: 1px solid var(--line); }
.legal a:not(.legal__back):hover { border-color: var(--accent); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease) var(--d,0s), transform .8s var(--ease) var(--d,0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
