/* ═══════════════════════════════════════════════════════════════════════════
   home.css — UOWD Welcome Week · Cinematic Homepage Design System
   Awwwards-quality premium UI/UX
════════════════════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  /* Color - Neon Cinematic Palette */
  --ebony: #07060A;
  --purple-deep: #110B1D;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(13, 11, 20, 0.65);
  --border: rgba(255, 255, 255, 0.08);
  --border-hi: rgba(255, 255, 255, 0.15);

  --gold: #E5C37E;
  --gold-glow: rgba(229, 195, 126, 0.35);
  --cyan: #4DE1FF;
  --cyan-glow: rgba(77, 225, 255, 0.3);

  --text-0: #ffffff;
  --text-1: rgba(255, 255, 255, 0.9);
  --text-2: rgba(255, 255, 255, 0.6);
  --text-3: rgba(255, 255, 255, 0.35);

  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-head: 'Syne', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-w: 1320px;
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body.home-body {
  background: var(--ebony);
  color: var(--text-1);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: default;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--gold);
  color: #000;
  padding: 12px 24px;
  z-index: 1000;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: top 0.3s var(--ease-out-expo);
}

.skip-link:focus {
  top: 20px;
}

/* Lenis Smooth Scroll */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* Cinematic Grain Overlay */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-repeat: repeat;
  background-size: 150px 150px;
}

.serif {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.01em;
}

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

.cyan {
  color: var(--cyan);
}


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

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

/* ─── Utility ────────────────────────────────────────────────────────────── */
.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE PROGRESS BAR
════════════════════════════════════════════════════════════════════════════ */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1000;
  background: transparent;
}

.page-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MASTER NAVIGATION (REDESIGNED)
════════════════════════════════════════════════════════════════════════════ */
.master-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  transition: all 0.5s var(--ease-out-expo);
  border-bottom: 1px solid transparent;
}

.master-header.is-scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border);
}

.master-header.is-hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Brand - Strictly Locked Flex */
.nav-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  text-decoration: none;
  flex-shrink: 0;
  z-index: 10;
}

.nav-brand::before,
.nav-brand::after,
.nav-brand-text::before,
.nav-brand-text::after {
  display: none !important;
  content: "" !important;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(229, 195, 126, 0.2);
  transition: transform 0.4s var(--ease-back);
}

.nav-brand-text {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 15px var(--gold-glow);
}

/* Desktop Links */
.nav-desktop {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

@media (max-width: 1100px) {
  .nav-desktop {
    display: none;
  }
}

.nav-link-item {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-2);
  transition: color 0.3s ease;
}

.nav-link-item:hover {
  color: var(--gold);
}

/* Actions & Toggle */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  z-index: 10;
}

.nav-cta-btn {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--border-hi);
  border-radius: 4px;
  color: var(--text-0);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 0 25px var(--gold-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-1);
  transition: all 0.3s ease;
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: flex;
  }

  .nav-cta-btn {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  height: 0;
  background: rgba(7, 9, 15, 0.98);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: height 0.4s var(--ease-out-expo);
  border-bottom: 1px solid var(--border);
}

.master-header.is-mobile-open .mobile-drawer {
  height: 100vh;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  padding: var(--sp-12) var(--sp-8);
  gap: var(--sp-6);
}

.mobile-links a {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-1);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}


/* ═══════════════════════════════════════════════════════════════════════════
   BUTTON SYSTEM
════════════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease-back), box-shadow 0.3s ease;
  will-change: transform;
  white-space: nowrap;
}

.btn-large {
  padding: 0.95rem 2rem;
  font-size: 0.975rem;
}

.btn-icon {
  font-size: 0.7em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #ffd96b 60%, var(--gold-light) 100%);
  color: #0a0a00;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 204, 51, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

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

.btn-ghost {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-hi);
}

.btn-ghost:hover {
  background: var(--bg-glass);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-0);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
 ════════════════════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-full-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  /* Buffer for parallax */
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 10%, var(--ebony) 100%),
    linear-gradient(to bottom, transparent 40%, var(--ebony) 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 var(--sp-8);
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-hi);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-1);
  margin-bottom: var(--sp-8);
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
}

.badge-dot.pulse {
  animation: pulse-dot 2s infinite;
}

.hero-headline {
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 1.1;
  color: var(--text-0);
  margin-bottom: var(--sp-6);
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
}

