/* ============================================
   GREENWOOD GATORS FOOTBALL — DESIGN SYSTEM
   Palette: Forest Green + Athletic Gold (school colors)
   ============================================ */
:root {
  --swamp: #0b231a;        /* page field */
  --pine: #123125;         /* raised panels */
  --mud: #1a4232;          /* cards */
  --gold: #e9b949;         /* athletic gold */
  --gold-hot: #f6cd60;
  --chalk: #f5f2e8;        /* field-chalk white */
  --chalk-dim: rgba(245, 242, 232, 0.62);
  --line: rgba(245, 242, 232, 0.14);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--swamp);
  color: var(--chalk);
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hot); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

img { max-width: 100%; display: block; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 22px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 35, 26, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.35rem; text-transform: uppercase;
  color: var(--chalk); letter-spacing: 0.04em;
}
.nav-brand .gator-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--swamp);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.05rem;
}
.nav-brand span b { color: var(--gold); }
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.02rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--chalk-dim);
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--chalk); }
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--chalk); font-size: 1.4rem; border-radius: 8px; width: 42px; height: 42px; cursor: pointer; }

/* ---------- HASH-MARK DIVIDER (signature) ---------- */
.hashline {
  height: 26px; margin: 0; border: 0;
  background-image: repeating-linear-gradient(
    90deg,
    var(--line) 0 3px,
    transparent 3px 34px
  );
  background-size: 100% 12px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
}

/* ---------- HERO SCOREBOARD ---------- */
.hero {
  position: relative;
  padding: 72px 0 64px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11,35,26,0) 0%, rgba(11,35,26,0.65) 100%),
    repeating-linear-gradient(180deg, transparent 0 119px, rgba(245,242,232,0.05) 119px 121px),
    radial-gradient(1200px 500px at 50% -10%, #17402f 0%, var(--swamp) 70%);
}
.hero-kicker {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--gold); font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; font-size: 0.95rem; margin-bottom: 10px;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 800;
}
.hero h1 .thin { color: var(--chalk-dim); font-weight: 500; }
.hero-sub { color: var(--chalk-dim); max-width: 520px; margin-top: 14px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; }

/* scoreboard */
.scoreboard {
  background: #071a13;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow), inset 0 0 0 6px #0e2b20;
  padding: 26px 26px 22px;
}
.scoreboard .sb-title {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.9rem; color: var(--chalk-dim);
  margin-bottom: 16px;
}
.sb-matchup {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.7rem; text-transform: uppercase;
  display: flex; justify-content: space-between; gap: 10px; align-items: center;
}
.sb-matchup .at { color: var(--gold); font-size: 1.1rem; }
.sb-clock {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-top: 20px;
}
.sb-cell {
  background: #04120d; border: 1px solid rgba(233,185,73,0.25);
  border-radius: 10px; text-align: center; padding: 12px 6px 10px;
}
.sb-cell .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 2.4rem; font-weight: 800; color: var(--gold);
  text-shadow: 0 0 18px rgba(233,185,73,0.45);
  line-height: 1;
}
.sb-cell .lbl {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--chalk-dim); margin-top: 6px;
}
.sb-foot {
  margin-top: 18px; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.92rem; color: var(--chalk-dim);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 1rem;
  padding: 12px 26px; border-radius: 8px; border: 0; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--swamp); }
