/* ==========================================================================
   FLAG FOOTBALL UNITED — STYLES
   Aesthetic: sports broadcast / scoreboard / streetwear
   Typography: Anton (display) · Barlow Condensed (sub) · Manrope (body)
   ========================================================================== */

/* ---------- Reset / Base ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', -apple-system, system-ui, sans-serif;
  background: var(--ink);
  color: var(--bone);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Design Tokens ---------- */
:root {
  /* surfaces */
  --ink:      #0a0a0a;
  --ink-2:    #131313;
  --ink-3:    #1c1c1c;
  --ink-4:    #2a2a2a;
  --paper:    #f5f5f4;
  --bone:     #e8e6e1;
  --steel:    #8a8a8a;
  --steel-2:  #555;

  /* brand
   * --blaze (FFU red) is the dominant brand accent. Eyebrows, link hovers,
   *   title accents, list markers, callouts — anywhere you'd reach for "the brand color".
   * --electric (lime) is reserved for primary CTAs, the live-game ticker,
   *   and the single mid-page register-now banner. It's loud — its loudness
   *   is what makes it work, so don't dilute it by spreading it around.
   */
  --blaze:    #e11d2a;       /* FFU red — brand accent */
  --blaze-2:  #a8121d;       /* deep red — hover */
  --electric: #c8ff19;       /* primary CTA, ticker, register-now banner */
  --electric-2:#a8e000;      /* lime hover */
  --gold:     #ffb800;
  --field:    #0e3b29;       /* deep field green for accents */

  /* type */
  --display:  'Anton', 'Oswald', Impact, sans-serif;
  --condensed:'Barlow Condensed', 'Oswald', sans-serif;
  --body:     'Manrope', system-ui, sans-serif;

  /* layout */
  --container: 1200px;
  --pad-x: clamp(20px, 4vw, 48px);
  --section-y: clamp(64px, 9vw, 120px);

  /* motion */
  --ease: cubic-bezier(.2,.8,.2,1);
}

/* ---------- Typography utilities ---------- */
.display, h1, .h1 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.88;
  text-transform: uppercase;
}
h2, .h2, h3, .h3, h4, .h4 {
  font-family: var(--condensed);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blaze);
}
.label {
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-tight { padding: clamp(48px, 7vw, 88px) 0; }
.divider { border-top: 1px solid var(--ink-4); }

/* ---------- Broadcast ticker top bar ---------- */
.ticker {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-bottom: 1px solid var(--ink-4);
}
.ticker__track {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 32s linear infinite;
}
.ticker__track > span { padding: 0 24px; }
.ticker__track > span::before {
  content: '●';
  margin-right: 12px;
  color: var(--blaze);
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-4);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav__links a, .nav__dropdown-toggle {
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav__links a:hover, .nav__dropdown-toggle:hover { color: var(--blaze); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blaze);
  transition: width .25s var(--ease);
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__dropdown { position: relative; }
.nav__dropdown-toggle::after {
  content: '▾';
  margin-left: 4px;
  font-size: 10px;
  color: var(--blaze);
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  min-width: 240px;
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu { display: flex; }
.nav__dropdown-menu a {
  padding: 12px 14px;
  font-size: 13px;
  letter-spacing: 0.12em;
  border-left: 2px solid transparent;
  transition: all .2s var(--ease);
}
.nav__dropdown-menu a:hover {
  background: var(--ink-3);
  border-left-color: var(--blaze);
  color: var(--blaze);
}
.nav__dropdown-menu a::after { display: none; }

.nav__cta {
  display: none;
}

/* mobile menu button */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  margin-right: -12px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--paper);
  transition: all .25s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--ink);
  padding: calc(72px + 24px) var(--pad-x) 64px;
  transform: translateY(-100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
  z-index: 40;
}
.nav__mobile.is-open { transform: translateY(0); }
.nav__mobile-section {
  padding: 20px 0;
  border-bottom: 1px solid var(--ink-4);
}
.nav__mobile-section h4 {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--blaze);
  margin-bottom: 14px;
}
.nav__mobile a {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 10px 0;
  color: var(--paper);
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.nav__mobile a:hover, .nav__mobile a:active { color: var(--blaze); transform: translateX(6px); }
.nav__mobile-cta {
  display: block;
  margin-top: 24px;
  background: var(--blaze);
  color: var(--ink) !important;
  text-align: center;
  padding: 18px !important;
  font-family: var(--display) !important;
  font-size: 22px !important;
}

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 2px solid transparent;
  background: var(--ink-3);
  color: var(--paper);
  transition: all .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--blaze);
  color: var(--ink);
  font-size: 18px;
  padding: 20px 32px;
}
.btn--primary:hover { background: var(--blaze-2); }

