/* =============================================================================
   TN STARS FLAG — Design tokens
   Brand: pink + Carolina blue from the official shield logo
   Powered by SidelineOS
   ============================================================================= */
:root {
  /* ---- Brand colors ---- */
  --pink:           #E0306F;
  --pink-dark:      #B5235A;
  --pink-soft:      #FCE4EC;
  --pink-glow:      rgba(224, 48, 111, 0.18);

  --blue:           #3D8BCC;
  --blue-dark:      #2A6FA5;
  --blue-soft:      #E8F1FA;

  /* ---- Surfaces ---- */
  --bg:             #FFFFFF;
  --bg-alt:         #FAFBFC;
  --bg-cream:       #FFF8FB;       /* warm pink-tinted background for soft sections */
  --bg-ink:         #0F1A2D;       /* deep navy for dark sections */
  --bg-ink-2:       #182640;

  --card:           #FFFFFF;
  --card-border:    rgba(15, 26, 45, 0.08);

  /* ---- Text ---- */
  --ink:            #0F1A2D;
  --ink-mid:        #2A3854;
  --ink-dim:        #5A6A82;
  --ink-on-dark:    #F4F7FB;
  --ink-on-dark-d:  #B7C2D6;

  /* ---- Geometry & motion ---- */
  --radius:         16px;
  --radius-sm:      8px;
  --radius-pill:    999px;

  --shadow-sm:      0 2px 8px rgba(15, 26, 45, 0.06);
  --shadow:         0 8px 28px rgba(15, 26, 45, 0.10);
  --shadow-pink:    0 12px 36px rgba(224, 48, 111, 0.28);

  --ease:           cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:         150ms var(--ease);
  --t-med:          280ms var(--ease);
  --t-slow:         520ms var(--ease);

  /* ---- Typography ---- */
  --f-display:      "Anton", "Bebas Neue", Impact, sans-serif;
  --f-body:         "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono:         "Space Mono", ui-monospace, monospace;

  /* ---- Layout ---- */
  --container:      1200px;
  --container-narrow: 880px;
  --section-pad:    clamp(64px, 9vw, 120px);
}

/* =============================================================================
   Base
   ============================================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--pink); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.container.narrow { max-width: var(--container-narrow); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* =============================================================================
   Typography helpers
   ============================================================================= */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}