.btn-gold:hover { background: var(--gold-hot); color: var(--swamp); }
.btn-ghost { background: transparent; color: var(--chalk); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- SECTIONS ---------- */
.section { padding: 58px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 28px; gap: 16px;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; }
.section-head .eyebrow {
  display: block; color: var(--gold); font-size: 0.85rem;
  letter-spacing: 0.22em; margin-bottom: 6px; font-weight: 700;
}
.section-head .more { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; white-space: nowrap; }

/* ---------- RESULT STRIP ---------- */
.result-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.result-card {
  background: var(--pine); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 20px;
}
.result-card .tag {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--chalk-dim);
}
.result-card .score {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 800; margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.result-card .score .w { color: var(--gold); }
.result-card .opp { color: var(--chalk-dim); font-size: 0.95rem; margin-top: 2px; }

/* ---------- TABLES (schedule) ---------- */
.table {
  width: 100%; border-collapse: collapse; background: var(--pine);
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
}
.table th, .table td { padding: 14px 16px; text-align: left; }
.table thead th {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  font-size: 0.85rem; letter-spacing: 0.14em; color: var(--gold);
  background: #0e2b20; border-bottom: 1px solid var(--line);
}
.table tbody tr { border-bottom: 1px solid var(--line); }
.table tbody tr:last-child { border-bottom: 0; }
.table td .res-w { color: var(--gold); font-weight: 700; }
.table td .res-l { color: var(--chalk-dim); font-weight: 700; }
.table .tix { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.table-scroll { overflow-x: auto; border-radius: 12px; }

/* ---------- CARDS (roster / recruits / coaches) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.player-card {
  background: var(--pine); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; transition: transform 0.15s ease, border-color 0.15s ease;
}
.player-card:hover { transform: translateY(-3px); border-color: rgba(233,185,73,0.5); }
.player-card .photo {
  aspect-ratio: 4 / 3; background: linear-gradient(160deg, #1a4232, #0e2b20);
  display: grid; place-items: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 3rem; color: rgba(245,242,232,0.25);
}
.player-card .body { padding: 16px 18px 18px; }
.player-card .num {
  font-family: 'Barlow Condensed', sans-serif; color: var(--gold);
  font-weight: 800; font-size: 1rem; letter-spacing: 0.1em;
}
.player-card h3 { font-size: 1.35rem; margin: 2px 0 4px; }
.player-card .meta { color: var(--chalk-dim); font-size: 0.9rem; }
.player-card .stats {
  display: flex; gap: 14px; margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem; color: var(--chalk-dim);
}
.player-card .stats b { color: var(--chalk); display: block; font-size: 1rem; }
.player-card .links { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.player-card .links a {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(233,185,73,0.4); padding: 6px 12px; border-radius: 6px;
}

/* ---------- FILTERS ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-btn {
  background: transparent; border: 1px solid var(--line); color: var(--chalk-dim);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.95rem; padding: 8px 18px; border-radius: 999px;
  cursor: pointer;
}
.filter-btn:hover { color: var(--chalk); border-color: var(--chalk-dim); }
.filter-btn.on { background: var(--gold); border-color: var(--gold); color: var(--swamp); }

/* ---------- SPONSORS ---------- */
.sponsor-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}
.sponsor {
  background: var(--pine); border: 1px dashed var(--line); border-radius: 10px;
  min-height: 84px; display: grid; place-items: center;
  color: var(--chalk-dim); font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.9rem;
  text-align: center; padding: 10px;
}
.sponsor:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- MEDIA / EMBED ---------- */
.embed-frame {
  aspect-ratio: 16 / 9; width: 100%;
  background: var(--pine); border: 1px solid var(--line); border-radius: 12px;
  display: grid; place-items: center; color: var(--chalk-dim);
  text-align: center; padding: 20px;
}
.embed-frame iframe { width: 100%; height: 100%; border: 0; border-radius: 12px; }

/* ---------- LIVE GAMEDAY (live.html) ---------- */
.nav-live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #ff2d2d; margin-left: 7px; vertical-align: middle;
  box-shadow: 0 0 8px #ff2d2d; animation: livepulse 1.4s ease-in-out infinite;
}
@keyframes livepulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.scorebug {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: #04120d; border: 1px solid rgba(233,185,73,0.28);
  border-radius: 12px; padding: 14px 22px; box-shadow: var(--shadow);
}
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.95rem;
  color: #ff5252;
}
.live-badge .dot {
  width: 10px; height: 10px; border-radius: 50%; background: #ff2d2d;
  box-shadow: 0 0 10px #ff2d2d; animation: livepulse 1.4s ease-in-out infinite;
}
.scorebug .sb-side { display: flex; align-items: center; gap: 12px; }
.scorebug .sb-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; font-size: 1.3rem; letter-spacing: 0.04em;
}
.scorebug .sb-pts {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 2.1rem; color: var(--gold); line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 16px rgba(233,185,73,0.4);
}
.scorebug .sb-dash { color: var(--chalk-dim); font-size: 1.4rem; }
.scorebug .sb-period {
  margin-left: auto; font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--chalk-dim);
  font-size: 1rem; font-variant-numeric: tabular-nums;
}
.sb-situation {
  margin-top: 10px; font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold);
  font-size: 0.95rem;
}

.live-wrap {
  display: grid; grid-template-columns: 1fr 350px; gap: 18px;
  align-items: start; margin-top: 18px;
}
.live-video {
  aspect-ratio: 16 / 9; background: #000; border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
}
.live-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.live-chat {
  display: flex; flex-direction: column; height: 640px;
  background: var(--pine); border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
}
.live-chat .chat-head {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 700; color: var(--gold);
  padding: 12px 16px; border-bottom: 1px solid var(--line);
}
.live-chat iframe { width: 100%; flex: 1; border: 0; background: #fff; }
.live-chat .chat-note {
  font-size: 0.78rem; color: var(--chalk-dim);
  padding: 10px 14px; border-top: 1px solid var(--line);
}

.offair {
  background: var(--pine); border: 1px solid var(--line);
  border-radius: 14px; padding: 52px 30px; text-align: center;
}
.offair-badge {
  display: inline-block; font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--chalk-dim);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 5px 16px; font-size: 0.82rem; margin-bottom: 16px;
}
.offair h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.offair p { color: var(--chalk-dim); margin-top: 8px; }
.offair .offair-sub { max-width: 460px; margin: 10px auto 0; }
.offair-btns { margin-top: 22px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 960px) {
  .live-wrap { grid-template-columns: 1fr; }
  .live-chat { height: 460px; }
}

