/* =========================
   PREMIUM HERO VIDEO BANNER
   MATCHES SITE THEME
========================= */

.hero-banner {
  position: relative;
  min-height: 100vh;
  padding-top: 132px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background: linear-gradient(
    135deg,
    var(--header-bg) 0%,
    var(--header-bg-2) 100%
  );

  color: var(--heading);
}

/* =========================
   VIDEO
========================= */

.hero-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 0;

  transform: scale(1.05);

  filter: saturate(1.05) contrast(1.05) brightness(0.85);
}

/* =========================
   OVERLAY
========================= */

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 13, 0.96) 0%,
      rgba(5, 7, 13, 0.82) 45%,
      rgba(5, 7, 13, 0.45) 100%
    ),
    radial-gradient(
      circle at 15% 20%,
      rgba(249, 147, 78, 0.24),
      transparent 35%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(127, 219, 93, 0.18),
      transparent 35%
    ),
    radial-gradient(circle at 65% 85%, rgba(6, 67, 163, 0.25), transparent 40%);
}

/* =========================
   MOTION LINES
========================= */

.hero-banner::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 2;
  pointer-events: none;

  background:
    linear-gradient(
      112deg,
      transparent 0 48%,
      rgba(249, 147, 78, 0.08) 48% 48.4%,
      transparent 48.4% 100%
    ),
    linear-gradient(
      112deg,
      transparent 0 64%,
      rgba(127, 219, 93, 0.05) 64% 64.3%,
      transparent 64.3% 100%
    );

  background-size:
    320px 100%,
    560px 100%;

  animation: heroSpeedLines 18s linear infinite;

  opacity: 0.55;
}

/* =========================
   BOTTOM GLOW
========================= */

.hero-banner::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: -180px;

  transform: translateX(-50%);

  width: 900px;
  height: 420px;

  background: radial-gradient(
    circle,
    rgba(249, 147, 78, 0.18) 0%,
    rgba(127, 219, 93, 0.12) 35%,
    rgba(6, 67, 163, 0.08) 65%,
    transparent 100%
  );

  filter: blur(90px);

  z-index: 1;
}

/* =========================
   CONTENT
========================= */

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
}

/* =========================
   TAG
========================= */

/* =========================
   RHOMBUS HERO TAG
========================= */

.hero-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 22px;
  margin-bottom: 24px;

  color: #fff;

  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  overflow: hidden;
  isolation: isolate;
}

/* Outer Frame */

.hero-tag::before {
  content: "";

  position: absolute;
  inset: 0;

  background: rgba(10, 18, 28, 0.95);

  border: 1px solid rgba(255, 255, 255, 0.08);

  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);

  z-index: -2;
}

/* Inner Panel */

.hero-tag::after {
  content: "";

  position: absolute;
  inset: 6px;

  background: var(--gradient-brand);

  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);

  z-index: -1;
}

/* Left Accent */

.hero-tag span::before {
  content: "";

  position: absolute;

  left: -12px;
  top: 50%;

  width: 3px;
  height: 18px;

  transform: translateY(-50%) skewX(-14deg);

  background: #fff;
}

/* =========================
   TITLE
========================= */