.eyebrow.on-dark { color: #FF7AAF; }

/* =============================================================================
   Buttons
   ============================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  transition: transform var(--t-fast), box-shadow var(--t-med), background var(--t-med), color var(--t-med);
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(224, 48, 111, 0.40);
}
.btn-secondary {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--blue-soft);
  color: var(--blue-dark);
}
.btn-ghost:hover { background: var(--blue); color: #fff; }

.btn-large { padding: 18px 36px; font-size: 17px; }

/* =============================================================================
   Header / nav
   ============================================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--t-med), backdrop-filter var(--t-med), box-shadow var(--t-med), padding var(--t-med);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--card-border), 0 8px 24px rgba(15,26,45,0.04);
  padding: 10px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-lockup img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform var(--t-med);
}
.brand-lockup:hover img { transform: rotate(-6deg) scale(1.05); }
.brand-name {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.scrolled .brand-name { color: var(--ink); text-shadow: none; }
.brand-name span { color: var(--pink); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  border-radius: var(--radius-pill);
  transition: background var(--t-fast), color var(--t-fast);
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.scrolled .nav-links a { color: var(--ink); text-shadow: none; }
.nav-links a:hover { background: rgba(255,255,255,0.15); }
.scrolled .nav-links a:hover { background: var(--pink-soft); color: var(--pink-dark); }
.nav-links .btn {
  padding: 11px 22px;
  font-size: 14px;
  text-shadow: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: #fff;
}
.scrolled .nav-toggle { color: var(--ink); }
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    inset: 70px 16px auto 16px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med), transform var(--t-med);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { color: var(--ink); text-shadow: none; text-align: center; }
  .nav-toggle { display: inline-flex; }
}

/* =============================================================================
   Hero
   ============================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media video,
.hero-media .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-poster {
  /* Animated fallback gradient — used when video is loading or absent */
  background:
    radial-gradient(circle at 18% 18%, rgba(224, 48, 111, 0.55) 0%, transparent 45%),
    radial-gradient(circle at 82% 28%, rgba(61, 139, 204, 0.65) 0%, transparent 50%),
    radial-gradient(circle at 50% 95%, rgba(224, 48, 111, 0.45) 0%, transparent 55%),
    linear-gradient(135deg, #1A3A6E 0%, #0F1A2D 100%);
  animation: heroDrift 24s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { background-position: 0% 0%, 100% 0%, 50% 100%, 0 0; }
  100% { background-position: 10% 8%, 88% 18%, 42% 90%, 0 0; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,26,45,0.50) 0%, rgba(15,26,45,0.30) 35%, rgba(15,26,45,0.78) 100%),
    linear-gradient(120deg, rgba(224,48,111,0.18) 0%, rgba(61,139,204,0.12) 100%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  width: 100%;
}
.hero-shield {
  width: clamp(96px, 14vw, 160px);
  margin-bottom: 24px;
  filter: drop-shadow(0 16px 36px rgba(0,0,0,0.35));
  animation: shieldIn 1100ms var(--ease) both;
}
@keyframes shieldIn {
  from { opacity: 0; transform: translateY(20px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-headline {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(56px, 11vw, 156px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  margin-bottom: 18px;
  animation: heroIn 900ms 200ms var(--ease) both;
}
.hero-headline .pink { color: var(--pink); }
.hero-headline .blue { color: #7CB5E0; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 500;
  max-width: 620px;
  margin-bottom: 36px;
  color: var(--ink-on-dark-d);
  animation: heroIn 900ms 360ms var(--ease) both;
}
.hero-sub strong { color: #fff; font-weight: 700; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: heroIn 900ms 500ms var(--ease) both;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  font-size: 14px;
  color: var(--ink-on-dark-d);
  font-weight: 600;
  letter-spacing: 0.04em;
  animation: heroIn 900ms 640ms var(--ease) both;
  flex-wrap: wrap;
}
.hero-meta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(224, 48, 111, 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(224, 48, 111, 0.18); }
  50%      { box-shadow: 0 0 0 10px rgba(224, 48, 111, 0); }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}
.scroll-cue span { animation: bob 2s ease-in-out infinite; }
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@keyframes scrollLine { 0% { height: 0; } 100% { height: 36px; } }

/* =============================================================================
   Stat strip
   ============================================================================= */
.stat-strip {
  background: var(--bg-ink);
  color: var(--ink-on-dark);
  padding: 36px 0;
}
.stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-items: center;
}
.stat-item {
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: 0; }
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}
.stat-num .accent { color: var(--pink); }
.stat-label {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-on-dark-d);
}
@media (max-width: 720px) {
  .stat-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px; }
  .stat-item:nth-last-child(-n+2) { border-bottom: 0; }
}

/* =============================================================================
   Section base
   ============================================================================= */
section { padding: var(--section-pad) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 0.96;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 12px 0 16px;
}
.section-head p {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-mid);
  max-width: 60ch;
}
.section-head.center p { margin-left: auto; margin-right: auto; }

/* =============================================================================
   About section — split layout
   ============================================================================= */
