/* ============================================================
   ABBOTS YOUTH FC — Global stylesheet
   Dark, fluid, futuristic theme
   ============================================================ */

/* ---------- 1. Reset & tokens ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  color-scheme: dark;
  --bg: #04070f;
  --bg-2: #070c1a;
  --bg-3: #0b1325;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #e9edf6;
  --muted: #98a2b8;
  --faint: #67718c;
  --blue: #2b7bff;
  --cyan: #00e5ff;
  --volt: #c8f31d;
  --cyan-ink: var(--cyan);
  --volt-ink: var(--volt);
  --danger: #ff8c66;
  --grad: linear-gradient(120deg, #2b7bff, #00e5ff);
  --grad-soft: linear-gradient(120deg, rgba(43, 123, 255, 0.28), rgba(0, 229, 255, 0.28));
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 18px 44px rgba(0, 0, 0, 0.35);
  --shadow-card-hover: 0 28px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 229, 255, 0.12);
  --grid-line: rgba(255, 255, 255, 0.022);
  --header-bg: rgba(4, 7, 15, 0.82);
  --nav-bg: rgba(4, 7, 15, 0.97);
  --marquee-bg: rgba(6, 10, 20, 0.7);
  --glow-a: rgba(43, 123, 255, 0.16);
  --glow-b: rgba(0, 229, 255, 0.09);
  --glow-c: rgba(200, 243, 29, 0.05);
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --header-h: 78px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #eef2f8;
  --bg-2: #e5ebf4;
  --bg-3: #dde5f0;
  --surface: rgba(16, 32, 60, 0.045);
  --surface-2: rgba(16, 32, 60, 0.075);
  --border: rgba(16, 32, 60, 0.1);
  --border-strong: rgba(16, 32, 60, 0.2);
  --text: #0f1c30;
  --muted: #43536f;
  --faint: #64738c;
  --blue: #1f66e0;
  --cyan: #00a6c0;
  --volt: #c8f31d;
  --cyan-ink: #00687f;
  --volt-ink: #4c6100;
  --danger: #c0461a;
  --grad: linear-gradient(120deg, #1f66e0, #00a6c0);
  --grad-soft: linear-gradient(120deg, rgba(31, 102, 224, 0.2), rgba(0, 166, 192, 0.2));
  --shadow: 0 24px 60px rgba(30, 50, 85, 0.16);
  --shadow-hover: 0 18px 44px rgba(30, 50, 85, 0.12);
  --shadow-card-hover: 0 28px 70px rgba(30, 50, 85, 0.12), 0 0 0 1px rgba(31, 102, 224, 0.08);
  --grid-line: rgba(16, 32, 60, 0.05);
  --header-bg: rgba(255, 255, 255, 0.92);
  --nav-bg: rgba(238, 242, 248, 0.97);
  --marquee-bg: rgba(229, 235, 244, 0.85);
  --glow-a: rgba(31, 102, 224, 0.12);
  --glow-b: rgba(0, 166, 192, 0.09);
  --glow-c: transparent;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 620px at 85% -10%, var(--glow-a), transparent 60%),
    radial-gradient(720px 520px at -8% 28%, var(--glow-b), transparent 60%),
    radial-gradient(640px 640px at 62% 115%, var(--glow-c), transparent 60%),
    var(--bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 72%);
          mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 72%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: rgba(0, 229, 255, 0.35); color: #fff; }

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

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue), var(--cyan)); border-radius: 20px; }

/* ---------- 2. Utilities ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-ink);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad); border-radius: 2px; }

.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

.section { padding: 40px 0; position: relative; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 14px;
}
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.section-head.flex-head { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.section-head.flex-head > div { max-width: 620px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card-hover);
}

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad);
  color: #04121f;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.25), 0 0 0 1px rgba(0, 229, 255, 0.2);
}
.btn-primary:hover { box-shadow: 0 16px 44px rgba(0, 229, 255, 0.4), 0 0 0 1px rgba(0, 229, 255, 0.35); }

.btn-volt {
  background: var(--volt);
  color: #101a02;
  box-shadow: 0 10px 30px rgba(200, 243, 29, 0.22);
}
.btn-volt:hover { box-shadow: 0 16px 44px rgba(200, 243, 29, 0.38); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--text); background: rgba(0, 229, 255, 0.08); }

.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- 4. Header / nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}
html[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand-badge { width: 46px; height: auto; filter: drop-shadow(0 4px 14px rgba(0, 229, 255, 0.35)); transition: transform 0.5s var(--ease); }
.brand:hover .brand-badge { transform: rotate(-6deg) scale(1.06); }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; line-height: 1; letter-spacing: -0.01em; display: flex; flex-direction: column; }
.brand-name em { font-style: normal; font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--cyan-ink); font-weight: 600; }

.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s;
  border-radius: 10px;
}
.nav-link svg { width: 14px; height: 14px; opacity: 0.7; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { background: rgba(0, 229, 255, 0.07); }
html[data-theme="light"] .nav-link.active { background: rgba(23, 79, 176, 0.12); }

.nav-ext { color: var(--cyan-ink); }
.nav-ext:hover { color: var(--text); }

/* ---- More ▾ dropdown ---- */
.nav-more { position: relative; }
.nav-more-btn {
  appearance: none;
  background: transparent;
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.nav-more-btn svg.chev { transition: transform 0.25s var(--ease); }
.nav-more.open .nav-more-btn svg.chev { transform: rotate(180deg); }
.nav-more.open .nav-more-btn { color: var(--text); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 230px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--nav-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 200;
}
.nav-more.open .nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.nav-dropdown .nav-link {
  display: flex;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
}
.nav-dropdown .nav-link::after { display: none; }
.nav-link-zone { color: var(--volt-ink) !important; font-weight: 700; gap: 8px; }
.nav-link-zone:hover { background: rgba(200, 243, 29, 0.08); }
html[data-theme="light"] .nav-link-zone:hover { background: rgba(76, 97, 0, 0.08); }
.nav-link-zone svg { color: var(--volt-ink); }

/* ---- Coach Zone promo on documents ---- */
.cz-promo-list {
  display: grid;
  gap: 11px;
  margin: 14px 0 20px;
  padding: 0;
  color: var(--muted);
  font-size: 0.93rem;
}
.cz-promo-list li { padding-left: 18px; position: relative; }
.cz-promo-list li::before { content: "•"; color: var(--volt-ink); position: absolute; left: 2px; font-weight: 700; }
.cz-doc-teasers {
  display: grid;
  gap: 11px;
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.93rem;
}
.cz-doc-teasers li { display: flex; align-items: center; gap: 10px; }
.cz-doc-teasers svg { width: 14px; height: 14px; color: var(--faint); flex: none; }

.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 102;
  color: var(--text);
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.theme-toggle {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.theme-toggle:hover { border-color: var(--cyan); color: var(--cyan-ink); box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.12); transform: translateY(-1px); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-sun, .theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
html[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 90px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 132%;
  object-fit: cover;
  object-position: left top;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 15, 0.55) 0%, rgba(4, 7, 15, 0.35) 45%, rgba(4, 7, 15, 0.94) 100%),
    radial-gradient(60% 70% at 50% 110%, transparent 0%, rgba(4, 7, 15, 0.6) 100%);
}
.hero-content { position: relative; text-align: center; max-width: 900px; }