.hero-headline .line {
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-1);
  margin-bottom: var(--sp-12);
  letter-spacing: 0.02em;
  font-weight: 500;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--sp-12);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.scroll-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PORTAL & SECTIONS
 ════════════════════════════════════════════════════════════════════════════ */
.portal-section,
.market-section {
  padding: var(--sp-24) 0;
  background: var(--ebony);
}

.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

.glass-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.glass-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-5px);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  padding: var(--sp-16);
  align-items: center;
}

@media (max-width: 992px) {
  .card-inner {
    grid-template-columns: 1fr;
  }
}

.portal-title,
.market-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--text-0);
  margin-bottom: var(--sp-6);
}

.portal-desc,
.market-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: var(--sp-12);
}

.portal-visual img,
.market-preview img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(229, 195, 126, 0.08);
  border: 1px solid rgba(229, 195, 126, 0.2);
  border-radius: 4px;
  position: relative;
}

.chip-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.pulse-ring {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: ring-pulse 2s infinite;
}

@keyframes ring-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

.btn-gold {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  transition: all 0.4s var(--ease-out-expo);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--gold-glow);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PARTICLES & EFFECTS
 ════════════════════════════════════════════════════════════════════════════ */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: float-up linear infinite;
  opacity: 0.3;
}

@keyframes float-up {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(-120px) scale(0.4);
    opacity: 0;
  }
}

/* ── Hero Copy ── */
.hero-kicker {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: var(--sp-6);
  opacity: 0;
  /* GSAP start state */
}

.kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 8px var(--gold);
  }

  50% {
    transform: scale(1.35);
    box-shadow: 0 0 16px var(--gold);
  }
}

.hero-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text-0);
  margin-bottom: var(--sp-6);
}

.hero-headline .line {
  display: block;
  overflow: hidden;
  opacity: 0;
  /* GSAP start state */
}

.hero-headline .line-gradient {
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-light) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 470px;
  margin-bottom: var(--sp-8);
  opacity: 0;
  /* GSAP start state */
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}

.hero-cta-group .btn {
  opacity: 0;
}

/* GSAP start state */

/* Demoted secondary link */
.hero-text-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  /* GSAP start state */
  transition: color 0.2s;
}

.hero-text-link:hover {
  color: var(--gold);
}

/* Stats */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  /* GSAP start state */
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-0);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Hero Image ── */
.hero-image-pane {
  position: relative;
  opacity: 0;
  /* GSAP start state */
}

.hero-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.hero-photo-inner {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  will-change: transform;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--border),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  /* Allows parallax room */
  transition: transform 12s ease;
}

/* Floating accent cards */
.hero-float-card {
  position: absolute;
  background: rgba(13, 17, 32, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-hi);
  border-radius: 16px;
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  white-space: nowrap;
  font-size: 0.82rem;
  animation: card-float 6s ease-in-out infinite;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.card-clubs {
  bottom: -18px;
  left: -28px;
  animation-delay: 0s;
}

.card-live {
  top: 24px;
  right: -24px;
  font-size: 0.75rem;
  font-weight: 600;
  animation-delay: 2s;
  color: var(--text-0);
}

.fc-icon {
  font-size: 1.25rem;
}

.fc-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-0);
}

.fc-text span {
  color: var(--text-3);
  font-size: 0.72rem;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes card-float {

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

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

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  z-index: 20;
  color: var(--text-3);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fade-in-up 1s 2.5s both;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }

  to {
    opacity: 1;
  }
}

.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: line-pulse 2s ease-in-out infinite;
}

@keyframes line-pulse {

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

  50% {
    transform: scaleY(0.6);
    opacity: 0.4;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   TICKER
════════════════════════════════════════════════════════════════════════════ */
.club-ticker-wrap {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-5) 0;
  background: var(--bg-1);
  /* Smooth fade on both edges */
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}

.ticker-track span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
  transition: color 0.2s;
}

.ticker-track span:hover {
  color: var(--gold);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION SHARED STYLES
════════════════════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--sp-4);
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════════════════════
   FEATURE SECTION
════════════════════════════════════════════════════════════════════════════ */
.feature-section {
  padding: var(--sp-24) 0;
  background: var(--bg-1);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

/* Two-card variant: full-width, balanced */
.feature-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: var(--sp-8);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.25s var(--ease-back);
  cursor: default;
  will-change: transform;
  transform-style: preserve-3d;
}

