/* ============================================================
   TRACKET — Landing Page Styles
   ============================================================ */

:root {
  --off-black:    #0e0e0c;
  --off-white:    #F5F5F7;
  --surface:      #ffffff;
  --lime:         #CCFF00;
  --gray:         #8a8a82;
  --border:       rgba(14,14,12,0.08);
  --border-light: rgba(243,242,240,0.1);
  --serif:        'Instrument Serif', Georgia, serif;
  --sans:         'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  letter-spacing: -0.02em;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--off-white);
  color: var(--off-black);
  overflow-x: hidden;
}

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

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

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* ============================================================
   01 — NAVIGATION
   ============================================================ */

.section-nav {
  position: fixed;
  top: 20px;
  left: 48px;
  right: 48px;
  max-width: 860px;
  margin-inline: auto;
  z-index: 100;
  height: 52px;
  border-radius: 999px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(243,242,240,0.90);
  border: 1px solid rgba(14,14,12,0.1);
  box-shadow: 0 2px 20px rgba(14,14,12,0.07);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.section-nav.loaded {
  opacity: 1;
  transform: translateY(0);
}

.section-nav.scrolled {
  box-shadow: 0 4px 32px rgba(14,14,12,0.11);
}

.nav-inner {
  padding: 0 8px 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--off-black);
}

.nav-logo span {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.logo-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(14,14,12,0.7);
  text-decoration: none;
  position: relative;
  transition: color 200ms ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--off-black);
  transition: width 200ms ease;
}

.nav-links a:hover {
  color: var(--off-black);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--off-white);
  background: var(--off-black);
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background 380ms cubic-bezier(0.4, 0, 0.2, 1), color 380ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--lime);
  color: var(--off-black);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  background: var(--off-black);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: white;
  transition: transform 250ms ease, opacity 250ms ease;
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--off-black);
  z-index: 98;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  opacity: 0;
  transform: translateY(-16px);
  transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1), opacity 300ms ease;
}

.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(243,242,240,0.08);
}

.nav-drawer-links a {
  font-family: var(--serif);
  font-size: clamp(32px, 8vw, 44px);
  font-weight: 500;
  color: var(--off-white);
  text-decoration: none;
  padding: 20px 0;
  border-bottom: 1px solid rgba(243,242,240,0.08);
  letter-spacing: -0.02em;
  transition: color 200ms ease;
}

.nav-drawer-links a:hover {
  color: var(--lime);
}

.nav-drawer .nav-cta {
  align-self: flex-start;
  margin-top: 44px;
  font-size: 15px;
  padding: 12px 24px;
  background: var(--lime);
  color: var(--off-black);
}

/* Hamburger → X when drawer is open */
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   02 — HERO
   ============================================================ */

.section-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #111110;
  will-change: clip-path;
}

.hero-bg {
  position: absolute;
  inset: -20px;
  background: url('images/Hero.png') center / cover no-repeat;
  z-index: 0;
  opacity: 0;
  animation: heroImageIn 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroImageIn {
  from { opacity: 0; filter: blur(16px); }
  to   { opacity: 1; filter: blur(0px);  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-left: 8vw;
  padding-right: 8vw;
  max-width: 700px;
}

.hero-overline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 900ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0ms;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 92px);
  color: white;
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 500;
  text-shadow: 0 2px 40px rgba(0,0,0,0.7), 0 0 12px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeInUp 900ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 120ms;
}

.hero-subheadline {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.9);
  max-width: 420px;
  margin-top: 20px;
  line-height: 1.6;
  text-shadow: 0 1px 32px rgba(0,0,0,0.8), 0 0 10px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeInUp 900ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 260ms;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 900ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 400ms;
}

.btn-primary {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--off-black);
  background: var(--lime);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 200ms ease, filter 200ms ease;
}

.btn-primary:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

.btn-secondary {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.8);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.6);
  transition: width 200ms ease;
}

.btn-secondary:hover::after {
  width: 100%;
}


@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); filter: blur(10px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0px);  }
}

/* ============================================================
   03 — THE HOOK
   ============================================================ */

.section-hook {
  background: var(--off-white);
  padding: 140px 48px;
  overflow: hidden;
}

/* — Header — */
.hook-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.hook-sport-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.hook-sport-pills .label-pill {
  font-size: 11px;
  letter-spacing: 0.15em;
}

.hook-headline {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1.1;
  color: var(--off-black);
  margin-top: 20px;
  font-weight: 500;
}

.hook-body {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--gray);
  margin-top: 20px;
  line-height: 1.7;
}

/* — Alternating cards — */
.hook-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.hook-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  align-items: center;
}

.hook-feature-row--reverse {
  direction: rtl;
}