.hero-badge { margin-bottom: 26px; animation: floatY 5s ease-in-out infinite; }
.hero-badge img {
  width: 128px; margin: 0 auto;
  filter: drop-shadow(0 10px 40px rgba(0, 229, 255, 0.35));
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4ccdc;
  margin-bottom: 22px;
}
.hero-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--volt); box-shadow: 0 0 12px var(--volt); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1);} 50% { opacity: 0.4; transform: scale(0.8);} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.4vw, 3.9rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.5);
}
.hero-sub {
  max-width: 620px;
  margin: 22px auto 0;
  color: #c4ccdc;
  font-size: 1.08rem;
}
.hero-actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.07); }
.hero-actions .btn-ghost:hover { color: #fff; border-color: var(--cyan); background: rgba(0, 229, 255, 0.12); }

.hero-stats {
  margin-top: 52px;
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6vw, 72px);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat .lbl { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: #a7b3c8; margin-top: 2px; }

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 14px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #8b96ad; font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  transition: color 0.3s;
}
.hero-scroll:hover { color: var(--cyan); }
.hero-scroll .mouse {
  width: 22px; height: 36px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}
.hero-scroll .mouse::after {
  content: "";
  position: absolute; left: 50%; top: 7px;
  width: 3px; height: 7px; border-radius: 3px;
  background: currentColor;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translate(-50%, 0); }
  70% { opacity: 0; transform: translate(-50%, 12px); }
  100% { opacity: 0; }
}

/* ---------- 6. Marquee ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--marquee-bg);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 26px;
  padding-right: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track span::after { content: "◆"; font-size: 0.6rem; color: var(--cyan-ink); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 7. About ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.about-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 16px 0 18px;
}
.about-copy p { color: var(--muted); margin-bottom: 14px; }
.about-copy .accent-line { font-weight: 600; color: var(--text); border-left: 3px solid; border-image: var(--grad) 1; padding-left: 16px; }
.about-copy a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; color: var(--cyan-ink); transition: color 0.3s, text-decoration-color 0.3s; }
.about-copy a:hover { color: var(--cyan); text-decoration-thickness: 2px; }
.about-copy .btn { margin-top: 10px; text-decoration: none; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card { padding: 28px 22px; }
.stat-card .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card h4 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.stat-card .lbl { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }
.stat-card .ico { width: 44px; height: 44px; margin-bottom: 16px; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--border); display: grid; place-items: center; }
.stat-card .ico svg { width: 22px; height: 22px; stroke: var(--cyan-ink); }

/* ---------- 8. Carousel ---------- */
.carousel { position: relative; border-radius: var(--radius); border: 1px solid var(--border-strong); overflow: hidden; background: var(--bg-3); box-shadow: var(--shadow); }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.65s var(--ease); }
.carousel-slide { position: relative; min-width: 100%; aspect-ratio: 16 / 9; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,7,15,0.05) 40%, rgba(4,7,15,0.92) 100%); }
.carousel-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px clamp(20px, 4vw, 44px); }
.carousel-caption .tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--volt); margin-bottom: 8px;
}
.carousel-caption h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 3.4vw, 2.1rem); font-weight: 700; letter-spacing: -0.01em; color: #fff; }
.carousel-caption p { color: #b9c3d6; max-width: 560px; margin-top: 6px; font-size: 0.98rem; }
.carousel-caption .btn { margin-top: 14px; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(4, 7, 15, 0.55);
  backdrop-filter: blur(10px);
  color: #fff;
  display: grid; place-items: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
  z-index: 5;
}
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-btn:hover { background: var(--grad); border-color: transparent; color: #04121f; transform: translateY(-50%) scale(1.06); }
.carousel-btn.prev { left: 18px; }
.carousel-btn.next { right: 18px; }

.carousel-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 9px; z-index: 5; }
.carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; background: rgba(255, 255, 255, 0.35);
  transition: all 0.3s var(--ease); padding: 0;
}
.carousel-dots button[aria-current="true"] { background: var(--cyan); width: 26px; border-radius: 6px; box-shadow: 0 0 12px rgba(0, 229, 255, 0.7); }

