/* ==================================================================
   CSSA · City Schools Sports Association — "Full Time" design system
   Sporty, high-energy identity built for India:
   bleed-blue royal + tricolour saffron, green reserved for wins.
   Type: Khand (display) + Mukta (body) — Indian Type Foundry,
   Devanagari-ready — with IBM Plex Mono for scores and data.
   Signature: skewed speed bars, parallelogram buttons, hard shadows,
   scoreboard chips, and a 3px tricolour ribbon bookending the page.
   ================================================================== */

/* -------------------------------------------------- 0 · Fonts (self-hosted, OFL) */
@font-face {
  font-family: 'Khand'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/khand-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Khand'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/khand-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Khand'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/khand-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Mukta'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/mukta-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Mukta'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/mukta-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Mukta'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/mukta-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Mukta'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/mukta-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/ibm-plex-mono-latin-600-normal.woff2') format('woff2');
}

/* -------------------------------------------------- 1 · Tokens */
:root {
  /* Bleed blue */
  --blue:        #1238D4;                    /* primary royal            */
  --blue-deep:   #0B27A4;                    /* hover / pressed          */
  --blue-tint:   #E7ECFC;                    /* chips, tints             */
  --ink:         #0A1535;                    /* near-black navy          */
  --ink-2:       #101E4B;                    /* dark band alt            */
  --ink-soft:    #57628C;                    /* muted text on light      */
  /* Tricolour saffron */
  --saffron:      #FF6B1A;
  --saffron-deep: #E4560D;
  --saffron-ink:  #C24704;                   /* AA small text on light   */
  --saffron-tint: #FFE9DB;
  /* Tricolour green — wins & success only */
  --green:       #046A38;
  --green-tint:  #DDF0E6;
  /* Ground */
  --paper:       #FFFFFF;
  --cloud:       #F3F6FC;
  --line:        #DBE2F2;
  --line-dark:   rgba(255, 255, 255, 0.16);
  --tricolour: linear-gradient(90deg, #FF671F 0 33.4%, #FFFFFF 33.4% 66.7%, #046A38 66.7% 100%);
  /* Depth — hard poster shadows */
  --hard-sm:  4px 4px 0 rgba(10, 21, 53, 0.10);
  --hard:     6px 6px 0 rgba(10, 21, 53, 0.12);
  --hard-lg:  10px 10px 0 rgba(10, 21, 53, 0.14);
  /* Type */
  --display: 'Khand', 'Arial Narrow', Impact, sans-serif;
  --body:    'Mukta', 'Segoe UI', system-ui, sans-serif;
  --mono:    'IBM Plex Mono', 'Courier New', monospace;
  /* Geometry */
  --skew: -10deg;                            /* button / chip lean       */
  --bar-skew: skewX(-20deg);                 /* speed bar lean           */
  --r:    14px;
  --r-sm: 8px;
  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 0.9, 0.3, 1);
}

/* -------------------------------------------------- 2 · Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
@supports not (overflow-x: clip) { html { overflow-x: hidden; } }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cloud);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.4em; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 2px; }
.primary-nav.is-open :focus-visible { outline-color: var(--saffron); }
::selection { background: var(--saffron); color: var(--ink); }
.icon { width: 18px; height: 18px; stroke-width: 1.9; flex: none; }
.wrap { width: min(var(--wrap), 100% - 48px); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  padding: 10px 18px; background: var(--ink); color: #fff;
  font-family: var(--display); font-size: 15px; text-transform: uppercase;
  letter-spacing: 0.06em; border-radius: 6px; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

.display, h1, h2 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
h3, h4 { font-family: var(--display); font-weight: 600; letter-spacing: 0.02em; line-height: 1.1; text-transform: uppercase; }
.mono { font-family: var(--mono); }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 600; font-size: 16px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px;
}
.kicker::before {
  content: ""; width: 22px; height: 13px; flex: none;
  background: repeating-linear-gradient(90deg, var(--saffron) 0 5px, transparent 5px 9px);
  transform: var(--bar-skew);
}
.kicker .lane { display: none; }
.on-dark .kicker, .kicker--light { color: #fff; }

.lane { display: inline-flex; gap: 5px; }
.lane i {
  width: 8px; height: 14px; transform: var(--bar-skew);
  background: var(--saffron);
}
.lane i:nth-child(2n) { background: var(--blue); }

.section { padding: 92px 0; }
.section--tight { padding: 58px 0; }
.section--chalk { background: var(--paper); }
.section--dark { background: var(--ink); color: #fff; }
.section--dark.on-dark, .on-dark { color: #fff; }
.section--turf {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 58%, #0C2270 100%);
  color: #fff;
}
.section--turf::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(720px 460px at 88% -10%, rgba(255, 107, 26, 0.16), transparent 62%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.028) 0 2px, transparent 2px 16px);
}
.section--turf > .wrap { position: relative; z-index: 1; }
.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.section__head h2 { font-size: clamp(2.1rem, 3.6vw, 3rem); margin: 0; }
.section__sub { color: var(--ink-soft); max-width: 60ch; margin: 6px 0 0; }
.on-dark .section__sub { color: rgba(233, 238, 252, 0.72); }

/* -------------------------------------------------- 3 · Buttons — parallelogram, hard shadow */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 26px 10px;
  font-family: var(--display); font-weight: 600; font-size: 16.5px;
  letter-spacing: 0.07em; text-transform: uppercase; line-height: 1.1;
  border: 2px solid transparent; border-radius: 4px;
  transform: skewX(var(--skew));
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
              background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn .icon { width: 17px; height: 17px; }