.btn--secondary {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn--secondary:hover { background: var(--paper); color: var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--ink-4);
}
.btn--ghost:hover { border-color: var(--blaze); color: var(--blaze); }

.btn--xl {
  font-size: 20px;
  padding: 24px 36px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 90vh, 820px);
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: contrast(1.1) saturate(0.85);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 60%, var(--ink) 100%),
    linear-gradient(90deg, var(--ink) 0%, transparent 40%, transparent 60%, var(--ink) 100%);
}
/* yardage stripes overlay */
.hero__field {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(10% - 1px),
    rgba(232,230,225,0.04) calc(10% - 1px),
    rgba(232,230,225,0.04) 10%
  );
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0 60px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--blaze);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(0.8); }
}
.hero__title {
  font-size: clamp(64px, 14vw, 200px);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--paper);
}
.hero__title .accent { color: var(--blaze); }
.hero__title .stroke {
  -webkit-text-stroke: 2px var(--paper);
  color: transparent;
}
.hero__sub {
  font-family: var(--condensed);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
  color: var(--bone);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__sub strong { color: var(--blaze); font-weight: 700; }

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 48px;
}
@media (min-width: 600px) {
  .hero__ctas { flex-direction: row; align-items: center; }
}
.hero__cta-primary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--electric);
  color: var(--ink);
  padding: 22px 28px;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  border: 3px solid var(--electric);
  transition: all .2s var(--ease);
  flex-shrink: 0;
}
.hero__cta-primary:hover {
  background: transparent;
  color: var(--electric);
  transform: translateY(-3px);
}
.hero__cta-primary .live-dot {
  width: 10px;
  height: 10px;
  background: var(--blaze);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.hero__cta-primary .arrow {
  font-size: 22px;
  transition: transform .25s var(--ease);
}
.hero__cta-primary:hover .arrow { transform: translateX(6px); }

/* hero stats strip */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink-4);
  border: 1px solid var(--ink-4);
  max-width: 760px;
}
@media (min-width: 720px) {
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
}
.hero__stat {
  background: rgba(10,10,10,0.6);
  padding: 18px 16px;
}
.hero__stat-num {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--blaze);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ---------- Section: Stats / Why ---------- */
.snap {
  background: var(--paper);
  color: var(--ink);
  position: relative;
}
.snap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blaze) 0%, var(--blaze) 50%, var(--electric) 50%, var(--electric) 100%);
}
.snap h2 {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 80px);
  color: var(--ink);
  margin-bottom: 16px;
}
.snap p {
  max-width: 700px;
  font-size: 17px;
  color: var(--steel-2);
  line-height: 1.6;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}
@media (min-width: 720px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px){ .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature {
  background: var(--paper);
  padding: 32px 24px;
  position: relative;
  transition: background .2s var(--ease);
}
.feature:hover { background: #fafaf9; }
.feature__num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--blaze);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.feature__title {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.05;
}
.feature__body { font-size: 15px; color: var(--steel-2); line-height: 1.55; }

/* ---------- Leagues grid ---------- */
.leagues-section {
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}
@media (min-width: 720px) {
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.section-head__title {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 80px);
  line-height: 0.9;
}
.section-head__title .accent { color: var(--blaze); }

.league-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .league-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px){ .league-grid { grid-template-columns: repeat(4, 1fr); } }

.league-card {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  overflow: hidden;
  transition: all .25s var(--ease);
}
.league-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, transparent 60%, rgba(225,29,42,0.05) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.league-card:hover {
  transform: translateY(-4px);
  border-color: var(--blaze);
}
.league-card:hover::before { opacity: 1; }
.league-card__num {
  font-family: var(--display);
  font-size: 12px;
  color: var(--steel);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.league-card__city {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 48px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  color: var(--paper);
}
.league-card__format {
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blaze);
  margin-bottom: 20px;
}
.league-card__meta {
  margin-top: auto;
  font-family: var(--condensed);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.league-card__meta strong { color: var(--bone); font-weight: 600; }
.league-card__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 20px;
  color: var(--steel);
  transition: all .25s var(--ease);
}
.league-card:hover .league-card__arrow {
  color: var(--blaze);
  transform: translate(4px, -4px);
}

