/* Bar Down Fantasy — marketing site.
   Reference implementation of DESIGN.md: "painted ice, under the lights."
   Tokens §4 · type §5 · layout §6 · motion §7 · components §9. */

:root {
  /* core palette — light ("day ice") */
  --ice: #EFF4F6;
  --boards: #FFFFFF;
  --puck: #0B1B2B;
  --twine: #4E6172;
  --goal-red: #C8102E;
  --blue-line: #0033A0;
  --kick: #CBD8DE;
  --btn-ink: #FFF5F2;

  /* scoreboard panels stay dark in BOTH themes (DESIGN.md §2.3) */
  --sb-bg: #0E1B2C;
  --sb-ink: #EDF3F6;
  --sb-dim: #8FA5B5;
  --sb-rule: #24384E;
  --lamp: #FF4B57;
  --night: #0A1420;

  /* aliases used by inline SVG icons in index.html */
  --accent: var(--goal-red);
  --accent-2: var(--blue-line);

  --font-display: "Big Shoulders Display", "Big Shoulders", "Arial Narrow", "Helvetica Neue", Impact, sans-serif;
  --font-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-agate: "Spline Sans Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ice: #0A1420;
    --boards: #111F2F;
    --puck: #EDF3F6;
    --twine: #8FA5B5;
    --goal-red: #FF4B57;
    --blue-line: #6FA0FF;
    --kick: #223850;
    --btn-ink: #0A1420;
  }
}
:root[data-theme="dark"] {
  --ice: #0A1420;
  --boards: #111F2F;
  --puck: #EDF3F6;
  --twine: #8FA5B5;
  --goal-red: #FF4B57;
  --blue-line: #6FA0FF;
  --kick: #223850;
  --btn-ink: #0A1420;
}
:root[data-theme="light"] {
  --ice: #EFF4F6;
  --boards: #FFFFFF;
  --puck: #0B1B2B;
  --twine: #4E6172;
  --goal-red: #C8102E;
  --blue-line: #0033A0;
  --kick: #CBD8DE;
  --btn-ink: #FFF5F2;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--ice);
  color: var(--puck);
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

/* ---- type roles (DESIGN.md §5) ---- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}
.tnum {
  font-family: var(--font-agate);
  font-variant-numeric: tabular-nums;
}
.eyebrow {
  font-family: var(--font-agate);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue-line);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 0.3em; /* pins the faceoff dot to the first line when the label wraps */
  border-radius: 50%;
  background: currentColor;
}

