/* ==========================================================================
   KULTURE BASKETBALL — V3: "THE BROADCAST"
   A cinematic NBA broadcast experience brought to life as a website.

   Design System & Complete Stylesheet
   ========================================================================== */

/* -------------------------------------------------------------------------
   GOOGLE FONTS
   Teko 700 — Headlines, stats, broadcast graphics
   Plus Jakarta Sans 400/500/600 — Body, captions, UI text
   ------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600&family=Teko:wght@600;700&display=swap');

/* -------------------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ------------------------------------------------------------------------- */
:root {
  /* Color System */
  --primary: #FF6B00;
  --secondary: #0D0D12;
  --accent: #FFB800;
  --bg-deep: #0A0A0F;
  --bg-section: #111118;
  --bg-card: #161620;
  --text: #EDEDED;
  --text-muted: #8A8A9A;
  --text-white: #FFFFFF;
  --broadcast-red: #FF2D2D;
  --overlay-dark: rgba(10, 10, 15, 0.82);
  --overlay-medium: rgba(10, 10, 15, 0.65);
  --glow-orange: rgba(255, 107, 0, 0.35);
  --glow-gold: rgba(255, 184, 0, 0.25);

  /* Typography Scale */
  --font-display: 'Teko', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --fs-h1: clamp(2.8rem, 6vw, 5.5rem);
  --fs-h2: clamp(2rem, 4vw, 3.25rem);
  --fs-h3: 1.75rem;
  --fs-body: 1.125rem;
  --fs-small: 0.875rem;
  --fs-stat: clamp(4rem, 10vw, 8rem);
  --fs-watermark: clamp(8rem, 20vw, 16rem);
  --fs-button: 1rem;

  /* Layout */
  --max-width: 1280px;
  --content-padding: clamp(1.5rem, 4vw, 4rem);
  --section-padding: clamp(80px, 12vh, 140px);
  --bottom-bar-height: 64px;
  --phone-bar-height: 48px;

  /* Animation */
  --ease-broadcast: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-snap: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.3s;
  --duration-medium: 0.6s;
  --duration-slow: 0.8s;

  /* Borders & Radii */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 12px;
}


/* -------------------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-bottom: 80px;
  -webkit-text-size-adjust: 100%;
  font-size: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: var(--bottom-bar-height);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--primary);
  color: var(--bg-deep);
}


/* -------------------------------------------------------------------------
   TYPOGRAPHY
   ------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-white);
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

p {
  color: var(--text);
  max-width: 65ch;
}

.text-muted {
  color: var(--text-muted);
}

.text-orange {
  color: var(--primary);
}

.text-gold {
  color: var(--accent);
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-stat);
  line-height: 1;
  color: var(--primary);
}

.watermark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-watermark);
  opacity: 0.04;
  line-height: 1;
  color: var(--text-white);
  user-select: none;
  pointer-events: none;
}


/* -------------------------------------------------------------------------
   LAYOUT UTILITIES
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
}

.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  position: relative;
  overflow-x: hidden;
}

.section--deep {
  background-color: var(--bg-deep);
}

.section--elevated {
  background-color: var(--bg-section);
}

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--asymmetric {
  grid-template-columns: 1fr 1.2fr;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.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;
}


/* -------------------------------------------------------------------------
   1. BOTTOM BROADCAST NAVIGATION BAR
   The defining architectural element — a broadcast ticker strip pinned
   to the bottom of the viewport.
   ------------------------------------------------------------------------- */
.broadcast-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-bar-height);
  background: rgba(10, 10, 15, 0.92);
  border-top: 1px solid var(--primary);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

@supports (backdrop-filter: blur(1px)) {
  .broadcast-nav {
    background: rgba(10, 10, 15, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
}

/* Left: Brand wordmark */
.broadcast-nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.broadcast-nav__brand span {
  color: var(--primary);
}

/* Center: Navigation links as broadcast segments */
.broadcast-nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.broadcast-nav__link {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 clamp(0.8rem, 1.5vw, 1.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  transition: color var(--duration-fast) var(--ease-broadcast);
  white-space: nowrap;
}

/* Vertical separators between segments */
.broadcast-nav__link:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.broadcast-nav__link:hover {
  color: var(--text);
}

.broadcast-nav__link.active {
  color: var(--text-white);
}

/* Active underline indicator */
.broadcast-nav__link.active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 1.6rem);
  height: 2px;
  background: var(--primary);
}

/* Right: LIVE indicator */
.broadcast-nav__live {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.broadcast-nav__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--broadcast-red);
  animation: pulse-live 1.8s ease-in-out infinite;
}