.feature-card:hover {
  border-color: var(--border-hi);
}

.card-bg-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card-featured .card-bg-glow {
  background: radial-gradient(circle, rgba(255, 204, 51, 0.18) 0%, transparent 70%);
}

.feature-card-world .card-bg-glow {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.14) 0%, transparent 70%);
}

.feature-card-muted .card-bg-glow {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.feature-card:hover .card-bg-glow {
  opacity: 1;
}

.card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(255, 204, 51, 0.25);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: var(--sp-4);
}

.card-badge-muted {
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text-1);
  margin-bottom: var(--sp-5);
  transition: border-color 0.3s, color 0.3s;
}

.feature-card:hover .card-icon {
  border-color: var(--gold);
  color: var(--gold);
}

.card-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.01em;
}

.card-body {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.2s ease;
}

.card-cta:hover {
  gap: var(--sp-3);
}

.card-tag {
  font-size: 0.68rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-progress {
  height: 3px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin-top: auto;
}

.card-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  border-radius: 100px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   VISUAL BREAK SECTION
════════════════════════════════════════════════════════════════════════════ */
.visual-break-section {
  position: relative;
  overflow: hidden;
}

.vb-image-wrap {
  position: relative;
  height: 60svh;
  min-height: 360px;
}

.vb-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.vb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(7, 9, 15, 0.92) 0%,
      rgba(7, 9, 15, 0.7) 40%,
      rgba(7, 9, 15, 0.2) 100%);
}

.vb-caption {
  position: absolute;
  top: 50%;
  left: var(--sp-16);
  transform: translateY(-50%);
}

.vb-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: var(--sp-3);
}


/* ═══════════════════════════════════════════════════════════════════════════
   CLUBS SECTION
════════════════════════════════════════════════════════════════════════════ */
.clubs-section {
  padding: var(--sp-24) 0;
  background: var(--bg-0);
}

.num-highlight {
  background: linear-gradient(100deg, var(--gold), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clubs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-bottom: var(--sp-12);
}

.club-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-1);
  background: var(--bg-card);
  cursor: default;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.25s var(--ease-back);
  will-change: transform;
}

.club-pill::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c, var(--gold));
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--c, var(--gold));
}

.club-pill:hover {
  border-color: var(--c, var(--gold));
  background: color-mix(in srgb, var(--c, var(--gold)) 8%, transparent);
  color: var(--text-0);
  transform: translateY(-2px) scale(1.03);
}

.clubs-cta {
  display: flex;
  justify-content: center;
}


/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════════════════════════════ */
.cta-section {
  padding: var(--sp-24) 0;
  background: var(--bg-1);
  text-align: center;
}

.cta-section-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

.cta-eyebrow {
  color: rgba(255, 204, 51, 0.85);
}

.cta-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--sp-4);
}

.cta-sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto var(--sp-8);
}


/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-0);
}

/* Top row */
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-10) var(--sp-8);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-12);
  flex-wrap: wrap;
}

/* Brand block */
.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
  min-width: 180px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-1);
}

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

.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-3);
  padding-left: 44px;
  /* align with brand name */
  letter-spacing: 0.02em;
}

/* Nav */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: 2px;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-2);
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--text-0);
}

/* Socials */
.footer-socials {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-left: auto;
  padding-top: 2px;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social-btn:hover {
  border-color: var(--border-hi);
  color: var(--text-0);
  background: var(--bg-glass);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-8);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-3);
}

.footer-contact-link {
  transition: color 0.2s;
  text-decoration: none;
}

.footer-contact-link:hover {
  color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    text-align: center;
  }

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

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

  .hero-cta-group {
    justify-content: center;
  }

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

  .hero-image-pane {
    max-width: 480px;
    margin: 0 auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .vb-caption {
    left: var(--sp-8);
  }

  .primary-nav {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 640px) {
  :root {
    --sp-8: 1.25rem;
  }

  .hero-headline {
    font-size: 2.4rem;
  }

  .hero-float-card {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .hero-kicker,
  .hero-headline .line,
  .hero-sub,
  .hero-cta-group .btn,
  .stat-item,
  .hero-image-pane {
    opacity: 1 !important;
    transform: none !important;
  }
}