a { color: inherit; }
:focus-visible {
  outline: 3px solid var(--blue-line);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ================= ICE TEXTURE BACKDROP ================= */
.ice-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ice-field svg { width: 100%; height: 100%; display: block; }

/* ================= WORDMARK (DESIGN.md §3) ================= */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.wordmark .wm-down {
  position: relative;
  display: inline-block;
  padding-top: 0.16em;
}
.wordmark .wm-down::before {
  /* the crossbar */
  content: "";
  position: absolute;
  top: 0;
  left: -0.03em;
  right: -0.03em;
  height: 0.11em;
  background: var(--goal-red);
}
.wordmark .puck-dot {
  width: 0.24em;
  height: 0.24em;
  background: var(--puck);
  border-radius: 50%;
  display: inline-block;
  margin-left: 0.14em;
}

/* ================= NAV ================= */
header.site {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
nav.links {
  display: flex;
  gap: 26px;
  font-family: var(--font-agate);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
nav.links a {
  text-decoration: none;
  color: var(--twine);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
nav.links a:hover { color: var(--puck); border-color: var(--goal-red); }
.btn-nav {
  border: 2px solid var(--puck);
  padding: 9px 18px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.btn-nav:hover { background: var(--puck); color: var(--ice); }

/* ================= HERO ================= */
.hero {
  position: relative;
  padding: 72px 32px 0;
  max-width: 1180px;
  margin: 0 auto;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  align-items: start;
}
/* grid items must be allowed to shrink below min-content, or the h1 widens the column
   past the viewport at phone sizes */
.hero-grid > * { min-width: 0; }
.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(3.6rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
}

/* ---- the signature: crossbar + puck drop + lamp flash (DESIGN.md §7) ---- */
.hero h1 .hit {
  position: relative;
  display: inline-block;
  color: var(--goal-red);
  padding-top: 0.14em;
}
.hero h1 .hit::before {
  /* the crossbar the puck comes down off */
  content: "";
  position: absolute;
  top: 0;
  left: -0.02em;
  right: -0.02em;
  height: 0.085em;
  background: var(--goal-red);
  animation: lamp-flash 0.5s ease-out 1.05s 1;
}
.puck-drop {
  display: inline-block;
  width: 0.13em;
  height: 0.13em;
  margin-left: 0.09em;
  border-radius: 50%;
  background: var(--puck);
  animation: puck-drop 0.9s cubic-bezier(.5,0,.7,1) 0.25s backwards;
}
@keyframes puck-drop {
  0%   { transform: translateY(-5.2em); opacity: 0; }
  20%  { opacity: 1; }
  62%  { transform: translateY(0); }
  78%  { transform: translateY(-0.55em); }
  100% { transform: translateY(0); }
}
@keyframes lamp-flash {
  0%, 100% { box-shadow: none; }
  40% { box-shadow: 0 0 44px 10px color-mix(in srgb, var(--lamp) 60%, transparent); }
}

.hero p.lede {
  max-width: 46ch;
  font-size: 1.2rem;
  color: var(--twine);
  margin: 0 0 36px;
}
.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn-primary {
  background: var(--goal-red);
  color: var(--btn-ink);
  border: none;
  padding: 17px 32px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px -2px color-mix(in srgb, var(--lamp) 55%, transparent);
}
.btn-ghost {
  color: var(--puck);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 2px solid var(--puck);
  padding-bottom: 3px;
}
.btn-ghost:hover { border-color: var(--goal-red); }

/* ---- hero: live-matchup preview, styled as the scoreboard it is (§2.3, §9) ----
   Dark panel in both themes; display-face scores; agate everything else. */
.app-preview { position: relative; }
.app-frame {
  overflow: hidden;
  background: var(--sb-bg);
  color: var(--sb-ink);
  border-bottom: 5px solid var(--goal-red); /* kick plate: red = live/scoring */
  box-shadow: 0 34px 60px -30px rgba(4, 12, 24, 0.55);
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-agate);
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sb-dim);
  padding: 2px 4px 10px;
  border-bottom: 1px solid var(--sb-rule);
}
.app-live { display: inline-flex; align-items: center; gap: 7px; color: var(--lamp); font-weight: 600; }
.app-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lamp);
  box-shadow: 0 0 8px 2px color-mix(in srgb, var(--lamp) 45%, transparent);
}

.matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 4px 14px;
  border-bottom: 1px solid var(--sb-rule);
}
.mteam { display: flex; flex-direction: column; gap: 3px; }
.mteam.away { text-align: right; }
.mteam-name { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sb-dim); }
.mteam-score {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.mteam.away .mteam-score { color: var(--sb-dim); }
.mvs { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sb-dim); }

.app-starter {
  position: relative;
  border: 1px solid var(--sb-rule);
  border-radius: 3px;
  padding: 11px 72px 11px 13px;
  font-size: 0.8rem;
  background: color-mix(in srgb, var(--sb-ink) 3%, transparent);
}
.app-starter.live { border-color: color-mix(in srgb, var(--lamp) 55%, var(--sb-rule)); }
.app-starter.banked {
  background: color-mix(in srgb, var(--lamp) 12%, transparent);
  border-color: color-mix(in srgb, var(--lamp) 40%, var(--sb-rule));
  box-shadow: inset 0 0 22px -8px color-mix(in srgb, var(--lamp) 35%, transparent);
}
.starter-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.starter-name { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; }
.starter-pos {
  font-family: var(--font-agate);
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--blue-line);
  border: 1px solid color-mix(in srgb, var(--blue-line) 50%, transparent);
  border-radius: 3px; padding: 0 4px; margin-left: 4px; vertical-align: 1px;
}
.app-frame .starter-pos { color: #6FA0FF; border-color: rgba(111, 160, 255, 0.5); }
.starter-pos.g,
.app-frame .starter-pos.g { color: var(--lamp); border-color: color-mix(in srgb, var(--lamp) 50%, transparent); }
.starter-game { font-size: 0.7rem; color: var(--sb-dim); }
.starter-line { font-size: 0.76rem; color: var(--sb-dim); margin-top: 6px; }
.starter-pts {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.app-starter.banked .starter-pts,
.app-starter.live .starter-pts { color: var(--lamp); }
.starter-badge {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--lamp);
}
.starter-badge b { font-weight: 700; }

.pv-sweat { display: flex; align-items: center; gap: 9px; margin-top: 9px; }
.pv-sweat-track {
  flex: 1; height: 5px;
  background: color-mix(in srgb, var(--sb-ink) 12%, transparent);
  overflow: hidden;
}
.pv-sweat-fill {
  display: block; height: 100%; width: 90%;
  background: var(--lamp); /* paint is flat — no gradients, no pill ends (§4, §6) */
}
.pv-sweat-label { font-size: 0.72rem; color: var(--sb-dim); white-space: nowrap; }
.pv-sweat-label b { color: var(--sb-ink); font-weight: 600; }

/* This caption defines "banks" and discloses the concept preview — it must be readable,
   so it gets sentence case at body-adjacent size, not tracked-uppercase agate. */
.shot-caption {
  margin-top: 14px;
  font-family: var(--font-agate);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: var(--twine);
  text-align: center;
}
.shot-caption b { color: var(--puck); font-weight: 600; }

/* ================= PAINTED-LINE DIVIDERS (§6) ================= */
/* The center red line — solid red with the traditional white checkering. One per page. */
.center-line {
  position: relative;
  margin-top: 56px;
  height: 12px;
  background: var(--goal-red);
  z-index: 2;
}
.center-line::after {
  content: "";
  position: absolute;
  inset: 3px 0;
  background: repeating-linear-gradient(90deg,
    transparent 0 34px,
    var(--ice) 34px 46px);
  opacity: 0.85;
}
.center-line-label {
  max-width: 1180px;
  margin: 12px auto 0;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-agate);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--twine);
}