.broadcast-nav__live-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--broadcast-red);
}

/* Mobile bottom bar */
.broadcast-nav__mobile-toggle,
.broadcast-nav__mobile-phone {
  display: none;
}

@media (max-width: 768px) {
  .broadcast-nav {
    height: 56px;
    padding: 0 1.25rem;
    justify-content: space-between;
  }

  .broadcast-nav__links,
  .broadcast-nav__live {
    display: none;
  }

  .broadcast-nav__mobile-toggle,
  .broadcast-nav__mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-white);
  }

  .broadcast-nav__mobile-toggle svg,
  .broadcast-nav__mobile-phone svg {
    width: 22px;
    height: 22px;
  }

  .broadcast-nav__mobile-phone {
    color: var(--primary);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .broadcast-nav__link {
    font-size: 0.8rem;
    padding: 0 0.7rem;
  }
}


/* -------------------------------------------------------------------------
   2. HERO SECTION
   Full-viewport cinematic letterbox with dramatic broadcast opening.
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 50%, var(--secondary) 0%, var(--bg-deep) 75%);
  scroll-snap-align: start;
}

/* Cinematic letterbox bars */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 5vh;
  background: #000000;
  z-index: 10;
  animation: letterbox-reveal 1.4s var(--ease-snap) forwards;
}

.hero::before {
  top: 0;
}

.hero::after {
  bottom: 0;
}

/* Watermark behind hero content */
.hero__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20vw;
  opacity: 0.04;
  color: var(--text-white);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* SVG half-court arc overlay */
.hero__court-svg {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  opacity: 0.05;
  pointer-events: none;
}

.hero__court-svg svg {
  width: 100%;
  height: 100%;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 5;
  max-width: 800px;
}

.hero__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: hero-title-in 0.8s var(--ease-snap) 0.6s forwards;
}

.hero__label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero__title {
  font-size: var(--fs-h1);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: hero-title-in 0.9s var(--ease-snap) 0.8s forwards;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: hero-title-in 0.9s var(--ease-snap) 1s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-title-in 0.9s var(--ease-snap) 1.2s forwards;
}

/* Broadcast stat strip at bottom of hero */
.hero__stat-strip {
  position: absolute;
  bottom: 5vh; /* Sits just above the lower letterbox bar */
  left: 0;
  right: 0;
  z-index: 11;
  background: rgba(10, 10, 15, 0.6);
  border-top: 1px solid rgba(255, 107, 0, 0.15);
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
  padding: 12px 0;
}