.hero-content h1 {
  margin: 0 0 24px;

  max-width: 900px;

  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.9;
  font-weight: 900;

  letter-spacing: -0.06em;
  text-transform: uppercase;

  color: #fff;

  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero-content h1 span {
  background: var(--gradient-brand);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   DESCRIPTION
========================= */

.hero-content p {
  max-width: 650px;

  margin: 0 0 38px;

  color: rgba(255, 255, 255, 0.78);

  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;

  text-align: left;
}

/* =========================
   ACTIONS
========================= */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* =========================
   PRIMARY BUTTON
========================= */

.hero-actions .btn-primary {
  min-width: 180px;
}

/* =========================
   GLASS BUTTON
========================= */

.btn-outline-light {
  min-width: 180px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.12);

  color: #fff;

  backdrop-filter: blur(14px);

  box-shadow: none;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);

  border-color: rgba(255, 255, 255, 0.2);

  transform: translateY(-3px);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* =========================
   STATS ROW
========================= */

.hero-stats {
  display: flex;
  gap: 40px;

  margin-top: 50px;
  flex-wrap: wrap;
}

.hero-stat h3 {
  margin: 0;

  font-size: 2rem;
  font-weight: 800;

  color: #fff;
}

.hero-stat p {
  margin: 0;

  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);

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

/* =========================
   ANIMATION
========================= */

@keyframes heroSpeedLines {
  from {
    background-position:
      0 0,
      0 0;
  }

  to {
    background-position:
      640px 0,
      960px 0;
  }
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
  .hero-banner {
    padding-top: 120px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .hero-stats {
    gap: 25px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .hero-banner {
    min-height: 92vh;
    padding-top: 110px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 13, 0.75) 0%,
        rgba(5, 7, 13, 0.88) 55%,
        rgba(5, 7, 13, 0.98) 100%
      ),
      radial-gradient(
        circle at 20% 15%,
        rgba(249, 147, 78, 0.18),
        transparent 35%
      );
  }

  .hero-content h1 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
    line-height: 0.95;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    margin-top: 70px;
    min-height: 80vh;
    align-items: flex-end;
    padding-bottom: 40px;
  }

  .hero-tag,
  .hero-content h1,
  .hero-content p,
  .hero-stats,
  .btn-outline-light {
    display: none;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions {
    position: absolute;
    bottom: -225px;
    width: 100%;
    justify-content: center;
    display: grid;
  }

  .hero-actions .btn-primary {
    width: auto;
    min-width: 240px;
  }

  .hero-overlay {
    display: none;
  }
}

/* =========================
   PREMIUM SPORTS TICKER
========================= */

.sports-ticker {
  position: relative;

  height: 95px;

  overflow: hidden;

  display: flex;
  align-items: center;

  background:
    radial-gradient(circle at center, rgba(6, 67, 163, 0.15), transparent 70%),
    linear-gradient(180deg, #111827 0%, #0f1624 100%);

  border-top: 1px solid rgba(127, 219, 93, 0.15);
  border-bottom: 1px solid rgba(249, 147, 78, 0.15);
}

/* Top Gradient Line */

.sports-ticker::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background: var(--gradient-brand);

  z-index: 3;
}

/* Moving Shine */

.sports-ticker::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 45%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 55%,
    transparent 100%
  );

  animation: tickerShine 8s linear infinite;

  pointer-events: none;
  z-index: 2;
}

/* =========================
   TRACK
========================= */

.sports-ticker-track {
  display: flex;
  align-items: center;

  white-space: nowrap;
  width: max-content;

  will-change: transform;
}

/* =========================
   ITEMS
========================= */
.sports-ticker-track span {
  background: linear-gradient(
    90deg,
    var(--secondary) 0%,
    #9be87a 30%,
    #c4f3b2 50%,
    #ffb06a 75%,
    var(--primary) 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);

  font-family: "Digital Sans EF Medium", sans-serif;

  filter: drop-shadow(0 4px 10px rgba(127, 219, 93, 0.15))
    drop-shadow(0 6px 18px rgba(249, 147, 78, 0.15));
}

.sports-ticker-track span:hover {
  transform: scale(1.04);
}

.sports-ticker::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background: linear-gradient(
    90deg,
    var(--secondary),
    var(--primary),
    var(--secondary)
  );
}
/* =========================
   DIAMOND SEPARATOR
========================= */
.ticker-separator {
  width: 12px;
  height: 12px;

  transform: rotate(45deg);

  background: linear-gradient(135deg, var(--secondary), var(--primary));

  box-shadow:
    0 0 12px rgba(127, 219, 93, 0.45),
    0 0 20px rgba(249, 147, 78, 0.35);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes tickerShine {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .sports-ticker {
    height: 70px;
  }

  .sports-ticker-track span {
    font-size: 1.7rem;
    margin-right: 50px;
  }

  .ticker-separator {
    width: 8px;
    height: 8px;

    margin-right: 50px;
  }
}

/* =========================
   SKATING DISCIPLINES
========================= */

.discipline-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at top, rgba(6, 67, 163, 0.15), transparent 55%),
    #0f1624;
}

/* =========================
   HEADER
========================= */

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.section-heading h2 {
  color: #fff;
  margin-bottom: 15px;
}

.section-heading h2 span {
  background: linear-gradient(90deg, var(--secondary), var(--primary));

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: auto;
  text-align: center;
}

/* =========================
   GRID
========================= */

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* =========================
   CARD
========================= */

.discipline-card {
  position: relative;

  min-height: 750px;

  overflow: hidden;

  border-radius: 28px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  background: #111827;

  transition: 0.5s ease;

  isolation: isolate;
}