/* ---------- 9. Fixtures ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; align-items: center; }
.filter-bar select {
  appearance: none;
  padding: 12px 40px 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23788496' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 16px center;
  color: var(--text);
  font-family: inherit; font-size: 0.92rem; font-weight: 600;
  cursor: pointer;
}
.filter-bar select:focus { outline: none; border-color: var(--cyan); }

.fixture-list { display: flex; flex-direction: column; gap: 12px; }
.fixture {
  display: grid;
  grid-template-columns: 92px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}
.fixture::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease);
}
.fixture:hover::before { transform: scaleY(1); }

.fixture-date { text-align: center; border-right: 1px solid var(--border); padding-right: 20px; }
.fixture-date .day { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fixture-date .dow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-top: 4px; }

.fixture-main { min-width: 0; }
.fixture-main .teams { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; flex-wrap: wrap; }
.fixture-main .team-self { color: var(--text); }
.fixture-main .team-self.home { color: var(--cyan-ink); }
.fixture-main .vs { color: var(--faint); font-weight: 500; font-size: 0.85rem; }
.fixture-main .team-opp { color: var(--muted); }
.fixture-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.04em;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
}
.chip svg { width: 12px; height: 12px; }
.chip--comp { color: var(--volt-ink); border-color: rgba(200, 243, 29, 0.3); }
.chip--loc { color: var(--cyan-ink); border-color: rgba(0, 229, 255, 0.3); }
.chip--away { color: var(--danger); border-color: rgba(255, 157, 123, 0.3); }
.chip--event { color: #c9a6ff; border-color: rgba(201, 166, 255, 0.3); }

.fixture-time { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text); text-align: right; white-space: nowrap; }

.fixtures-empty { text-align: center; padding: 60px 20px; color: var(--muted); display: none; }
.fixtures-empty.show { display: block; }

.fixtures-tabs {
  display: inline-flex; gap: 4px; padding: 5px;
  border: 1px solid var(--border-strong); border-radius: 999px;
  background: var(--surface); margin-bottom: 30px;
}
body[data-page="fixtures"] .page-hero { padding-top: calc(var(--header-h) + 14px); padding-bottom: 16px; }
body[data-page="fixtures"] .page-hero h1 { font-size: clamp(1.7rem, 3.8vw, 2.4rem); }
body[data-page="fixtures"] .page-hero p { font-size: 0.92rem; margin-top: 8px; }
body[data-page="fixtures"] .section { padding-top: 26px; }
body[data-page="fixtures"] .fixtures-tabs { margin-bottom: 20px; }
.fixtures-tab {
  appearance: none; border: 1px solid transparent; background: transparent; color: var(--muted);
  padding: 10px 28px; border-radius: 999px; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
}
.fixtures-tab:hover { color: var(--text); border-color: var(--cyan); }
.fixtures-tab.active { background: var(--grad); color: #04121f; box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3); }

.chip--postponed { color: #ffc86b; border-color: rgba(255, 200, 107, 0.35); }
.chip--cancelled { color: var(--danger); border-color: rgba(255, 140, 102, 0.35); }
.chip--walkover { color: #c9a6ff; border-color: rgba(201, 166, 255, 0.35); }

.fixture[data-status="postponed"] {
  background: rgba(255, 200, 107, 0.06);
  border-color: rgba(255, 200, 107, 0.22);
}
.fixture[data-status="postponed"]::before { background: linear-gradient(120deg, #ffc86b, #ffb14d); transform: scaleY(1); }
.fixture[data-status="postponed"]:hover { border-color: rgba(255, 200, 107, 0.45); }

.fixture[data-status="cancelled"] {
  background: rgba(255, 140, 102, 0.07);
  border-color: rgba(255, 140, 102, 0.28);
}
.fixture[data-status="cancelled"]::before { background: linear-gradient(120deg, #ff8c66, #ff5a45); transform: scaleY(1); }
.fixture[data-status="cancelled"]:hover { border-color: rgba(255, 140, 102, 0.5); }

.results-note { color: var(--faint); font-size: 0.85rem; margin-right: auto; }

.fixture.result { grid-template-columns: 92px 1fr auto; }
.result-teams { flex-wrap: wrap; }
.result-score { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text); white-space: nowrap; }
.result-score .rsep { color: var(--faint); font-weight: 600; }
.result-score.rw { font-size: 1rem; letter-spacing: 0.04em; }
.result-outcome {
  min-width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 14px; border: 1px solid var(--border-strong); background: var(--surface-2);
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
}
.outcome-win { color: var(--volt-ink); border-color: rgba(200, 243, 29, 0.4); background: rgba(200, 243, 29, 0.1); }
.outcome-draw { color: var(--cyan-ink); border-color: rgba(0, 229, 255, 0.4); background: rgba(0, 229, 255, 0.08); }
.outcome-loss { color: var(--danger); border-color: rgba(255, 140, 102, 0.4); background: rgba(255, 140, 102, 0.1); }

.records-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-bottom: 34px; }
.record-card { padding: 18px 20px; }
.record-card h4 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; margin-bottom: 14px; }
.record-stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.record-stat { text-align: center; }
.record-stat .v { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--text); }
.record-stat .k { display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--faint); margin-top: 3px; }
.record-stat.w .v { color: var(--volt-ink); }
.record-stat.d .v { color: var(--cyan-ink); }
.record-stat.l .v { color: var(--danger); }

.home-fixtures-cta { margin-top: 28px; text-align: center; }

/* ---------- 10. Teams ---------- */
.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-pill {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--muted);
  font-weight: 700; font-size: 0.88rem;
  transition: all 0.3s var(--ease);
}
.filter-pill:hover { color: var(--text); border-color: var(--cyan); }
.filter-pill.active { background: var(--grad); color: #04121f; border-color: transparent; box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3); }

.teams-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.team-card { overflow: hidden; display: flex; flex-direction: column; }
.team-card[hidden] { display: none; }
.team-photo { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.06); }
.age-chip {
  position: absolute; top: 14px; left: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(4, 7, 15, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.85rem;
  color: var(--cyan);
}
.open-chip {
  position: absolute; top: 14px; right: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(200, 243, 29, 0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 243, 29, 0.4);
  color: var(--volt);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.team-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.team-body h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; }
.team-body .desc { color: var(--muted); font-size: 0.94rem; }
.team-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.team-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.coach { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--muted); }
.coach .avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad-soft); border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--cyan-ink);
}

