/* =========================================================================
   Wild Donkey Pickleball — National League
   Landing page styles.

   The brand is a black-ground athletic screenprint: three screaming accents
   (teal / acid / grape) over near-black, heavy condensed display type, brush
   strokes, halftone fields and grain. It is a single committed dark look —
   there is deliberately no light theme, because the brand does not have one.
   ========================================================================= */

/* ------------------------------------------------------------- 1. TOKENS */
:root {
  /* Ground */
  --ink:      #07090a;
  --ink-1:    #0b0f11;   /* alternating section ground */
  --ink-2:    #101619;   /* raised card surface */
  --ink-3:    #161e22;   /* card hover */
  --hair:     rgb(242 242 238 / 0.09);
  --hair-2:   rgb(242 242 238 / 0.16);

  /* Ink on ground */
  --bone:     #f2f2ee;
  --body:     #b4bcc1;
  --muted:    #7f8a90;

  /* Accents, sampled from the brand artwork */
  --teal:     #05b4b8;
  --teal-br:  #3adcde;
  --teal-dk:  #04797c;
  --acid:     #c2ce12;
  --acid-br:  #dde83a;
  --acid-dk:  #7e8709;
  --grape:    #7b2dc0;
  --grape-br: #a45cee;
  --grape-dk: #4e1b7c;
  --blue:     #2b4fc4;

  /* Type */
  --f-display: "Anton", "Arial Narrow", sans-serif;
  --f-cond:    "Barlow Condensed", "Arial Narrow", sans-serif;
  --f-body:    "Archivo", system-ui, sans-serif;

  /* Rhythm */
  --shell:  1200px;
  --gut:    clamp(1.25rem, 4vw, 3rem);
  --sec-y:  clamp(4.5rem, 10vw, 8.5rem);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;

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

/* --------------------------------------------------------------- 2. BASE */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--body);
  font-family: var(--f-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;           /* decorative skews/blobs must never scroll the page */
}

img { max-width: 100%; height: auto; display: block; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
figure { margin: 0; }

a { color: var(--teal-br); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--acid-br); }