.discipline-card:hover {
  transform: translateY(-10px);
}

/* =========================
   BACKGROUND IMAGE
========================= */

.discipline-bg-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: 1s ease;

  z-index: 1;
}

.discipline-card:hover .discipline-bg-image {
  transform: scale(1.08);
}

/* =========================
   OVERLAYS
========================= */

.discipline-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.inline-card .discipline-overlay {
  background: linear-gradient(
    180deg,
    rgba(127, 219, 93, 0.15) 0%,
    rgba(15, 22, 36, 0.2) 35%,
    rgba(15, 22, 36, 0.95) 100%
  );
}

.quad-card .discipline-overlay {
  background: linear-gradient(
    180deg,
    rgba(249, 147, 78, 0.15) 0%,
    rgba(15, 22, 36, 0.2) 35%,
    rgba(15, 22, 36, 0.95) 100%
  );
}

/* Sports Light Sweep */

.discipline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    120deg,
    transparent 0 55%,
    rgba(255, 255, 255, 0.05) 58%,
    transparent 62%
  );
  pointer-events: none;
}

/* =========================
   WATERMARK
========================= */
.discipline-watermark {
  position: absolute;
  left: -10px;
  top: 40px;
  z-index: 4;
  font-size: clamp(6rem, 8vw, 10rem);
  font-weight: 900;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  pointer-events: none;
}

/* =========================
   BADGE
========================= */