.btn:hover .icon--arrow { transform: translateX(3px); transition: transform 0.2s; }
.btn:active { transform: skewX(var(--skew)) translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink) !important; }
.btn--sm { padding: 9px 18px 7px; font-size: 15px; }
.btn--primary { background: var(--saffron); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.btn--primary:hover { background: var(--saffron-deep); transform: skewX(var(--skew)) translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn--dark { background: var(--blue); color: #fff; box-shadow: 4px 4px 0 var(--ink); }
.btn--dark:hover { background: var(--blue-deep); transform: skewX(var(--skew)) translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; background: transparent; }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

.text-link {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 600; font-size: 16px;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue);
  padding-bottom: 4px;
}
.text-link::after {
  content: ""; position: absolute; left: 0; right: 18%; bottom: 0; height: 4px;
  background: var(--saffron); transform: var(--bar-skew) scaleX(0.55);
  transform-origin: left; transition: transform 0.22s var(--ease);
}
.text-link:hover::after { transform: var(--bar-skew) scaleX(1); }
.text-link .icon { width: 16px; height: 16px; transition: transform 0.2s; }
.text-link:hover .icon { transform: translateX(3px); }
.on-dark .text-link { color: #fff; }

/* -------------------------------------------------- 4 · Announce bar */
.announce {
  position: relative; background: var(--ink); color: rgba(240, 244, 255, 0.85);
  font-size: 13.5px; padding: 9px 0 8px;
}
.announce::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--tricolour);
}
.announce__row { display: flex; align-items: center; gap: 16px; padding-top: 3px; }
.announce__season {
  font-family: var(--display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; color: var(--saffron); text-transform: uppercase;
  border: 1.5px solid var(--saffron); padding: 3px 10px 1px;
  transform: skewX(var(--skew)); flex: none;
}
.announce__text { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.announce__text strong { color: #fff; font-weight: 600; }
.announce__link {
  display: inline-flex; align-items: center; gap: 6px; flex: none;
  font-family: var(--display); font-weight: 600; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--saffron);
}
.announce__link:hover { color: #fff; }

/* -------------------------------------------------- 5 · Header + nav
   White scoreboard bar, skewed saffron underlines, ink drawer on mobile */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.site-header.is-stuck { box-shadow: 0 6px 0 rgba(10, 21, 53, 0.08); }
.site-header__row { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand__mark { display: grid; place-items: center; }
.brand__text { line-height: 1; }
.brand__text strong {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 27px; letter-spacing: 0.05em;
}
.brand__text small {
  display: block; margin-top: 3px; font-family: var(--mono); font-weight: 500;
  font-size: 8.5px; letter-spacing: 0.26em; color: var(--ink-soft); text-transform: uppercase;
}
.primary-nav { margin-left: auto; }
.primary-nav__list { display: flex; align-items: center; gap: 4px; }
.primary-nav__head, .primary-nav__foot { display: none; }
.nav-item { position: relative; }
.nav-item > a {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 13px 8px; color: var(--ink);
  font-family: var(--display); font-weight: 500; font-size: 17px;
  letter-spacing: 0.07em; text-transform: uppercase;
}
.nav-item > a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px; height: 4px;
  background: var(--saffron); transform: var(--bar-skew) scaleX(0);
  transform-origin: left; transition: transform 0.2s var(--ease);
}
.nav-item > a:hover { color: var(--blue); }
.nav-item.is-active > a { color: var(--blue); }
.nav-item.is-active > a::after,
.nav-item > a:hover::after { transform: var(--bar-skew) scaleX(1); }
.nav-item__toggle {
  display: none; width: 30px; height: 30px; border-radius: 6px;
  border: 1.5px solid var(--line-dark); color: #fff;
  align-items: center; justify-content: center;
}
.nav-item:focus-within .nav-item__toggle { color: var(--saffron); }
.sub-nav {
  position: absolute; top: calc(100% + 10px); left: 8px; z-index: 40;
  min-width: 220px; padding: 10px;
  background: var(--paper); border: 2px solid var(--ink); border-radius: 8px;
  box-shadow: var(--hard);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.sub-nav::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.sub-nav::after {
  content: ""; position: absolute; top: -2px; left: 16px; width: 34px; height: 4px;
  background: var(--saffron); transform: var(--bar-skew);
}
.nav-item:hover .sub-nav, .nav-item:focus-within .sub-nav,
.nav-item.is-open .sub-nav { opacity: 1; visibility: visible; transform: none; }
.sub-nav a {
  display: block; padding: 9px 12px; border-radius: 6px;
  font-family: var(--body); font-weight: 500; font-size: 15px; color: var(--ink);
}
.sub-nav a:hover { background: var(--blue-tint); color: var(--blue); }
.sub-nav a.is-current { color: var(--saffron-ink); font-weight: 600; }
.site-header__actions { display: flex; align-items: center; gap: 16px; margin-left: 8px; }
.header-auth {
  display: inline-flex; align-items: center; gap: 8px; color: var(--ink);
  font-family: var(--display); font-weight: 500; font-size: 16px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.header-auth span { max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.header-auth:hover { color: var(--blue); }
.site-header .btn--primary { padding: 9px 18px 7px; font-size: 15px; }
.site-header .btn--primary:hover { transform: skewX(var(--skew)) translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 8px;
  border: 2px solid var(--ink); color: var(--ink);
  align-items: center; justify-content: center;
}
.nav-overlay {
  position: fixed; inset: 0; z-index: 95; background: rgba(6, 12, 34, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.nav-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* -------------------------------------------------- 6 · Hero
   Ink field, sweeping saffron/blue speed bars, outlined second line,
   scoreboard card with a solid saffron hard shadow */
.hero { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 52%, #0C2270 100%); color: #fff; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(760px 480px at 82% 4%, rgba(18, 56, 212, 0.4), transparent 62%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 16px);
}
.hero__stripes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__stripes span {
  position: absolute; top: -12%; height: 124%; width: 84px;
  transform: skewX(-18deg); opacity: 0;
  animation: bar-in 0.7s var(--ease) forwards;
}
.hero__stripes span:nth-child(1) { right: 4%;  background: var(--saffron); width: 30px; animation-delay: 0.1s; }
.hero__stripes span:nth-child(2) { right: 11%; background: rgba(255, 255, 255, 0.06); animation-delay: 0.22s; }
.hero__stripes span:nth-child(3) { right: 21%; background: rgba(18, 56, 212, 0.5); width: 54px; animation-delay: 0.34s; }
.hero__stripes span:nth-child(4) { right: -3%; background: rgba(255, 107, 26, 0.28); width: 130px; animation-delay: 0.46s; }
.hero__stripes::after { content: none; }
@keyframes bar-in { from { opacity: 0; transform: skewX(-18deg) translateX(140px); } to { opacity: 1; transform: skewX(-18deg) translateX(0); } }
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 56px;
  align-items: center; padding: 84px 0 96px;
}
.hero__season {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px;
  font-family: var(--display); font-weight: 600; font-size: 15px;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(240, 244, 255, 0.85);
}
.hero__season::before {
  content: ""; width: 22px; height: 13px;
  background: repeating-linear-gradient(90deg, var(--saffron) 0 5px, transparent 5px 9px);
  transform: var(--bar-skew);
}
.hero h1 {
  margin: 0 0 22px; font-size: clamp(3.3rem, 6.6vw, 5.6rem);
  font-weight: 700; line-height: 0.94; transform: skewX(-4deg);
}
.hero h1 .h-line { display: block; }
.hero h1 .h-line > span { display: inline-block; }
.hero h1 .h-line:nth-child(2) > span {
  color: transparent; -webkit-text-stroke: 2px var(--saffron);
}
.hero h1 .h-line:nth-child(3) > span { color: #fff; }
.hero .h-outline { color: transparent; -webkit-text-stroke: 2px var(--saffron); }
@supports not (-webkit-text-stroke: 2px orange) {
  .hero .h-outline, .hero h1 .h-line:nth-child(2) > span { color: var(--saffron); }
}
.h-rotate { position: relative; display: inline-block; color: #fff; }
.h-rotate::after {
  content: ""; position: absolute; left: -2px; right: -6px; bottom: 4px; height: 12px;
  background: var(--saffron); transform: var(--bar-skew); z-index: -1;
}
.h-rotate span {
  position: absolute; left: 0; top: 0; opacity: 0; transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  white-space: nowrap;
}
.h-rotate span.is-in { position: relative; opacity: 1; transform: none; }
.hero__lede { max-width: 56ch; font-size: 17.5px; color: rgba(233, 238, 252, 0.82); margin: 0 0 30px; }
.hero__cta { display: flex; gap: 18px; flex-wrap: wrap; }
.hero__stats { position: relative; z-index: 1; border-top: 1px solid var(--line-dark); }
.hero__stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 26px 26px 24px; border-left: 1px solid var(--line-dark); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__value {
  font-family: var(--display); font-weight: 700; font-size: 46px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.6px #fff;
  font-variant-numeric: tabular-nums; transform: skewX(-4deg);
}
@supports not (-webkit-text-stroke: 1px white) { .stat__value { color: #fff; } }
.stat__value .suffix { color: var(--saffron); -webkit-text-stroke: 0; margin-left: 2px; }
.stat__label { margin-top: 6px; font-size: 14px; color: rgba(233, 238, 252, 0.62); }

.next-fixture {
  position: relative; background: var(--paper); color: var(--ink);
  border-radius: 10px; padding: 26px 26px 24px;
  box-shadow: 12px 12px 0 var(--saffron-deep);
}
.next-fixture::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, var(--saffron) 0 62%, var(--blue) 62% 100%);
}
.next-fixture__label {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
  font-family: var(--mono); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft);
}
.next-fixture__label .pulse {
  width: 9px; height: 9px; border-radius: 50%; background: var(--saffron);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.55); }
  75% { box-shadow: 0 0 0 9px rgba(255, 107, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0); }
}
.next-fixture__sport {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 8px;
  padding: 4px 12px 2px; background: var(--blue-tint); color: var(--blue);
  font-family: var(--display); font-weight: 600; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
  transform: skewX(var(--skew));
}
.next-fixture h2 { font-size: 24px; margin-bottom: 14px; }
.next-fixture__meta { display: grid; gap: 8px; margin-bottom: 18px; }
.next-fixture__meta li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 13px; color: var(--ink-soft);
}
.next-fixture__meta .icon { width: 16px; height: 16px; color: var(--saffron-deep); }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin-bottom: 20px; }
.countdown__cell {
  background: var(--ink); border-radius: 8px; padding: 11px 6px 9px; text-align: center;
}
.countdown__num {
  font-family: var(--display); font-weight: 700; font-size: 30px; line-height: 1;
  color: #fff; font-variant-numeric: tabular-nums;
}
.countdown__cell:last-child .countdown__num { color: var(--saffron); }
.countdown__unit {
  display: block; margin-top: 4px; font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(240, 244, 255, 0.55);
}
.next-fixture .btn { width: 100%; }

/* -------------------------------------------------- 7 · Sports ticker — saffron marquee */
.ticker {
  position: relative; overflow: hidden; background: var(--saffron);
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  padding: 13px 0 11px;
}
.ticker__track { display: flex; width: max-content; animation: ticker-scroll 30s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__set { display: flex; align-items: center; gap: 0; }
.ticker__item {
  display: inline-flex; align-items: center; gap: 9px; padding: 0 20px;
  font-family: var(--display); font-weight: 600; font-size: 16px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink);
}
.ticker__item .icon { width: 17px; height: 17px; }
.ticker__item:hover { color: var(--blue-deep); }
.ticker__item::after {
  content: ""; width: 8px; height: 15px; margin-left: 20px;
  background: var(--ink); transform: var(--bar-skew);
}
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------------------------------------------------- 8 · Photo placeholders — blue duotone, speed slash */
.ph {
  position: relative; overflow: hidden; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--ink-2) 0%, #14329E 78%, var(--blue) 130%);
  display: grid; place-items: center; color: rgba(240, 244, 255, 0.5);
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 15px);
}
.ph::after {
  content: ""; position: absolute; bottom: -14%; left: -6%; width: 46%; height: 130%;
  background: linear-gradient(90deg, rgba(255, 107, 26, 0.4), rgba(255, 107, 26, 0));
  transform: skewX(-18deg);
}
.ph[data-variant="2"] { background: linear-gradient(150deg, #0C1D5E 0%, var(--ink-2) 60%, #1B2F8F 120%); }
.ph[data-variant="2"]::after { left: auto; right: -8%; transform: skewX(18deg);
  background: linear-gradient(-90deg, rgba(255, 107, 26, 0.35), rgba(255, 107, 26, 0)); }
.ph[data-variant="3"] { background: linear-gradient(120deg, #101E4B 0%, #0B2FA8 92%); }
.ph[data-variant="3"]::after { opacity: 0.65; }
.ph__icon { position: relative; z-index: 1; opacity: 0.75; }
.ph__label {
  position: absolute; left: 12px; bottom: 10px; z-index: 1;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(240, 244, 255, 0.65);
}
.ph__icon .icon { width: 30px; height: 30px; }

/* -------------------------------------------------- 9 · Fixtures board */
.board { display: grid; gap: 34px; }
.board__month {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display); font-weight: 600; font-size: 21px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue);
}
.board__month::before {
  content: ""; width: 10px; height: 17px; background: var(--saffron);
  transform: var(--bar-skew);
}
.board__month::after { content: ""; flex: 1; height: 2px; background: var(--line); }
.board__list { display: grid; gap: 14px; margin-top: 16px; }
.fixture {
  position: relative; display: grid;
  grid-template-columns: 92px 1.25fr 0.95fr auto;
  gap: 22px; align-items: center;
  background: var(--paper); border: 2px solid var(--line); border-radius: 10px;
  padding: 18px 22px;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s;
}
.fixture::before { content: none; }
.fixture:hover {
  transform: translate(-2px, -2px); border-color: var(--ink);
  box-shadow: 7px 7px 0 var(--saffron);
}
.fixture:hover::before { content: none; }
.fixture.is-past { background: var(--cloud); }
.fixture.is-past:hover { box-shadow: 7px 7px 0 rgba(10, 21, 53, 0.16); }
.fixture__date {
  display: grid; place-items: center; gap: 0; padding: 10px 8px 8px;
  background: var(--blue); color: #fff; border-radius: 8px; text-align: center;
  transform: skewX(-6deg);
}
.fixture.is-past .fixture__date { background: var(--ink-soft); }
.fixture__day { font-family: var(--display); font-weight: 700; font-size: 30px; line-height: 0.9; }
.fixture__mon {
  font-family: var(--mono); font-weight: 600; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron);
  margin-top: 3px;
}
.fixture.is-past .fixture__mon { color: rgba(255, 255, 255, 0.75); }
.fixture__year { font-family: var(--mono); font-size: 10px; color: rgba(255, 255, 255, 0.7); margin-top: 1px; }
.fixture__main { min-width: 0; }
.fixture__sport {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 5px;
  font-family: var(--display); font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--saffron-ink);
}
.fixture__sport .icon { width: 15px; height: 15px; }
.fixture__title { font-family: var(--display); font-weight: 600; font-size: 20px; margin: 0 0 2px; }
.fixture__series { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.fixture__meta { display: grid; gap: 6px; }
.fixture__meta li {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-soft);
}
.fixture__meta li span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fixture__meta .icon { width: 15px; height: 15px; color: var(--blue); }
.fixture__side { display: grid; gap: 10px; justify-items: end; }
.tag-row { display: flex; gap: 7px; flex-wrap: wrap; justify-content: flex-end; }
.tag {
  padding: 3px 10px 1px; background: var(--cloud); border: 1.5px solid var(--line);
  font-family: var(--mono); font-weight: 500; font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft);
  transform: skewX(var(--skew));
}
.status {
  display: inline-flex; align-items: center; gap: 7px; padding: 4px 12px 2px;
  font-family: var(--mono); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  transform: skewX(var(--skew));
}
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status--upcoming { background: var(--blue-tint); color: var(--blue); }
.status--past { background: var(--cloud); color: var(--ink-soft); border: 1.5px solid var(--line); }
.status--ok { background: var(--green-tint); color: var(--green); }
.status--pending { background: var(--saffron-tint); color: var(--saffron-ink); }
.fixture-mini {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center;
  padding: 13px 0; border-bottom: 1.5px solid var(--line);
}
.fixture-mini:last-child { border-bottom: 0; }
.fixture-mini__date {
  text-align: center; background: var(--blue-tint); border-radius: 6px; padding: 7px 4px 5px;
  transform: skewX(-6deg);
}
.fixture-mini__date b { display: block; font-family: var(--display); font-weight: 700; font-size: 20px; line-height: 1; color: var(--blue); }
.fixture-mini__date span { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--saffron-ink); }
.fixture-mini__body { min-width: 0; }
.fixture-mini__title { font-family: var(--display); font-weight: 600; font-size: 16.5px; margin: 0; }
.fixture-mini__meta { font-family: var(--mono); font-size: 11.5px; color: var(--ink-soft); }

/* -------------------------------------------------- 10 · Filter panel */
.filter-panel {
  position: relative; background: var(--paper); border: 2px solid var(--ink);
  border-radius: 12px; padding: 24px 26px 20px; box-shadow: var(--hard);
}
.filter-panel::after {
  content: ""; position: absolute; top: -2px; left: 26px; width: 64px; height: 6px;
  background: var(--saffron); transform: var(--bar-skew);
}
.filter-panel__grid {
  display: grid; grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px; align-items: end;
}
.filter-field label {
  display: block; margin-bottom: 7px;
  font-family: var(--mono); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft);
}
.select-wrap { position: relative; }
.select-wrap .icon--lead {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--blue); pointer-events: none;
}
.select-wrap .icon--chev {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; color: var(--ink-soft); pointer-events: none;
}
.select-wrap select {
  width: 100%; appearance: none; padding: 11px 36px 10px 38px;
  background: var(--cloud); border: 2px solid var(--line); border-radius: 8px;
  font-size: 15px; color: var(--ink); cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.select-wrap select:hover { border-color: var(--blue); }
.select-wrap select:focus-visible { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18, 56, 212, 0.18); }
.select-wrap select.is-placeholder { color: var(--ink-soft); }
.select-wrap option { color: var(--ink); }
.filter-panel__actions { display: flex; gap: 12px; }
.filter-panel__actions .btn--primary { background: var(--blue); color: #fff; }
.filter-panel__actions .btn--primary:hover { background: var(--blue-deep); }
.filter-panel__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 18px; padding-top: 14px; border-top: 1.5px solid var(--line);
  font-size: 14.5px; color: var(--ink-soft);
}
.filter-panel__count strong { color: var(--saffron-ink); font-family: var(--display); font-size: 17px; }
.filter-panel__reset {
  font-family: var(--display); font-weight: 600; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue);
}
.filter-panel__reset:hover { color: var(--saffron-ink); }
.chipbar { display: flex; gap: 9px; flex-wrap: wrap; }
.chip {
  padding: 7px 16px 5px; border: 2px solid var(--line); background: var(--paper);
  font-family: var(--display); font-weight: 600; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft);
  transform: skewX(var(--skew)); transition: all 0.15s;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.is-active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 3px 3px 0 var(--ink); }