.about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.about-figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.about-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.20) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,0.18) 0%, transparent 55%);
  z-index: 1;
}
.about-figure-stars {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.about-figure-stars svg {
  width: 65%;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.18));
  animation: floatStars 8s ease-in-out infinite;
}
@keyframes floatStars {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(1.5deg); }
}
.about-figure-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 3;
  background: rgba(15,26,45,0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.about-figure-tag::before {
  content: "★";
  color: var(--pink);
  font-size: 18px;
}

.about-copy h2 { color: var(--ink); }
.about-copy p {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-mid);
  margin-bottom: 18px;
  max-width: 56ch;
}
.about-pillars {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}
.pillar {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-med);
}
.pillar:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
  box-shadow: var(--shadow-sm);
}
.pillar-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--pink-soft);
  color: var(--pink);
}
.pillar:nth-child(2) .pillar-icon { background: var(--blue-soft); color: var(--blue-dark); }
.pillar:nth-child(3) .pillar-icon { background: #FFF4E6; color: #E07A1F; }
.pillar-icon svg { width: 22px; height: 22px; stroke-width: 2; }
.pillar h3 { font-size: 16px; margin-bottom: 4px; color: var(--ink); }
.pillar p { font-size: 14px; color: var(--ink-dim); margin: 0; line-height: 1.5; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   Divisions
   ============================================================================= */
.divisions {
  background: var(--bg-cream);
}
.div-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.div-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  border: 1px solid var(--card-border);
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
  overflow: hidden;
  isolation: isolate;
}
.div-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--pink);
}
.div-card:nth-child(2)::before { background: var(--blue); }
.div-card:nth-child(3)::before { background: linear-gradient(90deg, var(--pink), var(--blue)); }
.div-card:nth-child(4)::before { background: var(--blue-dark); }
.div-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, var(--pink-glow) 0%, transparent 50%);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--t-med);
}
.div-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
  box-shadow: var(--shadow);
}
.div-card:hover::after { opacity: 1; }
.div-age {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.div-card:nth-child(2) .div-age { color: var(--blue-dark); }
.div-card:nth-child(3) .div-age { color: var(--pink-dark); }
.div-card:nth-child(4) .div-age { color: var(--blue-dark); }
.div-grade {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 20px;
}
.div-card ul { list-style: none; }
.div-card li {
  font-size: 14px;
  color: var(--ink-mid);
  padding: 8px 0;
  border-top: 1px dashed var(--card-border);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.div-card li:first-of-type { border-top: 0; }
.div-card li strong { color: var(--ink); font-weight: 700; }

@media (max-width: 980px) { .div-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .div-grid { grid-template-columns: 1fr; } }

/* =============================================================================
   What's included
   ============================================================================= */
.included {
  background: var(--bg);
}
.inc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.inc-item {
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: background var(--t-med), border-color var(--t-med), transform var(--t-fast);
}
.inc-item:hover {
  background: #fff;
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.inc-item-num {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.inc-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.inc-item p {
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.55;
}
@media (max-width: 880px) { .inc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .inc-grid { grid-template-columns: 1fr; } }

/* =============================================================================
   Season + locations
   ============================================================================= */
.season {
  background: var(--bg-ink);
  color: var(--ink-on-dark);
  position: relative;
  overflow: hidden;
}
.season::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
  pointer-events: none;
}
.season::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 139, 204, 0.20) 0%, transparent 70%);
  pointer-events: none;
}
.season .section-head h2 { color: #fff; }
.season .section-head p { color: var(--ink-on-dark-d); }

.season-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.season-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.season-card h3 {
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #fff;
}
.season-card h3 .pink { color: var(--pink); }
.timeline { list-style: none; }
.timeline li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.timeline li:last-child { border-bottom: 0; }
.timeline .when {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  flex-shrink: 0;
  width: 130px;
  padding-top: 2px;
}
.timeline .what { flex: 1; }
.timeline .what strong { display: block; font-size: 16px; color: #fff; margin-bottom: 2px; }
.timeline .what span { font-size: 13.5px; color: var(--ink-on-dark-d); }

.locations { list-style: none; }
.locations li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: flex-start;
}
.locations li:last-child { border-bottom: 0; }
.locations .pin {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--pink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.locations .pin svg { width: 18px; height: 18px; }
.locations strong { display: block; color: #fff; font-size: 15px; }
.locations span { font-size: 13px; color: var(--ink-on-dark-d); }
@media (max-width: 880px) { .season-grid { grid-template-columns: 1fr; } }

/* =============================================================================
   Registration
   ============================================================================= */
.register {
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.register::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 92% 8%, var(--pink-glow) 0%, transparent 45%),
    radial-gradient(circle at 6% 92%, rgba(61,139,204,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.register .container { position: relative; }
.reg-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.reg-header h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 0.96;
  text-transform: uppercase;
  margin: 12px 0 16px;
}
.reg-header h2 .pink { color: var(--pink); }
.reg-header p { color: var(--ink-mid); font-size: 17px; }

.reg-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 48px);
  max-width: 840px;
  margin: 0 auto;
  position: relative;
}
.reg-step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--card-border);
}
.reg-step-num {
  font-family: var(--f-display);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.reg-step-head h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.reg-step-head h3 small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-dim);
  letter-spacing: 0;
}