@supports (backdrop-filter: blur(1px)) {
  .hero__stat-strip {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

.hero__stat-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.hero__stat-strip-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Orange dot separators */
.hero__stat-strip-item:not(:last-child)::after {
  content: '\2022';
  color: var(--primary);
  margin-left: clamp(1rem, 3vw, 2.5rem);
}

@media (max-width: 768px) {
  .hero__content {
    padding-top: 8vh;
  }

  .hero__stat-strip-inner {
    gap: 0.6rem;
  }

  .hero__stat-strip-item {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .hero__stat-strip-item:not(:last-child)::after {
    margin-left: 0.6rem;
  }
}


/* -------------------------------------------------------------------------
   3. SECTION HEADERS — Broadcast Lower-Third Style
   Each section header mimics an on-screen broadcast graphic.
   ------------------------------------------------------------------------- */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}

.section-header__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

/* Animated line that draws in on scroll */
.section-header__line {
  width: 0;
  height: 2px;
  background: var(--primary);
  margin-bottom: 20px;
  transition: none;
}

.section-header__line.visible {
  animation: draw-line 0.8s var(--ease-snap) forwards;
}

/* Label with accent bar */
.section-header__label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.section-header__label::before {
  content: '';
  width: 40px;
  height: 3px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-header__label-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Heading slides in from right */
.section-header__title {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--duration-slow) var(--ease-broadcast),
              transform var(--duration-slow) var(--ease-broadcast);
  text-transform: uppercase;
}

.section-header__title.visible {
  opacity: 1;
  transform: translateX(0);
}

.section-header__subtitle {
  margin-top: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1rem;
}


/* -------------------------------------------------------------------------
   4. BROADCAST CARDS — Training Programs
   Dark glass cards with broadcast-grade finishes.
   ------------------------------------------------------------------------- */
.broadcast-card {
  position: relative;
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 107, 0, 0.12);
  overflow: hidden;
  transition: border-color var(--duration-fast) var(--ease-broadcast),
              transform var(--duration-fast) var(--ease-broadcast),
              box-shadow var(--duration-fast) var(--ease-broadcast);
  background: rgba(22, 22, 32, 0.7);
}

@supports (backdrop-filter: blur(1px)) {
  .broadcast-card {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

/* Top gradient accent line */
.broadcast-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Large background program number */
.broadcast-card__number {
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 5rem;
  line-height: 1;
  color: var(--text-white);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

.broadcast-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.4rem;
}

.broadcast-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.broadcast-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.broadcast-card__meta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.broadcast-card__meta::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--primary);
}

/* Hover state */
.broadcast-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(255, 107, 0, 0.06);
}

@media (max-width: 768px) {
  .broadcast-card {
    padding: 28px 24px;
  }

  .broadcast-card__number {
    font-size: 3.5rem;
  }
}


/* -------------------------------------------------------------------------
   5. STAT SCOREBOARD NUMBERS
   Massive animated stat displays for the facility section.
   ------------------------------------------------------------------------- */
.scoreboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}

.scoreboard__item {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}

/* Subtle dividing lines between stats */
.scoreboard__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: rgba(255, 107, 0, 0.1);
}

.scoreboard__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-stat);
  line-height: 1;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.scoreboard__number--gold {
  color: var(--accent);
}

.scoreboard__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-small);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Animate up effect class (JS triggers .visible) */
.scoreboard__number.slide-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-medium) var(--ease-broadcast),
              transform var(--duration-medium) var(--ease-broadcast);
}

.scoreboard__number.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1025px) {
  .scoreboard {
    grid-template-columns: repeat(4, 1fr);
  }

  .scoreboard__item::after {
    /* Vertical divider instead on desktop */
    bottom: 20%;
    top: 20%;
    left: auto;
    right: 0;
    width: 1px;
    height: auto;
  }

  .scoreboard__item:last-child::after {
    display: none;
  }
}


/* -------------------------------------------------------------------------
   6. TRAINER CARDS — Starting Lineup Style
   Presented with staggered vertical offsets and reveal animations.
   ------------------------------------------------------------------------- */
.lineup {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.lineup__card {
  --stagger: 0px;
  transform: translateY(var(--stagger));
  position: relative;
  transition: transform var(--duration-fast) var(--ease-broadcast);
}

/* Desktop stagger offsets */
@media (min-width: 769px) {
  .lineup__card:nth-child(2) { --stagger: 30px; }
  .lineup__card:nth-child(3) { --stagger: -15px; }
  .lineup__card:nth-child(4) { --stagger: 45px; }
  .lineup__card:nth-child(5) { --stagger: 10px; }
  .lineup__card:nth-child(6) { --stagger: 35px; }
  .lineup__card:nth-child(7) { --stagger: -10px; }
  .lineup__card:nth-child(8) { --stagger: 20px; }
  .lineup__card:nth-child(9) { --stagger: 40px; }
  .lineup__card:nth-child(10) { --stagger: -5px; }
  .lineup__card:nth-child(11) { --stagger: 25px; }
  .lineup__card:nth-child(12) { --stagger: 15px; }
}

/* Photo container */
.lineup__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: var(--bg-card);
}

.lineup__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.75);
  transition: filter var(--duration-fast) var(--ease-broadcast),
              transform var(--duration-medium) var(--ease-broadcast);
}