/* ---------- 10a. News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news-card { overflow: hidden; display: flex; flex-direction: column; }
.news-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.news-card:hover .news-media img { transform: scale(1.06); }
.news-media--plain {
  background:
    radial-gradient(130% 100% at 92% 0%, rgba(43, 123, 255, 0.4), transparent 58%),
    radial-gradient(130% 100% at 4% 100%, rgba(0, 229, 255, 0.26), transparent 55%),
    linear-gradient(140deg, #0a2458, #050d20);
  display: grid;
  place-items: center;
}
.news-media--plain::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 0%, transparent 72%);
  pointer-events: none;
}
.news-media-icon {
  position: relative;
  z-index: 1;
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(4, 7, 15, 0.4);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: var(--cyan);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.news-card:hover .news-media-icon { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 48px rgba(0, 229, 255, 0.35); }
.news-media-icon svg { width: 26px; height: 26px; }
.news-tag {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(4, 7, 15, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--volt);
  z-index: 1;
}
.news-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-body h3 { font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.28; }
.news-body h3 a { transition: color 0.3s; }
.news-body h3 a:hover { color: var(--cyan-ink); }
.news-body p { color: var(--muted); font-size: 0.94rem; }
.news-meta time { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.news-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.9rem;
  color: var(--cyan-ink);
  padding-top: 6px;
}
.news-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.news-link:hover svg { transform: translateX(4px); }

.carousel--news { border: none; background: transparent; box-shadow: none; }
.carousel--news .carousel-track { gap: 26px; }
.carousel--news .carousel-slide {
  flex: 0 0 calc((100% - 52px) / 3);
  min-width: 0;
  aspect-ratio: auto;
}
.carousel--news .carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 26px;
}
.carousel--news .carousel-btn {
  position: static;
  transform: none;
  width: 42px;
  height: 42px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.carousel--news .carousel-btn:hover:not(:disabled) {
  background: var(--grad);
  border-color: transparent;
  color: #04121f;
  transform: scale(1.06);
}
.carousel--news .carousel-btn:disabled { opacity: 0.35; cursor: default; }
.carousel--news .carousel-dots { position: static; transform: none; margin: 0; }
.carousel--news .carousel-dots button { background: var(--border-strong); }
.carousel--news .carousel-dots button[aria-current="true"] { background: var(--cyan-ink); box-shadow: none; width: 26px; border-radius: 6px; }

.lottery-band { padding: 0 0 24px; margin-top: -16px; }
.lottery-band .container { max-width: 760px; }
.lottery-link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(420px 180px at 92% 0%, rgba(200, 243, 29, 0.12), transparent 60%),
    radial-gradient(420px 180px at 4% 100%, rgba(0, 229, 255, 0.1), transparent 60%),
    var(--bg-2);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.lottery-link:hover { transform: translateY(-2px); border-color: var(--cyan); box-shadow: var(--shadow-hover); }
.lottery-icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--cyan-ink);
}
.lottery-icon svg { width: 22px; height: 22px; }
.pound-glyph { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1; }
.lottery-text { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.lottery-text strong { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em; }
.lottery-text span { color: var(--muted); font-size: 0.88rem; }
.lottery-link .btn { flex: none; }

@media (max-width: 560px) {
  .lottery-link { flex-wrap: wrap; gap: 12px; }
  .lottery-link .btn { width: 100%; justify-content: center; }
}

/* ---------- 10b. Pathway infographic ---------- */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.pathway-card {
  position: relative;
  z-index: 5;
  padding: 24px 18px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pathway-card:nth-child(2) { z-index: 4; }
.pathway-card:nth-child(3) { z-index: 3; }
.pathway-card:nth-child(4) { z-index: 2; }
.pathway-card:nth-child(5) { z-index: 1; }

.fmt-badge {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pitch {
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(130% 140% at 50% 0%, rgba(0, 229, 255, 0.08), transparent 62%),
    var(--bg-3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pitch::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.3), transparent);
}
.pitch::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 30px; height: 30px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 50%;
}

