/* ─────────────────────────────────────────────────────────────
   Sportspad

   Off-white ground, black type, greyscale everything, taken from
   the brand mark. No colour anywhere: a match is a bar with a
   split in it, and the split is black on grey. That bar is the
   hero, the card, the market page and the only chart in the
   product.
   ───────────────────────────────────────────────────────────── */

@import url("https://fonts.googleapis.com/css2?family=Archivo:wdth,wght@75..125,400..900&family=JetBrains+Mono:wght@400;500;700&display=swap");

:root {
  --bg: #f0f0ee;
  --surface: #ffffff;
  --surface-2: #f7f7f5;
  --ink: #0a0a0a;
  --ink-2: #3d4043;
  --muted: #6f7478;
  --faint: #9b9fa3;
  --line: rgba(10, 10, 10, 0.11);
  --line-2: rgba(10, 10, 10, 0.24);
  --bar: #b7babb;

  --sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --page: 1240px;
  --pad: clamp(20px, 5vw, 56px);
  --r: 14px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  color-scheme: light;
}

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

::selection { background: var(--ink); color: var(--bg); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

/* ── type ─────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  color: var(--ink);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1;
  text-wrap: balance;
}

.display {
  font-variation-settings: "wdth" 100;
  font-size: clamp(44px, 7.4vw, 104px);
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.section-title {
  font-size: clamp(30px, 4.2vw, 54px);
  letter-spacing: -0.042em;
}

h3 { font-size: clamp(18px, 1.9vw, 22px); letter-spacing: -0.028em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(16px, 1.3vw, 18.5px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 58ch;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.mono { font-family: var(--mono); font-size: 0.86em; letter-spacing: -0.01em; }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.dim { color: var(--muted); }
.faint { color: var(--faint); }

/* ── layout ───────────────────────────────────────────────── */

.wrap { width: 100%; max-width: var(--page); margin: 0 auto; padding: 0 var(--pad); }
section { position: relative; }
.band { padding: clamp(68px, 10vh, 124px) 0; }
.band + .band { border-top: 1px solid var(--line); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
/* A grid item's default min-width is its content, which is how a long team
   name pushes a card wider than the screen. */
.grid > * { min-width: 0; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .g3, .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .g2, .g3, .g4 { grid-template-columns: minmax(0, 1fr); } }

.head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(30px, 4.5vw, 52px); flex-wrap: wrap; }
.head > *:first-child { flex: 1 1 380px; }
.head > .lede { flex: 0 1 42ch; max-width: 42ch; }
.head .lede { margin-top: 18px; }

/* ── nav ──────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav.stuck {
  background: rgba(240, 240, 238, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-in { display: flex; align-items: center; gap: 12px; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-mark { width: 31px; height: 31px; flex: none; }
.brand-name {
  font-weight: 700;
  letter-spacing: -0.052em;
  font-size: 21px;
  color: var(--ink);
}
.brand-name i { font-style: normal; color: var(--faint); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(10, 10, 10, 0.05); }
.nav-links a[aria-current] { color: var(--ink); background: rgba(10, 10, 10, 0.07); }

/* Nothing is hidden on a small screen; the links become their own
   scrollable row under the brand. */
@media (max-width: 820px) {
  .nav-in { flex-wrap: wrap; height: auto; padding-top: 12px; padding-bottom: 10px; row-gap: 4px; }
  .nav-links {
    order: 3;
    width: calc(100% + var(--pad) * 2);
    margin: 2px calc(var(--pad) * -1) 0;
    padding: 0 calc(var(--pad) - 6px) 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { padding: 7px 11px; font-size: 13.5px; }
}

/* ── buttons ──────────────────────────────────────────────── */

.btn {
  --bg-btn: var(--ink);
  --c: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--bg-btn);
  color: var(--c);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.012em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.14s var(--ease), background 0.2s, border-color 0.2s, opacity 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.32; cursor: not-allowed; transform: none; }
.btn.ghost { --bg-btn: var(--surface); --c: var(--ink); border-color: var(--line-2); }
.btn.ghost:hover { --bg-btn: #fff; border-color: var(--ink); }
.btn.quiet { --bg-btn: transparent; --c: var(--muted); border-color: var(--line); }
.btn.quiet:hover { --bg-btn: rgba(10, 10, 10, 0.04); --c: var(--ink); }
.btn.lg { height: 52px; padding: 0 26px; font-size: 15.5px; }
.btn.sm { height: 34px; padding: 0 14px; font-size: 13px; }
.btn.block { width: 100%; }
.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ── surfaces ─────────────────────────────────────────────── */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(18px, 2.2vw, 26px);
  position: relative;
}
.card.tight { padding: 16px 18px; }
a.card, button.card { display: block; transition: border-color 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease); }
a.card:hover, button.card:hover { border-color: var(--line-2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(10, 10, 10, 0.06); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
}
.stats > div { padding: 20px 22px; border-left: 1px solid var(--line); }
.stats > div:first-child { border-left: 0; }
.stats dt { margin: 0 0 8px; }
.stats dd { margin: 0; font-size: clamp(20px, 2.2vw, 27px); font-weight: 700; letter-spacing: -0.035em; color: var(--ink); }
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats > div:nth-child(3) { border-left: 0; }
  .stats > div:nth-child(n + 3) { border-top: 1px solid var(--line); }
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
}
.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); flex: none; }
.tag.solid { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ── the split bar ────────────────────────────────────────── */

.split { --p: 50; display: block; width: 100%; }
.split-bar {
  position: relative;
  height: 34px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bar);
  display: flex;
  isolation: isolate;
}
.split-bar > span { display: block; height: 100%; transition: width 1.1s var(--ease); }
.split-home { width: calc(var(--p) * 1%); background: var(--ink); }
.split-away { width: calc((100 - var(--p)) * 1%); background: var(--bar); }
.split-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--p) * 1%);
  width: 2px;
  margin-left: -1px;
  background: var(--surface);
  transition: left 1.1s var(--ease);
  z-index: 2;
}
.split-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.split-labels b { color: var(--ink); font-weight: 500; }
.split-labels > span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.split.sm .split-bar { height: 10px; border-radius: 4px; }
.split.sm .split-labels { margin-top: 8px; font-size: 10.5px; }