.reg-step { margin-bottom: 36px; }
.reg-step:last-of-type { margin-bottom: 24px; }

.fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.field label .req { color: var(--pink); margin-left: 2px; }
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; font-family: var(--f-body); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px var(--pink-glow);
}
.field-hint { font-size: 12px; color: var(--ink-dim); }

.radio-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.radio-group label {
  cursor: pointer;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  transition: all var(--t-fast);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.radio-group label small {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.radio-group label:hover { border-color: var(--pink); }
.radio-group input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.radio-group input[type="radio"]:checked + span,
.radio-group input[type="radio"]:checked ~ * { }
.radio-group label:has(input:checked) {
  border-color: var(--pink);
  background: var(--pink);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.radio-group label:has(input:checked) small { color: rgba(255,255,255,0.85); }
@media (max-width: 600px) { .radio-group { grid-template-columns: repeat(2, 1fr); } }

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.checkbox-row:hover { border-color: var(--pink); }
.checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--pink);
}
.checkbox-row .ck-text { font-size: 14px; line-height: 1.5; color: var(--ink-mid); }
.checkbox-row .ck-text strong { color: var(--ink); }
.checkbox-row .ck-text a { color: var(--pink); font-weight: 600; text-decoration: underline; }

.reg-submit {
  text-align: center;
  margin-top: 8px;
}
.reg-submit .btn { width: 100%; max-width: 360px; }
.reg-submit-note {
  font-size: 13px;
  color: var(--ink-dim);
  margin-top: 14px;
}

@media (max-width: 720px) { .fields { grid-template-columns: 1fr; } }

/* Reg success state — shown after JS submit succeeds */
.reg-success {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 56px clamp(24px, 4vw, 64px);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.reg-success.is-hidden { display: none; }
.reg-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: #fff;
  animation: scaleIn 500ms var(--ease);
}
.reg-success-icon svg { width: 40px; height: 40px; }
@keyframes scaleIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}
.reg-success h3 {
  font-family: var(--f-display);
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.reg-success p {
  font-size: 16px;
  color: var(--ink-mid);
  max-width: 48ch;
  margin: 0 auto 12px;
}

/* =============================================================================
   FAQ
   ============================================================================= */
.faq { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--card-border);
  padding: 8px 0;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--pink); }
.faq-question .plus {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--card-border);
  display: grid;
  place-items: center;
  transition: transform var(--t-med), background var(--t-fast), border-color var(--t-fast);
  color: var(--ink-dim);
}
.faq-item.open .plus {
  transform: rotate(45deg);
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 4px 24px;
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.6;
}

/* =============================================================================
   CTA + footer
   ============================================================================= */
.final-cta {
  background:
    linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,255,255,0.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 100%, rgba(61, 139, 204, 0.30) 0%, transparent 55%);
  z-index: -1;
}
.final-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.94;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.final-cta p {
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.88);
}
.final-cta .btn {
  background: #fff;
  color: var(--pink-dark);
  box-shadow: 0 10px 36px rgba(0,0,0,0.22);
}
.final-cta .btn:hover { transform: translateY(-3px); background: var(--bg-cream); }