/* ---------- INFO PANELS (stadium) ---------- */
.panel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.panel {
  background: var(--pine); border: 1px solid var(--line); border-radius: 12px;
  padding: 22px;
}
.panel h3 { color: var(--gold); font-size: 1.25rem; margin-bottom: 8px; }
.panel p, .panel li { color: var(--chalk-dim); font-size: 0.97rem; }
.panel ul { padding-left: 18px; margin-top: 6px; }

/* ---------- PAGE HEADER ---------- */
.page-head { padding: 56px 0 34px; }
.page-head h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); font-weight: 800; }
.page-head p { color: var(--chalk-dim); margin-top: 10px; max-width: 640px; }
.page-head .eyebrow { color: var(--gold); font-weight: 700; letter-spacing: 0.22em; font-size: 0.85rem; text-transform: uppercase; display: block; margin-bottom: 8px; }

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--line); margin-top: 40px;
  padding: 36px 0 44px; color: var(--chalk-dim); font-size: 0.92rem;
}
.foot-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
footer .fine { margin-top: 14px; font-size: 0.8rem; opacity: 0.7; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .result-strip { grid-template-columns: 1fr; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--swamp);
    border-bottom: 1px solid var(--line); padding: 10px 22px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; display: block; }
  .nav-toggle { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .player-card, .player-card:hover { transition: none; transform: none; }
}

/* ==========================================================
   V2 SHOWCASE LAYER — cinematic homepage redesign
   Additive/override layer. New classes + targeted overrides.
   Signature moves: film grain, kinetic hero wordmark,
   broadcast score ticker, count-up stat band, recruiting
   spotlight, gameday CTA band, scroll reveals.
   ========================================================== */
:root {
  --gold-deep: #c9971f;
  --ink: #04120d;
  --r-lg: 18px;
  --grad-gold: linear-gradient(135deg, #f9d778 0%, #e9b949 48%, #c9971f 100%);
  --grad-field: radial-gradient(1300px 620px at 50% -12%, #1c4a37 0%, #0d281e 46%, var(--swamp) 78%);
  --glow-gold: 0 0 44px rgba(233, 185, 73, 0.28);
}

/* ---- film grain + soft vignette over the whole page ---- */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.05; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(0,0,0,0.45) 100%);
}

/* ---- scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.d1.in { transition-delay: 0.08s; }
.reveal.d2.in { transition-delay: 0.16s; }
.reveal.d3.in { transition-delay: 0.24s; }

/* ---- nav polish: gold top hairline + scrolled state ---- */
.nav { border-top: 3px solid transparent; border-image: var(--grad-gold) 1; }
.nav.scrolled { background: rgba(7, 22, 15, 0.96); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.nav-brand .gator-mark {
  background: var(--grad-gold);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2), 0 6px 16px rgba(233,185,73,0.3);
}

/* ---- buttons: lift + gold glow ---- */
.btn { transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease; position: relative; }
.btn-gold { background: var(--grad-gold); box-shadow: 0 8px 24px rgba(233,185,73,0.28); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(233,185,73,0.42); }
.btn-ghost:hover { transform: translateY(-2px); background: rgba(233,185,73,0.06); }