/* -------------------------------------------------- 11 · Results + standings */
.result-card {
  background: var(--paper); border: 2px solid var(--line); border-radius: 12px;
  padding: 20px 22px; transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s;
}
.result-card:hover { transform: translate(-2px, -2px); border-color: var(--ink); box-shadow: 6px 6px 0 var(--saffron); }
.on-dark .result-card { border-color: transparent; box-shadow: var(--hard-lg); color: var(--ink); }
.result-card__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 14px; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}
.result-card__head .sport {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--display); font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.12em; color: var(--saffron-ink);
}
.result-card__fixture { font-family: var(--display); font-weight: 600; font-size: 18px; margin-bottom: 12px; }
.scoreline { display: grid; gap: 7px; margin-bottom: 12px; }
.scoreline__row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 13px 7px; border-radius: 7px; background: var(--cloud);
  font-weight: 600; font-size: 15.5px; color: var(--ink);
}
.scoreline__row .score { font-family: var(--display); font-weight: 700; font-size: 21px; color: var(--blue); font-variant-numeric: tabular-nums; }
.scoreline__row.is-winner { background: var(--green-tint); }
.scoreline__row.is-winner .score { color: var(--green); }
.scoreline__row.is-winner .team::after {
  content: "W"; display: inline-grid; place-items: center; margin-left: 10px;
  width: 20px; height: 20px; background: var(--green); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 12px;
  transform: skewX(-6deg); vertical-align: 2px;
}
.result-card__note { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); margin: 0; }
.table-card {
  background: var(--paper); border: 2px solid var(--line); border-radius: 12px;
  padding: 8px 6px 6px; overflow: hidden;
}
.on-dark .table-card { border-color: transparent; box-shadow: var(--hard-lg); color: var(--ink); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.standings { width: 100%; border-collapse: collapse; min-width: 560px; }
.standings th, .standings td { padding: 12px 15px; text-align: left; }
.standings thead th {
  font-family: var(--mono); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft);
  border-bottom: 3px solid var(--ink);
}
.standings tbody tr { border-bottom: 1.5px solid var(--line); }
.standings tbody tr:last-child { border-bottom: 0; }
.standings tbody tr:hover { background: var(--cloud); }
.standings td.num, .standings th.num { text-align: right; font-variant-numeric: tabular-nums; }
.standings td.num { font-family: var(--display); font-weight: 600; font-size: 17px; }
.standings .rank { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--ink-soft); }
.standings tr.is-podium .rank { color: var(--ink); }
.standings tr.is-podium td:first-child { position: relative; }
.standings tr.is-podium td:first-child::before {
  content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 5px;
  transform: skewY(-14deg);
}
.standings tr.rank-1 td:first-child::before { background: var(--saffron); }
.standings tr.rank-2 td:first-child::before { background: var(--blue); }
.standings tr.rank-3 td:first-child::before { background: var(--green); }
.standings .school { font-weight: 600; }
.standings .pts { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--blue); }
/* Compact preview: when the table sits in a narrow dash-cols column (home snapshot),
   show only # / School / Pts so it never needs a horizontal scrollbar. */
