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

   The brand is a black-ground tropical badge: three screaming accents
   (teal / acid / orange) 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 official Wild Donkey logo */
  --teal: #06bfc3;
  --teal-br: #4de8eb;
  --teal-dk: #058a8d;
  --acid: #d4ee12;
  --acid-br: #eeff40;
  --acid-dk: #8a9208;
  --grape: #f07000;
  --grape-br: #ff9833;
  --grape-dk: #b84e00;
  --green: #2ea84a;
  --green-br: #4fd06a;
  --blue: #1a4a8a;

  /* 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(0.22, 0.61, 0.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: 0.1em;
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: top 0.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: #1a0d00;
}
.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: 0.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 0.16s var(--ease),
    background-color 0.16s var(--ease),
    color 0.16s var(--ease),
    border-color 0.16s var(--ease),
    box-shadow 0.16s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0) scale(0.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 / 0.28);
}
.btn--ghost:hover {
  --btn-bd: var(--teal);
  --btn-fg: var(--teal-br);
}

.btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}
.btn--lg {
  padding: 1.15rem 2.6rem;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem);
}

/* ------------------------------------------------------- 5. ATMOSPHERICS */
/* Soft colour blooms. */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.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: 0.45;
}
.blob--acid {
  background: var(--acid);
  width: 26vw;
  max-width: 330px;
  aspect-ratio: 1;
  top: 42%;
  right: 26%;
  opacity: 0.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 / 0.5) 1.3px, transparent 1.4px);
  background-size: 12px 12px;
  opacity: 0.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: 0.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 / 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.site-head.is-stuck {
  background: rgb(7 9 10 / 0.94);
  border-bottom-color: var(--hair);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  width: clamp(38px, 6vw, 48px);
  height: clamp(38px, 6vw, 48px);
  object-fit: contain;
  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, 0.95rem + 0.5vw, 1.3rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bone);
}
.brand-type__2 {
  margin-top: 0.22em;
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: clamp(0.62rem, 0.58rem + 0.18vw, 0.72rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-br);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.9rem);
}
.nav > a:not(.btn) {
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body);
  text-decoration: none;
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
  transition:
    color 0.16s var(--ease),
    border-color 0.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 0.22s var(--ease),
    opacity 0.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: 0.5rem var(--gut) 1.25rem;
    background: var(--ink);
    border-bottom: 1px solid var(--hair);
    box-shadow: 0 24px 48px rgb(0 0 0 / 0.6);
    display: none;
  }
  .nav.is-open {
    display: flex;
  }
  .nav > a:not(.btn) {
    padding: 0.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, 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: 0.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: 0.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 / 0.82);
  padding: 1rem 1.15rem;
}
.hero-meta dt {
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta dd {
  margin-top: 0.3rem;
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: clamp(1.02rem, 0.96rem + 0.3vw, 1.18rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
}

.hero-art img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgb(0 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: 0.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, 0.92rem + 0.45vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
}
.ticker-set i {
  color: var(--acid-br);
  font-style: normal;
  font-size: 0.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, 0.98rem + 0.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 0.22s var(--ease),
    border-color 0.22s var(--ease),
    background-color 0.22s var(--ease),
    box-shadow 0.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(0.34);
  transform-origin: top;
  transition: transform 0.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 / 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: 0.5rem;
}
.card p {
  font-size: 0.97rem;
}

/* ------------------------------------------------------------ 11. FORMAT */
.battles {
  display: grid;
  gap: clamp(0.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: 0.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 0.22s var(--ease),
    background-color 0.22s var(--ease),
    box-shadow 0.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 / 0.5);
}

.battle-no {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 2rem + 1.6vw, 3.1rem);
  line-height: 0.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: 0.35rem 0 0.8rem;
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.battle-score {
  margin: 0;
  padding-top: 0.8rem;
  border-top: 1px solid var(--hair);
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--body);
}
.battle-score b {
  color: var(--bone);
  font-weight: 700;
}
.battle--final {
  background: linear-gradient(180deg, rgb(240 112 0 / 0.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, 0.95rem + 0.3vw, 1.15rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--body);
}

/* -------------------------------------------------------------- 12. DUEL */
.duel {
  background:
    radial-gradient(120% 90% at 78% 42%, rgb(240 112 0 / 0.22), transparent 62%), var(--ink);
}
.duel-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 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(240 112 0 / 0.38));
}
.duel-copy {
  min-width: 0;
}
.duel-lede {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1rem + 0.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: 0.8;
  color: var(--acid-br);
}
.duel-stat__t {
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.08rem);
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--body);
}