.pathway-card:nth-child(1) .pitch { height: 96px; }
.pathway-card:nth-child(2) .pitch { height: 108px; }
.pathway-card:nth-child(3) .pitch { height: 120px; }
.pathway-card:nth-child(4) .pitch { height: 132px; }
.pathway-card:nth-child(5) .pitch { height: 144px; }

.pitch-goal {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 44%; height: 4px;
  border-radius: 4px;
  background: var(--volt);
  box-shadow: 0 0 12px rgba(200, 243, 29, 0.55);
  z-index: 2;
}

.pitch-dots {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 74%;
  padding-top: 24px;
}
.p-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.45);
}

.pitch-num {
  position: absolute;
  right: 9px; bottom: 8px;
  z-index: 2;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  backdrop-filter: blur(8px);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}

.pathway-head { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.pathway-head h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }
.path-age { position: static; width: fit-content; color: var(--cyan-ink); background: var(--surface-2); }

.pathway-card > p { color: var(--muted); font-size: 0.87rem; margin-top: auto; }

.pathway-note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--faint);
}

@media (min-width: 1024px) {
  .pathway-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 73px;
    right: -17px;
    transform: translate(50%, -50%) rotate(45deg);
    width: 10px; height: 10px;
    border-top: 2px solid var(--cyan-ink);
    border-right: 2px solid var(--cyan-ink);
    background: var(--bg);
    z-index: 3;
  }
  .pathway-card:nth-child(2)::after { top: 79px; }
  .pathway-card:nth-child(3)::after { top: 85px; }
  .pathway-card:nth-child(4)::after { top: 91px; }
}

@media (max-width: 1024px) {
  .pathway-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .pathway-grid { grid-template-columns: 1fr; }
  .pathway-card:nth-child(1) .pitch,
  .pathway-card:nth-child(2) .pitch,
  .pathway-card:nth-child(3) .pitch,
  .pathway-card:nth-child(4) .pitch,
  .pathway-card:nth-child(5) .pitch { height: 150px; }
}

/* ---------- 11. Documents ---------- */
.doc-group + .doc-group { margin-top: 52px; }
.doc-group h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 4px; display: flex; align-items: center; gap: 12px; }
.doc-group h3 .ico { width: 34px; height: 34px; border-radius: 10px; background: var(--grad-soft); border: 1px solid var(--border); display: grid; place-items: center; }
.doc-group h3 .ico svg { width: 17px; height: 17px; stroke: var(--cyan-ink); }
.doc-group .sub { color: var(--muted); margin-bottom: 22px; font-size: 0.92rem; }

.doc-list { display: grid; gap: 14px; }
.doc-item {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 22px;
}
.doc-item .doc-ico {
  flex: none;
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(140deg, rgba(43,123,255,0.35), rgba(0,229,255,0.2));
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
}
.doc-item .doc-ico svg { width: 24px; height: 24px; }
.doc-item .doc-body { flex: 1; min-width: 0; }
.doc-item .doc-body h4 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; }
.doc-item .doc-body p { color: var(--muted); font-size: 0.9rem; margin-top: 3px; }
.doc-item .doc-meta { display: flex; gap: 14px; margin-top: 8px; font-size: 0.75rem; color: var(--faint); letter-spacing: 0.04em; }
.doc-item .btn { flex: none; }

/* ---------- Coach login template ---------- */
.coach-area {
  margin-top: 64px;
  padding: clamp(24px, 4vw, 48px);
  border-radius: var(--radius);
  border: 1px solid rgba(200, 243, 29, 0.28);
  background:
    radial-gradient(600px 260px at 90% 0%, rgba(200, 243, 29, 0.08), transparent 60%),
    var(--bg-2);
  position: relative;
  overflow: hidden;
}
.coach-area::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--volt), transparent);
}
.coach-area h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); display: flex; align-items: center; gap: 12px; }
.coach-area h4 { font-family: var(--font-display); font-size: 1.02rem; color: var(--text); }
.coach-area h2 .lock { color: var(--volt-ink); }
.coach-area .intro { color: var(--muted); max-width: 760px; margin: 10px 0 26px; font-size: 1.02rem; }

.login-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.login-form { display: grid; gap: 16px; }
.form-field label { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-field input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15); }
.login-form .btn { width: 100%; }
.login-note { font-size: 0.8rem; color: var(--faint); }
.login-note code { color: var(--volt-ink); background: rgba(200, 243, 29, 0.1); padding: 2px 8px; border-radius: 6px; font-size: 0.78rem; }
.login-error { color: var(--danger); font-size: 0.86rem; display: none; }
.login-error.show { display: block; }

.coach-panel { display: none; }
.coach-panel.show { display: block; }
.coach-panel .head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.coach-panel .head h3 { font-family: var(--font-display); font-size: 1.25rem; }
.coach-panel .head .badge-online { display: inline-flex; align-items: center; gap: 7px; color: var(--volt-ink); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.coach-panel .head .badge-online::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--volt); box-shadow: 0 0 10px var(--volt); animation: pulse 1.8s infinite; }