.dash-cols .standings { min-width: 0; }
.dash-cols .standings tr > :nth-child(3),
.dash-cols .standings tr > :nth-child(4),
.dash-cols .standings tr > :nth-child(5) { display: none; }
/* Slim, on-brand scrollbar for any table that still scrolls (e.g. results page on mobile) */
.table-scroll::-webkit-scrollbar { height: 8px; }
.table-scroll::-webkit-scrollbar-track { background: var(--cloud); border-radius: 8px; }
.table-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 8px; }
.table-scroll::-webkit-scrollbar-thumb:hover { background: var(--ink-soft); }
.table-scroll { scrollbar-width: thin; scrollbar-color: var(--line) var(--cloud); }

/* -------------------------------------------------- 12 · News */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: var(--paper); border: 2px solid var(--line); border-radius: 12px;
  overflow: hidden; transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s;
}
.news-card:hover { transform: translate(-2px, -2px); border-color: var(--ink); box-shadow: 7px 7px 0 var(--saffron); }
.news-card__media { position: relative; }
.news-card__media .ph { aspect-ratio: 16 / 10; border-radius: 0; }
.news-card__media .cat, .cat {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  padding: 4px 12px 2px; background: var(--saffron); color: var(--ink);
  font-family: var(--display); font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  transform: skewX(var(--skew));
}
.news-card__body { padding: 18px 20px 20px; }
.news-card__date { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.news-card__title { font-size: 20px; margin: 8px 0 8px; line-height: 1.08; }
.news-card__title a { color: var(--ink); }
.news-card__title a:hover { color: var(--blue); }
.news-card__excerpt { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 12px; }
.news-card .text-link { font-size: 14px; }
.news-feature {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 34px; align-items: center;
  background: var(--paper); border: 2px solid var(--ink); border-radius: 14px;
  overflow: hidden; box-shadow: var(--hard);
}
.news-feature__media { position: relative; align-self: stretch; }
.news-feature__media .ph { height: 100%; min-height: 320px; border-radius: 0; }
.news-feature__body { padding: 34px 38px 34px 6px; }
.news-feature__title { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin: 10px 0 12px; }
.news-feature__title a { color: var(--ink); }
.news-feature__title a:hover { color: var(--blue); }
.news-feature p { color: var(--ink-soft); margin-bottom: 18px; }
.article { max-width: 760px; margin-inline: auto; }
.article__meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft);
}
.article__meta .cat { position: static; }
.article h1 { font-size: clamp(2.3rem, 4.6vw, 3.4rem); margin-bottom: 16px; }
.article__lede { font-size: 19.5px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 26px; }
.article__body { font-size: 17px; line-height: 1.8; }
.article__body p { margin-bottom: 1.35em; }
.article__body p:first-child::first-letter {
  font-family: var(--display); font-weight: 700; font-size: 3.3em; line-height: 0.8;
  float: left; margin: 6px 12px 0 0; color: var(--blue);
}
.article__foot { margin-top: 34px; padding-top: 20px; border-top: 2px solid var(--line); }