/* ── fixture card ─────────────────────────────────────────── */

.fixture-top { display: flex; align-items: center; justify-content: space-between; gap: 8px 12px; margin-bottom: 18px; flex-wrap: wrap; min-width: 0; }
.fixture-teams {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.team { min-width: 0; display: flex; align-items: center; gap: 10px; }
.team > div { min-width: 0; }
.team.right { flex-direction: row-reverse; text-align: right; }
.crest {
  width: 30px; height: 30px; flex: none; border-radius: 7px;
  background: var(--surface-2);
  object-fit: contain;
  padding: 2px;
}
.team-name {
  font-weight: 700;
  letter-spacing: -0.028em;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.team-sym { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.vs { font-family: var(--mono); font-size: 11px; color: var(--faint); letter-spacing: 0.12em; }

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 8px 14px;
  flex-wrap: wrap;
  min-width: 0;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
}
.meta-row b { color: var(--ink); font-weight: 500; }

/* ── hero ─────────────────────────────────────────────────── */

.hero { position: relative; padding: clamp(64px, 11vh, 128px) 0 clamp(34px, 6vh, 64px); overflow: hidden; }
#field { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, var(--bg) 98%);
}
.hero .wrap { position: relative; z-index: 2; }
.ca {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--surface);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  max-width: 100%;
}
.ca b { color: var(--ink); font-weight: 500; letter-spacing: 0.1em; }
.ca .addr { color: var(--ink-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ca .sep { color: var(--faint); }
.ca .copy {
  display: inline-flex; align-items: center; gap: 6px;
  height: 28px; padding: 0 12px; border: 0; border-radius: 999px;
  background: var(--ink); color: #fff; cursor: pointer;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  transition: opacity .18s;
}
.ca .copy:hover { opacity: .85; }
.hero-ca { margin-bottom: clamp(24px, 3.6vw, 38px); }
.foot-ca { margin-top: 14px; }
@media (max-width: 560px) { .ca .addr { max-width: 42vw; } }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: clamp(26px, 3.6vw, 38px); }
.hero-lede { margin-top: clamp(18px, 2.6vw, 28px); }

/* ── sticky lifecycle ─────────────────────────────────────── */

.life { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.life-sticky { position: sticky; top: 110px; }
.life-steps { display: grid; gap: 10px; }
.step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 22px 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: transparent;
  opacity: 0.45;
  transition: opacity 0.45s var(--ease), border-color 0.45s var(--ease), background 0.45s var(--ease);
}
.step.on { opacity: 1; border-color: var(--line-2); background: var(--surface); }
.step-n { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--faint); padding-top: 4px; transition: color 0.45s; }
.step.on .step-n { color: var(--ink); }
.step h3 { margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--muted); }
.step.on p { color: var(--ink-2); }
@media (max-width: 900px) {
  .life { grid-template-columns: minmax(0, 1fr); }
  .life-sticky { position: static; }
}

.stage { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: clamp(20px, 3vw, 30px); overflow: hidden; }
.stage-title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.pot-wrap { margin-top: 22px; }
.pot-bar { height: 8px; border-radius: 4px; background: var(--bar); overflow: hidden; }
.pot-fill { height: 100%; width: 0; background: var(--ink); transition: width 0.7s var(--ease); }
.flow { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); flex-wrap: wrap; }
.flow .to { color: var(--faint); }
.flow b { color: var(--ink); font-weight: 500; }

/* ── forms ────────────────────────────────────────────────── */