/* Orange bottom border on photo */
.lineup__photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
}

/* Initials fallback circle */
.lineup__initials {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* When used as standalone (no photo) */
.lineup__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-section);
}

.lineup__photo--placeholder .lineup__initials {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 80px;
  height: 80px;
  font-size: 2rem;
}

/* Card body */
.lineup__info {
  padding: 1.25rem 0.25rem;
}

.lineup__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.lineup__role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-small);
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lineup__credentials {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Hover effects */
.lineup__card:hover {
  transform: translateY(calc(var(--stagger) - 6px));
}

.lineup__card:hover .lineup__photo img {
  filter: brightness(0.72) saturate(0.9);
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .lineup {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .lineup__card {
    --stagger: 0px !important;
  }
}

@media (max-width: 480px) {
  .lineup {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* -------------------------------------------------------------------------
   7. BUTTONS
   Primary (solid orange) and secondary (ghost/outline).
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-button);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-broadcast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--primary);
  color: var(--bg-deep);
  padding: 14px 36px;
  border: 2px solid var(--primary);
}

.btn--primary:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px var(--glow-orange);
}

.btn--primary:active {
  transform: scale(0.98);
}

.btn--secondary {
  background: transparent;
  color: var(--primary);
  padding: 14px 36px;
  border: 2px solid var(--primary);
}

.btn--secondary:hover {
  background: var(--primary);
  color: var(--bg-deep);
}

.btn--secondary:active {
  transform: scale(0.98);
}

/* Small variant */
.btn--sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Large variant */
.btn--lg {
  padding: 18px 48px;
  font-size: 1.1rem;
}

/* CTA with glow pulse */
.btn--glow {
  animation: glow-cta 3s ease-in-out infinite;
}

/* Icon inside button */
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* -------------------------------------------------------------------------
   8. DYLAN HARPER ACHIEVEMENT BANNER
   A gold-accented callout celebrating the NBA draft milestone.
   ------------------------------------------------------------------------- */
.achievement-banner {
  position: relative;
  padding: 32px;
  padding-left: 36px;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.08), rgba(255, 107, 0, 0.05));
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 184, 0, 0.12);
  border-left: 4px solid var(--accent);
  overflow: hidden;
}

/* Subtle gold glow on left side */
.achievement-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  bottom: 0;
  width: 80px;
  background: radial-gradient(ellipse at left center, var(--glow-gold), transparent 70%);
  pointer-events: none;
}

.achievement-banner__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.achievement-banner__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}

.achievement-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 184, 0, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 184, 0, 0.2);
}

.achievement-banner__desc {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
}

@media (max-width: 768px) {
  .achievement-banner {
    padding: 24px 20px;
    padding-left: 24px;
  }
}


/* -------------------------------------------------------------------------
   9. MOBILE FULLSCREEN MENU OVERLAY
   Triggered by hamburger — covers the viewport with staggered link reveals.
   ------------------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 80px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-broadcast),
              visibility 0s linear 0.4s;
  background: rgba(10, 10, 15, 0.97);
  overflow-y: auto;
}

@supports (backdrop-filter: blur(1px)) {
  .mobile-menu {
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
  }
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s var(--ease-broadcast),
              visibility 0s linear 0s;
}

/* Top brand */
.mobile-menu__brand {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--text-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-menu__brand span {
  color: var(--primary);
}

/* Close button */
.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu__close svg {
  width: 28px;
  height: 28px;
}

/* Navigation links */
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease-broadcast),
              transform var(--duration-fast) var(--ease-broadcast);
  opacity: 0;
  transform: translateY(20px);
}

/* Call button in mobile menu */
.mobile-menu__call {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.mobile-menu.open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s var(--ease-snap),
              transform 0.5s var(--ease-snap),
              color var(--duration-fast) var(--ease-broadcast);
}

/* Staggered reveal delays */
.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s, 0.1s, 0s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.17s, 0.17s, 0s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.24s, 0.24s, 0s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 0.31s, 0.31s, 0s; }
.mobile-menu.open .mobile-menu__link:nth-child(5) { transition-delay: 0.38s, 0.38s, 0s; }
.mobile-menu.open .mobile-menu__link:nth-child(6) { transition-delay: 0.45s, 0.45s, 0s; }
.mobile-menu.open .mobile-menu__link:nth-child(7) { transition-delay: 0.52s, 0.52s, 0s; }

