/* ────────────────────────────────────────────────────────────
   TILCAYO — styles
   Palette: cloud-forest green, mist cream, rosette amber, bark ink.
   ──────────────────────────────────────────────────────────── */
:root {
  --forest: #0d2b1e;
  --forest-2: #143b2a;
  --forest-3: #1b4a35;
  --moss: #2f6b48;
  --mist: #f3eee2;
  --mist-2: #e9e1cd;
  --mist-3: #d9cfb5;
  --amber: #f2a93b;
  --amber-2: #ffc46a;
  --amber-deep: #a8620c;   /* large text on cream (≥4:1) */
  --amber-ink: #8f5210;    /* small text on cream (≥4.7:1) */
  --bark: #2a1f16;
  --ink: #12100d;
  --cream-text: #f6f1e6;
  --cream-muted: rgba(246, 241, 230, 0.68);
  --ink-muted: rgba(18, 16, 13, 0.64);
  --up: #7fe0a2;
  --down: #ff8e7a;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --radius: 22px;
  --radius-sm: 12px;
  --shadow-hard: 5px 5px 0 var(--bark);
  --wrap: 1120px;
  --gutter: clamp(16px, 4vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--cream-text);
  background: var(--forest);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
code { font-family: var(--font-mono); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 10vw, 128px); position: relative; }
[id] { scroll-margin-top: 76px; }
.section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section__head .lede { margin-top: 14px; }

/* ── themes ─────────────────────────────────────────────── */
.theme-dark {
  color: var(--cream-text);
  background:
    radial-gradient(70% 55% at 15% 0%, rgba(255,255,255,.07), transparent 60%),
    radial-gradient(50% 45% at 90% 20%, rgba(242,169,59,.10), transparent 60%),
    radial-gradient(60% 50% at 50% 110%, rgba(47,107,72,.45), transparent 60%),
    var(--forest);
}
.theme-paper {
  color: var(--ink);
  background: var(--mist);
  position: relative;
  isolation: isolate;
}
.theme-paper::before {
  /* paper grain */
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .35; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.15 0 0 0 0 0.1 0 0 0 .14 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ── type ───────────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  letter-spacing: -0.025em;
  line-height: 0.96;
  margin: 0 0 .35em;
  text-wrap: balance;
}
h1.display { font-size: clamp(46px, 7.6vw, 96px); }
h2.display { font-size: clamp(38px, 5.4vw, 66px); }
h2.display--sm { font-size: clamp(30px, 3.8vw, 44px); line-height: 1.02; }
.display em { font-style: italic; font-weight: 800; color: var(--amber); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.theme-paper .display em { color: var(--amber-deep); }
h3 { font-family: var(--font-display); font-weight: 800; font-variation-settings: "opsz" 48, "SOFT" 60, "WONK" 1; letter-spacing: -0.01em; line-height: 1.1; margin: 0 0 .4em; font-size: clamp(21px, 2.2vw, 26px); }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--amber); margin: 0 0 18px;
}
.theme-paper .kicker { color: var(--amber-ink); }
.kicker--ink { color: var(--ink); }
.kicker--pill {
  padding: 8px 14px 8px 10px; border-radius: 18px; align-items: flex-start; max-width: 100%;
  border: 1px solid rgba(242,169,59,.35); background: rgba(242,169,59,.08); line-height: 1.5;
}
.kicker--pill .dot { flex: 0 0 auto; margin-top: 5px; }
.kicker--pill time { white-space: nowrap; }
.kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--up); box-shadow: 0 0 0 4px rgba(127,224,162,.18); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.25); } }

.lede { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.5; max-width: 58ch; margin: 0; color: var(--cream-muted); }
.theme-paper .lede { color: var(--ink-muted); }
.lede strong { color: var(--cream-text); font-weight: 700; }
.prose p { margin: 0 0 1em; font-size: clamp(16.5px, 1.35vw, 18.5px); color: var(--cream-muted); max-width: 60ch; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--cream-text); }
.fine { font-size: 13.5px; color: var(--cream-muted); margin: 14px 0 0; }
.fine a { color: var(--amber); }
.fine--ink { color: rgba(18,16,13,.66); }

/* ── buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; font-weight: 800; font-size: 15px;
  text-decoration: none; border: 2px solid transparent; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn--lg { padding: 16px 26px; font-size: 17px; }
.btn--sm { padding: 9px 14px; font-size: 14px; }
.btn--primary { background: var(--amber); color: var(--ink); border-color: var(--bark); box-shadow: 4px 4px 0 var(--bark); }
.btn--primary:hover { background: var(--amber-2); transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--bark); }
.btn--primary:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--bark); }
.btn--ghost { background: transparent; color: var(--cream-text); border-color: rgba(246,241,230,.28); }
.btn--ghost:hover { border-color: rgba(246,241,230,.7); background: rgba(255,255,255,.05); transform: translateY(-2px); }
.btn--ink { background: var(--ink); color: var(--mist); border-color: var(--ink); box-shadow: 4px 4px 0 rgba(42,31,22,.35); }
.btn--ink:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 rgba(42,31,22,.35); }
.btn.is-disabled { opacity: .55; pointer-events: none; }
.btn svg { flex: 0 0 auto; }
.btn--icon { width: 38px; height: 38px; padding: 0; flex: 0 0 auto; }

.badge { display: inline-block; font-size: 11px; font-weight: 900; letter-spacing: .12em; padding: 3px 7px; border-radius: 6px; line-height: 1.2; }
.badge--og { background: var(--amber); color: var(--ink); border: 1.5px solid var(--bark); box-shadow: 2px 2px 0 var(--bark); transform: rotate(-4deg); }

/* ── nav ────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,43,30,.72); backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid rgba(246,241,230,.08);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__mark { width: 38px; height: 38px; flex: 0 0 auto; }
.brand__name { font-family: var(--font-display); font-weight: 900; font-variation-settings: "opsz" 48, "SOFT" 100, "WONK" 1; font-size: 22px; letter-spacing: .02em; }
.nav__links { display: flex; gap: 26px; font-size: 14.5px; font-weight: 600; }
.nav__links a { text-decoration: none; color: var(--cream-muted); transition: color .15s; }
.nav__links a:hover { color: var(--cream-text); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
@media (max-width: 900px) { .nav__links { display: none; } }
@media (max-width: 520px) {
  .nav__in { height: 60px; gap: 10px; }
  .brand { gap: 8px; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__name { font-size: 19px; }
  .nav__cta .btn--icon { display: none; }
  .nav__cta .btn--primary { padding: 9px 13px; font-size: 13.5px; }
}

/* ── hero ───────────────────────────────────────────────── */
.hero { padding-block: clamp(40px, 6vw, 88px) clamp(48px, 6vw, 80px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; } .hero__art { order: -1; } .hero { padding-top: 24px; } }
.hero__copy .lede { margin-top: 22px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__fine { font-size: 13.5px; color: var(--cream-muted); margin: 12px 0 0; }
.hero__art { position: relative; display: grid; justify-items: center; }
.hero__caption { font-size: 13.5px; color: var(--cream-muted); margin: 8px 0 0; text-align: center; font-style: italic; font-family: var(--font-display); font-variation-settings: "opsz" 12, "SOFT" 100, "WONK" 1; }

.mascot-wrap { position: relative; width: min(100%, 460px); aspect-ratio: 400 / 410; }
@media (max-width: 860px) { .mascot-wrap { width: min(72vw, 320px); } }
.mascot-wrap::before {
  content: ""; position: absolute; inset: 6% -6% -2%; border-radius: 50%; z-index: 0;
  background: radial-gradient(closest-side, rgba(242,169,59,.28), rgba(242,169,59,.06) 60%, transparent 72%);
  filter: blur(6px);
}
.mascot { position: relative; z-index: 1; width: 100%; height: 100%; animation: float 5.5s ease-in-out infinite; transform-origin: 50% 90%; }
.mascot.is-bounce { animation: bounce .55s cubic-bezier(.34,1.56,.64,1); }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-8px) } }
@keyframes bounce { 0% { transform: scale(1) } 30% { transform: scale(1.07,.93) translateY(6px) } 60% { transform: scale(.96,1.05) translateY(-14px) } 100% { transform: scale(1) } }
.mascot .pupil { transition: transform .12s ease-out; }
.mascot .lid { transform-box: fill-box; transform-origin: 50% 0%; transform: scaleY(0); animation: blink 5.2s ease-in-out infinite; }
.mascot .eye:nth-of-type(2) .lid { animation-delay: .04s; }
@keyframes blink { 0%, 93%, 100% { transform: scaleY(0) } 95.5%, 97% { transform: scaleY(1) } }
.mascot-hit { position: absolute; inset: 8% 6% 4%; z-index: 2; background: transparent; border: 0; border-radius: 40%; cursor: pointer; }
.mascot-hit:focus-visible { outline: 3px dashed var(--amber); outline-offset: 6px; }
.mascot-toast {
  position: absolute; z-index: 3; left: 50%; top: 4%; transform: translate(-50%, 8px);
  background: var(--mist); color: var(--ink); font-weight: 700; font-size: 14px;
  padding: 8px 14px; border-radius: 14px 14px 14px 4px; border: 2px solid var(--bark); box-shadow: 3px 3px 0 var(--bark);
  opacity: 0; pointer-events: none; transition: opacity .18s, transform .18s; white-space: nowrap;
}
.mascot-toast.is-on { opacity: 1; transform: translate(-50%, 0); }
@media (prefers-reduced-motion: reduce) {
  .mascot, .mascot .lid, .kicker .dot { animation: none !important; }
  .mascot .pupil { transition: none; }
}