.discipline-badge {
  position: absolute;

  top: 30px;
  right: 30px;

  z-index: 5;

  padding: 10px 16px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 999px;

  color: #fff;

  font-size: 0.8rem;
  font-weight: 700;

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

/* =========================
   CONTENT
========================= */

.discipline-content {
  position: absolute;

  left: 35px;
  right: 35px;
  bottom: 35px;

  z-index: 6;
}

.discipline-content h3 {
  color: #fff;

  font-size: 2.4rem;

  margin-bottom: 12px;
}

.discipline-content p {
  color: rgba(255, 255, 255, 0.75);

  margin-bottom: 24px;

  max-width: 32ch;
}

/* =========================
   INLINE ACCENT
========================= */

.inline-card {
  box-shadow:
    0 0 0 1px rgba(127, 219, 93, 0.15),
    0 25px 60px rgba(127, 219, 93, 0.08);
}

/* =========================
   QUAD ACCENT
========================= */

.quad-card {
  box-shadow:
    0 0 0 1px rgba(249, 147, 78, 0.15),
    0 25px 60px rgba(249, 147, 78, 0.08);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 991px) {
  .discipline-overlay {
    display: none;
  }

  .discipline-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .discipline-card {
    min-height: 520px;
    border-radius: 22px;
  }

  .discipline-watermark {
    font-size: 4rem;
    top: 20px;
    left: 15px;
  }

  .discipline-badge {
    top: 18px;
    right: 18px;

    font-size: 0.7rem;

    padding: 8px 12px;
  }

  .discipline-content {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .discipline-content h3 {
    font-size: 1.8rem;
  }

  .discipline-content p {
    font-size: 0.95rem;
  }
}

/* =========================
   BENEFITS
========================= */

.benefits-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 18% 16%,
      rgba(127, 219, 93, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 86% 22%,
      rgba(249, 147, 78, 0.15),
      transparent 28%
    ),
    linear-gradient(180deg, #0f1624 0%, #0a1220 100%);
}

.benefits-section::before,
.benefits-section::after {
  content: "";

  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.benefits-section::before {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: 120px;

  background: rgba(6, 67, 163, 0.24);
}

.benefits-section::after {
  width: 320px;
  height: 320px;
  right: -110px;
  top: 80px;

  background: rgba(249, 147, 78, 0.18);
}

.benefits-section .container {
  position: relative;
  z-index: 2;
  padding-inline: clamp(18px, 3vw, 32px);
}

.benefits-header {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.benefits-header h2 {
  color: #fff;
  margin-bottom: 16px;
}

.benefits-header h2 span {
  background: linear-gradient(90deg, var(--secondary), var(--primary));

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-header p {
  max-width: 620px;
  margin: 0 auto;

  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.benefits-layout {
  display: grid;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.benefits-phone {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-shell {
  position: relative;

  width: min(100%, 370px);
  padding: 12px;

  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.05)
  );

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(127, 219, 93, 0.08);
}

.phone-shell::before {
  content: "";

  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;

  border-radius: 42px;

  background: linear-gradient(
    140deg,
    rgba(6, 67, 163, 0.26),
    rgba(249, 147, 78, 0.16)
  );

  filter: blur(30px);
  opacity: 0.7;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;

  width: 112px;
  height: 26px;

  transform: translateX(-50%);

  border-radius: 0 0 18px 18px;
  background: rgba(4, 9, 16, 0.92);
  z-index: 3;
}

.phone-screen {
  position: relative;

  width: 100%;
  padding: 26px 22px 20px;

  border-radius: 32px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at top right,
      rgba(249, 147, 78, 0.18),
      transparent 28%
    ),
    linear-gradient(180deg, #182336 0%, #101827 48%, #0b111d 100%);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-screen::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    transparent 26%
  );

  pointer-events: none;
}

.app-status {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 24px;

  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-status strong {
  color: #fff;
  font-size: 0.74rem;
}

.phone-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;

  margin-bottom: 22px;
  color: #fff;
}

.phone-top h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 1.6rem;
}

.phone-label {
  display: inline-flex;
  margin: 0;

  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 74px;
  min-height: 34px;
  padding: 0 14px;

  border-radius: 999px;
  border: 1px solid rgba(127, 219, 93, 0.2);

  background: rgba(127, 219, 93, 0.12);
  color: #d8f9c8;

  font-size: 0.78rem;
  font-weight: 700;
}

.progress-ring {
  position: relative;

  width: 196px;
  height: 196px;

  margin: 0 auto 22px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: conic-gradient(
    from 210deg,
    rgba(255, 255, 255, 0.08) 0deg 34deg,
    var(--secondary) 34deg 198deg,
    var(--primary) 198deg 314deg,
    rgba(255, 255, 255, 0.08) 314deg 360deg
  );

  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.03),
    0 20px 45px rgba(0, 0, 0, 0.28);
}

.progress-ring::before {
  content: "";

  position: absolute;
  inset: 16px;

  border-radius: 50%;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.08),
      transparent 40%
    ),
    linear-gradient(180deg, #172133 0%, #0a1220 100%);
}

.progress-ring-core {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.progress-ring-core strong {
  color: #fff;
  font-size: 2.3rem;
  line-height: 1;
}

.progress-ring-core span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 18px;
}

.phone-highlights span {
  display: inline-flex;
  align-items: center;

  min-height: 34px;
  padding: 0 14px;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);

  font-size: 0.76rem;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;

  margin-bottom: 18px;
}

.stat-card {
  position: relative;

  padding: 16px 14px 15px;

  border-radius: 20px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );

  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stat-card::before {
  content: "";

  position: absolute;
  left: 14px;
  top: 14px;

  width: 26px;
  height: 3px;

  border-radius: 999px;
  background: var(--gradient-brand);
}

.stat-kicker {
  display: block;
  margin-bottom: 14px;

  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-card small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.phone-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 16px;
  margin-bottom: 16px;

  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);

  background: linear-gradient(
    90deg,
    rgba(6, 67, 163, 0.24),
    rgba(249, 147, 78, 0.14)
  );
}

.phone-cta strong {
  display: block;
  margin-top: 6px;

  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
}

.phone-cta-badge {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 38px;
  padding: 0 14px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.12);
  color: #fff;

  font-size: 0.78rem;
  font-weight: 700;
}

.phone-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.phone-nav-item {
  width: 8px;
  height: 8px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.phone-nav-item.active {
  width: 28px;
  background: var(--gradient-brand);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card {
  position: relative;
  overflow: hidden;

  padding: 26px;

  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );

  backdrop-filter: blur(12px);
  transition:
    transform 0.35s var(--premium-ease),
    border-color 0.35s var(--premium-ease),
    box-shadow 0.35s var(--premium-ease);
}

.benefit-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06),
    transparent 32%
  );

  pointer-events: none;
}

.benefit-card::after {
  content: "";

  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;

  height: 3px;

  border-radius: 999px;
  background: var(--gradient-brand);
  opacity: 0.85;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(127, 219, 93, 0.18);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(127, 219, 93, 0.08);
}

.benefit-card-featured {
  background:
    radial-gradient(
      circle at right top,
      rgba(249, 147, 78, 0.16),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)
    );
}

.benefit-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  margin-bottom: 18px;
}