.mobile-menu__link:hover,
.mobile-menu__link.active {
  color: var(--text-white);
}

.mobile-menu__link.active {
  color: var(--primary);
}

/* Phone CTA at bottom */
.mobile-menu__cta {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}


/* -------------------------------------------------------------------------
   10. STICKY MOBILE PHONE BAR
   Orange CTA strip above the bottom nav on mobile devices.
   ------------------------------------------------------------------------- */
.phone-bar {
  display: none;
}

@media (max-width: 768px) {
  .phone-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    bottom: 56px; /* Sits directly above the mobile bottom nav */
    left: 0;
    right: 0;
    height: var(--phone-bar-height);
    background: var(--primary);
    color: var(--bg-deep);
    z-index: 999;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .phone-bar svg {
    width: 18px;
    height: 18px;
  }

  /* Adjust body padding for phone bar + nav bar */
  body {
    padding-bottom: calc(56px + var(--phone-bar-height));
  }
}


/* -------------------------------------------------------------------------
   ANIMATION KEYFRAMES
   ------------------------------------------------------------------------- */

/* LIVE indicator pulse */
@keyframes pulse-live {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.6;
  }
}

/* CTA button glow pulse */
@keyframes glow-cta {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.15);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 107, 0, 0.35),
                0 0 60px rgba(255, 107, 0, 0.1);
  }
}

/* Section header line draw */
@keyframes draw-line {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Stat number slide up */
@keyframes slide-up-stat {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ticker scroll (horizontal) */
@keyframes ticker-scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Hero letterbox reveal — bars shrink from 50vh to 5vh */
@keyframes letterbox-reveal {
  from {
    height: 50vh;
  }
  to {
    height: 5vh;
  }
}

/* Hero content clip in from below */
@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in scale (for cards, images entering) */
@keyframes fade-in-scale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide in from right (broadcast graphic style) */
@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* -------------------------------------------------------------------------
   SCROLL-TRIGGERED REVEAL ANIMATIONS
   JS adds .visible class via Intersection Observer.
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-broadcast),
              transform var(--duration-slow) var(--ease-broadcast);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--duration-slow) var(--ease-broadcast),
              transform var(--duration-slow) var(--ease-broadcast);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--duration-slow) var(--ease-broadcast),
              transform var(--duration-slow) var(--ease-broadcast);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--duration-slow) var(--ease-broadcast),
              transform var(--duration-slow) var(--ease-broadcast);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children using CSS custom properties */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }
.stagger > *:nth-child(7) { transition-delay: 0.6s; }
.stagger > *:nth-child(8) { transition-delay: 0.7s; }


/* -------------------------------------------------------------------------
   IMAGE TREATMENTS
   Heavy dark overlays to maintain the broadcast dark aesthetic.
   ------------------------------------------------------------------------- */
.img-broadcast {
  position: relative;
  overflow: hidden;
}

.img-broadcast img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.6) contrast(1.1);
  transition: filter var(--duration-medium) var(--ease-broadcast),
              transform var(--duration-medium) var(--ease-broadcast);
}

.img-broadcast::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08), rgba(10, 10, 15, 0.3));
  mix-blend-mode: overlay;
  pointer-events: none;
}

.img-broadcast:hover img {
  filter: brightness(0.45) saturate(0.75) contrast(1.1);
  transform: scale(1.04);
}


/* -------------------------------------------------------------------------
   COURT LINE SVG OVERLAYS
   Decorative basketball court lines at very low opacity.
   ------------------------------------------------------------------------- */
.court-overlay {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.04;
  z-index: 0;
}

.court-overlay svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary);
  stroke-width: 1.5;
  fill: none;
}

.court-overlay--right {
  right: -10%;
  bottom: 0;
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
}

.court-overlay--left {
  left: -10%;
  top: 10%;
  width: 30vw;
  height: 30vw;
  max-width: 400px;
  max-height: 400px;
}