/* live stats */
.stats {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: rgba(246,241,230,.12); border: 1px solid rgba(246,241,230,.12); border-radius: 16px; overflow: hidden;
}
.stat { background: rgba(13,43,30,.85); padding: 16px 18px; display: grid; gap: 4px; text-decoration: none; }
.stat__label { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: var(--cream-muted); }
.stat__value { font-family: var(--font-display); font-variation-settings: "opsz" 48, "SOFT" 60; font-weight: 800; font-size: clamp(20px, 2vw, 26px); letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.stat__value.up { color: var(--up); } .stat__value.down { color: var(--down); }
.stat--link { background: rgba(242,169,59,.12); color: var(--amber); transition: background .15s; }
.stat--link:hover { background: rgba(242,169,59,.22); }
.stats__note { margin: 8px 4px 0; font-size: 12px; color: var(--cream-muted); }
.stats__note.is-stale { color: var(--down); }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } .stat--link { grid-column: 1 / -1; } }

/* CA box */
.ca {
  margin-top: 26px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 10px 10px 10px 16px; border-radius: 14px;
  background: rgba(0,0,0,.28); border: 1px solid rgba(246,241,230,.14);
}
.ca__label { font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); }
.ca__value { flex: 1 1 200px; font-size: 14px; overflow-wrap: anywhere; color: var(--cream-text); opacity: .95; }
.ca__copy {
  padding: 9px 14px; border-radius: 10px; border: 1.5px solid var(--bark); background: var(--amber); color: var(--ink);
  font-weight: 800; font-size: 13.5px; box-shadow: 3px 3px 0 var(--bark); transition: transform .12s, box-shadow .12s, background .15s;
}
.ca__copy:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--bark); }
.ca__copy:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--bark); }
.ca__copy.is-copied { background: var(--up); }
.ca--paper { margin-top: 18px; background: rgba(18,16,13,.06); border-color: rgba(18,16,13,.14); }
.ca--paper .ca__value { color: var(--ink); }
.ca--paper .ca__label { color: var(--amber-ink); }
.ca--footer { margin-top: 24px; }

/* ── marquee ────────────────────────────────────────────── */
.marquee {
  display: flex; overflow: hidden; background: var(--amber); color: var(--ink);
  border-block: 3px solid var(--bark); padding-block: 12px; user-select: none;
  font-family: var(--font-display); font-weight: 800; font-variation-settings: "opsz" 48, "SOFT" 80, "WONK" 1; font-size: 18px; letter-spacing: .04em; text-transform: uppercase;
}
.marquee__track { display: flex; flex-shrink: 0; gap: 28px; padding-right: 28px; align-items: center; animation: marquee 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span:nth-child(even) { color: var(--bark); opacity: .55; font-size: 14px; }
@keyframes marquee { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; } .marquee__track + .marquee__track { display: none; } }

/* ── the original ───────────────────────────────────────── */
.original { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
@media (max-width: 900px) { .original { grid-template-columns: 1fr; } }
.original .prose { margin-top: 22px; }
.proof {
  background: var(--mist); color: var(--ink); border-radius: var(--radius); border: 2.5px solid var(--bark); box-shadow: var(--shadow-hard);
  padding: clamp(20px, 3vw, 30px); position: relative;
}
.proof::after {
  content: "ORIGINAL"; position: absolute; top: -16px; right: 22px; transform: rotate(3deg);
  font-size: 11px; font-weight: 900; letter-spacing: .18em; padding: 6px 10px; border-radius: 6px;
  background: var(--amber); color: var(--ink); border: 1.5px solid var(--bark); box-shadow: 2px 2px 0 var(--bark);
}
.proof__row { display: grid; grid-template-columns: 150px 1fr; gap: 14px; align-items: baseline; padding: 12px 0; border-bottom: 1px dashed rgba(18,16,13,.2); }
.proof__row:first-child { padding-top: 0; }
.proof__k { font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-muted); }
.proof__v { font-weight: 700; font-size: 17px; }
.proof__muted { color: var(--ink-muted); font-weight: 500; }
.proof__row--ca { grid-template-columns: 1fr auto; row-gap: 8px; }
.proof__row--ca .proof__k { grid-column: 1 / -1; }
.proof__ca { font-size: 14px; overflow-wrap: anywhere; background: rgba(18,16,13,.06); padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(18,16,13,.12); }
.proof__links { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 16px; font-weight: 700; font-size: 14.5px; }
.proof__links a { color: var(--forest); }
.proof__fine { font-size: 13px; color: var(--ink-muted); margin: 14px 0 0; }
@media (max-width: 520px) { .proof__row { grid-template-columns: 1fr; gap: 4px; } }