:focus-visible {
  outline: 3px solid var(--acid-br);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.skip {
  position: absolute; left: 1rem; top: -5rem; z-index: 200;
  background: var(--acid); color: #0b0d02;
  font-family: var(--f-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; padding: .7rem 1.1rem; border-radius: var(--r-sm);
  text-decoration: none; transition: top .18s var(--ease);
}
.skip:focus { top: 1rem; }

.shell {
  width: min(100% - (var(--gut) * 2), var(--shell));
  margin-inline: auto;
}
.shell--narrow { --shell: 860px; }

/* --------------------------------------------------------------- 3. TYPE */
h1, h2, h3 { margin: 0; color: var(--bone); font-weight: 400; }

h1, .d-xl {
  font-family: var(--f-display);
  font-size: clamp(2.75rem, 1.2rem + 7.4vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
h1 .d-xl { display: block; }

h2 {
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 1.15rem + 4.2vw, 4rem);
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 1.12rem + 0.85vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
b, strong { color: var(--bone); font-weight: 600; }

/* Skewed "brush" word — the brand's signature headline treatment. */
.slant {
  display: inline-block;
  transform: skewX(-8deg);
  transform-origin: left bottom;
}

/* Painted highlight behind a headline word. */
.hl {
  position: relative;
  isolation: isolate;
  padding-inline: 0.12em;
}
/* The bar must clear the cap height on both edges. The display face is set at
   a sub-1 line-height, so the glyphs overflow their content box — a bar inset
   to that box leaves the tops of the capitals sitting on the black ground,
   where near-black highlight text disappears entirely. Hence the negative
   block insets, and the clip-path kept shallow enough not to eat them back. */
.hl::before {
  content: "";
  position: absolute;
  inset: -0.1em -0.08em -0.06em;
  z-index: -1;
  transform: rotate(-0.7deg);
  clip-path: polygon(0.5% 4%, 99.5% 0%, 100% 95%, 0% 100%);
}
.hl--acid  { color: #10130a; }
.hl--acid::before  { background: var(--acid); }
.hl--teal  { color: #02110f; }
.hl--teal::before  { background: var(--teal); }
.hl--grape { color: #f6efff; }
.hl--grape::before { background: var(--grape); }

.eyebrow {
  margin: 0 0 1.15rem;
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--f-cond);
  font-size: clamp(0.8rem, 0.76rem + 0.2vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: ""; flex: none;
  width: clamp(1.5rem, 4vw, 2.75rem); height: 3px;
  background: currentColor;
  transform: skewX(-20deg);
}
.eyebrow--teal  { color: var(--teal-br); }
.eyebrow--acid  { color: var(--acid-br); }
.eyebrow--grape { color: var(--grape-br); }

/* ------------------------------------------------------------ 4. BUTTONS */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--bone);
  --btn-bd: var(--hair-2);
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: 0.95rem 1.75rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bd);
  border-radius: var(--r-sm);
  font-family: var(--f-cond);
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: transform .16s var(--ease), background-color .16s var(--ease),
              color .16s var(--ease), border-color .16s var(--ease),
              box-shadow .16s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }

.btn--acid {
  --btn-bg: var(--acid); --btn-fg: #10130a; --btn-bd: var(--acid);
  box-shadow: 0 0 0 rgb(194 206 18 / 0);
}
.btn--acid:hover {
  --btn-bg: var(--acid-br); --btn-bd: var(--acid-br); --btn-fg: #10130a;
  box-shadow: 0 10px 34px rgb(194 206 18 / .28);
}
.btn--ghost:hover { --btn-bd: var(--teal); --btn-fg: var(--teal-br); }

.btn--sm { padding: .6rem 1.1rem; font-size: .92rem; letter-spacing: .12em; }
.btn--lg { padding: 1.15rem 2.6rem; font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem); }

/* ------------------------------------------------------- 5. ATMOSPHERICS */
/* Soft colour blooms. */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  pointer-events: none;
}
.blob--teal  { background: var(--teal);  width: 46vw; max-width: 620px; aspect-ratio: 1; top: -14%; left: -16%; }
.blob--grape { background: var(--grape); width: 44vw; max-width: 600px; aspect-ratio: 1; bottom: -22%; right: -14%; opacity: .45; }
.blob--acid  { background: var(--acid);  width: 26vw; max-width: 330px; aspect-ratio: 1; top: 42%; right: 26%; opacity: .16; }

/* Halftone dot fields, faded at the inner edge. */
.halftone {
  position: absolute; top: 0; bottom: 0;
  width: clamp(90px, 16vw, 240px);
  background-image: radial-gradient(circle, rgb(242 242 238 / .5) 1.3px, transparent 1.4px);
  background-size: 12px 12px;
  opacity: .22;
  pointer-events: none;
}
.halftone--l { left: 0;  -webkit-mask-image: linear-gradient(90deg, #000, transparent); mask-image: linear-gradient(90deg, #000, transparent); }
.halftone--r { right: 0; -webkit-mask-image: linear-gradient(270deg, #000, transparent); mask-image: linear-gradient(270deg, #000, transparent); }

/* Film grain over the whole page. */
.grain-src { position: absolute; width: 0; height: 0; }
.grain {
  position: fixed; inset: 0; z-index: 90;
  pointer-events: none;
  opacity: .3;
  mix-blend-mode: overlay;
  filter: url(#grain);
  background: #808080;
}
@supports not (filter: url(#grain)) { .grain { display: none; } }

/* --------------------------------------------------------------- 6. HEAD */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgb(7 9 10 / .72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.site-head.is-stuck {
  background: rgb(7 9 10 / .94);
  border-bottom-color: var(--hair);
}

.head-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 4.5rem;
  padding-block: .6rem;
}

.brand {
  display: flex; align-items: center; gap: .7rem;
  margin-right: auto;
  text-decoration: none; color: inherit;
}
.brand-mark {
  width: clamp(38px, 6vw, 48px); height: auto;
  border-radius: var(--r-sm);
  border: 1px solid var(--hair-2);
}
.brand-type { display: grid; line-height: 1; }
.brand-type__1 {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, .95rem + .5vw, 1.3rem);
  letter-spacing: .02em; text-transform: uppercase;
  color: var(--bone);
}
.brand-type__2 {
  margin-top: .22em;
  font-family: var(--f-cond); font-weight: 600;
  font-size: clamp(.62rem, .58rem + .18vw, .72rem);
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--teal-br);
}

.nav { display: flex; align-items: center; gap: clamp(.9rem, 1.8vw, 1.9rem); }
.nav > a:not(.btn) {
  font-family: var(--f-cond); font-weight: 600;
  font-size: 1rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--body); text-decoration: none;
  padding-block: .3rem;
  border-bottom: 2px solid transparent;
  transition: color .16s var(--ease), border-color .16s var(--ease);
}
.nav > a:not(.btn):hover { color: var(--bone); border-bottom-color: var(--teal); }
.nav > a.is-active { color: var(--acid-br); border-bottom-color: var(--acid); }

.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--hair-2);
  border-radius: var(--r-sm); cursor: pointer;
}
.burger-box { display: grid; gap: 5px; width: 20px; }
.burger-box i { display: block; height: 2px; background: var(--bone); transition: transform .22s var(--ease), opacity .22s var(--ease); }
.burger[aria-expanded="true"] .burger-box i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] .burger-box i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger-box i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .5rem var(--gut) 1.25rem;
    background: var(--ink);
    border-bottom: 1px solid var(--hair);
    box-shadow: 0 24px 48px rgb(0 0 0 / .6);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav > a:not(.btn) { padding: .85rem 0; border-bottom: 1px solid var(--hair); font-size: 1.1rem; }
  .nav > a:not(.btn):hover { border-bottom-color: var(--hair); }
  .nav-cta { margin-top: 1rem; }
}

/* --------------------------------------------------------------- 7. HERO */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(4rem, 8vw, 7rem);
  overflow: clip;
}
.hero-fx { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero-grid {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center;
}
/* Stacked, the crest leads — but it has to stay small enough that the eyebrow
   and headline are still above the fold on a phone. At 420px it swallowed the
   entire first screen and the page opened on artwork alone. */
@media (max-width: 940px) {
  .hero { padding-block: clamp(1.5rem, 4vw, 3rem) clamp(3rem, 8vw, 5rem); }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 2.5rem); }
  .hero-art { order: -1; max-width: 300px; margin-inline: auto; }
}
@media (max-width: 620px) {
  .hero-art { max-width: 230px; }
}