.hook-feature-row--reverse > * {
  direction: ltr;
}

.hook-feature-img {
  position: relative;
  overflow: hidden;
  height: 480px;
  background: #ffffff;
}

/* Portrait phones — sized by narrow dimension (width), bottom clips */
.hook-feature-img img {
  position: absolute;
  width: 270px;
  height: auto;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  /* PNG-aware shadow — light from top-left, shadow falls bottom-right */
filter: 
  drop-shadow(-2px -2px 4px rgba(255,255,255,0.7)) 
  drop-shadow(8px 8px 10px rgba(0,0,0,0.15)) 
  drop-shadow(16px 16px 24px rgba(0,0,0,0.25));

}

/* Landscape Capture — sized by narrow dimension (height) to match portrait frame width,
   overflows left and right so sides clip */
.hook-feature-img--landscape img {
  width: auto;
  max-width: none;
  height: 270px;
  top: 50%;
  left: auto;
  right: calc(50% - 135px); /* right edge aligned with portrait phone right edge */
  transform: translateY(-50%);
}

.hook-feature-text {
  padding: 56px 52px;
}

.hook-feature-text .label-pill {
  background: var(--off-black);
  color: rgba(243,242,240,0.75);
}

.hook-feature-title {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--off-black);
  margin-top: 16px;
  font-weight: 500;
  line-height: 1.15;
}

.hook-feature-title.italic {
  font-style: normal;
}

.hook-feature-body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--gray);
  line-height: 1.75;
  margin-top: 14px;
}

.label-pill {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  background: var(--off-black);
  color: var(--lime);
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.coming-soon-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.02em;
  background: rgba(0,0,0,0.08);
  color: var(--gray);
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 16px;
}

/* ============================================================
   04 — STATS BAR
   ============================================================ */

.section-stats {
  background: var(--off-black);
  padding: 80px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.stat-item {
  padding: 0 40px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(243,242,240,0.1);
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  padding-right: 0;
}

.stat-number {
  font-family: var(--serif);
  font-size: 72px;
  color: white;
  line-height: 1.0;
  font-weight: 500;
}

.stat-number.lime {
  color: var(--lime);
}

.stat-number.lime-serif-italic {
  font-style: italic;
  font-size: 48px;
  color: var(--lime);
}

.stat-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(243,242,240,0.5);
  margin-top: 8px;
  line-height: 1.5;
}

/* ============================================================
   05 — VISUAL SHOWCASE
   ============================================================ */

.section-showcase {
  background: var(--off-white);
  padding: 140px 48px;
  text-align: center;
  overflow: hidden;
}

.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  background: var(--off-black);
  color: var(--lime);
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.showcase-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  color: var(--off-black);
  max-width: 700px;
  margin: 16px auto 0;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.showcase-phone-wrap {
  position: relative;
  display: inline-block;
  margin-top: 64px;
}

.court-lines-bg {
  position: absolute;
  inset: -60px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.court-lines-bg svg {
  width: 100%;
  height: 100%;
  opacity: 0.04;
}

.phone-mockup {
  position: relative;
  z-index: 1;
  width: 280px;
  transform: rotate(6deg);
  filter: drop-shadow(0 40px 80px rgba(14,14,12,0.12));
  display: inline-block;
}

.phone-frame {
  background: var(--off-black);
  border-radius: 44px;
  padding: 12px;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: var(--off-black);
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 390 / 844;
  width: 100%;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-screen-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 12px;
  letter-spacing: -0.01em;
}

.showcase-small-mockups {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.small-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.small-mockup:first-child .small-phone-frame {
  transform: perspective(600px) rotateY(8deg);
}

.small-mockup:last-child .small-phone-frame {
  transform: perspective(600px) rotateY(-8deg);
}

.small-phone-frame {
  background: var(--off-black);
  border-radius: 28px;
  padding: 8px;
  width: 140px;
  filter: drop-shadow(0 16px 32px rgba(14,14,12,0.1));
}

.small-phone-screen {
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 390 / 844;
  width: 100%;
}

.small-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-phone-screen-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gray);
}

.mockup-caption {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--gray);
}

/* ============================================================
   06 — SPORT SELECTOR
   ============================================================ */

.section-sports {
  background: var(--off-white);
  padding: 120px 48px;
  text-align: center;
}

.sports-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 60px);
  color: var(--off-black);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.sports-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.sport-card {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  min-height: 360px;
  position: relative;
  transition: transform 250ms ease, box-shadow 250ms ease, filter 250ms ease;
}

.sport-card:not(.selected) {
  filter: saturate(0.5) brightness(0.85);
}

.sport-card.selected {
  border: 2px solid var(--lime);
  filter: none;
}