.footer {
  background: var(--bg-ink);
  color: var(--ink-on-dark-d);
  padding: 64px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
.footer h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { transition: color var(--t-fast); }
.footer ul a:hover { color: var(--pink); }
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand-row img { width: 40px; height: 40px; }
.footer-brand-row .name {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
}
.footer-brand-row .name span { color: var(--pink); }
.footer-brand p { max-width: 28ch; line-height: 1.55; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--ink-on-dark-d);
}
.footer-powered a { color: #fff; transition: color var(--t-fast); }
.footer-powered a:hover { color: var(--pink); }
.footer-powered .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =============================================================================
   Reveal on scroll (IntersectionObserver)
   ============================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

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

/* =============================================================================
   Inner pages — Page hero + Empty state pattern
   Added 2026-06-30: site expansion to multi-page architecture
   ============================================================================= */

/* Inner-page hero block (used at top of /teams, /players, /coaches, etc.) */
.page-hero {
  position: relative;
  padding: clamp(80px, 14vw, 160px) 0 clamp(56px, 7vw, 96px);
  background:
    radial-gradient(80% 60% at 75% 30%, rgba(61, 139, 204, 0.15) 0%, transparent 60%),
    radial-gradient(60% 50% at 15% 70%, rgba(224, 48, 111, 0.12) 0%, transparent 60%),
    var(--bg-ink);
  color: var(--ink-on-dark);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.5;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
  padding: 6px 12px;
  background: rgba(224, 48, 111, 0.12);
  border-radius: var(--radius-pill);
}
.page-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.page-hero h1 .accent { color: var(--pink); }
.page-hero .sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-on-dark-d);
  max-width: 720px;
  line-height: 1.5;
}

/* Empty / pre-launch state block */
.empty-state {
  padding: clamp(56px, 9vw, 120px) 0;
  background: var(--bg-alt);
}
.empty-state .card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-sm);
}
.empty-state .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
}
.empty-state .icon svg { width: 32px; height: 32px; }
.empty-state .countdown-pill {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.empty-state h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--ink);
}
.empty-state p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-mid);
  margin-bottom: 24px;
}
.empty-state .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

/* Section block used on inner content pages */
.page-section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.page-section.alt { background: var(--bg-alt); }
.page-section .section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.page-section .section-head .eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.page-section .section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-section .section-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-mid);
}

/* Sponsor tier grid */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.tier-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier-card.featured {
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
  transform: translateY(-6px);
}
.tier-card .tier-name {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.tier-card .tier-price {
  font-family: var(--f-display);
  font-size: 48px;
  line-height: 1.0;
  margin-bottom: 4px;
}
.tier-card .tier-period {
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 24px;
}
.tier-card ul {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.tier-card li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.tier-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink);
}
.tier-card.featured li::before { background: var(--pink); }
.tier-card .btn { width: 100%; justify-content: center; }

/* Contact page two-column */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-block {
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-block h3 {
  font-family: var(--f-display);
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-info-block .ci-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 26, 45, 0.08);
}
.contact-info-block .ci-row:last-child { border-bottom: 0; }
.contact-info-block .ci-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}
.contact-info-block .ci-value {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.contact-info-block .ci-value a {
  color: var(--ink);
  border-bottom: 1px solid var(--pink);
}
.contact-info-block .ci-value a:hover { color: var(--pink); }

/* Contact form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form .field { margin-bottom: 18px; }
.contact-form label {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  background: #FFF;
  font-size: 15px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px var(--pink-glow);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) {
  .contact-form .field-row { grid-template-columns: 1fr; }
}

/* Active nav-link state */
.nav-links a.is-active { color: var(--pink); }
.nav-links a.is-active::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--pink);
  margin-top: 4px;
  border-radius: 2px;
}