/* -------------------------------------------------------------------------
   SCHEDULE / PROGRAM LIST COMPONENT
   For training schedule or program breakdowns.
   ------------------------------------------------------------------------- */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 20px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: border-color var(--duration-fast) var(--ease-broadcast),
              background var(--duration-fast) var(--ease-broadcast);
}

.schedule-item:hover {
  border-left-color: var(--primary);
  background: rgba(22, 22, 32, 0.9);
}

.schedule-item__time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.schedule-item__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--text-white);
}

.schedule-item__tag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 107, 0, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
  .schedule-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 16px 18px;
  }

  .schedule-item__tag {
    justify-self: start;
  }
}


/* -------------------------------------------------------------------------
   TESTIMONIAL / QUOTE COMPONENT
   Broadcast interview style.
   ------------------------------------------------------------------------- */
.testimonial {
  position: relative;
  padding: 32px;
  padding-left: 36px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary);
}

.testimonial__quote {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial__quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  line-height: 0;
  vertical-align: -0.6em;
  margin-right: 4px;
}

.testimonial__author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 0.06em;
}

.testimonial__role {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-top: 2px;
}


/* -------------------------------------------------------------------------
   CONTACT / LOCATION COMPONENT
   Map-adjacent info panel.
   ------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info__value {
  color: var(--text-white);
  font-size: 1rem;
}

.contact-info__value a {
  color: var(--primary);
  transition: color var(--duration-fast) var(--ease-broadcast);
}

.contact-info__value a:hover {
  color: var(--accent);
}

/* Map container */
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-card);
  border: 1px solid rgba(255, 107, 0, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: brightness(0.7) saturate(0.5) contrast(1.2);
}

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


/* -------------------------------------------------------------------------
   FOOTER
   Minimal, broadcast sign-off style.
   ------------------------------------------------------------------------- */
.footer {
  padding: clamp(40px, 8vh, 80px) 0;
  border-top: 1px solid rgba(255, 107, 0, 0.1);
  background: var(--bg-deep);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__brand span {
  color: var(--primary);
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease-broadcast);
}

.footer__link:hover {
  color: var(--text-white);
}

.footer__copy,
.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.footer-bottom p {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom .footer-quote {
  margin-top: 1rem;
  font-style: italic;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
  }
}


/* -------------------------------------------------------------------------
   SOCIAL PROOF TICKER (Optional)
   A scrolling ticker at the bottom of certain sections.
   ------------------------------------------------------------------------- */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 107, 0, 0.08);
  border-bottom: 1px solid rgba(255, 107, 0, 0.08);
}

.ticker__track {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
}

.ticker__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 3rem;
}

.ticker__item span {
  color: var(--primary);
}


/* -------------------------------------------------------------------------
   FORM ELEMENTS
   For contact forms or booking fields.
   ------------------------------------------------------------------------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 107, 0, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: 1rem;
  transition: border-color var(--duration-fast) var(--ease-broadcast),
              box-shadow var(--duration-fast) var(--ease-broadcast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 107, 0, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: 1rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A9A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}


/* -------------------------------------------------------------------------
   PRICING / PROGRAM TIER CARDS
   For membership or training package display.
   ------------------------------------------------------------------------- */
.tier-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 107, 0, 0.08);
  text-align: center;
  transition: border-color var(--duration-fast) var(--ease-broadcast),
              transform var(--duration-fast) var(--ease-broadcast);
}

.tier-card--featured {
  border-color: var(--primary);
  background: rgba(22, 22, 32, 0.85);
}

.tier-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.tier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.2);
}

.tier-card__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.tier-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 4px;
}

.tier-card__price-period {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.tier-card__features {
  text-align: left;
  margin-bottom: 2rem;
}

.tier-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tier-card__feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}


/* -------------------------------------------------------------------------
   FAQ / ACCORDION
   Broadcast-styled collapsible sections.
   ------------------------------------------------------------------------- */
.faq-item {
  border-bottom: 1px solid rgba(255, 107, 0, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--text-white);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-broadcast);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform var(--duration-fast) var(--ease-broadcast);
}