.blue-line {
  height: 8px;
  background: var(--blue-line);
}

/* ================= FORMAT (three periods of the argument) ================= */
section.format {
  padding: 78px 32px 96px;
  max-width: 1180px;
  margin: 0 auto;
}
.format-head {
  max-width: 64ch;
  margin-bottom: 60px;
}
.format-head h2 {
  font-size: clamp(2.4rem, 4.8vw, 3.4rem);
  margin: 14px 0 18px;
  line-height: 0.98;
}
.format-head p {
  font-size: 1.1rem;
  color: var(--twine);
  max-width: 58ch;
}

.period-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 3px solid var(--puck);
}
.period {
  padding: 26px 28px 34px 0;
  border-right: 1px solid var(--kick);
}
.period:last-child { border-right: none; padding-right: 0; }
.period:not(:first-child) { padding-left: 28px; }
.period .pd {
  font-family: var(--font-agate);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  color: var(--goal-red);
  margin-bottom: 14px;
}
.period h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.05;
}
.period p {
  color: var(--twine);
  font-size: 1rem;
  margin: 0;
}

/* ================= GETTING STARTED ================= */
section.start {
  background: var(--boards);
  padding: 88px 32px;
}
.start-head {
  max-width: 1180px;
  margin: 0 auto 52px;
}
.start-head h2 { font-size: clamp(2.2rem, 4vw, 3rem); margin: 14px 0 0; line-height: 0.98; }
.start-steps {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.start-steps li {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* puck chips: solid puck with an ice-colored jersey numeral (§6) */
.step-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ice);
  background: var(--puck);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.start-steps h3 { font-size: 1.08rem; margin: 0 0 8px; letter-spacing: -0.01em; }
.start-steps p { font-size: 0.95rem; color: var(--twine); margin: 0; }

/* ================= SCORING DEMO (the box score) ================= */
/* Sits on the ice, not the boards — its neighbor .start owns the white band, and
   DESIGN.md §6 forbids hairline section separators. */
section.sweat {
  padding: 88px 32px;
}
.sweat-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.sweat h2 { font-size: clamp(2.2rem, 4vw, 3rem); margin: 14px 0 18px; line-height: 0.98; }
.sweat p.copy { color: var(--twine); font-size: 1.08rem; max-width: 46ch; margin: 0 0 26px; }

/* box-score table (§9): scoreboard header, agate rows, red banked row */
.statline {
  border: 1px solid var(--kick);
  border-bottom: 5px solid var(--blue-line); /* kick plate: info card */
  overflow: hidden;
  font-size: 0.95rem;
  background: var(--boards);
}
.statline .row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--kick);
  align-items: center;
}
.statline .row:last-of-type { border-bottom: none; }
.statline .row.head {
  background: var(--sb-bg);
  color: var(--sb-dim);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: none;
}
.statline .row.best {
  background: color-mix(in srgb, var(--goal-red) 10%, transparent);
  box-shadow: inset 3px 0 0 var(--goal-red);
}
.statline .g { color: var(--twine); font-size: 0.84rem; }
.statline .pts {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
}
.statline .badge {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: var(--goal-red);
  justify-self: end;
}
.statline .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px;
  border-top: 1px solid var(--kick);
  background: color-mix(in srgb, var(--puck) 4%, transparent);
  font-weight: 700;
  font-size: 1rem;
}