/* ---------- Format vs format split ---------- */
.formats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 900px) { .formats { grid-template-columns: 1fr 1fr; } }
.format-card {
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.format-card__big {
  font-family: var(--display);
  font-size: clamp(110px, 16vw, 180px);
  line-height: 0.85;
  color: var(--blaze);
  letter-spacing: -0.02em;
}
.format-card__big sup {
  font-size: 0.4em;
  vertical-align: top;
  color: var(--paper);
}
.format-card__name {
  font-family: var(--condensed);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 16px;
}
.format-card__desc { color: var(--bone); font-size: 16px; line-height: 1.6; max-width: 380px; }
.format-card__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.format-card__list li {
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  padding-left: 22px;
  position: relative;
}
.format-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 2px;
  background: var(--blaze);
}

/* ---------- Affiliates / partners ---------- */
.affiliates {
  background: var(--paper);
  color: var(--ink);
}
.affiliates h2 { color: var(--ink); }
.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}
@media (min-width: 600px) { .affiliate-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .affiliate-grid { grid-template-columns: repeat(6, 1fr); } }

.affiliate {
  background: var(--paper);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: background .2s var(--ease);
}
.affiliate:hover { background: var(--bone); }
.affiliate img {
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter .25s var(--ease), transform .25s var(--ease);
}
.affiliate:hover img { filter: grayscale(0); transform: scale(1.05); }

.partners {
  margin-top: 48px;
  text-align: center;
}
.partners h3 {
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-2);
  margin-bottom: 24px;
}
.partner-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partner-row a {
  display: inline-block;
  background: var(--ink);
  padding: 22px 32px;
  border-radius: 4px;
  transition: transform .25s var(--ease);
}
.partner-row a:hover { transform: translateY(-3px); }
.partner-row img { max-height: 60px; max-width: 200px; object-fit: contain; }

/* ---------- About strip ---------- */
.about-strip {
  background: var(--ink-2);
  color: var(--paper);
  border-top: 1px solid var(--ink-4);
  border-bottom: 1px solid var(--ink-4);
}
.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) { .about-strip__inner { grid-template-columns: 1fr 1fr; gap: 64px; } }
.about-strip h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.95;
  margin-bottom: 20px;
}
.about-strip p { color: var(--bone); font-size: 17px; line-height: 1.65; margin-bottom: 16px; }
.about-strip__badge {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blaze);
  border: 1px solid var(--blaze);
  padding: 8px 14px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding: 64px 0 32px;
  border-top: 4px solid var(--blaze);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 720px)  { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; } }

.footer-brand img {
  width: auto;
  max-width: 280px;
  height: auto;
  margin-bottom: 20px;
  display: block;
}
.footer-brand p { color: var(--steel); font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer-brand .badge {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blaze);
  border: 1px solid var(--ink-4);
  padding: 6px 10px;
}

.footer-col h5 {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blaze);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-family: var(--condensed);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--bone);
  transition: color .2s var(--ease);
}
.footer-col ul a:hover { color: var(--blaze); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding-top: 24px;
  border-top: 1px solid var(--ink-4);
  font-size: 13px;
  color: var(--steel);
}
@media (min-width: 720px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom a:hover { color: var(--blaze); }
.footer-legal { display: flex; gap: 20px; }

/* ---------- PAGE HERO (smaller, for non-home pages) ---------- */
.page-hero {
  background: var(--ink);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--ink-4);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(10% - 1px),
    rgba(232,230,225,0.03) calc(10% - 1px),
    rgba(232,230,225,0.03) 10%
  );
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__crumb {
  font-family: var(--condensed);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 16px;
}
.page-hero__crumb a { color: var(--bone); }
.page-hero__crumb a:hover { color: var(--blaze); }
.page-hero h1 {
  font-size: clamp(48px, 9vw, 110px);
  line-height: 0.9;
  color: var(--paper);
  margin-bottom: 20px;
}
.page-hero h1 .accent { color: var(--blaze); }
.page-hero__sub {
  font-family: var(--condensed);
  font-size: clamp(16px, 2vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bone);
  max-width: 700px;
}