.benefit-index,
.benefit-chip,
.benefit-metric {
  display: inline-flex;
  align-items: center;

  min-height: 34px;
  padding: 0 14px;

  border-radius: 999px;

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-index {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.benefit-chip {
  background: rgba(127, 219, 93, 0.12);
  color: #d5f7c6;
}

.benefit-icon {
  width: 64px;
  height: 64px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  background: linear-gradient(
    135deg,
    rgba(6, 67, 163, 0.18),
    rgba(249, 147, 78, 0.14)
  );
}

.benefit-card i {
  font-size: 1.5rem;

  background: linear-gradient(90deg, var(--secondary), var(--primary));

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-card h3 {
  color: #fff;
  margin-bottom: 12px;

  font-size: 1.35rem;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;

  text-align: left;
}

.benefit-metric {
  padding-inline: 0;
  min-height: auto;

  color: rgba(255, 255, 255, 0.62);
  background: transparent;
}

@media (max-width: 1199px) {
  .benefits-layout {
    gap: 36px;
  }
}

@media (max-width: 991px) {
  .benefits-header {
    margin-bottom: 44px;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .benefits-phone {
    order: -1;
  }

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

@media (max-width: 768px) {
  .benefits-section {
    padding-block: 72px;
  }

  .benefits-header {
    text-align: left;
    margin-bottom: 28px;
  }

  .benefits-header p {
    margin: 0;
    text-align: left;
  }

  .phone-shell {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border-radius: 34px;
  }

  .phone-screen {
    padding: 24px 16px 18px;
    border-radius: 26px;
  }

  .app-status {
    margin-bottom: 20px;
  }

  .phone-top h3 {
    font-size: 1.35rem;
  }

  .phone-pill {
    min-width: 66px;
    min-height: 32px;
    padding-inline: 12px;
  }

  .progress-ring {
    width: 168px;
    height: 168px;
  }

  .progress-ring::before {
    inset: 14px;
  }

  .progress-ring-core strong {
    font-size: 2rem;
  }

  .phone-highlights {
    gap: 8px;
  }

  .phone-highlights span,
  .benefit-index,
  .benefit-chip {
    font-size: 0.7rem;
  }

  .stats-grid {
    gap: 10px;
  }

  .stat-card {
    padding: 14px 12px;
    border-radius: 18px;
  }

  .phone-cta {
    padding: 14px;
  }

  .phone-cta strong {
    font-size: 0.88rem;
  }

  .phone-cta-badge {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 0.72rem;
  }

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

  .benefit-card {
    grid-column: auto;
  }

  .benefit-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .benefit-card h3 {
    font-size: 1.2rem;
  }

  .benefit-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 420px) {
  .app-status {
    font-size: 0.66rem;
  }

  .phone-top {
    align-items: center;
  }

  .phone-top h3 {
    font-size: 1.2rem;
  }

  .progress-ring {
    width: 152px;
    height: 152px;
  }

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

  .phone-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   IMAGE BANNER
========================= */

.image-banner {
  position: relative;
  padding: 0;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.image-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}

.image-banner:hover .image-banner-img {
  transform: scale(1.05);
}

/* Premium Overlay */

.image-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Mobile */

@media (max-width: 768px) {
  .image-banner {
    height: 220px;
  }
}

/* =========================
   SPORTS ABOUT
========================= */

.about-sports {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at top right,
      rgba(127, 219, 93, 0.08),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(249, 147, 78, 0.08),
      transparent 40%
    ),
    #0f1624;
}

/* Layout */

.about-sports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* =========================
   IMAGE
========================= */

.about-sports-image {
  position: relative;
}

.about-image-wrap {
  position: relative;

  overflow: hidden;

  border-radius: 28px;

  aspect-ratio: 4 / 5;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.8s ease;
}

.about-image-wrap:hover img {
  transform: scale(1.05);
}

/* Floating Stat */

.about-floating-stat {
  position: absolute;

  bottom: 30px;
  right: -30px;

  padding: 24px;

  min-width: 180px;

  border-radius: 24px;

  backdrop-filter: blur(15px);

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-floating-stat strong {
  display: block;

  font-size: 2.5rem;
  font-weight: 900;

  background: linear-gradient(90deg, var(--secondary), var(--primary));

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-floating-stat span {
  color: rgba(255, 255, 255, 0.75);
}

/* =========================
   CONTENT
========================= */

.about-sports-content h2 {
  color: #fff;

  margin-bottom: 20px;

  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 0.95;
}

.about-sports-content h2 span {
  display: block;

  background: linear-gradient(90deg, var(--secondary), var(--primary));

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-lead {
  font-size: 1.2rem;
  color: #fff;

  margin-bottom: 20px;
}

/* Features */

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 16px;

  margin: 35px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-feature i {
  font-size: 1.2rem;

  background: linear-gradient(90deg, var(--secondary), var(--primary));

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-feature span {
  color: #fff;
  font-weight: 600;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
  .about-sports-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-sports-content {
    text-align: center;
  }

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

  .about-floating-stat {
    right: 15px;
    bottom: 15px;

    min-width: 150px;

    padding: 18px;
  }

  .about-floating-stat strong {
    font-size: 2rem;
  }
}

/* =========================
   SEASON CALENDAR
========================= */

.season-calendar {
  position: relative;
  overflow: hidden;

  background: #080b12;
}

.season-calendar::before {
  content: "2026";

  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  font-size: clamp(12rem, 25vw, 26rem);
  font-weight: 900;

  color: rgba(255, 255, 255, 0.02);

  pointer-events: none;
}

/* Grid */

.season-calendar-grid {
  display: grid;

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

  gap: 18px;

  position: relative;
  z-index: 2;
}

/* Month Card */

.calendar-month {
  position: relative;

  min-height: 180px;

  padding: 24px;

  border-radius: 24px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.05);

  transition: 0.35s ease;
}

.calendar-month:hover {
  transform: translateY(-6px);

  border-color: rgba(127, 219, 93, 0.25);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* Active Month */

.calendar-month.featured {
  background: linear-gradient(
    135deg,
    rgba(127, 219, 93, 0.08),
    rgba(249, 147, 78, 0.08)
  );

  border-color: rgba(127, 219, 93, 0.2);
}

/* Month */

.month-name {
  display: block;

  margin-bottom: 16px;

  color: var(--secondary);

  font-size: 0.85rem;
  font-weight: 800;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Heading */

.calendar-month h3 {
  color: #fff;

  font-size: 1.25rem;
  font-weight: 700;

  margin-bottom: 10px;
}

.calendar-month p {
  color: rgba(255, 255, 255, 0.65);

  margin: 0;
}

/* Accent Bar */

.calendar-month::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 4px;
  height: 100%;

  border-radius: 4px;

  background: linear-gradient(180deg, var(--secondary), var(--primary));
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
  .season-calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
  .season-calendar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .calendar-month {
    min-height: auto;
    padding: 20px;
  }
}

/* =========================
   CARD IMAGE
========================= */

.calendar-month {
  position: relative;
  overflow: hidden;
}

.calendar-month::after {
  content: "";

  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  opacity: 0.25;

  transition: 0.5s ease;

  z-index: 0;
}

.calendar-month:hover::after {
  transform: scale(1.08);
  opacity: 0.35;
}

/* Content Above Image */

.calendar-month > * {
  position: relative;
  z-index: 2;
}

/* Dark Overlay */

.calendar-month::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(8, 11, 18, 0.25),
    rgba(8, 11, 18, 0.85)
  );

  z-index: 1;
}

.month-jan::after {
  background-image: url("https://images.unsplash.com/photo-1517649763962-0c623066013b");
}

.month-feb::after {
  background-image: url("https://images.unsplash.com/photo-1518611012118-696072aa579a");
}

.month-mar::after {
  background-image: url("https://images.unsplash.com/photo-1547347298-4074fc3086f0");
}

.month-apr::after {
  background-image: url("https://images.unsplash.com/photo-1483721310020-03333e577078");
}

.month-may::after {
  background-image: url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438");
}

.month-jun::after {
  background-image: url("https://images.unsplash.com/photo-1517838277536-f5f99be501cd");
}

.month-jul::after {
  background-image: url("https://images.unsplash.com/photo-1526676037777-05a232554f77");
}

.month-aug::after {
  background-image: url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48");
}

.month-sep::after {
  background-image: url("https://images.unsplash.com/photo-1517832606299-7ae9b720a186");
}

.month-oct::after {
  background-image: url("https://images.unsplash.com/photo-1517838277536-f5f99be501cd");
}

.month-nov::after {
  background-image: url("https://images.unsplash.com/photo-1552674605-db6ffd4facb5");
}

.month-dec::after {
  background-image: url("https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b");
}

/* =========================
   VIDEO PROMO BANNER
========================= */
.promo-banner {
  position: relative;
  height: 650px;
  overflow: hidden;
  background: #080b12;
}

/* =========================
   VIDEO
========================= */

.promo-video {
  padding: 15px;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* =========================
   OVERLAY
========================= */

.promo-overlay {
  position: absolute;
  inset: 0;

  z-index: 2;

  background:
    linear-gradient(180deg, rgba(8, 11, 18, 0.25), rgba(8, 11, 18, 0.75)),
    linear-gradient(90deg, rgba(8, 11, 18, 0.55), rgba(8, 11, 18, 0.15));
}

/* =========================
   CONTENT
========================= */

.promo-content {
  position: relative;
  z-index: 3;

  height: 650px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Subtitle */

.promo-subtitle {
  margin-bottom: 18px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 0.95rem;
  font-weight: 700;

  letter-spacing: 0.35em;

  text-transform: uppercase;
}

/* Heading */

.promo-content h2 {
  margin: 0 0 35px;
  color: #fff;
  text-align: center;
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.03em;
  transform: skewX(-8deg);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

/* Button */

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  height: 58px;

  padding: 0 40px;

  text-decoration: none;

  color: #fff;

  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.15em;

  border: 2px solid rgba(255, 255, 255, 0.8);

  transform: skewX(-15deg);

  transition: 0.35s ease;
}

.promo-btn:hover {
  background: linear-gradient(90deg, var(--secondary), var(--primary));

  border-color: transparent;

  transform: skewX(-15deg) translateY(-4px);
}

.promo-btn span {
  transform: skewX(15deg);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .promo-banner {
    height: 400px;
  }

  .promo-content {
    height: 420px;
  }

  .promo-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
  }

  .promo-content h2 {
    margin-bottom: 24px;
  }

  .promo-btn {
    min-width: 180px;
    height: 50px;

    font-size: 0.8rem;
  }
}

/* =========================
   STATS
========================= */

.stats-section {
  position: relative;
  overflow: hidden;

  background: #080b12;
}

.stats-section::before {
  content: "WIN";

  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  font-size: clamp(12rem, 25vw, 25rem);
  font-weight: 900;

  color: rgba(255, 255, 255, 0.02);

  pointer-events: none;
}

/* =========================
   GRID
========================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* =========================
   CARD
========================= */

.stat-card {
  position: relative;

  min-height: 260px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  overflow: hidden;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

/* Featured */

.stat-card.featured {
  background:
    radial-gradient(
      circle at top right,
      rgba(127, 219, 93, 0.1),
      transparent 45%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
}

/* Number */

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

  font-weight: 900;

  line-height: 1;

  margin-bottom: 14px;

  background: linear-gradient(90deg, var(--secondary), var(--primary));

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Label */

.stat-label {
  color: #fff;

  font-size: 0.95rem;
  font-weight: 700;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Hover */

.stat-card:hover {
  transform: translateY(-8px);

  transition: 0.35s ease;
}

/* =========================
   MOBILE
========================= */

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

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .stat-card {
    min-height: 180px;
  }

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

/* =========================
   SHORTS STRIP
========================= */

.shorts-section {
    background: #080b12;
}

.shorts-slider {
    display: flex;
    gap: 16px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;
}

.shorts-slider::-webkit-scrollbar {
    display: none;
}

/* Card */

.short-card {
    flex: 0 0 320px;

    height: 570px;

    overflow: hidden;

    scroll-snap-align: start;

    text-decoration: none;

    background: #111827;

    transition: .4s ease;
}

.short-card:hover {
    transform: translateY(-8px);
}

/* Thumbnail */

.short-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: .7s ease;
}

.short-card:hover img {
    transform: scale(1.05);
}

/* Mobile */

@media (max-width:768px) {

    .short-card {
        flex: 0 0 240px;
        height: 430px;
    }

}

.video-modal {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,.85);

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    z-index: 9999;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;

    width: 90%;
    max-width: 900px;

    aspect-ratio: 16 / 9;
}

.video-modal iframe {
    width: 100%;
    height: 100%;

    border: 0;
}

.video-close {
    position: absolute;

    top: -50px;
    right: 0;

    width: 40px;
    height: 40px;

    border: 0;

    background: #fff;

    cursor: pointer;
}