/* ---------- 12. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: start; }
.contact-form-card { padding: clamp(24px, 4vw, 40px); }
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 6px; }
.contact-form-card .sub { color: var(--muted); margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-field textarea {
  width: 100%; min-height: 140px; resize: vertical;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15); }
.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(200, 243, 29, 0.4);
  background: rgba(200, 243, 29, 0.08);
  color: var(--volt-ink);
  font-size: 0.92rem;
  font-weight: 600;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 87, 87, 0.45);
  background: rgba(255, 87, 87, 0.08);
  color: #ff7b7b;
  font-size: 0.92rem;
  font-weight: 600;
}
.form-error.show { display: block; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.hp-field input { width: 1px; height: 1px; }
.btn.is-loading { opacity: 0.6; cursor: wait; pointer-events: none; }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-item { display: flex; gap: 16px; padding: 18px 20px; align-items: flex-start; }
.info-item .ico { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--border); display: grid; place-items: center; }
.info-item .ico svg { width: 20px; height: 20px; stroke: var(--cyan-ink); }
.info-item h4 { font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 2px; }
.info-item p, .info-item a { color: var(--muted); font-size: 0.92rem; }
.info-item a:hover { color: var(--cyan-ink); }

.committee { margin-top: 8px; }
.committee .c-item { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.committee .c-item:last-child { border-bottom: 0; }
.committee .c-role { font-weight: 600; font-size: 0.95rem; }
.committee .c-name { color: var(--muted); font-size: 0.88rem; }
.committee .c-mail { color: var(--cyan-ink); font-size: 0.82rem; font-weight: 600; }

.socials { display: flex; gap: 12px; }
.socials a {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  display: grid; place-items: center;
  color: var(--muted);
  transition: all 0.3s var(--ease);
}
.socials a:hover { background: var(--grad); color: #04121f; border-color: transparent; transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0, 229, 255, 0.3); }
.socials svg { width: 19px; height: 19px; }

.map-wrap { margin-top: 64px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-strong); position: relative; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(0.4) contrast(1.05); }

/* ---------- 13. Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 70px) 0 60px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background:
    radial-gradient(700px 340px at 85% 0%, rgba(43, 123, 255, 0.18), transparent 60%),
    radial-gradient(520px 300px at 5% 100%, rgba(0, 229, 255, 0.1), transparent 60%),
    var(--bg-2);
}
.page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5.4vw, 3.6rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
.page-hero p { color: var(--muted); max-width: 620px; margin-top: 16px; font-size: 1.05rem; }
.page-hero .article-hero-meta { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-top: 18px; }

/* ---------- 13a. News article ---------- */
.article { max-width: 760px; margin: 0 auto; color: var(--muted); }
.article-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.9rem;
  color: var(--cyan-ink);
  margin-bottom: 34px;
  transition: color 0.3s;
}
.article-back svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.article-back:hover { color: var(--text); }
.article-back:hover svg { transform: translateX(-4px); }
.article .accent-line { font-weight: 600; color: var(--text); border-left: 3px solid; border-image: var(--grad) 1; padding-left: 16px; font-size: 1.1rem; }
.article p { color: var(--muted); margin-bottom: 18px; }
.article h3 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; letter-spacing: -0.01em; color: var(--text); margin: 36px 0 14px; }
.article h3:first-of-type { margin-top: 30px; }
.article ul { margin: 0 0 20px; padding-left: 22px; display: grid; gap: 10px; }
.article ul li::marker { color: var(--cyan-ink); }
.article blockquote {
  margin: 32px 0;
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  border-left: 3px solid;
  border-image: var(--grad) 1;
  background: var(--surface);
}
.article blockquote p { color: var(--text); font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; line-height: 1.5; margin: 0; }

/* ---------- 14. CTA band ---------- */
.cta-band {
  position: relative;
  padding: 84px clamp(20px, 4vw, 44px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(600px 300px at 80% 20%, rgba(0, 229, 255, 0.16), transparent 60%),
    radial-gradient(500px 300px at 10% 90%, rgba(43, 123, 255, 0.2), transparent 60%),
    var(--bg-3);
  text-align: center;
}
.cta-media { position: absolute; inset: 0; overflow: hidden; }
.cta-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  object-fit: contain;
  object-position: right top;
  opacity: 0.16;
  filter: grayscale(1);
}
.cta-overlay {
  position: absolute; inset: 0;
  background: var(--bg-3);
  opacity: 0.55;
}
.cta-band > h2,
.cta-band > p,
.cta-actions { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -0.02em; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 14px auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- 14a. Boot Room band (homepage) ---------- */
.bootroom-band {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 36px);
  padding: clamp(24px, 5vw, 44px);
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(420px 220px at 0% 100%, rgba(200, 243, 29, 0.08), transparent 60%),
    var(--bg-3);
  box-shadow: var(--shadow);
}
.bootroom-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--grad);
  color: #04121f;
}
.bootroom-icon svg { width: 26px; height: 26px; }
.bootroom-copy { flex: 1 1 auto; min-width: 0; }
.bootroom-copy h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; letter-spacing: -0.01em; margin-top: 8px; }
.bootroom-copy p { color: var(--muted); max-width: 620px; margin-top: 8px; font-size: 0.98rem; }
.bootroom-band > .btn { flex: 0 0 auto; }
@media (max-width: 700px) {
  .bootroom-band { flex-wrap: wrap; }
  .bootroom-band > .btn { width: 100%; justify-content: center; }
}