.hero-copy { min-width: 0; }

.hero-lede {
  margin: clamp(1.4rem, 3vw, 2rem) 0 1.1rem;
  font-family: var(--f-cond);
  font-size: clamp(1.25rem, 1.05rem + 1.1vw, 1.85rem);
  font-weight: 600; line-height: 1.24;
  letter-spacing: .02em; text-transform: uppercase;
  color: var(--bone);
}
.hero-lede b { color: var(--teal-br); font-weight: 700; }

.hero-sub { max-width: 54ch; color: var(--body); }

.cta-row {
  display: flex; flex-wrap: wrap; gap: .85rem;
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}

.hero-meta {
  display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  margin-top: clamp(2.25rem, 4.5vw, 3.25rem);
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  overflow: hidden;
}
.hero-meta > div { background: rgb(16 22 25 / .82); padding: 1rem 1.15rem; }
.hero-meta dt {
  font-family: var(--f-cond); font-weight: 600;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
.hero-meta dd {
  margin-top: .3rem;
  font-family: var(--f-cond); font-weight: 700;
  font-size: clamp(1.02rem, .96rem + .3vw, 1.18rem);
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--bone);
}

.hero-art img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgb(0 0 0 / .7));
}

.scroll-hint {
  position: absolute; left: 50%; bottom: 1.25rem;
  translate: -50% 0;
  width: 1px; height: 44px;
  background: linear-gradient(var(--hair-2), transparent);
  overflow: hidden;
}
.scroll-hint span {
  position: absolute; inset-inline: -1px; height: 14px;
  background: var(--acid);
  animation: drip 2.4s var(--ease) infinite;
}
@keyframes drip { 0% { top: -14px; } 60%, 100% { top: 44px; } }

