/* ========================================
   ATHLEON GLOBAL — Premium Sports Landing
   Design System & Styles
   ======================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties (Design Tokens) ── */
:root {
  /* Colors */
  --color-bg: #000000;
  --color-text-primary: #ffffff;
  --color-text-secondary: #c0c8d4;
  --color-text-muted: #6b7280;
  --color-accent-blue: #a78bfa;
  --color-accent-blue-glow: rgba(167, 139, 250, 0.4);
  --color-accent-silver: #c0c8d4;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.2);
  --color-glow: rgba(167, 139, 250, 0.15);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;
  --font-size-6xl: 4.5rem;
  --font-size-hero: clamp(3rem, 6vw, 6rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1400px;
  --nav-height: 80px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ── Particle Canvas (Global Background) ── */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-base);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.8);
}

.nav-logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo .logo-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--color-accent-blue-glow);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none;
}

.nav-links a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent-blue);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--color-text-primary);
}

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

.nav-buttons {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 1.6em;
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  text-transform: uppercase;
}

.btn-outline {
  border: 1px solid var(--color-border-hover);
  color: var(--color-text-primary);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.btn-credits {
  border: 1px solid #1e293b;
  color: var(--color-text-primary);
  background: #020617;
  padding: 0.6em 2em;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.btn-credits:hover {
  background: #0f172a;
  border-color: #3b82f6 !important;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.btn-primary {
  background: var(--color-text-primary);
  color: var(--color-bg);
  border: 1px solid var(--color-text-primary);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.btn-glow {
  border: 1px solid rgba(77, 166, 255, 0.3);
  color: var(--color-text-primary);
  background: rgba(77, 166, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(77, 166, 255, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-glow:hover {
  border-color: rgba(77, 166, 255, 0.6);
  box-shadow: 0 0 25px var(--color-accent-blue-glow), inset 0 0 25px rgba(77, 166, 255, 0.05);
}

.btn-glow:hover::before {
  opacity: 1;
}

/* ── Section Base ── */
.section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}

.section-inner {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════
   SECTION 1 — HERO LANDING
   ═══════════════════════════════════════════ */
#hero {
  padding-top: var(--nav-height);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-3xl);
  min-height: calc(100vh - var(--nav-height));
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.4em 1em;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-blue);
  border: 1px solid rgba(77, 166, 255, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
  background: rgba(77, 166, 255, 0.05);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent-blue);
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
}

.hero-title {
  font-size: var(--font-size-hero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #4da6ff 50%, #c0c8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-3xl);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.stat-label {
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero Objects Cluster */
.hero-objects {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.sport-object {
  position: absolute;
  will-change: transform, opacity;
  transition: filter var(--transition-slow);
}

.sport-object img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
  mask-image: radial-gradient(ellipse 70% 70% at center, black 40%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, black 40%, transparent 72%);
}

.obj-football {
  width: 280px;
  height: 280px;
  z-index: 5;
  animation: float 6s ease-in-out infinite;
}

.obj-basketball {
  width: 200px;
  height: 200px;
  top: 5%;
  right: 5%;
  z-index: 4;
  animation: float 7s ease-in-out infinite 0.5s;
}

.obj-tennis-racket {
  width: 220px;
  height: 220px;
  top: -5%;
  right: 15%;
  z-index: 3;
  animation: float 8s ease-in-out infinite 1s;
}

.obj-baseball {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: 10%;
  z-index: 3;
  animation: float 5s ease-in-out infinite 1.5s;
}

.obj-rugby {
  width: 180px;
  height: 180px;
  bottom: 5%;
  right: 10%;
  z-index: 2;
  animation: float 7s ease-in-out infinite 0.8s;
}

.obj-tennis-ball {
  width: 80px;
  height: 80px;
  bottom: 25%;
  right: 30%;
  z-index: 2;
  animation: float 5.5s ease-in-out infinite 1.2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-15px) rotate(2deg);
  }

  50% {
    transform: translateY(-8px) rotate(-1deg);
  }

  75% {
    transform: translateY(-20px) rotate(1.5deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  z-index: 10;
  animation: fadeInUp 1s ease-out 1.5s both;
}

.scroll-indicator span {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-text-muted), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--color-accent-blue), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ═══════════════════════════════════════════
   SECTION 2 — FOOTBALL FOCUS
   ═══════════════════════════════════════════ */
#football-section {
  background: radial-gradient(ellipse at center bottom, rgba(20, 30, 50, 0.3), transparent 70%);
}

.football-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  justify-content: center;
  position: relative;
}

.football-welcome {
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.football-title {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-xl);
  max-width: 700px;
}

.football-ball {
  position: relative;
  width: clamp(350px, 45vw, 550px);
  height: clamp(350px, 45vw, 550px);
  margin: var(--space-2xl) 0;
}

.football-ball img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: slowRotate 20s linear infinite;
  filter: drop-shadow(0 0 60px rgba(77, 166, 255, 0.2));
  mask-image: radial-gradient(ellipse 75% 75% at center, black 45%, transparent 73%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at center, black 45%, transparent 73%);
}

@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Glow pulse effect */
.football-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 166, 255, 0.08) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Light streaks */
.light-streaks {
  position: absolute;
  inset: -30%;
  pointer-events: none;
  overflow: hidden;
}