/* ---------- 14b. Fees page ---------- */
.fees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fee-card { padding: 26px; display: flex; flex-direction: column; }
.fee-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 18px; }
.fee-actions { margin-top: auto; padding-top: 18px; }
.fee-actions .fee-hint { margin-top: 8px; }
.fee-hint { font-size: 0.8rem; color: var(--faint); }
.fee-table { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.fee-row { display: grid; grid-template-columns: 1.4fr 0.6fr 0.6fr; align-items: center; gap: 8px; padding: 12px 14px; font-size: 0.92rem; }
.fee-row + .fee-row { border-top: 1px solid var(--border); }
.fee-row.head { background: var(--bg-2); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.74rem; color: var(--muted); }
.fee-row span:not(:first-child) { text-align: right; font-weight: 600; }
.fee-note-card { display: flex; align-items: flex-start; gap: 18px; padding: 26px; }
.fee-note-card .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--border); display: grid; place-items: center; color: var(--cyan-ink); }
.fee-note-card .ico svg { width: 22px; height: 22px; }
.fee-note-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }
.fee-note-card p { color: var(--muted); margin-top: 6px; font-size: 0.95rem; }
.fee-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 28px; margin-top: 18px; }
.fee-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 0.95rem; }
.fee-list li::before { content: "✓"; flex: none; color: var(--cyan-ink); font-weight: 700; }
@media (max-width: 860px) {
  .fee-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .fee-list { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .fees-grid { grid-template-columns: 1fr; }
  .fee-note-card { flex-direction: column; }
}

/* ---------- 15. Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 72px 24px 48px;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 0.94rem; max-width: 300px; }
.footer-motto { margin-top: 16px; font-family: var(--font-display); font-weight: 600; color: var(--text); font-size: 0.95rem; }
.footer-motto em { font-style: normal; color: var(--cyan-ink); }
.footer-col h4 { font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: var(--muted); font-size: 0.93rem; transition: color 0.3s, padding-left 0.3s var(--ease); }
.footer-col a:hover { color: var(--cyan-ink); padding-left: 5px; }
.footer-col .ext::after { content: " ↗"; color: var(--faint); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--faint);
  font-size: 0.84rem;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--cyan-ink); }
.footer-bottom .accredit { display: inline-flex; align-items: center; gap: 8px; color: var(--volt-ink); font-weight: 600; }
.footer-bottom .accredit svg { width: 15px; height: 15px; }
.footer-bottom .font-credit { flex-basis: 100%; text-align: center; font-size: 0.72rem; letter-spacing: 0.02em; }

/* ---------- 15a. Boot Room ---------- */
.br-subnav { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 44px; }
.br-subnav a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--muted);
  font-weight: 700; font-size: 0.86rem;
  transition: all 0.3s var(--ease);
}
.br-subnav a svg { width: 15px; height: 15px; opacity: 0.7; }
.br-subnav a:hover { color: var(--text); border-color: var(--cyan); transform: translateY(-2px); }
.br-subnav a.active { background: var(--grad); color: #04121f; border-color: transparent; box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3); }

.br-lead { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 40px; }
.br-lead .card { padding: 26px 26px; display: flex; gap: 16px; align-items: flex-start; }
.br-lead .ico {
  flex: none; width: 46px; height: 46px; border-radius: 13px;
  background: var(--grad-soft); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--cyan-ink);
}
.br-lead .ico svg { width: 22px; height: 22px; }
.br-lead h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; margin-bottom: 6px; }
.br-lead p { color: var(--muted); font-size: 0.93rem; }

.br-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); gap: 22px; }
.br-card { overflow: hidden; display: flex; flex-direction: column; }
.br-card .br-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-3); }
.br-card .br-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.br-card:hover .br-media img { transform: scale(1.07); }
.br-card .br-media .br-type {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(4, 7, 15, 0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--volt);
}
.br-card .br-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.br-card .br-body h3 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
.br-ref {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--cyan-ink); border: 1px solid rgba(0, 229, 255, 0.3); background: var(--surface);
}
.br-note {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 22px; margin-bottom: 40px;
  border-radius: var(--radius);
  border: 1px dashed var(--border-strong);
  background: var(--surface);
  color: var(--muted); font-size: 0.94rem;
}
.br-note svg { flex: none; width: 20px; height: 20px; color: var(--volt-ink); margin-top: 2px; }
.br-note strong { color: var(--text); }

.br-band { margin-top: 56px; }
.br-band-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 22px; }
.br-band-head h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.8rem); letter-spacing: -0.01em; }
.br-band-head .sub { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }

.br-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.br-form-card { padding: clamp(24px, 4vw, 36px); }
.br-form-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 6px; }
.br-form-card .sub { color: var(--muted); margin-bottom: 24px; }
.br-howto { display: grid; gap: 18px; }
.br-howto .card { padding: 22px 24px; }
.br-howto h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.br-howto h4 .step {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--grad); color: #04121f;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
}
.br-howto p { color: var(--muted); font-size: 0.92rem; }