/* ------------------------------------------------------------- 8. TICKER */
.ticker {
  border-block: 1px solid var(--hair);
  background: linear-gradient(90deg, var(--teal-dk), var(--grape-dk) 55%, var(--acid-dk));
  overflow: hidden;
  padding-block: .7rem;
}
.ticker-track { display: flex; width: max-content; animation: slide 34s linear infinite; }
.ticker-set { display: flex; align-items: center; gap: 1.6rem; padding-right: 1.6rem; }
.ticker-set b {
  font-family: var(--f-display);
  font-size: clamp(1rem, .92rem + .45vw, 1.35rem);
  letter-spacing: .04em; text-transform: uppercase;
  color: #fff; font-weight: 400;
}
.ticker-set i { color: var(--acid-br); font-style: normal; font-size: .7rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------- 9. SECTIONS */
.sec {
  position: relative;
  padding-block: var(--sec-y);
  overflow: clip;
}
.sec--alt { background: var(--ink-1); }
.sec--alt::before,
.sec--alt::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair-2) 25%, var(--hair-2) 75%, transparent);
}
.sec--alt::before { top: 0; }
.sec--alt::after  { bottom: 0; }

.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 60ch; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }

.sec-lede {
  margin-top: 1.25rem;
  font-size: clamp(1.02rem, .98rem + .28vw, 1.15rem);
  color: var(--body);
  max-width: 58ch;
}
.sec-lede--center { margin-inline: auto; }

/* -------------------------------------------------------- 10. LEAGUE WHY */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
/* Track floors are chosen so auto-fit lands on the item count, not just on
   "as many as fit". At the 1200px shell a 280px floor gives four columns, which
   breaks six cards into an orphaned row of two; 340px gives the three the
   content wants. Same reasoning for every auto-fit grid below. */
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }

.card {
  --accent: var(--teal);
  --accent-br: var(--teal-br);
  position: relative;
  min-width: 0;
  padding: clamp(1.5rem, 2.6vw, 2rem);
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .22s var(--ease), border-color .22s var(--ease),
              background-color .22s var(--ease), box-shadow .22s var(--ease);
}
.card--acid  { --accent: var(--acid);  --accent-br: var(--acid-br); }
.card--grape { --accent: var(--grape); --accent-br: var(--grape-br); }

.card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  transform: scaleY(.34); transform-origin: top;
  transition: transform .3s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  background: var(--ink-3);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: 0 18px 44px rgb(0 0 0 / .5);
}
.card:hover::before { transform: scaleY(1); }

.card-ico {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 1.1rem;
  color: var(--accent-br);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-radius: 999px;
}
.card-ico svg { width: 21px; height: 21px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .97rem; }

/* ------------------------------------------------------------ 11. FORMAT */
.battles {
  display: grid;
  gap: clamp(.85rem, 1.6vw, 1.15rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}
.battle {
  --accent: var(--teal); --accent-br: var(--teal-br);
  position: relative;
  min-width: 0;
  display: flex; flex-direction: column; gap: .9rem;
  padding: clamp(1.25rem, 2.2vw, 1.6rem);
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-top: 3px solid var(--accent);
  border-radius: var(--r-md);
  transition: transform .22s var(--ease), background-color .22s var(--ease),
              box-shadow .22s var(--ease);
}
.battle--acid  { --accent: var(--acid);  --accent-br: var(--acid-br); }
.battle--grape { --accent: var(--grape); --accent-br: var(--grape-br); }
.battle:hover { transform: translateY(-4px); background: var(--ink-3); box-shadow: 0 16px 38px rgb(0 0 0 / .5); }

.battle-no {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 2rem + 1.6vw, 3.1rem);
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--accent) 70%, transparent);
}
.battle h3 { color: var(--accent-br); }
.battle-kind {
  margin: .35rem 0 .8rem;
  font-family: var(--f-cond); font-weight: 600;
  font-size: .88rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}