/* ---------- Generic page content ---------- */
.prose {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--bone);
}
.prose h2 {
  font-family: var(--condensed);
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: 0.04em;
  color: var(--paper);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink-4);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--condensed);
  font-size: clamp(20px, 2.5vw, 24px);
  letter-spacing: 0.04em;
  color: var(--paper);
  margin: 32px 0 12px;
}
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 22px 24px; }
.prose li { margin-bottom: 8px; padding-left: 4px; }
.prose ul li::marker { color: var(--blaze); }
.prose ol li::marker { color: var(--blaze); font-family: var(--display); }
.prose strong { color: var(--paper); font-weight: 700; }
.prose a { color: var(--blaze); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:hover { color: var(--blaze-2); }
.prose blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 3px solid var(--blaze);
  background: var(--ink-2);
  font-style: italic;
  color: var(--bone);
}

/* ---------- Info card (used on league pages) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 720px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px){ .info-grid { grid-template-columns: repeat(4, 1fr); } }
.info-card {
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  padding: 24px;
  border-left: 3px solid var(--blaze);
}
.info-card h4 {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blaze);
  margin-bottom: 10px;
}
.info-card p {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.05;
  color: var(--paper);
  letter-spacing: 0.01em;
}
.info-card .small {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bone);
  margin-top: 8px;
  line-height: 1.5;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--blaze);
  color: var(--ink);
  padding: clamp(40px, 7vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(0,0,0,0.04) 0,
    rgba(0,0,0,0.04) 2px,
    transparent 2px,
    transparent 14px
  );
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 900px) {
  .cta-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 48px; }
}
.cta-banner h2 {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.cta-banner p {
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 8px;
}
.cta-banner .btn {
  background: var(--ink);
  color: var(--blaze);
  border-color: var(--ink);
  font-size: 18px;
  padding: 22px 36px;
  flex-shrink: 0;
}
.cta-banner .btn:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- FORM ---------- */
.form {
  display: grid;
  gap: 18px;
  max-width: 640px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form label {
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blaze);
  display: block;
  margin-bottom: 8px;
}
.form input, .form select, .form textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  color: var(--paper);
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 15px;
  transition: border-color .2s var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--blaze);
}
.form textarea { resize: vertical; min-height: 140px; }
.form__actions { margin-top: 8px; }
.form__note {
  font-size: 13px;
  color: var(--steel);
  margin-top: 8px;
}

/* ---------- Misc ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .split { grid-template-columns: 2fr 1fr; gap: 64px; } }

.callout {
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  padding: 24px;
  border-left: 3px solid var(--blaze);
}
.callout h4 {
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blaze);
  margin-bottom: 10px;
}
.callout p { font-size: 15px; color: var(--bone); line-height: 1.6; }
.callout + .callout { margin-top: 16px; }

/* reveal-on-load animation */
.reveal { opacity: 0; transform: translateY(16px); animation: reveal .8s var(--ease) forwards; }
.reveal.d1 { animation-delay: .08s; }
.reveal.d2 { animation-delay: .18s; }
.reveal.d3 { animation-delay: .28s; }
.reveal.d4 { animation-delay: .38s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

/* prevent body scroll when mobile menu open */
body.no-scroll { overflow: hidden; }

/* selection */
::selection { background: var(--electric); color: var(--ink); }

/* focus visible */
:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 3px;
}

/* ════════════════════════════════════════════════════════════════
   PHASE 4 — DATA-DRIVEN PAGES
   leagues, tournaments, league detail, tournament detail
   ════════════════════════════════════════════════════════════════ */

/* ─── Skeleton loading ─── */
.skel {
  display: block;
  background: linear-gradient(90deg, var(--ink-3) 0%, var(--ink-4) 50%, var(--ink-3) 100%);
  background-size: 200% 100%;
  animation: ffu-shimmer 1.4s linear infinite;
  border-radius: 4px;
}
.skel--text { height: 14px; }
.skel--title { height: 28px; }
.skel--block { height: 64px; }
.skel--row { height: 40px; }
@keyframes ffu-shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ─── Error state ─── */
.data-error {
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  border-left: 4px solid var(--blaze);
  padding: 24px 28px;
  border-radius: 6px;
  font-family: var(--body);
  color: var(--bone);
  font-size: 15px;
  line-height: 1.5;
}
.data-error strong { color: var(--blaze); display: block; margin-bottom: 4px; font-family: var(--condensed); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 12px; }

/* ─── Section eyebrow + heading rhythm for data sections ─── */
.dyn-section { margin-bottom: 80px; }
.dyn-section:last-child { margin-bottom: 0; }
.dyn-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--ink-4);
}
.dyn-section__title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--paper);
  margin: 0;
  line-height: 1;
}
.dyn-section__count {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  color: var(--steel);
  letter-spacing: 0.06em;
}