.rotation {
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  background: rgb(16 22 25 / 0.7);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
}
.rotation h3 {
  margin-bottom: 0.7rem;
  color: var(--teal-br);
}
.rotation ul {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
}
.rotation li {
  position: relative;
  padding-left: 1.6rem;
}
.rotation li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  background: var(--acid);
  transform: skewX(-16deg);
}
.rotation-foot {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--body);
}
.rotation-foot b {
  color: var(--acid-br);
}
.duel-kicker {
  margin-top: 1.5rem;
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.9rem);
  letter-spacing: 0.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, 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);
}
.wild--flip {
  --accent: var(--acid);
  --accent-br: var(--acid-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 0.6rem;
  display: inline-block;
  padding: 0.28rem 0.7rem;
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
}
.wild-tag--teal {
  color: var(--teal-br);
  background: rgb(5 180 184 / 0.14);
  border: 1px solid rgb(5 180 184 / 0.4);
}
.wild-tag--grape {
  color: var(--grape-br);
  background: rgb(123 45 192 / 0.18);
  border: 1px solid rgb(123 45 192 / 0.5);
}

.wild h3 {
  margin-bottom: 0.7rem;
}
.wild p {
  font-size: 0.97rem;
}

.wild-effect {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem;
  margin: 1rem 0;
  padding: 0.7rem 0.9rem;
  background: rgb(194 206 18 / 0.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: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
}
.wild-effect span {
  color: var(--acid-br);
}

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

.jackass-list {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0;
}
.jackass-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}
.chip {
  flex: none;
  padding: 0.22rem 0.6rem;
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.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 / 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%);
}

.wild-art--flip {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 1.5rem 0;
}
.flip-card {
  width: clamp(88px, 18vw, 110px);
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  background: linear-gradient(155deg, var(--acid-br), var(--acid-dk));
  box-shadow: 0 14px 34px rgb(0 0 0 / 0.6);
  transform: rotate(-8deg);
  border: 2px solid rgb(255 255 255 / 0.15);
}
.flip-card::after {
  content: '↻';
  display: grid;
  place-items: center;
  height: 100%;
  font-family: var(--f-display);
  font-size: 2.5rem;
  color: var(--ink);
  opacity: 0.55;
}
.wild-tag--acid {
  color: var(--acid-br);
  background: rgb(194 206 18 / 0.14);
  border: 1px solid rgb(194 206 18 / 0.45);
}

/* ------------------------------------------------------------ 14. FIELD */
.field-card {
  --accent: var(--teal);
  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;
}
.field-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
@media (min-width: 720px) {
  .field-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.field-cards .field-card:nth-child(2) {
  --accent: var(--grape);
}
.field-card::after {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.1;
  filter: blur(28px);
}
.field-card__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: 0.01em;
  text-transform: uppercase;
  color: var(--accent);
}
.field-specs {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--hair);
  border-radius: var(--r-md);
  overflow: hidden;
}
.field-specs > div {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.95rem 1rem;
  background: rgb(7 9 10 / 0.55);
}
.field-specs dt {
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field-specs dd {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 1.3rem + 0.9vw, 2rem);
  line-height: 1;
  color: var(--bone);
}
.field-specs dd span {
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 640px) {
  .field-specs {
    grid-template-columns: 1fr;
  }
  .field-specs > div {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1rem;
  }
}

.field-note {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding: 1rem 1.15rem;
  background: rgb(16 22 25 / 0.7);
  border: 1px dashed var(--hair-2);
  border-radius: var(--r-md);
  font-size: 0.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: 0.9rem;
  color: var(--teal-br);
}
.panel p {
  font-size: 0.97rem;
}
.panel--accent {
  border-color: rgb(194 206 18 / 0.35);
  background: linear-gradient(165deg, rgb(194 206 18 / 0.09), var(--ink-2) 60%);
}
.panel--accent h3 {
  color: var(--acid-br);
}