/* ===================== HERO V2 ===================== */
.hero2 {
  position: relative; overflow: hidden;
  padding: clamp(56px, 9vw, 104px) 0 clamp(40px, 6vw, 72px);
  background: var(--grad-field);
}
/* faint yard lines sweeping the hero */
.hero2::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: repeating-linear-gradient(90deg, transparent 0 118px, rgba(245,242,232,0.045) 118px 120px);
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}
/* giant ghost wordmark behind the copy */
.hero2-ghost {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  right: -2%; top: 50%; transform: translateY(-50%);
  font-family: 'Anton', 'Barlow Condensed', sans-serif;
  font-size: clamp(9rem, 30vw, 28rem); line-height: 0.8; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 2px rgba(245,242,232,0.05);
  white-space: nowrap;
}
.hero2-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.82rem;
  color: var(--chalk); background: rgba(245,242,232,0.06);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px;
  backdrop-filter: blur(6px);
}
.chip.chip-gold { color: var(--ink); background: var(--grad-gold); border-color: transparent; font-weight: 700; }
.chip .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #ff2d2d;
  box-shadow: 0 0 10px #ff2d2d; animation: livepulse 1.4s ease-in-out infinite;
}
.hero2-title {
  font-family: 'Anton', 'Barlow Condensed', sans-serif;
  font-weight: 400; text-transform: uppercase; line-height: 0.9;
  font-size: clamp(3.4rem, 9.5vw, 7.2rem); letter-spacing: 0.005em;
  color: var(--chalk); text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero2-title span {
  display: block;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 2px 18px rgba(233,185,73,0.35));
}
.hero2-sub { color: var(--chalk-dim); max-width: 500px; margin-top: 18px; font-size: 1.08rem; }
.hero2-meta { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 24px; }
.hero2-stat { display: flex; flex-direction: column; }
.hero2-stat b {
  font-family: 'Anton', 'Barlow Condensed', sans-serif; font-weight: 400;
  font-size: 1.9rem; color: var(--gold); line-height: 1; letter-spacing: 0.01em;
}
.hero2-stat span {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.72rem; color: var(--chalk-dim); margin-top: 5px;
}
.hero2-cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

/* scoreboard glow-up (reuses existing .scoreboard markup) */
.hero2 .scoreboard {
  background: linear-gradient(180deg, #08201700, #071a13 30%), #071a13;
  box-shadow: var(--shadow), var(--glow-gold), inset 0 0 0 6px #0e2b20;
  position: relative;
}
.hero2 .scoreboard::before {
  content: "LIVE COUNTDOWN"; position: absolute; top: -10px; left: 22px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--ink); background: var(--grad-gold);
  padding: 3px 10px; border-radius: 5px;
}
.sb-cell .num { animation: flick 6s steps(1) infinite; }

.hero2-scroll {
  position: absolute; z-index: 3; left: 50%; bottom: 16px; transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 0.7rem; color: var(--chalk-dim);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hero2-scroll::after { content: "↓"; animation: bob 1.8s ease-in-out infinite; font-size: 1rem; color: var(--gold); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes flick { 0%,97%,100% { opacity: 1; } 98% { opacity: 0.82; } }

/* ===================== BROADCAST TICKER ===================== */
.ticker {
  position: relative; overflow: hidden; z-index: 3;
  background: var(--ink); border-top: 1px solid rgba(233,185,73,0.25);
  border-bottom: 1px solid rgba(233,185,73,0.25);
}
.ticker::before, .ticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 70px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.ticker-label {
  position: absolute; left: 0; top: 0; bottom: 0; z-index: 3; display: flex; align-items: center;
  padding: 0 16px 0 22px; background: var(--grad-gold); color: var(--ink);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.85rem; clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}
.ticker-track { display: inline-flex; gap: 0; white-space: nowrap; padding: 11px 0; will-change: transform; animation: scrollx 34s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 0.95rem; color: var(--chalk-dim); padding: 0 26px;
  border-right: 1px solid rgba(245,242,232,0.1);
}
.ticker-item .tk-w { color: var(--gold); font-weight: 700; }
.ticker-item .tk-l { color: #ff7676; font-weight: 700; }
.ticker-item .tk-up { color: var(--chalk); font-weight: 700; }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== STAT BAND ===================== */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-tile {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--pine), #0e2b20);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 22px; text-align: center;
}
.stat-tile::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-gold); opacity: 0.85;
}
.stat-tile b {
  display: block; font-family: 'Anton', 'Barlow Condensed', sans-serif; font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: var(--gold);
  font-variant-numeric: tabular-nums; text-shadow: var(--glow-gold);
}
.stat-tile span {
  display: block; margin-top: 10px; font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; color: var(--chalk-dim);
}