/* ================= FEATURE STRIP ================= */
section.strip {
  padding: 96px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.strip-head { max-width: 62ch; margin-bottom: 54px; }
.strip-head h2 { font-size: clamp(2.2rem, 4vw, 3rem); margin: 14px 0 0; line-height: 0.98; }
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* kick-plate cards (§6): square dasherboard panels, flat bottom stripe */
.feat {
  background: var(--boards);
  border: 1px solid var(--kick);
  border-bottom: 5px solid var(--blue-line);
  padding: 26px 24px 30px;
}
.feat.live { border-bottom-color: var(--goal-red); }
.feat .mark {
  width: 34px; height: 34px;
  margin-bottom: 18px;
}
.feat h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.05;
}
.feat p { font-size: 0.94rem; color: var(--twine); margin: 0; }

/* ================= PLAYOFFS ================= */
section.playoffs {
  background: var(--boards);
  padding: 96px 32px;
}
.playoffs-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.playoffs-copy h2 { font-size: clamp(2.2rem, 4vw, 3rem); margin: 14px 0 18px; line-height: 0.98; }
.playoffs-copy p.copy { color: var(--twine); font-size: 1.08rem; max-width: 46ch; margin: 0 0 20px; }

/* bracket as a scoreboard panel (§2.3) */
.bracket {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  align-items: center;
  gap: 18px;
  background: var(--sb-bg);
  border-bottom: 5px solid var(--goal-red);
  padding: 28px 24px;
}
.bracket-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bracket-col.mid { gap: 46px; }
.bracket-col.final { align-items: center; }
.bracket-slot {
  border: 1px solid var(--sb-rule);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: var(--font-agate);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sb-dim);
  background: color-mix(in srgb, var(--sb-ink) 4%, transparent);
}
.bracket-slot.champ {
  border-color: var(--lamp);
  color: var(--lamp);
  text-align: center;
  padding: 20px 14px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  box-shadow: 0 0 26px -6px color-mix(in srgb, var(--lamp) 45%, transparent);
}

/* ================= CLOSING CTA ================= */
section.cta {
  position: relative;
  background: var(--night);
  color: var(--sb-ink);
  padding: 118px 32px;
  overflow: hidden;
}
section.cta .wrap { position: relative; z-index: 2; text-align: center; }
section.cta .eyebrow { color: var(--sb-dim); justify-content: center; }
section.cta h2 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  margin: 16px 0 22px;
  line-height: 0.94;
  color: var(--sb-ink);
}
section.cta p.copy {
  color: var(--sb-dim);
  max-width: 52ch;
  margin: 0 auto 42px;
  font-size: 1.12rem;
}
section.cta .btn-primary { background: #C8102E; color: #FFF5F2; }
section.cta .btn-primary:hover { box-shadow: 0 0 34px -2px rgba(255, 75, 87, 0.6); }
.cta-rink {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cta-rink svg { width: 100%; height: 100%; display: block; }

/* ================= FOOTER (on the night navy, §9) ================= */
footer.site {
  background: var(--night);
  color: var(--sb-dim);
  border-top: 1px solid var(--sb-rule);
  padding: 36px 32px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}
footer.site .wordmark { font-size: 1.05rem; color: var(--sb-ink); }
footer.site .wordmark .puck-dot { background: var(--sb-ink); }

/* ================= RESPONSIVE ================= */
@media (max-width: 880px) {
  /* Nav stays: it drops to a scrollable agate row instead of disappearing (critique P2) */
  header.site { flex-wrap: wrap; row-gap: 14px; }
  nav.links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    gap: 22px;
    padding-bottom: 4px;
  }
  .hero { padding-top: 40px; }
  .hero-grid { grid-template-columns: 1fr; }
  .app-preview { max-width: 460px; }
  .period-grid { grid-template-columns: 1fr; }
  .period { border-right: none; padding: 26px 0; border-bottom: 1px solid var(--kick); }
  .period:last-child { border-bottom: none; }
  .period:not(:first-child) { padding-left: 0; }
  .sweat-inner { grid-template-columns: 1fr; gap: 44px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .start-steps { grid-template-columns: repeat(2, 1fr); }
  .playoffs-inner { grid-template-columns: 1fr; gap: 44px; }
  .bracket { max-width: 420px; }
}
@media (max-width: 520px) {
  .strip-grid, .start-steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 4.2rem); }
  footer.site { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