/* -------------------------------------------------- 13 · Video cards */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card {
  position: relative; border-radius: 12px; overflow: hidden; text-align: left;
  border: 2px solid var(--line);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s;
}
.video-card:hover { transform: translate(-2px, -2px); border-color: var(--ink); box-shadow: 7px 7px 0 var(--saffron); }
.video-card .ph { aspect-ratio: 16 / 10; border-radius: 0; }
.video-card__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10, 21, 53, 0) 30%, rgba(10, 21, 53, 0.88) 100%);
}
.video-card__play {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center;
}
.video-card__play .icon {
  width: 58px; height: 58px; padding: 17px; box-sizing: border-box;
  background: var(--saffron); color: var(--ink); border-radius: 50%;
  transition: transform 0.2s var(--ease), background 0.2s;
}
.video-card:hover .video-card__play .icon { transform: scale(1.12); background: #fff; }
.video-card__info { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; color: #fff; }
.video-card__tag {
  font-family: var(--mono); font-weight: 600; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron);
}
.video-card__title { font-family: var(--display); font-weight: 600; font-size: 18px; margin-top: 4px; }
.video-card__dur {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  padding: 3px 9px 1px; background: var(--ink); color: #fff;
  font-family: var(--mono); font-size: 11px; transform: skewX(var(--skew));
}

/* -------------------------------------------------- 14 · Gallery mosaic */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 14px; }
.mosaic__tile {
  position: relative; border-radius: 10px; overflow: hidden; padding: 0; text-align: left;
  border: 2px solid transparent; transition: border-color 0.18s, box-shadow 0.18s;
}
.mosaic__tile .ph { position: absolute; inset: 0; border-radius: 0; transition: transform 0.35s var(--ease); }
.mosaic__tile:hover .ph { transform: scale(1.05); }
.mosaic__tile:hover { border-color: var(--saffron); box-shadow: 5px 5px 0 rgba(10, 21, 53, 0.16); }
.mosaic__tile--wide { grid-column: span 2; }
.mosaic__tile--tall { grid-row: span 2; }
.mosaic__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px 14px 10px;
  background: linear-gradient(180deg, rgba(10, 21, 53, 0), rgba(10, 21, 53, 0.85));
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff;
}
.mosaic__tile:focus-visible .mosaic__cap { background: rgba(18, 56, 212, 0.85); }

/* -------------------------------------------------- 15 · People / affiliates */
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.people-card {
  position: relative; background: var(--paper); border: 2px solid var(--line);
  border-radius: 12px; padding: 30px 20px 24px; text-align: center;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s;
}
.people-card:hover { transform: translate(-2px, -2px); border-color: var(--ink); box-shadow: 6px 6px 0 var(--saffron); }
.people-card::before {
  content: ""; position: absolute; top: -2px; left: 20px; width: 46px; height: 5px;
  background: var(--blue); transform: var(--bar-skew);
}
.avatar {
  width: 76px; height: 76px; margin-inline: auto; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--ink-2) 120%);
  color: #fff; font-family: var(--display); font-weight: 600; font-size: 25px;
  box-shadow: 0 0 0 3px var(--paper), 0 0 0 6px var(--saffron);
}
.people-card h3 { font-size: 19px; margin: 16px 0 2px; }
.people-card .role {
  font-family: var(--mono); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--saffron-ink);
}
.people-card .term { display: block; margin-top: 6px; font-family: var(--mono); font-size: 11px; color: var(--ink-soft); }
.affiliate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.affiliate {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  background: var(--paper); border: 2px solid var(--line); border-radius: 10px;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), border-color 0.15s;
}
.affiliate:hover { transform: translate(-2px, -2px); border-color: var(--ink); box-shadow: 5px 5px 0 var(--saffron); }
.affiliate .avatar { width: 46px; height: 46px; font-size: 16px; margin: 0; box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--blue-tint); }
.affiliate__name { font-weight: 600; font-size: 15.5px; line-height: 1.25; }
.affiliate__since { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; color: var(--ink-soft); text-transform: uppercase; margin-top: 2px; }

/* -------------------------------------------------- 16 · Quote / testimonials */
.pull-quote {
  position: relative; overflow: hidden; padding: 84px 0;
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 70%); color: #fff;
}
.pull-quote::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 16px);
}
.pull-quote::after {
  content: ""; position: absolute; top: -14%; right: 6%; height: 128%; width: 34px;
  background: var(--saffron); transform: skewX(-18deg); opacity: 0.85;
}
.pull-quote .wrap { position: relative; z-index: 1; max-width: 880px; }
.pull-quote .icon--q { width: 44px; height: 44px; color: var(--saffron); margin-bottom: 18px; }
.pull-quote blockquote {
  margin: 0 0 22px; font-family: var(--display); font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.22;
}
.pull-quote blockquote em { font-style: normal; color: var(--saffron); }
.pull-quote figcaption { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(233, 238, 252, 0.65); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: var(--paper); border: 2px solid var(--line); border-radius: 12px;
  padding: 24px 24px 20px;
}
.testimonial .icon--q { width: 26px; height: 26px; color: var(--saffron); margin-bottom: 12px; }
.testimonial p { font-size: 16px; line-height: 1.7; margin-bottom: 18px; }
.testimonial footer { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar { width: 44px; height: 44px; font-size: 15px; margin: 0; box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--saffron); }
.testimonial footer strong { display: block; font-family: var(--display); font-size: 16.5px; letter-spacing: 0.02em; }
.testimonial footer span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }

/* -------------------------------------------------- 17 · Downloads / FAQ */
.download-list { display: grid; gap: 12px; }
.download {
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
  background: var(--paper); border: 2px solid var(--line); border-radius: 10px;
  padding: 16px 20px; color: var(--ink);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), border-color 0.15s;
}
.download:hover { transform: translate(-2px, -2px); border-color: var(--ink); box-shadow: 5px 5px 0 var(--saffron); }
.download__badge {
  display: grid; place-items: center; width: 52px; height: 52px;
  background: var(--blue-tint); color: var(--blue); border-radius: 9px;
  font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.06em;
  transform: skewX(-6deg);
}
.download__title { font-weight: 600; font-size: 16.5px; }
.download__desc { font-size: 14px; color: var(--ink-soft); margin: 2px 0 0; }
.download__meta { display: flex; align-items: center; gap: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.download__meta .kind { color: var(--saffron-ink); font-weight: 600; }
.callout {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--saffron-tint); border-left: 5px solid var(--saffron);
  border-radius: 8px; padding: 16px 18px;
}
.callout__icon { color: var(--saffron-ink); margin-top: 2px; }
.callout p { margin: 0; font-size: 14.5px; }
.callout strong { color: var(--saffron-ink); }
.faq { display: grid; gap: 12px; }
.faq details { background: var(--paper); border: 2px solid var(--line); border-radius: 10px; padding: 0 20px; transition: border-color 0.15s; }
.faq details[open] { border-color: var(--blue); box-shadow: var(--hard-sm); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 0 14px; cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 600; font-size: 17.5px; letter-spacing: 0.02em;
  text-transform: uppercase;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { color: var(--ink-soft); transition: transform 0.2s; }
.faq details[open] summary { color: var(--blue); }
.faq details[open] summary .icon { transform: rotate(45deg); color: var(--saffron-ink); }
.faq details p { padding-bottom: 16px; margin: 0; color: var(--ink-soft); font-size: 15px; }

/* -------------------------------------------------- 18 · Page hero (interior) */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 56%, #0C2270 100%);
  color: #fff;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(560px 360px at 88% 0%, rgba(18, 56, 212, 0.4), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 16px);
}
.page-hero__stripes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.page-hero__stripes span {
  position: absolute; top: -12%; height: 124%; transform: skewX(-18deg);
}
.page-hero__stripes span:nth-child(1) { right: 5%;  width: 22px; background: var(--saffron); }
.page-hero__stripes span:nth-child(2) { right: 11%; width: 62px; background: rgba(255, 255, 255, 0.055); }
.page-hero__stripes span:nth-child(3) { right: 19%; width: 40px; background: rgba(18, 56, 212, 0.5); }
.page-hero__stripes span:nth-child(4) { right: -2%; width: 92px; background: rgba(255, 107, 26, 0.26); }
.page-hero__stripes::after { content: none; }
.page-hero__inner { position: relative; z-index: 1; padding: 62px 0 66px; max-width: 720px; }
.page-hero--dash .page-hero__inner {
  padding: 46px 0 50px; max-width: none;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.breadcrumb {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
  font-family: var(--mono); font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(233, 238, 252, 0.7);
}
.breadcrumb a { color: rgba(233, 238, 252, 0.7); }
.breadcrumb a:hover { color: var(--saffron); }
.breadcrumb .sep { color: var(--saffron); }
.page-hero h1 { font-size: clamp(2.7rem, 5.2vw, 4.1rem); font-weight: 700; margin: 0 0 12px; transform: skewX(-4deg); }
.page-hero__sub { max-width: 58ch; font-size: 16.5px; color: rgba(233, 238, 252, 0.78); margin: 0; }

/* -------------------------------------------------- 19 · Forms */
.form-card {
  position: relative; background: var(--paper); border: 2px solid var(--ink);
  border-radius: 14px; padding: 30px 30px 26px; box-shadow: var(--hard);
}
.form-card::before {
  content: ""; position: absolute; top: -2px; left: 30px; width: 72px; height: 6px;
  background: var(--saffron); transform: var(--bar-skew);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; margin-bottom: 7px; font-weight: 600; font-size: 14.5px; }
.form-row label .req { color: var(--saffron-ink); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 14px; background: var(--cloud);
  border: 2px solid var(--line); border-radius: 8px; font-size: 15.5px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-row textarea { resize: vertical; min-height: 116px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18, 56, 212, 0.16);
}
.form-row.has-error input, .form-row.has-error select, .form-row.has-error textarea {
  border-color: var(--saffron-deep); background: var(--saffron-tint);
}
.form-row label .opt { font-weight: 400; color: var(--ink-soft); font-size: 13px; }
.input-wrap { position: relative; }
.input-wrap .icon--lead {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--blue); pointer-events: none;
}
.input-wrap input { padding-left: 38px; }
.form-row .select-wrap .icon--lead { color: var(--blue); }
.form-row .select-wrap .icon--chev { color: var(--ink-soft); }
.form-row .select-wrap select { padding: 12px 36px 12px 38px; background: var(--cloud); border-width: 2px; }
.form-row .select-wrap select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18, 56, 212, 0.16); }
.form-row .select-wrap select.is-placeholder { color: var(--ink-soft); }
.btn--block { width: 100%; }
.steps { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1.5px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step__num {
  display: grid; place-items: center; width: 42px; height: 42px;
  background: var(--blue); color: #fff; border-radius: 8px;
  font-family: var(--display); font-weight: 700; font-size: 18px;
  transform: skewX(-6deg); box-shadow: 3px 3px 0 var(--saffron);
}
.step h3 { font-size: 18.5px; margin: 6px 0 4px; }
.step p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.form-error { display: none; margin-top: 6px; font-size: 13px; color: var(--saffron-ink); font-weight: 600; }
.form-row.has-error .form-error { display: block; }
.form-hint { font-size: 13.5px; color: var(--ink-soft); margin-top: 8px; }
.form-note { font-size: 13.5px; color: var(--ink-soft); }
.form-note code { font-family: var(--mono); font-size: 12px; background: var(--blue-tint); color: var(--blue); padding: 2px 7px; border-radius: 4px; }
.alert {
  display: flex; align-items: flex-start; gap: 12px;
  border-radius: 8px; padding: 14px 16px; margin-bottom: 20px; font-size: 15px;
}
.alert .icon { margin-top: 2px; }
.alert--success { background: var(--green-tint); color: var(--green); border-left: 5px solid var(--green); }
.alert--error { background: var(--saffron-tint); color: var(--saffron-ink); border-left: 5px solid var(--saffron-deep); }

/* -------------------------------------------------- 20 · Auth split + dashboard */
.auth-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }
.auth-side { display: grid; gap: 14px; }
.auth-side__card {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255, 255, 255, 0.06); border: 1.5px solid var(--line-dark);
  border-radius: 10px; padding: 18px 20px;
}
.auth-side__card .icon { color: var(--saffron); margin-top: 3px; }
.auth-side__card h3 { font-size: 16.5px; margin: 0 0 3px; }
.auth-side__card p { margin: 0; font-size: 14px; color: rgba(233, 238, 252, 0.7); }
.dash-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dash-stat {
  position: relative; background: var(--paper); border: 2px solid var(--line);
  border-radius: 12px; padding: 22px 24px 18px;
}
.dash-stat::before {
  content: ""; position: absolute; top: -2px; left: 24px; width: 44px; height: 5px;
  background: var(--saffron); transform: var(--bar-skew);
}
.dash-stat__value { font-family: var(--display); font-weight: 700; font-size: 42px; line-height: 1; color: var(--blue); transform: skewX(-4deg); }
.dash-stat__label { margin-top: 6px; font-size: 14px; color: var(--ink-soft); }
.dash-cols { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: start; }
.panel { background: var(--paper); border: 2px solid var(--line); border-radius: 12px; padding: 22px 24px; }
.on-dark .panel { border-color: transparent; box-shadow: var(--hard-lg); color: var(--ink); }
.panel__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 8px; }
.panel__head h2 { font-size: 21px; margin: 0; }
.team-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
  padding: 14px 0; border-bottom: 1.5px solid var(--line);
}
.team-row:last-child { border-bottom: 0; }
.team-row .icon, .team-row__icon { color: var(--blue); }
.team-row__name { font-weight: 600; font-size: 15.5px; }
.team-row__div { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 1px; }
.team-row__body { min-width: 0; }
.team-row .status { justify-self: end; }
a.fixture-mini { color: var(--ink); border-radius: 8px; }
a.fixture-mini:hover { background: var(--cloud); }
a.fixture-mini > .icon { color: var(--ink-soft); }
.download--compact { grid-template-columns: auto 1fr auto; padding: 12px 16px; }
.download--compact .download__badge { width: 42px; height: 42px; font-size: 11px; }
.download--compact .download__title { font-size: 15px; }
.download--compact > .icon { color: var(--ink-soft); }
a.download--compact:hover { border-color: var(--ink); }

/* -------------------------------------------------- 21 · About / prose / timeline / letter */
.prose { max-width: 68ch; }
.prose p { font-size: 16.5px; line-height: 1.75; margin-bottom: 1.25em; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--saffron-ink); }
.prose h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); margin: 1.4em 0 0.5em; }
.split { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 56px; align-items: center; }
.split__visual { position: relative; }
.split__visual .ph { position: relative; z-index: 1; aspect-ratio: 4 / 3; border-radius: 12px; border: 2px solid var(--ink); }
.split__visual .ph--back {
  position: absolute; z-index: 0; inset: -20px auto auto -20px; width: 60%; height: 60%;
  background: var(--blue-tint); border: 0; border-radius: 12px;
}
.split__visual .ph--back::before, .split__visual .ph--back::after { content: none; }
.split--flip .split__visual { order: 2; }
.split--flip .split__visual .ph--back { inset: auto -20px -20px auto; }
.video-card:hover .video-card__play { transform: none; }
.cta-band .btn { border-width: 2px; }
.filter-panel__actions .btn { white-space: nowrap; }
.article__foot .btn { margin-right: 10px; }
.cta-band__actions .btn { flex: none; }
.primary-nav__foot .btn { justify-content: center; }
.primary-nav__foot .btn--primary { border-color: transparent; }
.site-header__cta { display: inline-flex; }
.nav-item.is-open .nav-item__toggle { color: #fff; }
.badge-float {
  position: absolute; z-index: 2; right: -18px; bottom: -20px;
  background: var(--paper); border: 2px solid var(--ink); border-radius: 10px;
  padding: 14px 20px 12px; box-shadow: 6px 6px 0 var(--saffron);
  text-align: center;
}
.badge-float strong { display: block; font-family: var(--display); font-weight: 700; font-size: 40px; line-height: 1; color: var(--blue); transform: skewX(-4deg); }
.badge-float span { display: block; margin-top: 3px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  background: var(--paper); border: 2px solid var(--line); border-radius: 12px;
  padding: 26px 24px 22px;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s;
}
.pillar:hover { transform: translate(-2px, -2px); border-color: var(--ink); box-shadow: 6px 6px 0 var(--saffron); }
.pillar__icon {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 16px;
  background: var(--blue); color: #fff; border-radius: 9px;
  transform: skewX(-6deg); box-shadow: 3px 3px 0 var(--saffron);
}
.pillar h3 { font-size: 19px; margin-bottom: 6px; }
.pillar p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.timeline { position: relative; padding-left: 38px; display: grid; gap: 30px; }
.timeline::before { content: ""; position: absolute; left: 12px; top: 6px; bottom: 6px; width: 2.5px; background: var(--line); }
.timeline__item { position: relative; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ""; position: absolute; left: -32px; top: 8px; width: 13px; height: 13px;
  background: var(--saffron); transform: skewX(-8deg);
  box-shadow: 0 0 0 3px var(--cloud), 0 0 0 5px var(--saffron-tint);
}
.timeline__year { font-family: var(--display); font-weight: 700; font-size: 23px; color: var(--blue); }
.timeline__item h3 { font-size: 18.5px; margin: 3px 0 5px; }
.timeline__item p { margin: 0; font-size: 15px; color: var(--ink-soft); max-width: 66ch; }
.letter {
  position: relative; background: var(--paper); border: 2px solid var(--ink);
  border-radius: 14px; padding: 36px 40px 32px; max-width: 820px; box-shadow: var(--hard);
}
.letter::before {
  content: ""; position: absolute; top: -2px; left: 40px; width: 72px; height: 6px;
  background: var(--blue); transform: var(--bar-skew);
}
.letter__head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.letter__head .avatar { margin: 0; }
.letter__head h2 { font-size: 23px; margin: 0; }
.letter__head .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--saffron-ink); }
.letter p { font-size: 16.5px; line-height: 1.75; }
.letter blockquote {
  margin: 22px 0; padding: 4px 0 4px 20px; border-left: 5px solid var(--saffron);
  font-family: var(--display); font-weight: 500; font-size: 21px; line-height: 1.35;
}
.letter__sign { margin-top: 24px; }
.letter__sign .name { font-family: var(--display); font-weight: 600; font-size: 20px; }
.letter__sign .title { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

/* -------------------------------------------------- 22 · CTA band
   Skewed saffron field with sweeping bars — the loudest moment on the page */
.cta-band {
  position: relative; overflow: hidden; margin: 0;
  background: linear-gradient(115deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  color: var(--ink);
  /* leaning top edge for energy; bottom stays flush against the footer — no overhang */
  clip-path: polygon(0 34px, 100% 0, 100% 100%, 0 100%);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.07) 0 2px, transparent 2px 16px);
}
.cta-band__stripes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-band__stripes span { position: absolute; top: -14%; height: 128%; transform: skewX(-18deg); }
.cta-band__stripes span:nth-child(1) { right: 6%;  width: 26px; background: var(--ink); opacity: 0.9; }
.cta-band__stripes span:nth-child(2) { right: 12%; width: 60px; background: rgba(255, 255, 255, 0.22); }
.cta-band__stripes span:nth-child(3) { right: 21%; width: 34px; background: var(--blue); opacity: 0.85; }
.cta-band__stripes span:nth-child(4) { right: -3%; width: 96px; background: rgba(10, 21, 53, 0.18); }
.cta-band .wrap, .cta-band__inner { position: relative; z-index: 1; }
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 34px;
  padding: 78px 0 64px; flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 700; margin: 0 0 8px; max-width: 22ch; }