.sport-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(14,14,12,0.15);
}

.sport-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.sport-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,14,12,0.45);
}

.sport-placeholder-bg {
  position: absolute;
  inset: 0;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray);
}

.sport-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 1;
  text-align: left;
}

.sport-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: white;
  text-transform: uppercase;
}

.sport-status-available {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.01em;
  background: var(--lime);
  color: var(--off-black);
  border-radius: 999px;
  padding: 4px 12px;
  margin-top: 8px;
}

.sport-status-soon {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid rgba(243,242,240,0.4);
  color: white;
  border-radius: 999px;
  padding: 4px 12px;
  margin-top: 8px;
}

.sport-description {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.8);
  margin-top: 10px;
  line-height: 1.5;
}

/* ============================================================
   07 — SOCIAL PROOF
   ============================================================ */

.section-proof {
  background: var(--off-black);
  padding: 120px 48px;
  text-align: center;
}

.proof-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  color: white;
  font-style: normal;
  font-weight: 500;
}

.proof-subhead {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(243,242,240,0.55);
  margin-top: 16px;
  line-height: 1.6;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.proof-card {
  background: rgba(243,242,240,0.08);
  border-radius: 20px;
  padding: 32px;
}

.proof-stars {
  color: var(--lime);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.proof-quote {
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  color: white;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.proof-attribution {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(243,242,240,0.45);
  margin-top: 20px;
}

/* ============================================================
   08 — EARLY ACCESS CTA
   ============================================================ */

.section-cta {
  background: var(--off-black);
  padding: 180px 48px;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(243,242,240,0.08);
  overflow: hidden;
}

.cta-court-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cta-court-bg svg {
  width: 100%;
  height: 100%;
  opacity: 0.025;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  color: white;
  font-style: italic;
  font-weight: 500;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.cta-subhead {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(243,242,240,0.6);
  margin-top: 28px;
  line-height: 1.6;
}

.cta-form {
  max-width: 540px;
  margin: 52px auto 0;
}

.cta-pill {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 6px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.cta-pill:focus-within {
  border-color: rgba(204,255,0,0.45);
  box-shadow: 0 0 0 3px rgba(204,255,0,0.08);
}

.cta-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  padding: 12px 18px;
  color: white;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.02em;
  outline: none;
  appearance: none;
}

.cta-input::placeholder {
  color: rgba(243,242,240,0.38);
}

.cta-submit {
  flex-shrink: 0;
  background: var(--lime);
  color: var(--off-black);
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 200ms ease, transform 200ms ease;
}

.cta-submit:hover {
  filter: brightness(1.06);
  transform: scale(1.02);
}

.cta-submit:disabled {
  cursor: default;
  transform: none;
  filter: none;
}

.cta-micro {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(243,242,240,0.35);
  margin-top: 14px;
}

/* ============================================================
   09 — FOOTER
   ============================================================ */

.section-footer {
  background: var(--off-black);
  border-top: 1px solid rgba(243,242,240,0.08);
  padding: 56px 48px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(243,242,240,0.9);
}

.footer-logo span {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.footer-logo .logo-icon {
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

.footer-tagline {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: rgba(243,242,240,0.35);
  margin-top: 8px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  align-items: center;
}

.footer-links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(243,242,240,0.4);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: rgba(243,242,240,0.8);
}

.footer-sports {
  text-align: right;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(243,242,240,0.3);
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(243,242,240,0.06);
  margin-top: 40px;
  padding: 24px 0;
  text-align: center;
}

.footer-copyright {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(243,242,240,0.25);
}

/* ============================================================
   HERO VARIANTS — layout selection (remove all but winner)
   ============================================================ */

/* Dark gradient stand-in until video files are present */
.hero-demo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1e1e1c 0%, #0e0e0c 60%);
}

/* Floating label badge */
.hero-variant-label {
  position: absolute;
  top: 80px;
  right: 24px;
  z-index: 10;
  background: var(--lime);
  color: var(--off-black);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Cancel load-in animations inside variant sections so text is visible immediately */
.hero-variant .hero-overline,
.hero-variant .hero-headline,
.hero-variant .hero-subheadline,
.hero-variant .hero-cta-row {
  animation: none;
  opacity: 1;
  transform: none;
}

/* ── Variant A — Pure Center ──────────────────────────── */
.hero-va {
  justify-content: center;
  align-items: center;
}

.hero-va .hero-content {
  text-align: center;
  padding-left: 24px;
  padding-right: 24px;
  max-width: 640px;
}

.hero-va .hero-subheadline {
  margin-left: auto;
  margin-right: auto;
}

.hero-va .hero-cta-row {
  justify-content: center;
}

/* ── Variant B — Bottom-Left, Oversized Type ──────────── */
.hero-vb {
  align-items: flex-end;
}

.hero-vb .hero-content {
  padding-left: 8vw;
  padding-right: 8vw;
  padding-bottom: 100px;
  max-width: none;
  width: 100%;
}

.hero-vb .hero-headline {
  font-size: clamp(64px, 9vw, 112px);
  line-height: 0.92;
}

.hero-vb .hero-overline {
  position: absolute;
  top: 100px;
  left: 8vw;
}

.hero-vb .hero-subheadline {
  max-width: 480px;
}

/* ── Variant C — Center Bottom, Wide ─────────────────── */
.hero-vc {
  align-items: flex-end;
  justify-content: center;
}

.hero-vc .hero-content {
  text-align: center;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 100px;
  max-width: 900px;
  width: 100%;
}

.hero-vc .hero-headline {
  font-size: clamp(56px, 7vw, 96px);
}

.hero-vc .hero-subheadline {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}

.hero-vc .hero-cta-row {
  justify-content: center;
}

/* Tagline size/style overrides */
.hl-1 { font-size: clamp(56px, 8vw,   112px); }                          /* reference */
.hl-2 { font-size: clamp(44px, 5.8vw,  82px); }                          /* refined */
.hl-3 { font-size: clamp(72px, 10.5vw, 144px); }                         /* huge */
.hl-4 { font-size: clamp(48px, 6.3vw,  90px); font-style: italic; }      /* italic */
.hl-5 { font-size: clamp(44px, 6vw,    84px); }

/* ── Variant: Centered ───────────────────────────────────── */
.hero-cv1 {
  align-items: center;
  justify-content: center;
}

.hero-cv1-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 0 48px;
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
}

.hero-cv1-content .hero-headline {
  line-height: 0.92;
  animation-delay: 100ms;
}

.hero-sub-center {
  text-align: center;
  max-width: 520px;
}

.hero-cta-center {
  justify-content: center;
  margin-top: 32px;
  animation-delay: 480ms;
}


/* ============================================================
   RESPONSIVE — 1024px (tablet / narrow desktop)
   ============================================================ */

@media (max-width: 1024px) {
  .section-hook {
    padding: 100px 32px;
  }

  .hook-headline {
    font-size: 44px;
  }

  .hook-feature-row {
    grid-template-columns: 1fr 1fr;
  }

  .hook-feature-title {
    font-size: 28px;
  }

  .hook-feature-text {
    padding: 40px 36px;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */

@media (max-width: 768px) {
  .section-nav {
    left: 24px;
    right: 24px;
  }

  .nav-inner {
    padding: 0 8px 0 20px;
  }

  .nav-drawer {
    padding: 0 32px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-drawer {
    display: flex;
  }

  .hero-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-subheadline {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-cta-row {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }

  .section-hook {
    padding: 80px 20px;
  }

  .hook-header {
    margin-bottom: 48px;
  }

  .hook-headline {
    font-size: 38px;
  }

  .hook-feature-row,
  .hook-feature-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .hook-feature-img {
    height: 300px;
  }

  .hook-feature-img img {
    width: 180px;
    top: 32px;
  }

  .hook-feature-img--landscape img {
    height: 180px;
    width: auto;
    max-width: none;
    top: 50%;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hook-feature-row--reverse .hook-feature-img {
    order: -1;
  }

  .hook-feature-text {
    padding: 36px 28px;
  }

  .hook-feature-title {
    font-size: 26px;
  }

  .section-stats {
    padding: 60px 24px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .stat-item + .stat-item::before {
    display: none;
  }

  .stat-item {
    padding: 0;
  }

  .stat-number {
    font-size: 52px;
  }

  .section-showcase {
    padding: 80px 24px;
  }

  .phone-mockup {
    width: 200px;
  }

  .showcase-small-mockups {
    gap: 16px;
  }

  .small-phone-frame {
    width: 100px;
  }

  .section-sports {
    padding: 80px 24px;
  }

  .sports-cards {
    grid-template-columns: 1fr;
  }

  .sport-card {
    min-height: 280px;
  }

  .section-proof {
    padding: 80px 24px;
  }

  .proof-cards {
    grid-template-columns: 1fr;
  }

  .section-cta {
    padding: 100px 24px;
  }

  .cta-pill {
    flex-direction: column;
    border-radius: 24px;
    padding: 10px;
    gap: 8px;
  }

  .cta-input {
    width: 100%;
    padding: 10px 14px;
  }

  .cta-submit {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .section-footer {
    padding: 48px 24px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-sports {
    text-align: left;
  }
}