/* ─── Division card (used on leagues/tournaments listing) ─── */
.div-card {
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  padding: 24px 24px 20px;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
  min-height: 240px;
}
.div-card:hover { border-color: var(--blaze); transform: translateY(-2px); }
.div-card--upcoming { border-style: dashed; opacity: 0.92; cursor: default; }
.div-card--upcoming:hover { border-color: var(--ink-4); transform: none; }

.div-card__eyebrow {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blaze);
}
.div-card--upcoming .div-card__eyebrow { color: var(--steel); }

.div-card__title {
  font-family: var(--display);
  font-size: 32px;
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 8px 0 0;
}
.div-card__subtitle {
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.div-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  margin-top: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--ink-4);
  border-bottom: 1px solid var(--ink-4);
}
.div-card__meta-item {
  font-family: var(--body);
  font-size: 12.5px;
  color: var(--steel);
}
.div-card__meta-item strong {
  display: block;
  font-family: var(--condensed);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 2px;
}
.div-card__week {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.div-card__week::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 0 0 rgba(200, 255, 25, 0.6);
  animation: ffu-livedot 1.6s var(--ease) infinite;
}
@keyframes ffu-livedot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.25); }
}
.div-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric);
}
.div-card:hover .div-card__cta { color: var(--paper); }
.div-card__cta .arrow { transition: transform .2s var(--ease); }
.div-card:hover .div-card__cta .arrow { transform: translateX(4px); }

.div-card__upcoming-note {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--condensed);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.div-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* Empty state for listing pages */
.dyn-empty {
  background: var(--ink-2);
  border: 1px dashed var(--ink-4);
  padding: 48px 24px;
  text-align: center;
  color: var(--steel);
  font-family: var(--body);
  font-size: 14px;
}
.dyn-empty strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 8px;
}

/* ─── League/Tournament detail page ─── */
.detail-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--condensed);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--bone);
  padding: 18px 0;
  border-top: 1px solid var(--ink-4);
  border-bottom: 1px solid var(--ink-4);
  margin: 24px 0 0;
}
.detail-meta__item strong {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blaze);
  margin-bottom: 4px;
}

/* ─── Week selector (chips) ─── */
.week-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink-4);
}
.week-tab {
  padding: 8px 14px;
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  color: var(--steel);
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .15s var(--ease);
  border-radius: 3px;
}
.week-tab:hover { color: var(--paper); border-color: var(--steel); }
.week-tab.is-current {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.week-tab.is-active {
  background: var(--blaze);
  color: var(--paper);
  border-color: var(--blaze);
}
.week-tab.is-rained { color: var(--steel); border-style: dashed; }
.week-tab.is-rained::after { content: ' · RAIN'; }

/* ─── Schedule grid ─── */
.sched-week {
  margin-bottom: 32px;
}
.sched-week:last-child { margin-bottom: 0; }
.sched-week__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink-4);
}
.sched-week__num {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--paper);
}
.sched-week__date {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.sched-week--current .sched-week__num {
  color: var(--electric);
}
.sched-week--current .sched-week__head::after {
  content: 'CURRENT';
  font-family: var(--condensed);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink);
  background: var(--electric);
  padding: 4px 10px;
  margin-left: auto;
  border-radius: 2px;
}
.sched-week--rained .sched-week__head::after {
  content: 'RAINED OUT';
  font-family: var(--condensed);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--paper);
  background: var(--steel-2);
  padding: 4px 10px;
  margin-left: auto;
  border-radius: 2px;
}

.sched-game {
  display: grid;
  grid-template-columns: 90px 1fr 60px 24px 60px 1fr 90px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  margin-bottom: 6px;
  transition: border-color .15s var(--ease);
}
.sched-game:hover { border-color: var(--steel-2); }
.sched-game__time {
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--paper);
  white-space: nowrap;
}
.sched-game__field {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.06em;
  text-align: right;
}
.sched-game__team {
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--paper);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sched-game__team--away { text-align: right; }
.sched-game__team--placeholder { color: var(--steel); font-style: italic; font-weight: 500; text-transform: none; letter-spacing: 0; }
.sched-game__team--winner { color: var(--electric); }
.sched-game__team--loser { color: var(--steel); }
.sched-game__score {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--paper);
  text-align: center;
}
.sched-game__score--winner { color: var(--electric); }
.sched-game__score--loser { color: var(--steel); }
.sched-game__vs {
  font-family: var(--condensed);
  font-size: 11px;
  color: var(--steel);
  text-align: center;
  letter-spacing: 0.1em;
}
.sched-game__final {
  font-family: var(--condensed);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--steel);
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .sched-game {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }
  .sched-game__teams {
    display: contents;
  }
  .sched-game__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .sched-game__row--meta {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--ink-4);
    margin-bottom: 4px;
  }
  .sched-game__team--away { text-align: left; }
  .sched-game__field { text-align: left; }
}