.battle-score {
  margin: 0; padding-top: .8rem;
  border-top: 1px solid var(--hair);
  font-family: var(--f-cond); font-weight: 600;
  font-size: 1.02rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--body);
}
.battle-score b { color: var(--bone); font-weight: 700; }
.battle--final { background: linear-gradient(180deg, rgb(123 45 192 / .17), var(--ink-2) 62%); }

.battles-note {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-left: 1rem;
  border-left: 3px solid var(--acid);
  font-family: var(--f-cond); font-weight: 600;
  font-size: clamp(1rem, .95rem + .3vw, 1.15rem);
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--body);
}

/* -------------------------------------------------------------- 12. DUEL */
.duel { background: radial-gradient(120% 90% at 78% 42%, rgb(123 45 192 / .22), transparent 62%), var(--ink); }
.duel-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  align-items: center;
}
@media (max-width: 900px) {
  .duel-grid { grid-template-columns: minmax(0, 1fr); }
  .duel-art { max-width: 300px; }
}
.duel-art img {
  width: 100%;
  border-radius: var(--r-lg);
  filter: drop-shadow(0 24px 54px rgb(123 45 192 / .38));
}
.duel-copy { min-width: 0; }
.duel-lede {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1rem + .35vw, 1.2rem);
  max-width: 56ch;
}

.duel-stat {
  display: flex; align-items: center; gap: 1.1rem;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) 0;
  padding: 1.1rem 1.4rem;
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-left: 4px solid var(--grape);
  border-radius: var(--r-md);
}
.duel-stat__n {
  font-family: var(--f-display);
  font-size: clamp(3rem, 2.3rem + 3vw, 4.75rem);
  line-height: .8;
  color: var(--acid-br);
}
.duel-stat__t {
  font-family: var(--f-cond); font-weight: 600;
  font-size: clamp(.95rem, .9rem + .25vw, 1.08rem);
  line-height: 1.3; letter-spacing: .16em; text-transform: uppercase;
  color: var(--body);
}

.rotation {
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  background: rgb(16 22 25 / .7);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
}
.rotation h3 { margin-bottom: .7rem; color: var(--teal-br); }
.rotation ul { display: grid; gap: .55rem; margin-top: .9rem; }
.rotation li { position: relative; padding-left: 1.6rem; }
.rotation li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 9px; height: 9px;
  background: var(--acid);
  transform: skewX(-16deg);
}
.duel-kicker {
  margin-top: 1.5rem;
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.9rem);
  letter-spacing: .02em; text-transform: uppercase;
  color: var(--teal-br);
  transform: skewX(-8deg); transform-origin: left;
}

/* --------------------------------------------------------- 13. WILDCARDS */
.wild-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr));
}
.wild {
  --accent: var(--teal); --accent-br: var(--teal-br);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.1rem, 2.2vw, 1.75rem);
  align-items: center;
  min-width: 0;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
}
.wild--jackass { --accent: var(--grape); --accent-br: var(--grape-br); }
@media (max-width: 620px) {
  .wild { grid-template-columns: minmax(0, 1fr); }
  .wild-art { max-width: 230px; }
}
.wild-art img { width: 100%; border-radius: var(--r-md); }
.wild-copy { min-width: 0; }