/* ===================== RECRUITING SPOTLIGHT ===================== */
.spotlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.spot-card {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: var(--pine); border: 1px solid var(--line);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  display: flex; flex-direction: column;
}
.spot-card:hover { transform: translateY(-5px); border-color: rgba(233,185,73,0.55); box-shadow: 0 18px 40px rgba(0,0,0,0.4); }
.spot-photo {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: linear-gradient(160deg, #1c4a37, #0b231a);
  display: grid; place-items: center;
}
.spot-photo .ghostnum {
  font-family: 'Anton', 'Barlow Condensed', sans-serif; font-size: 8rem; line-height: 1;
  color: rgba(245,242,232,0.08); -webkit-text-stroke: 1px rgba(233,185,73,0.18);
}
.spot-photo .grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(4,18,13,0.92) 100%); }
.spot-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.72rem; color: var(--ink); background: var(--grad-gold);
  padding: 4px 11px; border-radius: 5px;
}
.spot-offers {
  position: absolute; top: 14px; right: 14px; z-index: 2; text-align: right;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.68rem; color: var(--gold);
}
.spot-name {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2;
}
.spot-name h3 { font-size: 1.7rem; font-weight: 800; line-height: 1; color: var(--chalk); }
.spot-name .pos { font-family: 'Barlow Condensed', sans-serif; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.85rem; margin-top: 4px; }
.spot-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.spot-measure { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.spot-measure div {
  background: var(--ink); border: 1px solid var(--line); border-radius: 9px; padding: 9px 6px; text-align: center;
}
.spot-measure b { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--chalk); font-variant-numeric: tabular-nums; }
.spot-measure span { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.62rem; color: var(--chalk-dim); }
.spot-note { color: var(--chalk-dim); font-size: 0.9rem; margin-top: 12px; flex: 1; }
.spot-links { margin-top: 14px; display: flex; gap: 9px; }
.spot-links a {
  flex: 1; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; padding: 9px 8px; border-radius: 8px;
}
.spot-links .primary { background: var(--grad-gold); color: var(--ink); }
.spot-links .ghost { border: 1px solid rgba(233,185,73,0.4); color: var(--gold); }
.spot-links .ghost:hover { background: rgba(233,185,73,0.08); }

/* ===================== GAMEDAY CTA BAND ===================== */
.cta-band {
  position: relative; overflow: hidden; z-index: 3;
  background: var(--grad-field); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(40px, 6vw, 64px) 0;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0 118px, rgba(245,242,232,0.04) 118px 120px);
  mask-image: linear-gradient(90deg, transparent, #000, transparent);
}
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-inner .eyebrow { color: var(--gold); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.82rem; }
.cta-inner h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; margin-top: 6px; }
.cta-inner h2 .vs { color: var(--gold); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- section eyebrow accent bar ---- */
.section-head .eyebrow { position: relative; padding-left: 26px; }
.section-head .eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 18px; height: 3px; background: var(--grad-gold); border-radius: 2px;
}

/* ---- result cards + sponsors sheen ---- */
.result-card { position: relative; overflow: hidden; transition: transform 0.16s ease, border-color 0.16s ease; }
.result-card:hover { transform: translateY(-3px); border-color: rgba(233,185,73,0.4); }
.result-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grad-gold); opacity: 0; transition: opacity 0.16s; }
.result-card:hover::before { opacity: 1; }
.sponsor { transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease; }
.sponsor:hover { transform: translateY(-3px); border-style: solid; }

/* ---- hashline gold tint ---- */
.hashline { background-image: repeating-linear-gradient(90deg, rgba(233,185,73,0.28) 0 3px, transparent 3px 34px); }

/* ===================== RESPONSIVE (V2) ===================== */
@media (max-width: 900px) {
  .hero2-inner { grid-template-columns: 1fr; }
  .hero2-ghost { opacity: 0.6; }
  .statband { grid-template-columns: repeat(2, 1fr); }
  .spotlight-grid { grid-template-columns: 1fr; }
  .hero2-scroll { display: none; }
}
@media (max-width: 520px) {
  .statband { grid-template-columns: 1fr; }
  .hero2-meta { gap: 18px; }
}
/* ===================== ROLE LANES (choose your path) ===================== */
.lanes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lane {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between; gap: 26px;
  min-height: 184px; padding: 22px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--pine), #0e2b20);
  border: 1px solid var(--line); color: var(--chalk);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.lane:hover { transform: translateY(-5px); border-color: rgba(233,185,73,0.5); box-shadow: 0 16px 36px rgba(0,0,0,0.4); }