/* ─── Standings table ─── */
.standings {
  width: 100%;
  border-collapse: collapse;
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  font-family: var(--body);
  overflow: hidden;
}
.standings thead th {
  background: var(--ink-3);
  font-family: var(--condensed);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 10px 10px;
  text-align: left;
  border-bottom: 1px solid var(--ink-4);
}
.standings thead th.num { text-align: right; }
.standings tbody td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--ink-4);
  font-size: 14px;
  color: var(--paper);
  vertical-align: middle;
}
.standings tbody tr:last-child td { border-bottom: 0; }
.standings tbody tr:hover td { background: var(--ink-3); }
.standings .rank {
  width: 36px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.005em;
  color: var(--steel);
  text-align: center;
}
.standings tbody tr:nth-child(1) .rank { color: var(--electric); }
.standings tbody tr:nth-child(2) .rank,
.standings tbody tr:nth-child(3) .rank { color: var(--paper); }
.standings .team-name {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.standings .num {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-size: 13px;
}
.standings .pd-pos { color: var(--paper); font-weight: 700; }
.standings .pd-neg { color: var(--blaze); }
.standings .pd-zero { color: var(--steel); }
.standings .streak-w { color: var(--paper); font-weight: 700; }
.standings .streak-l { color: var(--blaze); font-weight: 700; }
.standings .streak-t { color: var(--steel); }

/* On mobile, scroll horizontally — but freeze the team-name column */
.standings-wrap {
  overflow-x: auto;
  border-radius: 0;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 600px) {
  .standings { font-size: 12px; min-width: 540px; }
  .standings thead th, .standings tbody td { padding: 9px 8px; }
}

/* ─── Bracket renderer ─── */
.bracket-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 20px;
}
.bracket {
  display: inline-flex;
  gap: 32px;
  min-width: 100%;
  align-items: stretch;
}
.bracket__round {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 16px;
  min-width: 240px;
  flex: 0 0 auto;
}
.bracket__round-label {
  font-family: var(--condensed);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blaze);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink-4);
  margin-bottom: 4px;
}
.bracket-match {
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  display: flex;
  flex-direction: column;
}
.bracket-match__row {
  display: grid;
  grid-template-columns: 24px 1fr 36px;
  align-items: center;
  padding: 10px 12px;
  gap: 10px;
  border-bottom: 1px solid var(--ink-4);
}
.bracket-match__row:last-child { border-bottom: 0; }
.bracket-match__row--winner { background: rgba(200, 255, 25, 0.04); }
.bracket-match__row--winner .bracket-match__name { color: var(--electric); }
.bracket-match__row--winner .bracket-match__score { color: var(--electric); }
.bracket-match__row--loser .bracket-match__name { color: var(--steel); }
.bracket-match__row--loser .bracket-match__score { color: var(--steel); }
.bracket-match__seed {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--steel);
  text-align: center;
}
.bracket-match__name {
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--paper);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bracket-match__name--placeholder {
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--steel);
}
.bracket-match__score {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--paper);
  text-align: right;
}
.bracket-match__bye {
  padding: 14px 12px;
  font-family: var(--condensed);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--steel);
  text-transform: uppercase;
  text-align: center;
}

/* ─── CTA row at bottom of detail pages ─── */
.detail-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 32px 0 0;
  border-top: 1px solid var(--ink-4);
  margin-top: 48px;
}

/* ─── Homepage replacement: "Where we play" CTA panel ─── */
.find-league {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.find-league__panel {
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}
.find-league__panel::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--blaze);
}
.find-league__panel--tournament::before { background: var(--electric); }
.find-league__eyebrow {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blaze);
}
.find-league__panel--tournament .find-league__eyebrow { color: var(--electric); }
.find-league__title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 8px 0 12px;
}
.find-league__copy {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--bone);
  margin: 0 0 24px;
}
.find-league__btn {
  margin-top: auto;
  align-self: flex-start;
}
@media (max-width: 760px) {
  .find-league { grid-template-columns: 1fr; }
}