.wild-tag {
  margin: 0 0 .6rem;
  display: inline-block;
  padding: .28rem .7rem;
  font-family: var(--f-cond); font-weight: 700;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  border-radius: 999px;
}
.wild-tag--teal  { color: var(--teal-br);  background: rgb(5 180 184 / .14);  border: 1px solid rgb(5 180 184 / .4); }
.wild-tag--grape { color: var(--grape-br); background: rgb(123 45 192 / .18); border: 1px solid rgb(123 45 192 / .5); }

.wild h3 { margin-bottom: .7rem; }
.wild p { font-size: .97rem; }

.wild-effect {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem;
  margin: 1rem 0;
  padding: .7rem .9rem;
  background: rgb(194 206 18 / .1);
  border-left: 3px solid var(--acid);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--f-cond); font-weight: 700;
  font-size: 1.02rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--bone);
}
.wild-effect span { color: var(--acid-br); }

.wild-foot { margin-top: 1rem; font-size: .9rem; color: var(--muted); }

.jackass-list { display: grid; gap: .6rem; margin: 1rem 0; }
.jackass-list li { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; font-size: .95rem; }
.chip {
  flex: none;
  padding: .22rem .6rem;
  font-family: var(--f-cond); font-weight: 700;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  border-radius: var(--r-sm);
}
.chip--yellow { background: #d8c11a; color: #16130a; }
.chip--red    { background: #cf2f36; color: #fff; }

/* Two referee cards, drawn in CSS. */
.wild-art--cards {
  position: relative;
  display: grid; place-items: center;
  min-height: 210px;
  padding: 1.5rem 0;
}
.playcard {
  position: absolute;
  width: clamp(72px, 16vw, 96px);
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgb(0 0 0 / .6);
}
.playcard--yellow { background: linear-gradient(150deg, #e6cf28, #b9a30d); transform: rotate(-13deg) translate(-28%, -4%); }
.playcard--red    { background: linear-gradient(150deg, #e2454c, #a51a21); transform: rotate(11deg) translate(28%, 6%); }

/* --------------------------------------------------------- 14. DIVISIONS */
.div-grid {
  display: grid;
  gap: clamp(1.1rem, 2.2vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr));
}
.tier {
  --accent: #b8bfc4;
  position: relative;
  min-width: 0;
  padding: clamp(1.5rem, 2.8vw, 2.25rem);
  background: linear-gradient(165deg, color-mix(in srgb, var(--accent) 11%, var(--ink-2)), var(--ink-2) 58%);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.tier--gold { --accent: #d8b62b; }
.tier::after {
  content: ""; position: absolute; right: -30px; top: -30px;
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--accent); opacity: .1; filter: blur(28px);
}
.tier-name {
  margin: 0 0 1.25rem;
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 1.25rem + 1.2vw, 2.1rem);
  line-height: 1; letter-spacing: .01em; text-transform: uppercase;
  color: var(--accent);
}
.tier-specs { display: grid; gap: 1px; background: var(--hair); border-radius: var(--r-md); overflow: hidden; }
.tier-specs > div {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: .5rem 1rem;
  padding: .85rem 1rem;
  background: rgb(7 9 10 / .55);
}
.tier-specs dt {
  font-family: var(--f-cond); font-weight: 600;
  font-size: .86rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}
.tier-specs dd {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 1.3rem + .9vw, 2rem);
  line-height: 1; color: var(--bone);
}
.tier-specs dd span {
  font-family: var(--f-cond); font-weight: 600;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}

.div-note {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding: 1rem 1.15rem;
  background: rgb(16 22 25 / .7);
  border: 1px dashed var(--hair-2);
  border-radius: var(--r-md);
  font-size: .97rem;
}

/* ------------------------------------------------------------ 15. ROSTER */
.roster-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.panel {
  min-width: 0;
  padding: clamp(1.5rem, 2.6vw, 2rem);
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
}
.panel h3 { margin-bottom: .9rem; color: var(--teal-br); }
.panel p { font-size: .97rem; }
.panel--accent { border-color: rgb(194 206 18 / .35); background: linear-gradient(165deg, rgb(194 206 18 / .09), var(--ink-2) 60%); }
.panel--accent h3 { color: var(--acid-br); }

.roster-figure {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .45rem;
  margin-bottom: .9rem;
  font-family: var(--f-cond); font-weight: 600;
  font-size: 1.05rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--body);
}
.roster-figure b {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(2rem, 1.7rem + 1.4vw, 2.75rem);
  line-height: .85; color: var(--bone);
}
.roster-figure i { color: var(--acid); font-style: normal; }
.roster-figure span { font-size: .8rem; letter-spacing: .18em; color: var(--muted); }
.roster-prize { color: var(--acid-br); font-weight: 500; }
.roster-prize b { color: var(--acid-br); }

.score-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: start;
}
@media (max-width: 860px) { .score-grid { grid-template-columns: minmax(0, 1fr); } }
.score-copy { min-width: 0; }
.score-copy h3 { margin-bottom: .9rem; }

.score-rows { display: grid; gap: 1px; margin-top: 1.5rem; background: var(--hair); border: 1px solid var(--hair); border-radius: var(--r-md); overflow: hidden; }
.score-rows li {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: .4rem 1rem;
  padding: .75rem 1rem;
  background: var(--ink-2);
  font-family: var(--f-cond); font-weight: 600;
  font-size: 1rem; letter-spacing: .08em; text-transform: uppercase;
}
.score-rows span { color: var(--body); }
.score-rows b { color: var(--bone); font-weight: 700; }
.score-rows .is-bonus { background: rgb(5 180 184 / .1); }
.score-rows .is-bonus b { color: var(--teal-br); }
.score-rows .is-total { background: rgb(194 206 18 / .12); }
.score-rows .is-total span, .score-rows .is-total b { color: var(--acid-br); }

.score-art img {
  width: 100%;
  border: 1px solid var(--hair-2);
  border-radius: var(--r-md);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.score-art a:hover img { transform: translateY(-4px); border-color: var(--teal); }
.score-art figcaption {
  margin-top: .8rem;
  font-family: var(--f-cond); font-weight: 600;
  font-size: .85rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}

/* ------------------------------------------------------------- 16. DRAFT */
.draft {
  position: relative;
  background: var(--ink-1);
  border-block: 1px solid var(--hair);
  text-align: center;
}
.draft-fx { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.draft .shell { position: relative; }

.draft-facts {
  display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  overflow: hidden;
}
.draft-facts li { display: grid; gap: .4rem; padding: 1.35rem 1rem; background: rgb(7 9 10 / .6); }
.draft-facts__k {
  font-family: var(--f-cond); font-weight: 600;
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
}
.draft-facts__v {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 1rem + .7vw, 1.5rem);
  line-height: 1.1; letter-spacing: .01em; text-transform: uppercase;
  color: var(--bone);
}

.draft-cta__note {
  margin-top: 1.1rem;
  font-family: var(--f-cond); font-weight: 600;
  font-size: .95rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}

.draft-pillars {
  display: grid; gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--hair);
}
.draft-pillars li { display: grid; gap: .2rem; }
.draft-pillars b {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(1.15rem, 1.05rem + .5vw, 1.4rem);
  letter-spacing: .02em; text-transform: uppercase;
  color: var(--bone);
}
.draft-pillars span {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 1.05rem + .5vw, 1.4rem);
  letter-spacing: .02em; text-transform: uppercase;
  color: var(--acid-br);
}

/* --------------------------------------------------- 17. RULES/MATERIALS */
.mats {
  display: grid;
  gap: clamp(1.1rem, 2.2vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
}
.mat { min-width: 0; }
.mat a {
  display: grid;
  height: 100%;
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.mat a:hover { transform: translateY(-5px); border-color: var(--teal); box-shadow: 0 18px 44px rgb(0 0 0 / .55); }
.mat img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top center; }
.mat-body { display: grid; gap: .3rem; padding: 1.1rem 1.25rem 1.35rem; border-top: 1px solid var(--hair); }
.mat-body b {
  font-family: var(--f-display); font-weight: 400;
  font-size: 1.25rem; letter-spacing: .01em; text-transform: uppercase;
  color: var(--bone);
}
.mat-body i {
  font-family: var(--f-cond); font-style: normal; font-weight: 600;
  font-size: .85rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}

.notes {
  margin-top: clamp(2.25rem, 4.5vw, 3.25rem);
  padding: clamp(1.5rem, 2.8vw, 2.25rem);
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-left: 4px solid var(--grape);
  border-radius: var(--r-md);
}
.notes h3 { margin-bottom: 1rem; color: var(--grape-br); }
.notes ul { display: grid; gap: .65rem; }
.notes li { position: relative; padding-left: 1.7rem; font-size: .97rem; }
.notes li::before {
  content: "★"; position: absolute; left: 0; top: 0;
  color: var(--teal-br); font-size: .85rem; line-height: 1.9;
}

/* --------------------------------------------------------------- 18. FAQ */
.faq { display: grid; gap: .7rem; }
.faq details {
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq details[open] { border-color: rgb(5 180 184 / .4); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--f-cond); font-weight: 700;
  font-size: clamp(1.02rem, .98rem + .3vw, 1.15rem);
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--bone);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none;
  width: 12px; height: 12px;
  border-right: 2px solid var(--teal-br);
  border-bottom: 2px solid var(--teal-br);
  rotate: 45deg; translate: 0 -3px;
  transition: rotate .22s var(--ease), translate .22s var(--ease);
}
.faq details[open] summary::after { rotate: -135deg; translate: 0 3px; }
.faq summary:hover { color: var(--teal-br); }
.faq details > div { padding: 0 1.35rem 1.25rem; }
.faq details > div p { font-size: .97rem; max-width: 68ch; }

/* ------------------------------------------------------------ 19. FOOTER */
.site-foot {
  background: #050607;
  border-top: 1px solid var(--hair);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
/* `min(100%, …)` in the track floor is what stops the brand column being
   crushed below its content at 320px: a bare `minmax(150px, 1fr)` floor cannot
   shrink, so the tracks outgrow the container instead of wrapping. */
.foot-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.foot-brand { min-width: 0; max-width: 340px; grid-column: 1 / -1; }
@media (min-width: 700px) { .foot-brand { grid-column: auto; } }
.foot-brand img { width: 100%; }
.foot-tag {
  margin-top: 1rem;
  font-family: var(--f-cond); font-weight: 600;
  font-size: .95rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}
.foot-nav { display: grid; gap: .55rem; align-content: start; }
.foot-nav__h {
  margin: 0 0 .35rem;
  font-family: var(--f-cond); font-weight: 700;
  font-size: .82rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--acid-br);
}
.foot-nav a {
  font-size: .95rem;
  color: var(--body);
  text-decoration: none;
  transition: color .16s var(--ease);
}
.foot-nav a:hover { color: var(--teal-br); text-decoration: underline; }

.foot-creed {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: .9rem;
  padding: 1rem var(--gut);
  background: linear-gradient(90deg, var(--teal-dk), var(--grape-dk) 55%, var(--acid-dk));
  font-family: var(--f-display);
  font-size: clamp(.9rem, .84rem + .35vw, 1.15rem);
  letter-spacing: .06em; text-transform: uppercase;
  color: #fff;
  text-align: center;
}
.foot-creed i { color: var(--acid-br); font-style: normal; font-size: .65rem; }

.foot-legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem;
  padding-block: 1.5rem;
  font-family: var(--f-cond); font-weight: 500;
  font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.foot-legal p { margin: 0; }

/* ------------------------------------------------------------ 20. MOTION */
/* Reveals are gated on `html.js`, which the inline head script sets. With
   scripting blocked the class never lands and the content is simply visible —
   the one failure mode a scroll animation must never have. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .62s var(--ease) var(--d, 0ms),
              transform .62s var(--ease) var(--d, 0ms);
}
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .scroll-hint { display: none; }
}