.roster-figure {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.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: 0.85;
  color: var(--bone);
}
.roster-figure i {
  color: var(--acid);
  font-style: normal;
}
.roster-figure span {
  font-size: 0.8rem;
  letter-spacing: 0.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, 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: 0.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: 0.4rem 1rem;
  padding: 0.75rem 1rem;
  background: var(--ink-2);
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.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 / 0.1);
}
.score-rows .is-bonus b {
  color: var(--teal-br);
}
.score-rows .is-total {
  background: rgb(194 206 18 / 0.12);
}
.score-rows .is-total span,
.score-rows .is-total b {
  color: var(--acid-br);
}

.score-notes {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
  padding-left: 0;
  list-style: none;
}
.score-notes li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.score-notes li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--teal-br);
  font-weight: 700;
}
.score-notes b {
  color: var(--body);
  font-weight: 600;
}

.score-art img {
  width: 100%;
  border: 1px solid var(--hair-2);
  border-radius: var(--r-md);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.score-art a:hover img {
  transform: translateY(-4px);
  border-color: var(--teal);
}
.score-art figcaption {
  margin-top: 0.8rem;
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.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: 0.4rem;
  padding: 1.35rem 1rem;
  background: rgb(7 9 10 / 0.6);
}
.draft-facts__k {
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.draft-facts__v {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--bone);
}

.draft-cta__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}
.draft-cta__note {
  margin-top: 1.1rem;
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.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: 0.2rem;
}
.draft-pillars b {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bone);
}
.draft-pillars span {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--acid-br);
}

/* ------------------------------------------------------ 16b. DRAFT PAGE */
.draft-includes {
  display: grid;
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.draft-includes li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: start;
  padding: clamp(1.25rem, 2.4vw, 1.75rem) clamp(1.15rem, 2.2vw, 1.6rem);
  background: var(--ink-2);
}
.draft-includes b {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--acid-br);
}
.draft-includes h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.25rem);
}
.draft-includes p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--body);
}

.draft-prose {
  max-width: 72rem;
}
.draft-prose__body {
  display: grid;
  gap: 1.25rem;
  max-width: 68ch;
}
.draft-prose__body p {
  font-size: clamp(1.02rem, 0.98rem + 0.28vw, 1.15rem);
  color: var(--body);
}
.draft-prose__body b {
  color: var(--bone);
  font-weight: 600;
}

.draft-bring {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  overflow: hidden;
  text-align: center;
}
.draft-bring li {
  padding: 1.35rem 1rem;
  background: rgb(7 9 10 / 0.6);
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 0.95rem + 0.55vw, 1.3rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bone);
}

