/* =====================================================================
   Salt Lake Storm — site styles
   Rebuilt from the design handoff. Tokens first, then components.
   ===================================================================== */

:root {
  /* Ink / surfaces */
  --ink: #0B0F17;          /* page dark */
  --ink-deep: #070A0F;     /* footer */
  --panel: #0E141D;        /* modal panel */
  --surface: #F4F7FA;      /* light section bg */
  --card: #FFFFFF;
  --card-border: #E2E9F0;
  --chip-border: #D6DEE7;
  --roster-hover: #F0F6FD;

  /* Navy gradient stops */
  --navy-1: #0A2440;
  --navy-2: #0E2C50;
  --navy-3: #13355E;
  --navy-4: #1361A8;

  /* Blues */
  --blue: #1B8CF0;         /* primary accent */
  --blue-5b: #5BB6FF;
  --blue-8f: #8FC4FF;
  --blue-c7: #C7DCF2;

  /* Text */
  --text-base: #E7EDF3;
  --on-light: #33414F;
  --muted: #5C6B7A;
  --on-dark-1: #C8D4DF;
  --on-dark-2: #B7C5D2;
  --on-dark-3: #9FB0BF;
  --on-dark-4: #7F92A4;
  --nav-link: #A9B7C6;

  --alert: #FF4D4D;

  /* Type */
  --f-display: 'Anton', Impact, sans-serif;
  --f-ui: 'Archivo', system-ui, sans-serif;
  --f-body: 'Barlow', system-ui, sans-serif;

  --maxw: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 78px; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text-base);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
}

img { display: block; }
a { color: inherit; }
::selection { background: var(--blue); color: #fff; }

@keyframes slkRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slkPulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* ---------- Shared atoms ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; width: 100%; }

.kicker { display: inline-flex; align-items: center; gap: 10px; }
.kicker .bar { width: 34px; height: 2px; background: var(--blue); }
.kicker .label {
  font-family: var(--f-ui); font-weight: 700; font-size: 13px;
  letter-spacing: 0.2em; text-transform: uppercase;
}