/* ── lore timeline ──────────────────────────────────────── */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; display: grid; gap: 22px; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 3px; background: rgba(18,16,13,.15); border-radius: 3px; }
.tl { position: relative; display: grid; grid-template-columns: 170px 1fr; gap: 20px; padding-left: 40px; align-items: start; }
.tl::before { content: ""; position: absolute; left: 3px; top: 12px; width: 19px; height: 19px; border-radius: 50%; background: var(--amber); border: 3px solid var(--bark); box-shadow: 0 0 0 4px var(--mist); }
.tl__date { font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--amber-ink); padding-top: 12px; }
.tl__card { background: #fff; border: 2.5px solid var(--bark); border-radius: 18px; padding: 22px 24px; box-shadow: var(--shadow-hard); }
.tl__card p { margin: 0; color: rgba(18,16,13,.74); }
.tl__card blockquote { margin: 0 0 12px; font-family: var(--font-display); font-style: italic; font-weight: 500; font-variation-settings: "opsz" 40, "SOFT" 100, "WONK" 1; font-size: clamp(20px, 2.2vw, 26px); line-height: 1.25; color: var(--ink); }
.tl__card--quote { background: var(--mist-2); }
.tl__card--hot { background: var(--amber); }
.tl__card--hot p { color: rgba(18,16,13,.8); font-weight: 600; }
@media (max-width: 720px) { .tl { grid-template-columns: 1fr; gap: 6px; } .tl__date { padding-top: 6px; } }

/* ── spec sheet ─────────────────────────────────────────── */
.grid--specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1000px) { .grid--specs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .grid--specs { grid-template-columns: 1fr; } }
.spec {
  background: rgba(255,255,255,.04); border: 1px solid rgba(246,241,230,.12); border-radius: 18px; padding: 22px 20px 20px;
  display: grid; gap: 4px; transition: transform .2s, border-color .2s, background .2s;
}
.spec:hover { transform: translateY(-3px); border-color: rgba(242,169,59,.5); background: rgba(242,169,59,.06); }
.spec__num { font-family: var(--font-display); font-weight: 900; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; font-size: clamp(44px, 4.6vw, 60px); line-height: 1; color: var(--amber); letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.spec__num small { font-size: .45em; font-weight: 700; letter-spacing: 0; margin-left: 2px; color: var(--amber-2); }
.spec__label { font-weight: 800; font-size: 14px; letter-spacing: .02em; margin-top: 8px; }
.spec__note { font-size: 13.5px; color: var(--cream-muted); line-height: 1.45; }
.traits { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.traits li { font-size: 14px; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(246,241,230,.18); background: rgba(0,0,0,.2); }
.traits__k { color: var(--amber); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 11px; margin-right: 8px; }

/* ── tokenomics ─────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.tok { margin: 26px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 860px; }
@media (max-width: 700px) { .tok { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .tok { grid-template-columns: 1fr; } }
.tok div { background: rgba(255,255,255,.04); border: 1px solid rgba(246,241,230,.12); border-radius: 14px; padding: 14px 16px; }
.tok dt { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: var(--cream-muted); }
.tok dd { margin: 4px 0 0; font-family: var(--font-display); font-weight: 800; font-variation-settings: "opsz" 48, "SOFT" 60; font-size: 20px; font-variant-numeric: tabular-nums; }
/* ── footer ─────────────────────────────────────────────── */
.footer { padding-block: 56px 40px; border-top: 1px solid rgba(246,241,230,.1); }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px 24px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 14.5px; font-weight: 700; }
.footer__links a { color: var(--cream-muted); text-decoration: none; }
.footer__links a:hover { color: var(--amber); }
.footer__disclaimer { font-size: 13px; line-height: 1.6; color: var(--cream-muted); max-width: 84ch; margin: 26px 0 0; }
.footer__disclaimer strong { color: var(--cream-text); }
.sources { margin-top: 18px; font-size: 13px; color: var(--cream-muted); }
.sources summary { cursor: pointer; font-weight: 700; color: var(--cream-text); }
.sources ul { margin: 10px 0 0; padding-left: 18px; display: grid; gap: 6px; }
.sources a { color: var(--amber); }
.footer__copy { margin: 28px 0 0; font-size: 12.5px; color: var(--cream-muted); font-style: italic; font-family: var(--font-display); font-variation-settings: "opsz" 12, "SOFT" 100, "WONK" 1; }

/* ── reveal on scroll ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
.no-js .reveal { opacity: 1; transform: none; }