.light-streak {
  position: absolute;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), transparent);
  animation: streakSweep 4s ease-in-out infinite;
}

.light-streak:nth-child(1) {
  top: 30%;
  left: -50%;
  transform: rotate(-20deg);
  animation-delay: 0s;
}

.light-streak:nth-child(2) {
  top: 55%;
  left: -50%;
  transform: rotate(-15deg);
  animation-delay: 1.3s;
}

.light-streak:nth-child(3) {
  top: 75%;
  left: -50%;
  transform: rotate(-25deg);
  animation-delay: 2.6s;
}

@keyframes streakSweep {
  0% {
    transform: translateX(-100%) rotate(-20deg);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: translateX(100%) rotate(-20deg);
    opacity: 0;
  }
}

/* Side Steps Indicator */
.side-steps {
  position: fixed;
  left: clamp(1rem, 3vw, 2.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.side-steps.visible {
  opacity: 1;
  pointer-events: auto;
}

.step-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.step-number {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-text-muted);
  min-width: 24px;
  transition: color var(--transition-base);
}

.step-line {
  width: 40px;
  height: 1px;
  background: var(--color-border);
  transition: all var(--transition-base);
  position: relative;
}

.step-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--color-accent-blue);
  transition: width var(--transition-slow);
}

.step-label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  transition: color var(--transition-base);
}

.step-item.active .step-number {
  color: var(--color-text-primary);
}

.step-item.active .step-line::after {
  width: 100%;
}

.step-item.active .step-label {
  color: var(--color-text-primary);
}

.step-connector {
  width: 1px;
  height: 30px;
  background: var(--color-border);
  margin-left: 11px;
}

/* ═══════════════════════════════════════════
   SECTION 3 — BASKETBALL
   ═══════════════════════════════════════════ */
#basketball-section {
  background: radial-gradient(ellipse at 30% center, rgba(40, 25, 10, 0.2), transparent 60%);
}

.basketball-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-4xl);
  min-height: 100vh;
}

.basketball-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.basketball-ball {
  width: clamp(300px, 35vw, 450px);
  height: clamp(300px, 35vw, 450px);
  position: relative;
  z-index: 2;
}

.basketball-ball img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: slowRotate 25s linear infinite reverse;
  filter: drop-shadow(0 0 40px rgba(180, 100, 30, 0.2));
  mask-image: radial-gradient(ellipse 75% 75% at center, black 45%, transparent 73%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at center, black 45%, transparent 73%);
}

/* Orbiting UI Rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
}

.orbit-ring-1 {
  width: 130%;
  height: 130%;
  top: -15%;
  left: -15%;
  border-color: rgba(255, 255, 255, 0.06);
  animation: orbitSpin 30s linear infinite;
}

.orbit-ring-2 {
  width: 160%;
  height: 160%;
  top: -30%;
  left: -30%;
  border-color: rgba(255, 255, 255, 0.04);
  animation: orbitSpin 45s linear infinite reverse;
}

.orbit-ring-3 {
  width: 190%;
  height: 190%;
  top: -45%;
  left: -45%;
  border-color: rgba(255, 255, 255, 0.02);
  animation: orbitSpin 60s linear infinite;
}

/* Orbit dots */
.orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-accent-blue-glow);
}

.orbit-ring-1 .orbit-dot {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring-2 .orbit-dot {
  bottom: 10%;
  right: 0;
  transform: translate(50%, 50%);
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.basketball-text {
  max-width: 520px;
}

.basketball-label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.basketball-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.basketball-desc {
  font-size: var(--font-size-base);
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 460px;
}

/* ═══════════════════════════════════════════
   SECTION 4 — RUGBY / AERO-CORE
   ═══════════════════════════════════════════ */
#rugby-section {
  background: radial-gradient(ellipse at center, rgba(30, 20, 10, 0.15), transparent 60%);
}

.rugby-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  justify-content: center;
  position: relative;
}