.lane::after {
  content: attr(data-idx); position: absolute; right: 10px; bottom: -18px; z-index: 0;
  font-family: 'Anton', 'Barlow Condensed', sans-serif; font-size: 7rem; line-height: 1;
  color: rgba(245,242,232,0.04); -webkit-text-stroke: 1px rgba(233,185,73,0.1);
}
.lane-tag {
  position: relative; z-index: 1;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.72rem; color: var(--gold);
}
.lane-body { position: relative; z-index: 1; }
.lane h3 { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.lane p { color: var(--chalk-dim); font-size: 0.92rem; margin-top: 8px; }
.lane .go {
  position: relative; z-index: 1;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.85rem; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px; transition: gap 0.18s ease;
}
.lane:hover .go { gap: 14px; }

/* ---- persistent Tickets button in nav ---- */
.nav-tix {
  display: inline-flex; align-items: center; gap: 7px; margin-left: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.92rem; color: var(--ink) !important;
  background: var(--grad-gold); padding: 8px 18px; border-radius: 8px;
  box-shadow: 0 6px 18px rgba(233,185,73,0.28); transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.nav-tix:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(233,185,73,0.42); color: var(--ink) !important; }
.nav-tix::before { content: "🎟"; font-size: 0.95em; }

@media (max-width: 900px) {
  .lanes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .lanes { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links .nav-tix { margin: 10px 0 4px; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .sb-cell .num, .hero2-scroll::after { animation: none; }
}

/* ==========================================================
   V2 INNER PAGES — carry the cinematic system across
   schedule / roster / recruits / player / stadium / live.
   Upgrades shared classes: page-head hero, table, panel,
   roster card. Recruit cards move to .spot-card (see app.js).
   ========================================================== */

/* ---- page header becomes a mini cinematic hero ---- */
.page-head {
  position: relative; overflow: hidden;
  padding: clamp(48px, 7vw, 88px) 0 clamp(30px, 4vw, 46px);
  background: var(--grad-field); border-bottom: 1px solid var(--line);
}
.page-head::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: repeating-linear-gradient(90deg, transparent 0 118px, rgba(245,242,232,0.045) 118px 120px);
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}
.page-head::after {
  content: "GATORS"; position: absolute; z-index: 0; right: -1.5%; top: 50%;
  transform: translateY(-50%); pointer-events: none; user-select: none;
  font-family: 'Anton', 'Barlow Condensed', sans-serif; line-height: 0.78;
  font-size: clamp(7rem, 21vw, 19rem); letter-spacing: -0.01em;
  color: transparent; -webkit-text-stroke: 2px rgba(245,242,232,0.045); white-space: nowrap;
}
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 {
  font-family: 'Anton', 'Barlow Condensed', sans-serif; font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5rem); letter-spacing: 0.01em;
  text-shadow: 0 4px 26px rgba(0,0,0,0.45);
}
.page-head .eyebrow { position: relative; padding-left: 26px; }
.page-head .eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 18px; height: 3px; background: var(--grad-gold); border-radius: 2px;
}

/* ---- schedule table polish ---- */
.table { border-radius: 14px; }
.table thead th {
  background: #0b241a; letter-spacing: 0.16em;
  border-bottom: 2px solid transparent; border-image: var(--grad-gold) 1;
}
.table tbody tr { transition: background 0.15s ease; }
.table tbody tr:hover { background: rgba(233,185,73,0.05); }
.table td .res-w, .table td .res-l {
  display: inline-block; padding: 4px 11px; border-radius: 6px;
  font-weight: 800; letter-spacing: 0.04em; font-variant-numeric: tabular-nums;
}
.table td .res-w { background: rgba(233,185,73,0.16); color: var(--gold-hot); border: 1px solid rgba(233,185,73,0.4); }
.table td .res-l { background: rgba(245,242,232,0.05); color: var(--chalk-dim); border: 1px solid var(--line); }
.table td .tix {
  display: inline-block; background: var(--grad-gold); color: var(--ink) !important;
  padding: 6px 15px; border-radius: 7px; font-weight: 800; letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(233,185,73,0.25); transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.table td .tix:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(233,185,73,0.4); }

/* ---- panels: premium surface + gold spine ---- */
.panel {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--pine), #0e2b20); border-radius: var(--r-lg);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.panel::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grad-gold); opacity: 0.75; }
.panel:hover { transform: translateY(-3px); border-color: rgba(233,185,73,0.4); box-shadow: 0 14px 32px rgba(0,0,0,0.35); }
.panel h3 { letter-spacing: 0.02em; }