.btn {
  font-family: var(--f-ui); text-transform: uppercase; text-decoration: none;
  border-radius: 3px; cursor: pointer; border: 0; display: inline-block;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s, color .15s;
}
.btn-primary {
  font-weight: 800; font-size: 13px; letter-spacing: 0.1em;
  color: var(--ink); background: var(--blue); padding: 16px 28px;
  box-shadow: 0 6px 22px rgba(27,140,240,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(27,140,240,0.55); }
.btn-ghost {
  font-weight: 800; font-size: 13px; letter-spacing: 0.1em; color: #fff;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.22); padding: 16px 28px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); }
.btn-dark {
  font-weight: 800; font-size: 12.5px; letter-spacing: 0.08em; color: #fff;
  background: var(--ink); padding: 14px 24px; white-space: nowrap;
}
.btn-dark:hover { background: #1B2433; }

/* =====================================================================
   NAV
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11,15,23,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.brand .wordmark {
  font-family: var(--f-ui); font-weight: 900; color: #fff; font-size: 14px;
  letter-spacing: 0.16em; line-height: 1.05; text-transform: uppercase;
}
.brand .wordmark span { color: var(--blue); }

.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-family: var(--f-ui); font-weight: 600; font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--nav-link); text-decoration: none; transition: color .15s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active {
  color: #fff; font-weight: 700; border-bottom: 2px solid var(--blue); padding-bottom: 3px;
}

.nav-cta {
  font-family: var(--f-ui); font-weight: 800; font-size: 12.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink); background: var(--blue);
  padding: 12px 20px; border-radius: 3px; text-decoration: none;
  transition: transform .15s, box-shadow .15s; box-shadow: 0 4px 16px rgba(27,140,240,0.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(27,140,240,0.5); }

/* Mobile menu */
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05); border-radius: 4px; cursor: pointer;
  padding: 0; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 20px; height: 2px; background: #fff; position: relative; transition: transform .2s, opacity .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 879px) {
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(11,15,23,0.98); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav-links.open { max-height: 360px; }
  .nav-links a { padding: 16px 28px; border-top: 1px solid rgba(255,255,255,0.06); }
  .nav-links a.active { border-bottom: 0; padding-bottom: 16px; }
  .nav-toggle { display: inline-flex; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
.hero__photo { position: absolute; inset: 0; background-size: cover; background-position: center 28%; filter: saturate(1.05); }
.hero__grad { position: absolute; inset: 0; background: linear-gradient(to top, #0B0F17 4%, rgba(11,15,23,0.45) 46%, rgba(11,15,23,0.7) 100%); }
.hero__glow { position: absolute; inset: 0; background: radial-gradient(120% 80% at 12% 90%, rgba(27,140,240,0.28), transparent 55%); }
.hero__vlabel {
  position: absolute; top: 0; bottom: 0; right: 34px; display: flex; align-items: center;
  writing-mode: vertical-rl; font-family: var(--f-ui); font-weight: 700; font-size: 12px;
  letter-spacing: 0.5em; text-transform: uppercase; color: rgba(255,255,255,0.28);
}
.hero__inner { position: relative; z-index: 2; padding-bottom: 64px; }
.hero .kicker .label { font-size: 13px; letter-spacing: 0.22em; color: var(--blue-5b); font-weight: 700; }
.hero h1 {
  margin: 22px 0 0; font-family: var(--f-display); font-weight: 400; text-transform: uppercase;
  line-height: 0.86; letter-spacing: 0.005em; font-size: clamp(60px, 10vw, 158px); color: #fff;
}
.hero h1 span { color: var(--blue); }
.hero p { max-width: 540px; margin: 24px 0 0; font-size: clamp(17px, 2vw, 21px); line-height: 1.5; color: var(--on-dark-1); font-weight: 500; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* =====================================================================
   NEXT GAME / COUNTDOWN
   ===================================================================== */
.next {
  position: relative; background: linear-gradient(110deg, #0A2440 0%, #0E2C50 45%, #1361A8 100%);
  border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(0,0,0,0.3);
}
.next__inner { padding: 30px 28px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.next__info { min-width: 260px; }
.next__tag { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.next__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--alert); animation: slkPulse 1.4s infinite; }
.next__tag span:last-child { font-family: var(--f-ui); font-weight: 800; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-8f); }
.next__matchup { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(26px, 3.4vw, 40px); line-height: 0.95; color: #fff; letter-spacing: 0.01em; }
.next__matchup .vs { color: var(--blue-8f); font-family: var(--f-ui); font-weight: 700; font-size: 0.5em; vertical-align: middle; }
.next__meta { margin-top: 8px; font-family: var(--f-ui); font-weight: 600; font-size: 14px; color: var(--blue-c7); letter-spacing: 0.03em; }

.cd { display: flex; gap: 10px; }
.cd__tile {
  text-align: center; background: rgba(0,0,0,0.28); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px; padding: 14px 16px; min-width: 74px;
}
.cd__num { font-family: var(--f-display); font-size: 40px; line-height: 1; color: #fff; }
.cd__lbl { font-family: var(--f-ui); font-weight: 700; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-8f); margin-top: 6px; }
.cd__tile--accent { background: rgba(27,140,240,0.22); border-color: rgba(91,182,255,0.4); }
.cd__tile--accent .cd__num { color: var(--blue-5b); }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about { background: var(--surface); color: var(--ink); padding: 96px 0; }
.about__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.about .kicker .label { color: var(--navy-4); }
.about h2 { margin: 18px 0 22px; font-family: var(--f-display); text-transform: uppercase; font-size: clamp(38px, 5vw, 64px); line-height: 0.92; color: var(--ink); }
.about p { margin: 0 0 18px; font-size: 18px; line-height: 1.6; color: var(--on-light); font-weight: 500; }
.about p strong { color: var(--navy-4); }
.about__stats { display: flex; gap: 38px; margin-top: 36px; }
.about__stats .num { font-family: var(--f-display); font-size: 50px; line-height: 1; color: var(--blue); }
.about__stats .lbl { font-family: var(--f-ui); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.about__stats .divider { width: 1px; background: var(--chip-border); }
.about__media { position: relative; }
.about__media .frame { overflow: hidden; border-radius: 6px; box-shadow: 0 24px 60px rgba(11,15,23,0.28); }
.about__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__badge {
  position: absolute; left: -26px; bottom: -26px; background: var(--ink); color: #fff;
  padding: 20px 24px; border-radius: 6px; box-shadow: 0 16px 40px rgba(11,15,23,0.35); border-left: 4px solid var(--blue);
}
.about__badge .t { font-family: var(--f-display); font-size: 30px; line-height: 1; color: #fff; }
.about__badge .s { font-family: var(--f-ui); font-weight: 600; font-size: 13px; letter-spacing: 0.04em; color: var(--blue-8f); margin-top: 6px; }

/* =====================================================================
   WHAT IS BOX LACROSSE
   ===================================================================== */
.box { position: relative; background: var(--ink); padding: 96px 0; overflow: hidden; }
.box__photo { position: absolute; inset: 0; opacity: 0.16; background-size: cover; background-position: center; }
.box__grad { position: absolute; inset: 0; background: linear-gradient(to bottom, #0B0F17 0%, rgba(11,15,23,0.86) 40%, #0B0F17 100%); }
.box__inner { position: relative; }
.box__head { max-width: 720px; }
.box .kicker .label { color: var(--blue-5b); }
.box h2 { margin: 18px 0 18px; font-family: var(--f-display); text-transform: uppercase; font-size: clamp(38px, 5.4vw, 68px); line-height: 0.9; color: #fff; }
.box__intro { margin: 0; font-size: 19px; line-height: 1.6; color: var(--on-dark-1); font-weight: 500; max-width: 620px; }
.box__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.feature {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 6px;
  padding: 26px 22px; transition: transform .18s, border-color .18s;
}
.feature:hover { transform: translateY(-5px); border-color: rgba(91,182,255,0.5); }
.feature .stat { font-family: var(--f-display); font-size: 34px; color: var(--blue); }
.feature .ttl { font-family: var(--f-ui); font-weight: 800; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; margin: 12px 0 8px; }
.feature .body { font-size: 14.5px; line-height: 1.5; color: var(--on-dark-3); }
/* Partnerships pillars — 3-up grid (box__grid is 4-up) */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
@media (max-width: 760px) { .partner-grid { grid-template-columns: 1fr; } }
/* Partnerships — sponsor wall (driven by the Sponsors sheet tab) */
.sponsors { background: var(--surface); color: var(--ink); padding: 92px 0; }
.sponsors .kicker .label { color: var(--navy-4); }
.sponsors h2 { margin: 14px 0 8px; font-family: var(--f-display); text-transform: uppercase; font-size: clamp(36px, 5vw, 64px); line-height: 0.92; color: var(--ink); }
.sponsors .lede { margin: 0; font-size: 17px; line-height: 1.55; color: var(--on-light); font-weight: 500; max-width: 560px; }
.sponsor-grid { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 44px; }
.sponsor { display: flex; align-items: center; justify-content: center; width: 248px; height: 150px; background: var(--card); border: 1px solid var(--card-border); border-radius: 12px; padding: 26px; text-decoration: none; transition: transform .18s, border-color .18s, box-shadow .18s; }
.sponsor:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 10px 28px rgba(11,15,23,0.08); }
.sponsor img { max-width: 100%; max-height: 100%; object-fit: contain; }
@media (max-width: 760px) { .sponsor { width: calc(50% - 11px); height: 128px; padding: 18px; } }

/* =====================================================================
   SECTION HEADER (roster / shop)
   ===================================================================== */
.sec-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.sec-head h2 { margin: 0; font-family: var(--f-display); text-transform: uppercase; font-size: clamp(40px, 5.6vw, 72px); line-height: 0.9; }
.sec-head .help { margin: 14px 0 0; font-size: 16px; color: var(--muted); font-weight: 500; max-width: 520px; }
.sec-head .help strong { color: var(--navy-4); font-weight: 600; }

/* Filter chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--f-ui); font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 11px 18px; border-radius: 3px; cursor: pointer; transition: all .15s;
  background: #fff; color: var(--muted); border: 1px solid var(--chip-border);
}
.chip:hover { border-color: var(--blue); color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* =====================================================================
   ROSTER
   ===================================================================== */
.roster { background: var(--surface); color: var(--ink); padding: 92px 0; }
.roster .kicker .label { color: var(--navy-4); margin-bottom: 0; }
.roster__head-text .kicker { margin-bottom: 14px; }
.roster__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); gap: 16px; }

.player {
  position: relative; background: #fff; border: 1px solid var(--card-border); border-radius: 8px;
  overflow: hidden; transition: transform .18s, box-shadow .18s, border-color .18s; box-shadow: 0 1px 2px rgba(11,15,23,0.04);
}
.player:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(11,15,23,0.16); border-color: var(--blue); }
.player__photo { position: relative; height: 220px; background: linear-gradient(150deg, #0E2C50, #0B0F17); background-size: cover; background-position: center top; }
.player__photo .scrim { position: absolute; top: 0; left: 0; right: 0; height: 60px; background: linear-gradient(to bottom, rgba(11,15,23,0.55), transparent); pointer-events: none; }
.player__num { position: absolute; top: 10px; left: 12px; font-family: var(--f-display); font-size: 36px; line-height: 0.8; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.player__pos { position: absolute; top: 14px; right: 12px; font-family: var(--f-ui); font-weight: 800; font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); background: var(--blue); padding: 5px 8px; border-radius: 3px; }
.player__btn {
  display: block; width: 100%; text-align: left; border: 0; background: #fff; padding: 15px 16px 16px;
  cursor: pointer; border-top: 3px solid var(--blue); transition: background .15s; font: inherit;
}
.player__btn:hover { background: var(--roster-hover); }
.player__name { font-family: var(--f-ui); font-weight: 800; font-size: 17px; letter-spacing: 0.01em; color: var(--ink); line-height: 1.1; }
.player__row { display: flex; align-items: center; justify-content: space-between; margin-top: 7px; }
.player__row .p { font-family: var(--f-ui); font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.player__row .b { font-family: var(--f-ui); font-weight: 800; font-size: 11.5px; letter-spacing: 0.04em; color: var(--navy-4); }

/* View toggle (List / Photos) — mobile only */
.roster__view { display: none; gap: 6px; margin: 0 0 16px; }
.viewbtn {
  font-family: var(--f-ui); font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 3px; cursor: pointer; transition: all .15s;
  background: #fff; color: var(--muted); border: 1px solid var(--chip-border);
}
.viewbtn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.roster__foot { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }

@media (max-width: 640px) {
  .roster__view { display: flex; }
  /* Compact name-only list: hide photos, stack players as slim tappable rows */
  .roster__grid--list { grid-template-columns: 1fr; gap: 8px; }
  .roster__grid--list .player { border-left: 3px solid var(--blue); box-shadow: none; }
  .roster__grid--list .player:hover { transform: none; box-shadow: none; border-color: var(--card-border); border-left-color: var(--blue); }
  .roster__grid--list .player__photo { display: none; }
  .roster__grid--list .player__btn {
    border-top: 0; padding: 13px 16px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
  }
  .roster__grid--list .player__name { font-size: 16px; }
  .roster__grid--list .player__row { margin-top: 0; }
  .roster__grid--list .player__row .b { display: none; }
}

/* =====================================================================
   SCHEDULE
   ===================================================================== */
.schedule { background: var(--ink); padding: 92px 0; }
.schedule .container { max-width: 1080px; }
.schedule .kicker .label { color: var(--blue-5b); }
.schedule h2 { margin: 14px 0 8px; font-family: var(--f-display); text-transform: uppercase; font-size: clamp(40px, 5.6vw, 72px); line-height: 0.9; color: #fff; }
.schedule .note { margin: 0 0 34px; font-size: 15px; color: #8FA0B0; font-weight: 500; }
.games { display: flex; flex-direction: column; gap: 10px; }
.game {
  display: grid; grid-template-columns: 128px 1fr auto auto; gap: 20px; align-items: center;
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--accent, #1B8CF0); border-radius: 6px; padding: 18px 22px;
  transition: background .15s, transform .15s;
}
.game:hover { background: rgba(255,255,255,0.07); transform: translateX(4px); }
.game__date { font-family: var(--f-ui); font-weight: 800; font-size: 16px; color: #fff; letter-spacing: 0.02em; }
.game__time { font-family: var(--f-ui); font-weight: 600; font-size: 12px; color: var(--on-dark-4); margin-top: 3px; }
.game__matchup { font-family: var(--f-display); font-size: 22px; text-transform: uppercase; color: #fff; line-height: 1; }
.game__matchup .c { font-family: var(--f-ui); font-weight: 700; font-size: 0.6em; color: var(--blue-5b); }
.game__venue { font-family: var(--f-ui); font-weight: 600; font-size: 12px; color: var(--on-dark-4); margin-top: 4px; }
.game__badge { font-family: var(--f-ui); font-weight: 800; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 3px; }
.game__cta { font-family: var(--f-ui); font-weight: 800; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-5b); text-decoration: none; white-space: nowrap; transition: color .15s; }
.game__cta:hover { color: #fff; }
.game--final { opacity: 0.92; }
.game__result { display: flex; align-items: center; justify-content: flex-end; gap: 10px; white-space: nowrap; }
.game__score { font-family: var(--f-ui); font-weight: 800; font-size: 16px; color: #fff; letter-spacing: 0.02em; }
.wl { font-family: var(--f-ui); font-weight: 900; font-size: 12px; line-height: 1; width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }
.wl--w { background: #1F9D57; color: #fff; }
.wl--l { background: #D23B3B; color: #fff; }
.wl--t { background: rgba(255,255,255,0.18); color: #fff; }

/* =====================================================================
   SHOP PREVIEW (home) + CATALOG (store)
   ===================================================================== */
.shop { background: var(--surface); color: var(--ink); padding: 92px 0; }
.shop .kicker .label { color: var(--navy-4); }
.shop h2 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(40px, 5.6vw, 72px); line-height: 0.9; color: var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(236px, 1fr)); gap: 18px; }
.shop .product-grid { grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); }

.product {
  background: #fff; border: 1px solid var(--card-border); border-radius: 8px; overflow: hidden;
  transition: transform .18s, box-shadow .18s, border-color .18s; box-shadow: 0 1px 2px rgba(11,15,23,0.04);
}
.product:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(11,15,23,0.16); border-color: var(--blue); }
.product__photo { position: relative; height: 248px; background: linear-gradient(150deg, #0E2C50, #0B0F17); background-size: cover; background-position: center; }
.product__tag { position: absolute; top: 12px; left: 12px; font-family: var(--f-ui); font-weight: 800; font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); background: var(--blue); padding: 5px 9px; border-radius: 3px; pointer-events: none; }
.product__body { padding: 18px; border-top: 3px solid var(--blue); }
.product__name { font-family: var(--f-ui); font-weight: 800; font-size: 16px; color: var(--ink); line-height: 1.15; }
.product__sub { font-family: var(--f-ui); font-weight: 600; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.product__row { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.product__price { font-family: var(--f-display); font-size: 26px; color: var(--ink); }
.product__add {
  display: inline-block;
  font-family: var(--f-ui); font-weight: 800; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); background: #fff; border: 1px solid var(--ink); padding: 9px 15px; border-radius: 3px;
  cursor: pointer; text-decoration: none; transition: all .15s;
}
.product__add:hover { background: var(--ink); color: #fff; }
/* Not-yet-linked product: no Square checkout URL in the sheet yet */
.product__add--soon { color: #9aa3b0; border-color: #d6dbe2; background: #fff; cursor: not-allowed; }
.product__add--soon:hover { background: #fff; color: #9aa3b0; }

/* =====================================================================
   JOIN CTA
   ===================================================================== */
.join { position: relative; overflow: hidden; background: var(--navy-2); padding: 104px 0; }
.join__photo { position: absolute; inset: 0; opacity: 0.25; background-size: cover; background-position: center 30%; }
.join__grad { position: absolute; inset: 0; background: linear-gradient(110deg, #0B0F17 10%, rgba(14,44,80,0.7) 60%, rgba(19,97,168,0.55) 100%); }
.join__inner { position: relative; max-width: 900px; text-align: center; }
.join .eyebrow { font-family: var(--f-ui); font-weight: 700; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue-5b); margin-bottom: 16px; }
.join h2 { margin: 0; font-family: var(--f-display); text-transform: uppercase; font-size: clamp(40px, 6vw, 80px); line-height: 0.9; color: #fff; }
.join p { margin: 22px auto 0; max-width: 560px; font-size: 18px; line-height: 1.55; color: var(--on-dark-1); font-weight: 500; }
.join__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.join .btn-primary { padding: 16px 30px; box-shadow: 0 6px 24px rgba(27,140,240,0.45); }
.join .btn-primary:hover { box-shadow: 0 12px 30px rgba(27,140,240,0.6); }
.join .btn-ghost { padding: 16px 30px; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.28); }
.join .btn-ghost:hover { background: rgba(255,255,255,0.16); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--ink-deep); padding: 54px 0 40px; border-top: 1px solid rgba(255,255,255,0.07); }
.site-footer__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.site-footer__brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.site-footer__brand img { height: 54px; width: auto; }
.site-footer__brand .t { font-family: var(--f-display); font-size: 22px; text-transform: uppercase; color: #fff; line-height: 1; }
.site-footer__brand .s { font-family: var(--f-ui); font-weight: 600; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-5b); margin-top: 4px; }
.socials { display: flex; gap: 10px; }
.socials a {
  font-family: var(--f-ui); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--nav-link); text-decoration: none; border: 1px solid rgba(255,255,255,0.14);
  padding: 10px 16px; border-radius: 3px; transition: color .15s, border-color .15s;
}
.socials a:hover { color: #fff; border-color: var(--blue); }
.site-footer__bottom {
  max-width: var(--maxw); margin: 30px auto 0; padding: 22px 28px 0; border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--f-ui); font-weight: 500; font-size: 12px; color: var(--muted); letter-spacing: 0.02em;
}

/* =====================================================================
   PLAYER MODAL
   ===================================================================== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100; background: rgba(7,10,15,0.78); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px; animation: slkRise .2s ease both;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative; width: 100%; max-width: 760px; background: var(--panel);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.6); display: grid; grid-template-columns: 240px 1fr;
}
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18); background: rgba(0,0,0,0.4); color: #fff; font-size: 20px;
  line-height: 1; cursor: pointer; transition: background .15s; display: flex; align-items: center; justify-content: center;
}
.modal__close:hover { background: var(--blue); color: var(--ink); }
.modal__left {
  position: relative; background: linear-gradient(160deg, #13355E, #0B0F17); padding: 32px 26px;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 300px;
}
.modal__left .top { font-family: var(--f-ui); font-weight: 800; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-5b); }
.modal__left .big { font-family: var(--f-display); font-size: 140px; line-height: 0.78; color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.modal__left .bottom { font-family: var(--f-ui); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; color: var(--blue-8f); }
.modal__right { padding: 36px 34px; }
.modal__right .eyebrow { font-family: var(--f-ui); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-5b); margin-bottom: 6px; }
.modal__right h3 { margin: 0; font-family: var(--f-display); text-transform: uppercase; font-size: clamp(34px, 4vw, 52px); line-height: 0.9; color: #fff; }
.modal__right .bio { margin: 18px 0 0; font-size: 16px; line-height: 1.62; color: var(--on-dark-2); font-weight: 500; }
.modal__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 26px; }
.modal__stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 5px; padding: 12px; text-align: center; }
.modal__stat .v { font-family: var(--f-display); font-size: 26px; color: #fff; }
.modal__stat .k { font-family: var(--f-ui); font-weight: 700; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-4); margin-top: 4px; }
.modal__stat--accent { background: rgba(27,140,240,0.16); border-color: rgba(91,182,255,0.35); }
.modal__stat--accent .v { color: var(--blue-5b); }
.modal__note { margin-top: 22px; font-family: var(--f-ui); font-weight: 500; font-size: 12.5px; color: #6E7F90; font-style: italic; }

/* =====================================================================
   STORE HEADER + TOAST
   ===================================================================== */
.store-hero { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: 64px 0 56px; }
.store-hero__photo { position: absolute; inset: 0; opacity: 0.16; background-size: cover; background-position: center 30%; }
.store-hero__grad { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,15,23,0.7), #0B0F17); }
.store-hero__glow { position: absolute; inset: 0; background: radial-gradient(120% 90% at 90% 10%, rgba(27,140,240,0.25), transparent 55%); }
.store-hero__inner { position: relative; }
.store-hero .back { font-family: var(--f-ui); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-8f); text-decoration: none; transition: color .15s; }
.store-hero .back:hover { color: #fff; }
.store-hero .kicker { margin: 20px 0 14px; }
.store-hero .kicker .label { color: var(--blue-5b); }
.store-hero h1 { margin: 0; font-family: var(--f-display); text-transform: uppercase; font-size: clamp(48px, 7vw, 104px); line-height: 0.88; color: #fff; }
.store-hero p { margin: 18px 0 0; max-width: 560px; font-size: 17px; line-height: 1.55; color: var(--on-dark-1); font-weight: 500; }
.store-hero p strong { color: var(--blue-8f); font-weight: 600; }

/* =====================================================================
   Join page — Roster requirements (join.html only)
   Refined metric cards: each card leads with a real number OR a distinct
   icon (never a word that repeats the title), unified by a blue left-rule.
   Scoped .req-* classes — does NOT touch the shared
   .feature / .box__grid / .stat / .ttl / .body used on the homepage.
   ===================================================================== */
.req-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.req {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 6px;
  padding: 26px 22px; transition: transform .18s, border-color .18s, background .18s;
}
.req:hover { transform: translateY(-5px); border-color: rgba(91,182,255,0.5); background: rgba(255,255,255,0.06); }
.req__top {
  display: flex; align-items: center; min-height: 42px;
  padding-left: 13px; margin-bottom: 16px; border-left: 3px solid var(--blue);
}
.req__num {
  font-family: var(--f-display); font-weight: 400; font-size: 40px; line-height: 1;
  color: var(--blue); letter-spacing: 0.01em;
}
.req__icon { display: inline-flex; color: var(--blue); }
.req__icon svg { display: block; width: 34px; height: 34px; }
.req__ttl {
  font-family: var(--f-ui); font-weight: 800; font-size: 15px; letter-spacing: 0.04em;
  text-transform: uppercase; color: #fff; margin: 0 0 8px;
}
.req__body { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--on-dark-3); }
@media (max-width: 900px) { .req-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .req-grid { grid-template-columns: 1fr; } }

.catalog { background: var(--surface); padding: 48px 0 92px; }
.catalog .chips { margin-bottom: 34px; }

.bulk {
  margin-top: 52px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  background: #fff; border: 1px solid var(--card-border); border-left: 4px solid var(--blue); border-radius: 8px; padding: 26px 28px;
}
.bulk .t { font-family: var(--f-display); font-size: 26px; text-transform: uppercase; color: var(--ink); line-height: 1; }
.bulk .s { font-family: var(--f-ui); font-weight: 600; font-size: 14px; color: var(--muted); margin-top: 6px; }

.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 90;
  background: var(--ink); color: #fff; border: 1px solid rgba(91,182,255,0.4); border-left: 4px solid var(--blue);
  border-radius: 6px; padding: 14px 22px; box-shadow: 0 18px 44px rgba(0,0,0,0.4);
  font-family: var(--f-ui); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; animation: slkRise .2s ease both;
}
.toast[hidden] { display: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__badge { left: 0; bottom: -20px; position: relative; margin-top: 20px; }
  .box__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .modal { grid-template-columns: 1fr; }
  .modal__left { min-height: auto; flex-direction: row; align-items: center; gap: 18px; }
  .modal__left .big { font-size: 84px; }
  .game { grid-template-columns: 1fr auto; row-gap: 10px; }
  .game__matchup { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .box__grid { grid-template-columns: 1fr; }
  .about__stats { gap: 22px; }
  .cd { flex-wrap: wrap; }
}

/* =====================================================================
   Player Stats page (stats.html)
   ===================================================================== */
.stats-page { background: var(--ink); padding: 40px 0 80px; min-height: 72vh; }
.stats-page .back { font-family: var(--f-ui); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-8f); text-decoration: none; transition: color .15s; }
.stats-page .back:hover { color: #fff; }
.stats-page .kicker { margin: 20px 0 12px; }
.stats-page .kicker .label { color: var(--blue-5b); }
.stats-page h1 { font-family: var(--f-display); font-size: clamp(40px, 7vw, 78px); line-height: 0.92; text-transform: uppercase; color: #fff; letter-spacing: 0.01em; }
.stats-lede { font-family: var(--f-ui); color: var(--on-dark-3); font-size: 15px; max-width: 640px; margin-top: 12px; }

.stats-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin: 26px 0 8px; }
.seg { display: inline-flex; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 4px; gap: 4px; }
.seg-btn { font-family: var(--f-ui); font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-3); background: transparent; border: 0; padding: 9px 18px; border-radius: 6px; cursor: pointer; transition: background .15s, color .15s; }
.seg-btn:hover { color: #fff; }
.seg-btn.is-active { background: var(--blue); color: #04101F; }
.stats-select { font-family: var(--f-ui); font-weight: 700; font-size: 13px; color: #fff; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; padding: 10px 14px; cursor: pointer; max-width: 100%; }
.stats-select:focus { outline: none; border-color: var(--blue); }
/* Native dropdown popups render on a white system background on Windows/some
   browsers; pin explicit solid colors so options never go white-on-white. */
.stats-select option { background: #121A25; color: #fff; }
.stats-select option:checked { background: var(--blue); color: #fff; }

.stats-meta { font-family: var(--f-ui); font-size: 15px; color: var(--on-dark-2); margin: 18px 0 6px; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.stats-meta strong { color: #fff; }
.stats-meta__score { font-family: var(--f-ui); font-weight: 900; font-size: 12px; width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.14); color: #fff; }
.stats-meta__score.win { background: #1F9D57; } .stats-meta__score.loss { background: #D23B3B; }
.stats-meta__sub { color: var(--on-dark-4); font-size: 13px; font-weight: 600; }

.stats-h { font-family: var(--f-display); text-transform: uppercase; color: #fff; font-size: 22px; letter-spacing: 0.03em; margin: 30px 0 12px; }

.table-wrap { overflow-x: auto; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; background: rgba(255,255,255,0.025); -webkit-overflow-scrolling: touch; }
.stats-table { width: 100%; border-collapse: collapse; font-family: var(--f-ui); font-size: 13.5px; white-space: nowrap; }
.stats-table th { position: sticky; top: 0; background: #121A25; color: var(--on-dark-3); font-weight: 800; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding: 12px 12px; cursor: pointer; user-select: none; border-bottom: 1px solid rgba(255,255,255,0.1); transition: color .12s; }
.stats-table th:hover { color: #fff; }
.stats-table th.th-active { color: var(--blue-5b); }
.stats-table th.th-num, .stats-table td.td-num { text-align: right; }
.stats-table th.th-name, .stats-table td.td-name { text-align: left; }
.stats-table td { padding: 11px 12px; color: var(--on-dark-1); border-bottom: 1px solid rgba(255,255,255,0.05); font-variant-numeric: tabular-nums; }
.stats-table td.td-name { font-weight: 700; color: #fff; }
.stats-table td.td-strong { font-weight: 800; color: #fff; }
.stats-table tbody tr:hover { background: rgba(91,182,255,0.07); }
.stats-table tbody tr:last-child td { border-bottom: 0; }
.stats-table td.td-empty { text-align: center; color: var(--muted); padding: 24px; }

.stats-key { font-family: var(--f-ui); font-size: 11.5px; color: var(--on-dark-4); line-height: 1.7; margin-top: 18px; }
.stats-empty { font-family: var(--f-ui); color: var(--on-dark-3); font-size: 15px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 26px; margin-top: 24px; }

@media (max-width: 560px) {
  .stats-controls { flex-direction: column; align-items: stretch; }
  .seg { justify-content: center; }
  .stats-select { width: 100%; }
}