.field { display: block; margin-bottom: 16px; }
.field > span { display: block; margin-bottom: 7px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.11em; text-transform: uppercase; color: var(--muted); }
.field .hint { text-transform: none; letter-spacing: 0; font-family: var(--sans); font-size: 12.5px; color: var(--faint); margin-top: 6px; }
input[type="text"], input[type="number"], input[type="url"], textarea, select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}
textarea { height: auto; min-height: 90px; padding: 12px 14px; resize: vertical; line-height: 1.5; }
input:focus, textarea:focus, select:focus { border-color: var(--ink); background: #fff; }
input::placeholder, textarea::placeholder { color: var(--faint); }
input[type="number"] { font-family: var(--mono); }
select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) 19px, calc(100% - 13px) 19px; background-size: 5px 5px; background-repeat: no-repeat; }

.seg { display: inline-flex; padding: 4px; gap: 2px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); flex-wrap: wrap; max-width: 100%; }
.seg button {
  height: 32px; padding: 0 15px; border: 0; border-radius: 999px; background: transparent;
  color: var(--muted); font-size: 13.5px; font-weight: 600; cursor: pointer; transition: color 0.18s, background 0.18s;
}
.seg button:hover { color: var(--ink); }
.seg button[aria-pressed="true"] { background: var(--ink); color: #fff; }

/* the two sides of a fixture, offered as a choice */
.picker { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 640px) { .picker { grid-template-columns: minmax(0, 1fr); } }
.side-pick {
  text-align: left;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.side-pick:hover { border-color: var(--line-2); }
.side-pick[aria-pressed="true"] { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.side-pick .who { display: flex; align-items: center; gap: 12px; }
.side-pick .who img { width: 38px; height: 38px; object-fit: contain; }
.side-pick .role { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.side-pick h3 { font-size: 19px; }
.side-pick .mark { margin-top: 14px; font-family: var(--mono); font-size: 11px; color: var(--faint); }
.side-pick[aria-pressed="true"] .mark { color: var(--ink); }

.amounts { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.amounts button {
  height: 32px; padding: 0 13px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line-2); background: var(--surface); color: var(--ink-2);
  font-family: var(--mono); font-size: 12px; transition: border-color .18s, color .18s, background .18s;
}
.amounts button:hover { border-color: var(--ink); color: var(--ink); }
.amounts button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }

.buy-out { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.buy-out div { min-width: 0; }
.buy-out .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.buy-out .v { font-size: 20px; font-weight: 700; letter-spacing: -.03em; color: var(--ink); }

/* ── modal ────────────────────────────────────────────────── */

.sheet { position: fixed; inset: 0; z-index: 200; display: none; }
.sheet.open { display: block; }
.sheet-bg { position: absolute; inset: 0; background: rgba(20, 20, 20, 0.36); backdrop-filter: blur(4px); animation: fade 0.2s var(--ease); }
.sheet-box {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.16);
  animation: pop 0.24s var(--ease);
}
.sheet-box.wide { width: min(680px, calc(100vw - 32px)); }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translate(-50%, -46%) scale(0.98); } }
.sheet-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.sheet-head h3 { font-size: 18px; }
.x { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; }
.x:hover { color: var(--ink); border-color: var(--line-2); }

.pick { display: flex; align-items: center; gap: 12px; width: 100%; padding: 12px 14px; margin-bottom: 8px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-2); cursor: pointer; text-align: left; transition: border-color 0.18s, background 0.18s; }
.pick:hover { border-color: var(--line-2); background: #fff; }
.pick img { width: 26px; height: 26px; border-radius: 6px; }
.pick b { color: var(--ink); font-weight: 600; }

/* ── notices ──────────────────────────────────────────────── */

.note { padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); font-size: 14px; }
.note.warn { border-color: rgba(10, 10, 10, 0.3); background: #fff; color: var(--ink); }
.note.bad { border-color: rgba(10, 10, 10, 0.5); background: var(--ink); color: #fff; }
.note.bad .mono { color: #fff; }
.note.good { border-color: var(--line-2); background: var(--surface); color: var(--ink); }

.empty { padding: 56px 24px; text-align: center; border: 1px dashed var(--line-2); border-radius: var(--r); color: var(--muted); }
.empty b { display: block; color: var(--ink); font-size: 17px; margin-bottom: 6px; letter-spacing: -0.025em; }
.empty .btn { margin-top: 18px; }
.empty p { margin: 0; }

.skel { border-radius: 6px; background: linear-gradient(90deg, rgba(10,10,10,.05), rgba(10,10,10,.1), rgba(10,10,10,.05)); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ── footer ───────────────────────────────────────────────── */

.foot { border-top: 1px solid var(--line); padding: 44px 0 56px; }
.foot-in { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; font-size: 14px; }
.foot-links a { color: var(--muted); transition: color 0.18s; }
.foot-links a:hover { color: var(--ink); }
.foot small { color: var(--faint); font-size: 12.5px; }

/* ── scroll reveal ────────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .split-bar > span, .split-bar::after, .pot-fill { transition: none; }
  * { animation-duration: 0.001ms !important; }
}