/* ---- roster card upgrade (recruits now use .spot-card) ---- */
.player-card { background: linear-gradient(180deg, var(--pine), #0e2b20); border-radius: var(--r-lg); }
.player-card .photo {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  font-family: 'Anton', 'Barlow Condensed', sans-serif; font-size: 5.4rem;
  color: rgba(245,242,232,0.09); -webkit-text-stroke: 1px rgba(233,185,73,0.16);
  background: linear-gradient(160deg, #1c4a37, #0b231a);
}
.player-card .photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(4,18,13,0.9) 100%);
}
.player-card:hover .photo { color: rgba(233,185,73,0.14); }
.player-card .body { position: relative; }
.player-card .num { color: var(--gold); }

/* ---- record book rows (records.html) ---- */
.records-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.rec-list { margin-top: 8px; }
.rec-row {
  display: grid; grid-template-columns: 1fr auto; gap: 2px 16px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.rec-row:last-child { border-bottom: 0; }
.rec-stat {
  grid-column: 1; grid-row: 1; align-self: center;
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 0.06em; font-weight: 600; color: var(--chalk);
}
.rec-holder { grid-column: 1; grid-row: 2; font-size: 0.8rem; color: var(--chalk-dim); }
.rec-val {
  grid-column: 2; grid-row: 1 / span 2; align-self: center; text-align: right;
  font-family: 'Anton', 'Barlow Condensed', sans-serif; font-weight: 400;
  color: var(--gold); font-size: 1.8rem; line-height: 1;
  font-variant-numeric: tabular-nums; text-shadow: var(--glow-gold);
}
@media (max-width: 900px) { .records-grid { grid-template-columns: 1fr; } }

/* clickable recruit/spotlight photo */
a.spot-photo { color: inherit; cursor: pointer; text-decoration: none; }

/* ==========================================================
   COACH VIEW DEMO (player.html) — a visual preview of the
   phase-2 coach editor (Decap CMS). Not functional; shows the
   coach how he'll update a profile. Toggled by body.coach-view.
   ========================================================== */
.coach-toggle {
  position: fixed; z-index: 60; right: 16px; top: 80px;
  display: inline-flex; gap: 2px; background: var(--ink);
  border: 1px solid var(--line); border-radius: 999px; padding: 4px;
  box-shadow: var(--shadow);
}
.coach-toggle button {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.78rem; color: var(--chalk-dim);
  background: transparent; border: 0; cursor: pointer; padding: 7px 15px; border-radius: 999px;
}
.coach-toggle button.on { background: var(--grad-gold); color: var(--ink); }

.coach-panel { display: none; }
body.coach-view .page-head,
body.coach-view .hashline,
body.coach-view section.section:not(.coach-panel) { display: none; }
body.coach-view .coach-panel { display: block; }

.cp-banner {
  background: rgba(233,185,73,0.1); border: 1px solid rgba(233,185,73,0.35);
  border-radius: 12px; padding: 14px 18px; color: var(--chalk); margin-bottom: 22px; font-size: 0.94rem;
}
.cp-banner b { color: var(--gold); }
.cp-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.cp-head h2 { font-family: 'Anton', 'Barlow Condensed', sans-serif; font-weight: 400; font-size: clamp(1.5rem, 4vw, 2.1rem); }
.cp-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--pine), #0e2b20); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px 22px; margin-bottom: 16px;
}
.cp-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grad-gold); }
.cp-card h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: 14px; }
.cp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.cp-field { min-width: 0; }
.cp-field label {
  display: block; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.7rem; color: var(--chalk-dim); margin-bottom: 5px;
}
.cp-field input, .cp-field textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--line); border-radius: 8px;
  color: var(--chalk); font-family: 'Barlow', sans-serif; font-size: 0.95rem; padding: 9px 11px; resize: vertical;
}
.cp-field input:focus, .cp-field textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.cp-photo { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.cp-drop {
  width: 96px; height: 118px; flex: none; border: 2px dashed rgba(233,185,73,0.45); border-radius: 12px;
  display: grid; place-items: center; text-align: center; color: var(--chalk-dim);
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; cursor: pointer;
}
.cp-photo .cp-photo-fields { flex: 1; min-width: 220px; display: grid; gap: 12px; }
.cp-save { position: sticky; bottom: 0; margin-top: 4px; padding: 18px 0 8px;
  background: linear-gradient(180deg, transparent, var(--swamp) 45%);
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.cp-save span { color: var(--chalk-dim); font-size: 0.88rem; }
.cp-add { margin-top: 12px; }
.cp-toast {
  position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(10px); z-index: 80;
  background: var(--ink); border: 1px solid rgba(233,185,73,0.5); color: var(--chalk);
  padding: 12px 20px; border-radius: 10px; box-shadow: var(--shadow); font-size: 0.92rem;
  max-width: 90vw; text-align: center; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s;
}
.cp-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (max-width: 620px) { .coach-toggle { top: auto; bottom: 14px; right: 50%; transform: translateX(50%); } }

/* ---- coach score control (live.html) ---- */
.cp-switch { display: inline-flex; align-items: center; gap: 10px; color: var(--chalk); font-weight: 500; cursor: pointer; }
.cp-switch input { width: 20px; height: 20px; accent-color: var(--gold); cursor: pointer; }
.cp-score { display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; gap: 18px; }
.cp-team { text-align: center; }
.cp-team-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 1.15rem; color: var(--chalk); margin-bottom: 10px;
}
.cp-vs { align-self: center; font-family: 'Anton', sans-serif; color: var(--gold); font-size: 2rem; padding-top: 34px; }
.cp-stepper { display: flex; align-items: stretch; gap: 8px; justify-content: center; }
.cp-stepper input {
  width: 92px; text-align: center; background: var(--ink); border: 1px solid var(--line); border-radius: 10px;
  color: var(--gold); font-family: 'Anton', sans-serif; font-size: 2.4rem; padding: 4px 0; font-variant-numeric: tabular-nums;
}
.cp-stepper button {
  width: 48px; border: 1px solid var(--line); background: var(--pine); color: var(--chalk);
  border-radius: 10px; font-size: 1.6rem; font-weight: 700; cursor: pointer; line-height: 1;
}
.cp-stepper button:hover { border-color: var(--gold); color: var(--gold); }
.cp-quick { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 12px; }
.cp-quick button {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 0.78rem; color: var(--chalk); background: var(--ink); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 12px; cursor: pointer;
}
.cp-quick button:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 560px) {
  .cp-score { grid-template-columns: 1fr; }
  .cp-vs { display: none; }
}