.rugby-visual {
  position: relative;
  width: clamp(320px, 40vw, 520px);
  height: clamp(220px, 28vw, 340px);
  margin-bottom: var(--space-2xl);
}

.rugby-ball {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.rugby-ball img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* More aggressive stormy animation */
  animation: rugbyStormFloat 4s ease-in-out infinite;
  /* Protective glow: masks edges + matches storm lighting */
  filter:
    drop-shadow(0 0 45px rgba(180, 120, 60, 0.45));
}

@keyframes rugbyStormFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-18deg) scale(0.98);
    opacity: 0.95;
  }

  25% {
    transform: translateY(-5px) rotate(-14deg) scale(1.02);
  }

  50% {
    transform: translateY(-25px) rotate(-10deg) scale(1.05);
    filter: drop-shadow(0 0 70px rgba(180, 120, 60, 0.55));
    opacity: 1;
  }

  75% {
    transform: translateY(-10px) rotate(-15deg) scale(1);
  }
}

/* Vortex container - fits exactly around the ball */
.vortex-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Smoke canvas container - enlarged for vortex reach */
.smoke-canvas-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  z-index: 1;
  pointer-events: none;
}

#smoke-canvas {
  width: 100%;
  height: 100%;
}

.rugby-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: var(--space-lg);
}

.rugby-desc {
  font-size: var(--font-size-base);
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 600px;
}

/* ═══════════════════════════════════════════
   CONTACT FORM STYLES
   ═══════════════════════════════════════════ */