.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-broadcast),
              padding 0.4s var(--ease-broadcast);
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* -------------------------------------------------------------------------
   SCROLL-SNAP (Hero only)
   ------------------------------------------------------------------------- */
@supports (scroll-snap-type: y proximity) {
  .snap-container {
    scroll-snap-type: y proximity;
  }

  .snap-section {
    scroll-snap-align: start;
  }
}


/* -------------------------------------------------------------------------
   COLOR-MIX HOVER UTILITIES
   Modern CSS technique for dynamic hover states.
   ------------------------------------------------------------------------- */
@supports (color: color-mix(in srgb, red, blue)) {
  .btn--primary:hover {
    background: color-mix(in srgb, var(--primary) 85%, white);
  }

  .broadcast-card:hover {
    background: color-mix(in srgb, var(--bg-card) 90%, var(--primary) 10%);
  }
}


/* -------------------------------------------------------------------------
   CONTAINER QUERIES (Card components)
   Progressive enhancement for responsive cards.
   ------------------------------------------------------------------------- */
@supports (container-type: inline-size) {
  .card-container {
    container-type: inline-size;
  }

  @container (max-width: 350px) {
    .broadcast-card {
      padding: 24px 20px;
    }

    .broadcast-card__number {
      font-size: 3rem;
    }

    .broadcast-card__title {
      font-size: 1.25rem;
    }
  }

  @container (max-width: 300px) {
    .tier-card {
      padding: 28px 20px;
    }

    .tier-card__price {
      font-size: 2.8rem;
    }
  }
}


/* -------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   Desktop > 1024px | Tablet 768–1024px | Mobile < 768px
   ------------------------------------------------------------------------- */

/* Tablet: 768px – 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--asymmetric {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 600px;
  }

  .lineup {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --bottom-bar-height: 56px;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .grid--asymmetric {
    grid-template-columns: 1fr;
  }

  /* Stats: 2-column on mobile */
  .scoreboard {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 80px;
  }

  .hero::before,
  .hero::after {
    height: 3vh;
  }

  .hero__watermark {
    font-size: 30vw;
  }

  .hero__stat-strip {
    bottom: 3vh;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  /* Section header adjustments */
  .section-header__title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  /* Card full-width stacking */
  .broadcast-card {
    width: 100%;
  }

  .achievement-banner__name {
    font-size: 2rem;
  }

  /* Testimonial */
  .testimonial {
    padding: 24px 20px;
    padding-left: 24px;
  }
}

/* Small mobile: < 480px */
@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .scoreboard__item {
    padding: 1rem;
  }

  .broadcast-card {
    padding: 24px 18px;
  }

  .mobile-menu__link {
    font-size: 2rem;
  }
}


/* -------------------------------------------------------------------------
   REDUCED MOTION
   Respect user's preference for minimal animation.
   ------------------------------------------------------------------------- */
@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,
  .reveal-right,
  .reveal-left,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .hero::before,
  .hero::after {
    height: 5vh;
  }

  .hero__label,
  .hero__title,
  .hero__subtitle,
  .hero__actions {
    opacity: 1;
    transform: none;
  }

  .section-header__title {
    opacity: 1;
    transform: none;
  }

  .section-header__line {
    width: 100%;
  }

  .mobile-menu__link {
    opacity: 1;
    transform: none;
  }

  .scoreboard__number.slide-up {
    opacity: 1;
    transform: none;
  }
}


/* -------------------------------------------------------------------------
   PRINT STYLES
   Clean output for anyone who prints the page.
   ------------------------------------------------------------------------- */
@media print {
  body {
    background: white;
    color: black;
    padding-bottom: 0;
  }

  .broadcast-nav,
  .phone-bar,
  .mobile-phone-bar,
  .mobile-menu,
  .court-overlay,
  .hero__watermark,
  .broadcast-nav__live {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .section {
    padding: 2rem 0;
    break-inside: avoid;
  }

  .broadcast-card,
  .tier-card,
  .testimonial {
    border: 1px solid #ccc;
    background: white;
    break-inside: avoid;
  }

  h1, h2, h3 {
    color: black;
  }

  a {
    text-decoration: underline;
  }
}