@media (max-width: 620px) {
  .page-head::after { opacity: 0.5; }
}

/* ==========================================================
   HERO WORDMARK — "Capture It" (self-hosted distressed display
   font). Scoped to the homepage hero title + ghost only.
   License: assets/fonts/capture-it-license.txt (free for personal
   AND commercial use). Display use only — numbers, nav, and body
   stay in Anton / Barlow for legibility.
   ========================================================== */
@font-face {
  font-family: 'Capture It';
  src: url('assets/fonts/capture-it.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
.hero2-title, .hero2-ghost { font-family: 'Capture It', 'Anton', sans-serif; }

/* ==========================================================
   HOMEPAGE EDIT DEMOS — Form Edit vs Visual Edit toggle.
   Demo only (no persistence). Shows the coach the two ways an
   admin could edit the site. body.mode-form / body.mode-visual.
   ========================================================== */
/* FORM mode: hide the live homepage, show the form editor */
#home-edit-panel { display: none; }
body.mode-form .hero2,
body.mode-form .ticker,
body.mode-form .hashline,
body.mode-form .cta-band,
body.mode-form section.section:not(#home-edit-panel) { display: none; }
body.mode-form #home-edit-panel { display: block; }

/* VISUAL mode: keep the page, make text click-to-edit */
.ve-bar { display: none; }
body.mode-visual .ve-bar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  position: fixed; left: 0; right: 0; top: 0; z-index: 58;
  background: var(--ink); border-bottom: 1px solid rgba(233,185,73,0.45);
  padding: 11px 18px 11px 22px; box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
.ve-bar b { color: var(--gold); font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.08em; }
.ve-bar span { color: var(--chalk-dim); font-size: 0.9rem; }
body.mode-visual .ve-editable {
  outline: 2px dashed rgba(233,185,73,0.5); outline-offset: 3px; border-radius: 3px;
  cursor: text; transition: outline-color 0.12s ease, background 0.12s ease;
}
body.mode-visual .ve-editable:hover { outline-color: var(--gold); background: rgba(233,185,73,0.08); }
body.mode-visual .ve-editable:focus { outline: 2px solid var(--gold); background: rgba(233,185,73,0.12); }
.ve-photo-btn { display: none; }
body.mode-visual .ve-photo-btn {
  display: inline-flex; align-items: center; gap: 8px; position: absolute; z-index: 6; left: 24px; bottom: 24px;
  background: var(--ink); border: 1px solid var(--gold); color: var(--gold); border-radius: 8px;
  padding: 9px 15px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem;
}

/* ---- roster add / remove demo (roster.html) ---- */
.re-banner { display: none; }
body.roster-edit .re-banner { display: block; margin-bottom: 20px; }
body.roster-edit #roster-filters { display: none; }
.player-card { position: relative; }
.re-del {
  position: absolute; top: 8px; right: 8px; z-index: 6; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(200,40,40,0.92); color: #fff; border: 1px solid rgba(255,255,255,0.25);
  font-size: 1.2rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
}
.re-del:hover { background: #d33; }
.re-add {
  display: flex; flex-direction: column; justify-content: center; gap: 10px; text-align: center;
  border: 2px dashed rgba(233,185,73,0.5); background: rgba(233,185,73,0.04);
  border-radius: var(--r-lg); padding: 20px;
}
.re-add .re-add-title { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 700; }
.re-add input {
  width: 100%; background: var(--ink); border: 1px solid var(--line); border-radius: 8px;
  color: var(--chalk); font-family: 'Barlow', sans-serif; font-size: 0.95rem; padding: 9px 11px;
}
.re-add input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }

/* import / export tools + parsed preview */
.re-tools { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 14px; }
.re-tools .btn { cursor: pointer; }
.re-preview { display: none; margin-top: 18px; }
.re-preview.show { display: block; }
.re-preview .rp-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.re-preview table { width: 100%; border-collapse: collapse; }
.re-preview th, .re-preview td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--line); font-size: 0.9rem; color: var(--chalk); }
.re-preview th {
  color: var(--gold); font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.74rem; position: sticky; top: 0; background: var(--pine);
}