.cta-band p { margin: 0; font-size: 16.5px; color: rgba(10, 21, 53, 0.8); max-width: 52ch; }
.cta-band__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-band .btn--dark { background: var(--ink); color: #fff; box-shadow: 4px 4px 0 rgba(10, 21, 53, 0.35); }
.cta-band .btn--dark:hover { background: var(--ink-2); }
.cta-band .btn--primary { background: var(--blue); color: #fff; box-shadow: 4px 4px 0 var(--ink); }
.cta-band .btn--primary:hover { background: var(--blue-deep); }
.cta-band .btn--ghost { border-color: rgba(10, 21, 53, 0.55); color: var(--ink); }
.cta-band .btn--ghost:hover { border-color: var(--ink); background: rgba(10, 21, 53, 0.08); }

/* -------------------------------------------------- 23 · Footer */
.site-footer { position: relative; background: var(--ink); color: rgba(233, 238, 252, 0.78); }
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--tricolour);
}
.footer-news {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap; padding: 46px 0; border-bottom: 1px solid var(--line-dark);
}
.footer-news__kicker {
  font-family: var(--display); font-weight: 600; font-size: 14px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron);
}
.footer-news__title { font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: #fff; margin: 4px 0 2px; }
.footer-news__sub { margin: 0; font-size: 15px; }
.footer-news__form { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-news__form input {
  min-width: 280px; padding: 12px 16px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.07); border: 2px solid var(--line-dark); color: #fff;
}
.footer-news__form input::placeholder { color: rgba(233, 238, 252, 0.45); }
.footer-news__form input:focus { outline: none; border-color: var(--saffron); }
.footer-news__msg { width: 100%; margin: 4px 0 0; font-family: var(--mono); font-size: 12px; color: var(--saffron); }
.footer__grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px;
  padding: 50px 0 44px;
}
.brand--footer .brand__text strong { color: #fff; }
.footer__brand p { font-size: 14.5px; line-height: 1.7; margin: 14px 0 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: grid; place-items: center; width: 40px; height: 40px;
  border: 2px solid var(--line-dark); border-radius: 8px; color: #fff;
  transition: all 0.15s;
}
.footer__social a:hover { background: var(--saffron); border-color: var(--saffron); color: var(--ink); transform: translate(-2px, -2px); }
.footer__col h3 {
  font-family: var(--display); font-weight: 600; font-size: 15px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--saffron);
  margin-bottom: 16px;
}
.footer__col ul { display: grid; gap: 9px; }
.footer__col ul a { color: rgba(233, 238, 252, 0.78); font-size: 15px; }
.footer__col ul a:hover { color: var(--saffron); }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; margin-bottom: 12px; }
.footer__contact .icon { color: var(--saffron); margin-top: 3px; }
.footer__contact a:hover { color: var(--saffron); }
.footer__bottom { border-top: 1px solid var(--line-dark); padding: 18px 0; }
.footer__bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer__bottom-row p { margin: 0; font-size: 13px; color: rgba(233, 238, 252, 0.55); }
.footer__season-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(233, 238, 252, 0.5); }

/* -------------------------------------------------- 24 · Modal + lightbox */
.modal, .lightbox {
  position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 24px;
  background: rgba(6, 12, 34, 0.82); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity 0.22s, visibility 0.22s;
}
.modal.is-open, .lightbox.is-open { opacity: 1; visibility: visible; }
.modal__box, .lightbox__box {
  width: min(940px, 100%); background: var(--paper); border-radius: 12px;
  border: 2px solid var(--ink); overflow: hidden;
  transform: translateY(16px) scale(0.985); transition: transform 0.25s var(--ease);
  box-shadow: 12px 12px 0 rgba(255, 107, 26, 0.85);
}
.modal.is-open .modal__box,
.lightbox.is-open .lightbox__box { transform: none; }
.modal__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 20px 12px; background: var(--ink); color: #fff;
}
.modal__bar h3 { margin: 0; font-size: 17px; letter-spacing: 0.05em; }
.modal__close { color: rgba(255, 255, 255, 0.75); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 6px; }
.modal__close:hover { color: var(--ink); background: var(--saffron); }
.modal__frame { aspect-ratio: 16 / 9; background: #000; }
.modal__frame iframe { width: 100%; height: 100%; border: 0; }
.lightbox__visual { aspect-ratio: 16 / 9; }
.lightbox__visual .ph { height: 100%; border-radius: 0; }
.lightbox__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 20px;
}
.lightbox__cap { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.lightbox__count { font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--saffron-ink); }
.lightbox__nav { display: flex; gap: 8px; }
.lightbox__nav button {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 2px solid var(--line); border-radius: 8px; color: var(--ink);
  transition: all 0.15s;
}
.lightbox__nav button:hover { background: var(--saffron); border-color: var(--ink); }
.lightbox__nav .flip { transform: scaleX(-1); }

/* -------------------------------------------------- 25 · Misc */
.back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: grid; place-items: center; width: 48px; height: 48px;
  background: var(--blue); color: #fff; border: 2px solid var(--ink); border-radius: 9px;
  box-shadow: 4px 4px 0 var(--ink);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity 0.2s, transform 0.2s, background 0.15s;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--saffron); color: var(--ink); }