/* ---------- 16. Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ---------- 17. Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid, .contact-grid, .login-grid, .br-lead, .br-info-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
  .carousel--news .carousel-slide { flex-basis: calc((100% - 26px) / 2); }
}

@media (max-width: 700px) {
  .carousel--news .carousel-slide { flex-basis: 100%; }
  .carousel--news .carousel-track { gap: 0; }
}

@media (min-width: 861px) {
  .site-nav { transform: none; visibility: visible; }
}

html.no-anim .site-nav,
html.no-anim body::after,
html.no-anim .site-nav .nav-list > li { transition: none !important; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .theme-toggle { margin-left: auto; }

  body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(2, 5, 12, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0s linear 0.4s;
  }
  body.nav-open::after {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s var(--ease);
  }

  .site-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(88vw, 360px);
    z-index: 95;
    background: var(--nav-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--border);
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.5);
    transform: translateX(102%);
    visibility: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: calc(var(--header-h) + 30px) 24px 32px;
    transition: transform 0.5s var(--ease), visibility 0s linear 0.5s;
  }
  .site-nav.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.5s var(--ease), visibility 0s;
  }

  .nav-list { flex-direction: column; align-items: stretch; gap: 6px; }

  /* More ▾ dropdown flattens into the panel */
  .nav-more-btn { display: none; }
  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0;
    margin: 0;
    display: block;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  .nav-dropdown .nav-link { padding-left: 30px; }
  .nav-link {
    position: relative;
    padding: 15px 18px;
    font-size: 1.06rem;
    font-family: var(--font-display);
    letter-spacing: -0.01em;
    border-radius: 14px;
    overflow: hidden;
    transition: color 0.3s, background 0.3s, transform 0.3s var(--ease);
  }
  .nav-link::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 3px; height: 0;
    border-radius: 3px;
    background: var(--grad);
    transform: translateY(-50%);
    transition: height 0.35s var(--ease);
  }
  .nav-link:hover { color: var(--text); background: var(--surface); transform: translateX(3px); }
  .nav-link.active {
    color: var(--text);
    background: var(--surface-2);
    box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.08);
  }
  .nav-link.active::before { height: 50%; opacity: 0.75; }

  .nav-cta {
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-ext { justify-content: flex-start; }

  .site-nav.open .nav-list > li { animation: navFade 0.45s var(--ease) both; }
  .site-nav.open .nav-list > li:nth-child(1) { animation-delay: 0.04s; }
  .site-nav.open .nav-list > li:nth-child(2) { animation-delay: 0.09s; }
  .site-nav.open .nav-list > li:nth-child(3) { animation-delay: 0.14s; }
  .site-nav.open .nav-list > li:nth-child(4) { animation-delay: 0.19s; }
  .site-nav.open .nav-list > li:nth-child(5) { animation-delay: 0.24s; }
  .site-nav.open .nav-list > li:nth-child(6) { animation-delay: 0.29s; }
  .site-nav.open .nav-list > li:nth-child(7) { animation-delay: 0.34s; }
  @keyframes navFade {
    from { opacity: 0; transform: translateX(26px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @media (prefers-reduced-motion: reduce) {
    .site-nav, body::after, .site-nav.open .nav-list > li { transition: none; animation: none; }
  }
  .section { padding: 28px 0; }
  .section#news { padding-top: 20px; }
  .fixture { grid-template-columns: 76px 1fr; gap: 14px; }
  .fixture-time { grid-column: 2; text-align: left; }
  .fixture.result .result-outcome { grid-column: 2; justify-self: start; }
  .filter-bar { gap: 10px; margin-bottom: 26px; }
  .filter-bar select { flex: 1 1 150px; min-width: 0; }
  .results-note { display: none; }
  .carousel-slide { aspect-ratio: 16 / 11; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --header-h: 68px; }
  .brand-name { font-size: 1.05rem; }
  .brand-badge { width: 38px; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 40px); }
  .hero-media img { object-position: 15% top; }
  .hero-badge img { width: 96px; }
  .hero-stats { gap: 28px; }
  .about-stats { grid-template-columns: 1fr; gap: 12px; }
  .stat-card { padding: 20px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  body[data-page="fixtures"] .page-hero::after { display: none; }
  .carousel:not(.carousel--news) { border: none; background: none; box-shadow: none; overflow: visible; }
  .carousel:not(.carousel--news) .carousel-viewport { border: 1px solid var(--border-strong); border-radius: var(--radius); background: var(--bg-3); box-shadow: var(--shadow); }
  .carousel:not(.carousel--news) .carousel-nav { display: flex; flex-wrap: nowrap; align-items: center; justify-content: center; gap: 16px; margin-top: 16px; }
  .carousel:not(.carousel--news) .carousel-btn { position: static; transform: none; width: 42px; height: 42px; flex-shrink: 0; background: var(--surface); border: 1px solid var(--border-strong); color: var(--text); }
  .carousel:not(.carousel--news) .carousel-btn:hover { background: var(--grad); border-color: transparent; color: #04121f; transform: scale(1.06); }
  .carousel:not(.carousel--news) .carousel-dots { position: static; transform: none; margin: 0; flex: 1 1 0; min-width: 0; overflow: hidden; justify-content: center; gap: 7px; }
  .carousel:not(.carousel--news) .carousel-dots button { width: 7px; height: 7px; background: var(--border-strong); }
  .carousel:not(.carousel--news) .carousel-dots button[aria-current="true"] { background: var(--cyan-ink); box-shadow: none; width: 18px; }
  .carousel-caption { padding: 18px 18px; }
  .carousel-caption .btn { display: none; }
  .doc-item { flex-wrap: wrap; }
  .doc-item .btn { width: 100%; justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

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

/* ============================================================
   Newsletter article + news archive
   ============================================================ */

.article .pdf-cta { margin: 0 0 20px; }
.article figure.article-figure { margin: 20px 0; }
.article figure.article-figure img {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(127, 140, 170, 0.35);
}
.article figure.article-figure figcaption {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

.news-archive {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.archive-links { display: flex; gap: 22px; flex-wrap: wrap; }