/* --------------------------------------------------- 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 0.22s var(--ease),
    border-color 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}
.mat a:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: 0 18px 44px rgb(0 0 0 / 0.55);
}
.mat img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}
.mat-body {
  display: grid;
  gap: 0.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: 0.01em;
  text-transform: uppercase;
  color: var(--bone);
}
.mat-body i {
  font-family: var(--f-cond);
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.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: 0.65rem;
}
.notes li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.97rem;
}
.notes li::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-br);
  font-size: 0.85rem;
  line-height: 1.9;
}

/* --------------------------------------------------------------- 18. FAQ */
.faq {
  display: grid;
  gap: 0.7rem;
}
.faq details {
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq details[open] {
  border-color: rgb(5 180 184 / 0.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, 0.98rem + 0.3vw, 1.15rem);
  letter-spacing: 0.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 0.22s var(--ease),
    translate 0.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: 0.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: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot-nav {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}
.foot-nav__h {
  margin: 0 0 0.35rem;
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--acid-br);
}
.foot-nav a {
  font-size: 0.95rem;
  color: var(--body);
  text-decoration: none;
  transition: color 0.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: 0.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(0.9rem, 0.84rem + 0.35vw, 1.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
.foot-creed i {
  color: var(--acid-br);
  font-style: normal;
  font-size: 0.65rem;
}

.foot-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-block: 1.5rem;
  font-family: var(--f-cond);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.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 0.62s var(--ease) var(--d, 0ms),
    transform 0.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: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
  .ticker-track {
    animation: none;
  }
  .scroll-hint {
    display: none;
  }
}

/* ------------------------------------------------------ 21. SEASON PAGE */
.hero--season {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.season-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.season-tabs a {
  padding: 0.55rem 1rem;
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--body);
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: 999px;
  transition:
    color 0.16s var(--ease),
    border-color 0.16s var(--ease),
    background 0.16s var(--ease);
}
.season-tabs a:hover,
.season-tabs a.is-active {
  color: var(--acid-br);
  border-color: rgb(194 206 18 / 0.45);
  background: rgb(194 206 18 / 0.08);
}

.league-switch-wrap {
  padding-block: clamp(1.25rem, 3vw, 2rem) 0;
}
.league-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.league-tabs button {
  appearance: none;
  cursor: pointer;
  padding: 0.65rem 1.25rem;
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--body);
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: 999px;
  transition:
    color 0.16s var(--ease),
    border-color 0.16s var(--ease),
    background 0.16s var(--ease);
}
.league-tabs button:hover,
.league-tabs button.is-active {
  color: var(--teal-br);
  border-color: rgb(6 191 195 / 0.45);
  background: rgb(6 191 195 / 0.1);
}
.league-switch-note {
  margin: 0.85rem 0 0;
  max-width: 40rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.league-panel__label {
  margin: 0 0 1.25rem;
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-br);
}
/* With JS the switcher hides the inactive panel; without it both stack. */
html.js .league-panel:not(.is-active) {
  display: none;
}
html.js .league-panel__label {
  /* Tabs already name the division. */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
html.no-js .league-switch-wrap {
  display: none;
}
html.no-js .league-panel + .league-panel {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--hair);
}

.standings-wrap {
  overflow-x: auto;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  background: var(--ink-2);
}
.standings {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-family: var(--f-cond);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
.standings th,
.standings td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--hair);
}
.standings th {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgb(7 9 10 / 0.55);
}
.standings td {
  color: var(--body);
}
.standings td:first-child,
.standings th:first-child {
  padding-left: 1.25rem;
}
.standings td:last-child,
.standings th:last-child {
  padding-right: 1.25rem;
  text-align: right;
  font-weight: 700;
  color: var(--bone);
}
.standings tbody tr:last-child td {
  border-bottom: none;
}
.standings .rank {
  width: 2.5rem;
  color: var(--muted);
  font-weight: 700;
}
.standings .team-name {
  font-weight: 700;
  color: var(--bone);
}
.standings .is-leader td:last-child {
  color: var(--acid-br);
}

.schedule-week {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.schedule-week__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--hair);
}
.schedule-week__head h3 {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 1.15rem + 0.9vw, 1.85rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--teal-br);
}
.schedule-week__date {
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.schedule-week__status {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.55rem;
  border: 1px solid rgb(194 206 18 / 0.45);
  border-radius: 999px;
  background: rgb(194 206 18 / 0.08);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--acid-br);
}
.schedule-week__status--next {
  border-color: rgb(6 191 195 / 0.45);
  background: rgb(6 191 195 / 0.08);
  color: var(--teal-br);
}

.matchups {
  display: grid;
  gap: 0.85rem;
}
.matchup {
  display: grid;
  gap: 0.65rem;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
}
.matchup__no {
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.matchup__teams {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
}
.matchup__team {
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.08rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
}
.matchup__team:last-child {
  text-align: right;
}
.matchup__vs {
  font-family: var(--f-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grape-br);
  text-align: center;
}
.matchup__score {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.3rem);
  letter-spacing: 0.06em;
  color: var(--bone);
  text-align: center;
  white-space: nowrap;
}
.matchup__score i {
  margin: 0 0.3rem;
  font-style: normal;
  color: var(--muted);
}
.matchup--final .matchup__team.is-win {
  color: var(--acid-br);
}

.teams-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}
.team-card {
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
}
.team-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}
.team-card__name {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.45rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--teal-br);
}
.team-card__dupr {
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acid-br);
}
.team-card__captains {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.team-card__captains b {
  color: var(--body);
  font-weight: 600;
}
.roster-list {
  display: grid;
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  overflow: hidden;
}
.roster-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  padding: 0.65rem 0.85rem;
  background: rgb(7 9 10 / 0.55);
  font-size: 0.95rem;
}
.roster-list span {
  color: var(--body);
}
.roster-list b {
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--bone);
}

.season-note {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding: 1rem 1.15rem;
  background: rgb(16 22 25 / 0.7);
  border: 1px dashed var(--hair-2);
  border-radius: var(--r-md);
  font-size: 0.97rem;
  color: var(--muted);
}
.season-note b {
  color: var(--body);
}