.empty {
  display: grid; justify-items: center; gap: 10px; text-align: center;
  padding: 56px 24px; border: 2.5px dashed var(--line); border-radius: 12px;
  color: var(--ink-soft);
}
.empty .icon { width: 34px; height: 34px; color: var(--saffron); }
.empty h3 { margin: 0; font-size: 19px; color: var(--ink); }
.empty p { margin: 0; font-size: 15px; }
.notfound { text-align: center; padding: 40px 0 60px; }
.notfound__code {
  font-family: var(--display); font-weight: 700; font-size: clamp(6.5rem, 21vw, 13rem);
  line-height: 0.9; color: transparent; -webkit-text-stroke: 3px rgba(18, 56, 212, 0.4);
  transform: skewX(-5deg);
}
@supports not (-webkit-text-stroke: 1px blue) { .notfound__code { color: var(--blue-tint); } }
.notfound h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: 12px 0 10px; }
.notfound p { max-width: 52ch; margin: 0 auto 26px; color: var(--ink-soft); }
.notfound .lane { justify-content: center; margin-bottom: 18px; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(26px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(n+7) { transition-delay: 0.48s; }

/* -------------------------------------------------- 26 · Responsive */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; padding: 64px 0 72px; }
  .next-fixture { max-width: 560px; }
  .hero__stripes span:nth-child(3), .hero__stripes span:nth-child(4) { display: none; }
  .filter-panel__grid { grid-template-columns: 1fr 1fr; }
  .filter-panel__actions { grid-column: 1 / -1; }
  .news-grid, .video-grid, .testimonial-grid, .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: repeat(3, 1fr); }
  .news-feature { grid-template-columns: 1fr; }
  .news-feature__body { padding: 6px 30px 30px; }
  .dash-cols { grid-template-columns: 1fr; }
  .auth-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 940px) {
  .section { padding: 68px 0; }
  .site-header__row { height: 66px; gap: 16px; }
  .nav-toggle { display: inline-flex; }
  .header-auth span { display: none; }
  .site-header__cta { display: none; }
  .nav-item.is-open .nav-item__toggle { transform: rotate(180deg); background: rgba(255, 255, 255, 0.08); }
  .primary-nav__foot .btn { width: 100%; }
  .primary-nav__foot .btn--primary { box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.45); }
  .primary-nav {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 100;
    width: min(360px, 88vw); margin: 0; padding: 22px 24px;
    background: var(--ink); color: #fff; overflow-y: auto;
    transform: translateX(102%);
    visibility: hidden;
    transition: transform 0.3s var(--ease), visibility 0.3s;
    display: flex; flex-direction: column;
    box-shadow: -20px 0 60px rgba(4, 8, 24, 0.55);
  }
  .primary-nav.is-open { transform: none; visibility: visible; }
  .primary-nav::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--tricolour);
  }
  .primary-nav__head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line-dark);
  }
  .primary-nav__label {
    font-family: var(--display); font-weight: 600; font-size: 14px;
    letter-spacing: 0.24em; text-transform: uppercase; color: var(--saffron);
  }
  .primary-nav__close { display: grid; place-items: center; width: 38px; height: 38px; border: 2px solid var(--line-dark); border-radius: 8px; color: #fff; }
  .primary-nav__list { display: block; }
  .nav-item { display: flex; align-items: center; flex-wrap: wrap; }
  .nav-item > a {
    flex: 1; padding: 12px 2px 10px; color: #fff;
    font-size: 24px; letter-spacing: 0.05em;
  }
  .nav-item > a::after { left: 2px; right: auto; width: 44px; bottom: 6px; }
  .nav-item.is-active > a { color: var(--saffron); }
  .nav-item > a:hover { color: var(--saffron); }
  .nav-item__toggle { display: inline-flex; }
  .sub-nav {
    position: static; min-width: 0; width: 100%; padding: 0 0 8px 14px;
    background: transparent; border: 0; box-shadow: none;
    opacity: 1; visibility: visible; transform: none;
    display: none;
  }
  .sub-nav::before, .sub-nav::after { content: none; }
  .nav-item.is-open .sub-nav { display: block; }
  .sub-nav a { color: rgba(233, 238, 252, 0.8); font-size: 17px; padding: 8px 10px; }
  .sub-nav a:hover { background: rgba(255, 255, 255, 0.07); color: #fff; }
  .sub-nav a.is-current { color: var(--saffron); }
  .primary-nav__foot {
    display: grid; gap: 12px; margin-top: auto; padding-top: 18px;
    border-top: 1px solid var(--line-dark);
  }
  .hero h1 { font-size: clamp(2.9rem, 9vw, 4.4rem); }
  .hero__stats-row { grid-template-columns: 1fr 1fr; }
  .stat { border-left: 0; padding: 18px 12px; }
  .stat:nth-child(2n) { border-left: 1px solid var(--line-dark); padding-left: 26px; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
  .fixture { grid-template-columns: 78px 1fr; }
  .fixture__meta { grid-column: 2; }
  .fixture__side { grid-column: 1 / -1; justify-items: start; }
  .tag-row { justify-content: flex-start; }
  .fixture__side .status { justify-self: start; }
  .board__month { font-size: 19px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--flip .split__visual { order: 2; }
.split--flip .split__visual .ph--back { inset: auto -20px -20px auto; }
.video-card:hover .video-card__play { transform: none; }
.cta-band .btn { border-width: 2px; }
.filter-panel__actions .btn { white-space: nowrap; }
.article__foot .btn { margin-right: 10px; }
.cta-band__actions .btn { flex: none; }
.primary-nav__foot .btn { justify-content: center; }
.primary-nav__foot .btn--primary { border-color: transparent; }
.site-header__cta { display: inline-flex; }
.nav-item.is-open .nav-item__toggle { color: #fff; }
.badge-float { right: 8px; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-band__inner { padding: 54px 0; }
  .dash-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { width: min(var(--wrap), 100% - 36px); }
  .section { padding: 56px 0; }
  .section__head { margin-bottom: 28px; }
  .announce__text { display: none; }
  .announce__row { justify-content: space-between; }
  .hero__inner { padding: 52px 0 60px; gap: 36px; }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .news-grid, .video-grid, .testimonial-grid, .pillar-grid, .people-grid, .affiliate-grid { grid-template-columns: 1fr; }
  .filter-panel__grid { grid-template-columns: 1fr; }
  .filter-panel { padding: 20px 18px 16px; }
  .fixture { padding: 16px; gap: 14px; }
  .next-fixture { padding: 22px 18px 18px; box-shadow: 8px 8px 0 var(--saffron-deep); }
  .standings { min-width: 540px; }
  .news-feature__body { padding: 4px 22px 24px; }
  .letter { padding: 26px 22px 24px; }
  .letter::before { left: 22px; }
  .form-card { padding: 24px 20px 20px; }
  .form-card::before { left: 20px; }
  .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
  .cta-band__inner { display: block; padding: 48px 0; }
  .cta-band__actions { margin-top: 22px; }
  .footer-news { display: block; }
  .footer-news__form { margin-top: 18px; }
  .footer-news__form input { min-width: 0; flex: 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 34px; }
  .dash-head { display: block; }
  .dash-head .btn { margin-top: 14px; }
  .article__foot .btn { width: 100%; }
  .filter-panel__actions .btn { flex: 1; }
  .cta-band__actions .btn { flex: 1; justify-content: center; }
}
@media (max-width: 460px) {
  .hero h1 { font-size: clamp(2.5rem, 12vw, 3.1rem); }
  .hero__stats-row { grid-template-columns: 1fr 1fr; }
  .stat__value { font-size: 36px; }
  .countdown { gap: 6px; }
  .countdown__num { font-size: 24px; }
  .btn { width: 100%; }
  .announce__season { font-size: 11px; }
  .ticker__item { font-size: 14px; padding: 0 14px; }
  .page-hero h1 { font-size: clamp(2.1rem, 9.5vw, 2.7rem); }
  .back-to-top { right: 14px; bottom: 14px; }
}

/* -------------------------------------------------- 27 · Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .ticker__track { animation: none; }
  .hero__stripes span { opacity: 1; animation: none; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .next-fixture__label .pulse { animation: none; }
}