.contact-form-container {
  width: 100%;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.contact-form-container:hover {
  border-color: rgba(77, 166, 255, 0.15);
  box-shadow: 0 0 40px rgba(77, 166, 255, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: left;
}

.form-label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-input {
  width: 100%;
  padding: 0.85em 1.1em;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 400;
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition-base);
}

.form-input::placeholder {
  color: var(--color-text-muted);
  font-weight: 300;
}

.form-input:focus {
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

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

.form-submit-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.8em 2em;
  margin-top: var(--space-sm);
  cursor: pointer;
  font-family: var(--font-primary);
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.success-icon {
  animation: successPop 0.5s ease-out;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-text-primary);
}

.success-desc {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   SECTION 5 — VIDEO + GLASS UI
   ═══════════════════════════════════════════ */
#video-section {
  overflow: hidden;
}

.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.video-overlay {
  position: absolute;
  inset: 0;
  /* Heavier gradient for cinematic text contrast */
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.45) 50%,
      rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* ── Cinematic overlay text ── */
.cinematic-content {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cinematic-text {
  max-width: 900px;
  padding: 0 var(--space-xl);
}

.cinematic-eyebrow {
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-blue);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
}

.cinematic-headline {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}

.line-reveal {
  display: block;
  opacity: 0;
  transform: translateY(60px);
}

.accent-line {
  background: linear-gradient(90deg, #4DA6FF, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cinematic-quote {
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  transform: translateY(20px);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.cinematic-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  opacity: 0;
  transform: translateY(20px);
}

.cin-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cin-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

.cin-label {
  font-size: var(--font-size-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.cin-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

.cinematic-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0;
  transform: translateY(20px);
}



/* ═══════════════════════════════════════════
   SECTION 6 — CONTACT / FOOTER
   ═══════════════════════════════════════════ */
#contact-section {
  background: linear-gradient(to bottom, var(--color-bg), rgba(5, 8, 15, 1));
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--nav-height) 0 var(--space-xl);
}

.contact-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.contact-title .gradient-text {
  background: linear-gradient(135deg, #4da6ff, #c0c8d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 500px;
  font-weight: 300;
}

.contact-email {
  font-size: var(--font-size-xl);
  font-weight: 500;
  color: var(--color-text-primary);
  padding: var(--space-md) var(--space-xl);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.contact-email:hover {
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 20px var(--color-accent-blue-glow);
}

.social-links {
  display: flex;
  gap: var(--space-xl);
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
  transition: all var(--transition-base);
}

.social-link:hover {
  color: var(--color-text-primary);
  border-color: var(--color-accent-blue);
  background: rgba(77, 166, 255, 0.1);
  box-shadow: 0 0 15px var(--color-accent-blue-glow);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Footer Bar */
.footer-bar {
  position: relative;
  width: 100%;
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-4xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
}

.footer-copyright {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-links a {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-text-primary);
}

/* ═══════════════════════════════════════════
   MORPH TRANSITION CONTAINERS
   ═══════════════════════════════════════════ */
.morph-object {
  position: fixed;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  will-change: transform, opacity;
}

/* ═══════════════════════════════════════════
   CURSOR EFFECT
   ═══════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 166, 255, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   MOBILE HAMBURGER
   ═══════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--transition-base);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }

  .hero-text {
    max-width: 100%;
    order: 2;
  }

  .hero-objects {
    height: 400px;
    order: 1;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .basketball-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .basketball-text {
    max-width: 100%;
  }

  .basketball-desc {
    margin: 0 auto;
  }

  .side-steps {
    display: none !important;
  }

  .obj-football {
    width: 200px;
    height: 200px;
  }

  .obj-basketball {
    width: 140px;
    height: 140px;
  }

  .obj-tennis-racket {
    width: 160px;
    height: 160px;
  }

  .obj-baseball {
    width: 70px;
    height: 70px;
  }

  .obj-rugby {
    width: 130px;
    height: 130px;
  }

  .obj-tennis-ball {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-3xl);
    gap: var(--space-xl);
    align-items: center;
    justify-content: center;
    z-index: 999;
  }

  .nav-links.mobile-open a {
    font-size: var(--font-size-xl);
  }

  .hero-objects {
    height: 300px;
  }

  .obj-football {
    width: 160px;
    height: 160px;
  }

  .obj-basketball {
    width: 110px;
    height: 110px;
  }

  .obj-tennis-racket {
    width: 120px;
    height: 120px;
  }

  .obj-baseball {
    width: 55px;
    height: 55px;
  }

  .obj-rugby {
    width: 100px;
    height: 100px;
  }

  .obj-tennis-ball {
    width: 45px;
    height: 45px;
  }

  .football-ball {
    width: 280px !important;
    height: 280px !important;
  }

  .basketball-ball {
    width: 260px !important;
    height: 260px !important;
  }

  .rugby-visual {
    width: 240px !important;
    height: 160px !important;
  }

  .glass-card {
    margin: 0 var(--space-md);
  }

  .footer-bar {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .nav-buttons .btn:first-child {
    display: none;
  }
}

/* ─── Loading Screen ─── */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.loader-text {
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-blue), #fff);
  border-radius: var(--radius-full);
  animation: loadBar 2s ease-in-out forwards;
}

@keyframes loadBar {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════
   AUTH MODAL
   ═══════════════════════════════════════════ */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.auth-overlay.active {
  opacity: 1;
  visibility: visible;
}

.auth-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 440px;
  background: rgba(10, 10, 15, 0.95);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  z-index: 9001;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.auth-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.auth-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.auth-close:hover {
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.auth-tabs {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.auth-tab {
  flex: 1;
  padding: 0.65em 1em;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.auth-tab.active {
  background: rgba(77, 166, 255, 0.12);
  color: var(--color-accent-blue);
  box-shadow: 0 0 12px rgba(77, 166, 255, 0.1);
}

.auth-tab:hover:not(.active) {
  color: var(--color-text-secondary);
}

.auth-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.auth-subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.auth-submit {
  width: 100%;
  padding: 0.85em;
  margin-top: var(--space-sm);
  font-size: var(--font-size-base);
  cursor: pointer;
  font-family: var(--font-primary);
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: var(--space-md) 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-divider span {
  padding: 0 var(--space-md);
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-primary);
  width: 100%;
  padding: 0.85em;
  font-size: var(--font-size-base);
  font-family: var(--font-primary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-bounce);
}

.btn-google:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.google-logo {
  width: 1.25rem;
  height: 1.25rem;
}

/* ── Credits Modal ── */
.credits-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.credits-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.credits-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 90%;
  max-width: 450px;
  background: #0a0a0a;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 3rem 2rem 2.5rem;
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-base);
  text-align: center;
}

.credits-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.credits-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
}

.credits-close:hover {
  color: var(--color-text-primary);
}

.credits-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.credits-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.credits-plans {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.credits-plan {
  background: #111111;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}

.credits-plan .plan-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.credits-plan .plan-info {
  text-align: left;
}

.credits-plan .plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.credits-plan .plan-amount {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.credits-plan .plan-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

/* Popular Plan Style */
.credits-plan.popular {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.03);
}

.credits-plan.popular .plan-name {
  color: #a78bfa;
}

.credits-plan.popular .plan-price {
  color: #a78bfa;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 1.5rem;
  transform: translateY(-50%);
  background: #a78bfa;
  color: #000000;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  letter-spacing: 0.05em;
}

.btn-checkout {
  width: 100%;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 99px;
  padding: 1.2rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-checkout:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}