/* ============================================
   CALCULATED PLAYS — FULL STYLESHEET
   ============================================ */

/* --- VARIABLES --- */
:root {
  --color-bg: #0a0a0a;
  --color-text: #ffffff;
  --color-text-muted: #a0a0a0;
  --color-primary: #00C853;
  --color-primary-dark: #00a844;
  --color-surface: #111111;
  --color-surface-2: #1a1a1a;
  --color-border: #222222;
  --color-border-hover: #333333;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Courier New', 'Consolas', monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
}

/* --- UTILITY --- */
.text-green { color: var(--color-primary); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SECTION HEADER --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  max-width: 560px;
  margin: 0 auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-sm { padding: 10px 24px; font-size: var(--text-sm); }
.btn-lg { padding: 16px 36px; font-size: var(--text-base); }
.btn-xl { padding: 20px 48px; font-size: var(--text-lg); }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--color-primary);
  color: #0a0a0a;
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.3);
}
/* Shimmer */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: btn-shimmer 4s infinite;
}
@keyframes btn-shimmer {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--color-border-hover);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ============================================
   1. NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  border-bottom-color: var(--color-border);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* ============================================
   2. HERO — CENTER-ALIGNED
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.orb-1 { width: 400px; height: 400px; background: #00C853; top: -100px; left: -100px; animation: orb-float-1 12s ease-in-out infinite; }
.orb-2 { width: 300px; height: 300px; background: #5865F2; top: 20%; right: 10%; animation: orb-float-2 16s ease-in-out infinite; }
.orb-3 { width: 250px; height: 250px; background: #00C853; bottom: 10%; left: 30%; animation: orb-float-3 14s ease-in-out infinite; opacity: 0.25; }
.orb-4 { width: 200px; height: 200px; background: #FF6B6B; top: 40%; left: 50%; animation: orb-float-4 18s ease-in-out infinite; opacity: 0.2; }
.orb-5 { width: 350px; height: 350px; background: #9B59B6; bottom: -50px; right: -50px; animation: orb-float-5 20s ease-in-out infinite; opacity: 0.2; }
.orb-6 { width: 180px; height: 180px; background: #FFD700; top: 60%; left: 10%; animation: orb-float-6 15s ease-in-out infinite; opacity: 0.15; }

@keyframes orb-float-1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, 40px); } }
@keyframes orb-float-2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-40px, 30px); } }
@keyframes orb-float-3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, -30px); } }
@keyframes orb-float-4 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, -40px); } }
@keyframes orb-float-5 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, 30px); } }
@keyframes orb-float-6 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(40px, -20px); } }

/* SPLIT hero layout — text left, phone right */
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  text-align: left;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  max-width: 700px;
}
.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 560px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  justify-content: flex-start;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
}
.hero-stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Hero logo watermark — removed (was too large) */

/* Hero stagger animation */
.hero-stagger {
  opacity: 0;
  transform: translateY(30px);
  animation: hero-fade-up 0.7s ease forwards;
  animation-delay: calc(var(--delay) * 200ms + 200ms);
}
@keyframes hero-fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Phone Mockup --- */
.phone-mockup {
  perspective: 1000px;
}
.phone-frame {
  width: 300px;
  height: 580px;
  background: #1e1e2e;
  border-radius: 36px;
  border: 2px solid #333;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 40px rgba(0,200,83,0.1);
}
.phone-notch {
  width: 120px;
  height: 28px;
  background: #0a0a0a;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.phone-header {
  padding: 8px 16px;
  border-bottom: 1px solid #2a2a3a;
}
.discord-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
}
.discord-icon { font-size: 16px; }
.discord-title { font-weight: 600; font-size: var(--text-sm); }
.discord-members { font-size: var(--text-xs); color: var(--color-text-muted); margin-left: auto; }

/* Messages scroll */
.phone-messages {
  height: 480px;
  overflow: hidden;
  position: relative;
}
.messages-scroll {
  animation: scroll-messages 25s linear infinite;
}
/* messages-scroll: no hover pause — always plays */
@keyframes scroll-messages {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.msg {
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}
.msg-body { flex: 1; min-width: 0; }
.msg-name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 3px;
}
.msg-bot {
  font-size: 9px;
  background: #5865F2;
  color: #fff;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 4px;
  font-weight: 500;
}
.msg-text {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.msg-text strong { color: #fff; }

/* ============================================
   3. STATS TICKER
   ============================================ */
.ticker-section {
  border-top: 1px solid rgba(0, 200, 83, 0.15);
  border-bottom: 1px solid rgba(0, 200, 83, 0.15);
  padding: 16px 0;
  overflow: hidden;
  background: rgba(0, 200, 83, 0.02);
}
.ticker-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.ticker-content {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
/* ticker-content: no hover pause — always plays */
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* ============================================
   4. LIVE DASHBOARD STATS (NEW)
   ============================================ */
.dashboard-section {
  padding: 48px 0;
  background: var(--color-surface);
  border-top: 3px solid var(--color-primary);
  position: relative;
  overflow: hidden;
}
.dashboard-scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.6), transparent);
  animation: scanline 3s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes scanline {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.dashboard-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.dashboard-stat {
  text-align: center;
  min-width: 140px;
}
.dashboard-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.dashboard-value {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}
.dashboard-divider {
  width: 1px;
  height: 48px;
  background: var(--color-border);
}

/* ============================================
   5. AI TECHNOLOGY
   ============================================ */
.ai-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}
.ai-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ai-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.ai-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  flex: 1;
  max-width: 340px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}
.ai-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0,200,83,0.3), transparent 50%, rgba(0,200,83,0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.ai-card:hover::before { opacity: 1; }
.ai-card:hover {
  border-color: rgba(0, 200, 83, 0.3);
  transform: translateY(-4px);
}
.ai-card-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.ai-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 12px;
}
.ai-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}
.ai-card-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: rgba(0, 200, 83, 0.06);
  line-height: 1;
}
.ai-arrow {
  flex-shrink: 0;
}

/* ============================================
   6. PRICING
   ============================================ */
.pricing-section {
  padding: 120px 0;
}
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.toggle-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
  cursor: pointer;
}
.toggle-label.active { color: #fff; }
.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}
.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.toggle-switch.weekly .toggle-knob {
  transform: translateX(0);
}
.toggle-switch.monthly .toggle-knob {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0,200,83,0.2), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 200, 83, 0.2);
}
.pricing-card > * { position: relative; z-index: 1; }

.pricing-card-featured {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, rgba(0,200,83,0.05) 0%, var(--color-surface) 40%);
}
.pricing-card-featured::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(0,200,83,0.3), transparent 60%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #0a0a0a;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  z-index: 2;
}
.pricing-badge-value {
  background: #FFD700;
}
.pricing-card-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-price { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  transition: all 0.3s ease;
}
.price-period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-features li {
  padding: 8px 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.check {
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   7. FEATURES CAROUSEL
   ============================================ */
.features-section {
  padding: 120px 0;
}
.features-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.features-slider {
  display: flex;
  gap: 20px;
  animation: features-slide 40s linear infinite;
  width: max-content;
}
/* features-slider: no hover pause — always plays */
@keyframes features-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.feature-card {
  background: var(--card-color, #1a1a1a);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  width: 280px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  cursor: default;
}
.feature-card:hover {
  transform: rotate(-2deg) scale(1.03);
}
.feature-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.feature-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.feature-card p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ============================================
   8. DISCORD COMMUNITY SHOWCASE
   ============================================ */
.discord-section {
  padding: 120px 0;
  background: var(--color-surface);
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 calc(100% - 40px));
}
.discord-showcase {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
.discord-features-left,
.discord-features-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.discord-feature-box {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.3s ease;
}
.discord-feature-box:hover {
  border-color: rgba(0, 200, 83, 0.3);
  transform: translateY(-2px);
}
.discord-feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.discord-feature-box h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 6px;
}
.discord-feature-box p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Channel scroll phone */
.phone-mockup-channels .phone-frame {
  width: 280px;
  height: 520px;
}
.phone-channels {
  height: 440px;
  overflow: hidden;
}
.channels-scroll {
  animation: channels-scroll-up 20s linear infinite;
}
/* channels-scroll: no hover pause — always plays */
@keyframes channels-scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.channel-item {
  padding: 12px 18px;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  margin: 2px 8px;
  transition: background 0.2s ease;
}
.channel-item.active {
  background: rgba(0, 200, 83, 0.1);
  color: #fff;
}
.channel-hash {
  color: var(--color-text-muted);
  font-weight: 600;
  opacity: 0.5;
}

/* ============================================
   9. HOW IT WORKS — HORIZONTAL TIMELINE
   ============================================ */
.steps-section {
  padding: 120px 0;
  background: var(--color-surface);
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
}
.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  padding: 60px 0 40px;
}
.timeline-line {
  position: absolute;
  top: 94px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: rgba(0, 200, 83, 0.2);
  border-radius: 2px;
  z-index: 0;
}
.timeline-pulse {
  position: absolute;
  top: 0;
  left: -20%;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  border-radius: 2px;
  animation: pulse-travel 3s ease-in-out infinite;
}
@keyframes pulse-travel {
  0% { left: -20%; }
  100% { left: 100%; }
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 280px;
  position: relative;
  z-index: 1;
}
.timeline-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 4px solid var(--color-surface);
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.timeline-content {
  text-align: center;
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-content p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}
.steps-cta { text-align: center; margin-top: 48px; }

/* ============================================
   10. SPORTS GRID
   ============================================ */
.sports-section {
  padding: 120px 0;
}
.section-logo-accent {
  display: block;
  width: 40px;
  height: auto;
  margin: 0 auto 16px;
  opacity: 0.12;
  filter: grayscale(0.3);
}
.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sport-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s ease;
}
.sport-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.sport-card:hover {
  border-color: rgba(0, 200, 83, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 200, 83, 0.1);
}
.sport-emoji {
  font-size: 48px;
  margin-bottom: 16px;
}
.sport-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 6px;
}
.sport-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   11. TESTIMONIALS — SPOTLIGHT
   ============================================ */
.testimonials-section {
  padding: 120px 0;
  background: var(--color-surface);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 calc(100% - 40px));
}
.testimonial-spotlight {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 280px;
}
.testimonial-quote-mark {
  font-size: 80px;
  color: rgba(0, 200, 83, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: 0;
}
.testimonial-slide {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
  top: 0;
}
.testimonial-text {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-slide .testimonial-stars {
  color: #FFD700;
  font-size: var(--text-base);
  margin-bottom: 12px;
  letter-spacing: 3px;
}
.testimonial-slide .testimonial-author {
  font-size: var(--text-base);
}
.testimonial-slide .testimonial-author strong {
  color: #fff;
}
.testimonial-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border-hover);
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonial-dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* ============================================
   12. CAPPERS
   ============================================ */
.cappers-section {
  padding: 120px 0;
}
.cappers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.capper-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.capper-card:hover {
  border-color: rgba(0, 200, 83, 0.2);
  transform: translateY(-4px);
}
.capper-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-surface-2);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.capper-silhouette {
  font-size: 32px;
  color: var(--color-text-muted);
  font-weight: 700;
  font-family: var(--font-display);
}
.capper-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-muted);
}
.capper-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.cappers-cta {
  text-align: center;
}
.cappers-cta p {
  margin-bottom: 16px;
  color: var(--color-text-muted);
}

/* ============================================
   13. SPORTS ENTERTAINMENT
   ============================================ */
.entertainment-section {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.floating-icon {
  position: absolute;
  font-size: 48px;
  opacity: 0.12;
  left: var(--fi-x);
  top: var(--fi-y);
  animation: float-icon var(--fi-dur) ease-in-out infinite;
  animation-delay: var(--fi-delay);
}
.floating-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: 0.3;
  filter: drop-shadow(0 0 10px rgba(0, 200, 83, 0.3));
}
@keyframes float-icon {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -30px) rotate(5deg); }
  50% { transform: translate(-10px, -50px) rotate(-3deg); }
  75% { transform: translate(15px, -20px) rotate(4deg); }
}
.entertainment-content {
  position: relative;
  z-index: 1;
}
.entertainment-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.entertainment-cta-box {
  position: relative;
  display: inline-block;
  padding: 4px;
  border-radius: var(--radius-full);
  background: conic-gradient(from 0deg, var(--color-primary), #00E676, #66BB6A, #A5D6A7, var(--color-primary));
  animation: rotate-border 4s linear infinite;
  background-size: 200% 200%;
}
@keyframes rotate-border {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
.entertainment-cta-box .btn {
  border-radius: var(--radius-full);
}

/* ============================================
   14. FAQ — TWO-COLUMN TABBED
   ============================================ */
.faq-section {
  padding: 120px 0;
  background: var(--color-surface);
}
.faq-tabbed {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-tab {
  display: block;
  width: 100%;
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-tab:hover {
  color: #fff;
  border-color: var(--color-border-hover);
}
.faq-tab.active {
  color: #0a0a0a;
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.faq-panel {
  min-height: 200px;
}
.faq-group {
  display: none;
}
.faq-group.active {
  display: block;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--color-primary); }
.faq-icon {
  font-size: var(--text-xl);
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ============================================
   15. DISCLAIMER
   ============================================ */
.disclaimer-section {
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
}
.disclaimer-text {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.7;
}

/* ============================================
   16. FOOTER
   ============================================ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 12px;
}
.footer-tagline {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.footer-links h5 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links a {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: 4px 0;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--color-primary); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.footer-attribution {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.footer-attribution:hover { opacity: 1; color: var(--color-primary); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-title { font-size: var(--text-4xl); }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ai-pipeline {
    flex-direction: column;
  }
  .ai-card { max-width: 100%; }
  .ai-arrow { transform: rotate(90deg); }
  .discord-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .discord-features-left,
  .discord-features-right {
    flex-direction: row;
  }
  .discord-phone-center {
    order: -1;
    display: flex;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-tabbed {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .faq-tab {
    flex: 1;
    min-width: 120px;
    text-align: center;
  }
  /* Timeline goes vertical on tablet */
  .timeline {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 20px 40px;
  }
  .timeline-line {
    top: 0;
    left: 48px;
    width: 3px;
    height: 100%;
    transform: none;
  }
  .timeline-pulse {
    width: 100%;
    height: 80px;
    left: 0;
    top: -20%;
    background: linear-gradient(180deg, transparent, var(--color-primary), transparent);
    animation: pulse-travel-v 3s ease-in-out infinite;
  }
  @keyframes pulse-travel-v {
    0% { top: -20%; }
    100% { top: 100%; }
  }
  .timeline-step {
    flex-direction: row;
    align-items: center;
    max-width: 100%;
    gap: 20px;
  }
  .timeline-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .timeline-dot {
    margin-bottom: 0;
    position: absolute;
    left: -40px;
  }
  .timeline-content {
    text-align: left;
  }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.25rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
  }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-cta { display: none; }
  .nav-links.open ~ .nav-cta { display: none; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-left { align-items: center; }
  .hero-right { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-title { font-size: var(--text-4xl); }
  .phone-frame { width: 260px; height: 480px; }
  .phone-messages { height: 400px; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cappers-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .discord-features-left,
  .discord-features-right {
    flex-direction: column;
  }
  .entertainment-content h2 {
    font-size: var(--text-3xl);
  }
  .section-header h2 {
    font-size: var(--text-3xl);
  }
  .phone-mockup-channels .phone-frame {
    width: 240px;
    height: 440px;
  }
  .phone-channels {
    height: 360px;
  }
  .dashboard-grid {
    gap: 24px;
  }
  .dashboard-divider {
    display: none;
  }
  .dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .dashboard-value {
    font-size: var(--text-2xl);
  }
  .testimonial-text {
    font-size: var(--text-lg);
  }
  .testimonial-quote-mark {
    font-size: 60px;
  }
  /* Remove clip-paths on mobile for cleaner look */
  .ai-section,
  .discord-section,
  .steps-section,
  .testimonials-section {
    clip-path: none;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { gap: 16px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; }
  .sports-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sport-card { padding: 24px 16px; }
  .faq-tabs {
    flex-direction: column;
  }
  .faq-tab {
    text-align: left;
  }
}

/* ================================================
   SIGNUP MODAL
   ================================================ */
.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.signup-modal.active {
  opacity: 1;
  pointer-events: all;
}
.signup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.signup-modal__container {
  position: relative;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 48px);
  width: min(440px, 90vw);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 200, 83, 0.08);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.signup-modal.active .signup-modal__container {
  transform: translateY(0) scale(1);
}
.signup-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: #888;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}
.signup-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.signup-modal__header {
  text-align: center;
  margin-bottom: 24px;
}
.signup-modal__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 200, 83, 0.12);
  color: #00C853;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.signup-modal__title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.signup-modal__subtitle {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}
.signup-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.signup-modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.signup-modal__label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.signup-modal__input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}
.signup-modal__input::placeholder {
  color: #555;
}
.signup-modal__input:focus {
  border-color: #00C853;
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.15);
}
.signup-modal__input.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}
.signup-modal__error {
  font-size: 12px;
  color: #e74c3c;
  min-height: 0;
  transition: all 0.2s ease;
}
.signup-modal__error:not(:empty) {
  min-height: 18px;
}
.signup-modal__submit {
  width: 100%;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #00C853, #00E676);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.signup-modal__submit:hover {
  box-shadow: 0 0 40px rgba(0, 200, 83, 0.4);
  transform: translateY(-2px);
}
.signup-modal__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.signup-modal__submit .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: modal-spin 0.6s linear infinite;
  display: inline-block;
}
@keyframes modal-spin {
  to { transform: rotate(360deg); }
}
.signup-modal__disclaimer {
  text-align: center;
  font-size: 12px;
  color: #555;
  margin-top: 16px;
}/* ==========================================   FREE LAUNCH PHASE — ADDITIONAL CSS   ========================================== *//* --- Progress Bar (Hero) --- */.free-progress {  width: 100%;  max-width: 420px;  margin-bottom: 0.5rem;}.free-progress__header {  display: flex;  justify-content: space-between;  align-items: center;  margin-bottom: 0.5rem;  font-size: 0.85rem;  color: rgba(255,255,255,0.7);}.free-progress__count {  font-weight: 700;  font-size: 1rem;  color: #fff;}.free-progress__bar {  width: 100%;  height: 12px;  background: rgba(255,255,255,0.08);  border-radius: 999px;  overflow: hidden;  border: 1px solid rgba(0,200,83,0.2);}.free-progress__fill {  height: 100%;  background: linear-gradient(90deg, #00C853, #00e676);  border-radius: 999px;  transition: width 1.5s ease;  box-shadow: 0 0 12px rgba(0,200,83,0.5);  animation: progressPulse 2s ease-in-out infinite;}@keyframes progressPulse {  0%, 100% { box-shadow: 0 0 8px rgba(0,200,83,0.4); }  50% { box-shadow: 0 0 20px rgba(0,200,83,0.7); }}.free-progress__urgency {  margin-top: 0.5rem;  font-size: 0.8rem;  color: rgba(255,255,255,0.5);}.free-progress__urgency strong {  color: #00C853;}/* --- Strikethrough Prices --- */.price-strikethrough {  text-decoration: line-through;  color: rgba(255,255,255,0.35) !important;  font-size: 1.4rem !important;  margin-right: 0.5rem;}.price-free {  color: #00C853 !important;  font-size: 2.2rem !important;  font-weight: 800 !important;  text-shadow: 0 0 20px rgba(0,200,83,0.3);}/* --- FREE Badge on pricing cards --- */.pricing-badge-free {  background: linear-gradient(135deg, #00C853, #00e676) !important;  color: #000 !important;  font-weight: 700 !important;}/* --- FREE Highlight in Dashboard --- */.free-highlight {  color: #00C853 !important;  font-size: 2rem !important;  font-weight: 800 !important;  text-shadow: 0 0 20px rgba(0,200,83,0.4);  animation: freeGlow 2s ease-in-out infinite;}@keyframes freeGlow {  0%, 100% { text-shadow: 0 0 10px rgba(0,200,83,0.3); }  50% { text-shadow: 0 0 25px rgba(0,200,83,0.6), 0 0 50px rgba(0,200,83,0.2); }}/* --- Pricing Urgency Box --- */.pricing-urgency {  margin-top: 3rem;}.pricing-urgency__inner {  display: flex;  align-items: flex-start;  gap: 1rem;  background: rgba(0,200,83,0.06);  border: 1px solid rgba(0,200,83,0.2);  border-radius: 12px;  padding: 1.25rem 1.5rem;  max-width: 700px;  margin: 0 auto;}.pricing-urgency__icon {  font-size: 1.8rem;  flex-shrink: 0;}.pricing-urgency__text {  font-size: 0.95rem;  line-height: 1.6;  color: rgba(255,255,255,0.75);}.pricing-urgency__text strong {  color: #fff;}/* --- Pricing card price layout fix --- */.pricing-price {  display: flex;  flex-wrap: wrap;  align-items: baseline;  gap: 0;}.pricing-price .price-period {  width: 100%;  font-size: 0.8rem;  color: rgba(255,255,255,0.4);  margin-top: 0.25rem;}

/* --- Fix: 3-card pricing grid centering --- */
.pricing-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   MY ACCOUNT PAGE
   ========================================== */

.account-section {
  min-height: 100vh;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.account-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* --- Account Card (Steps 1, 2, 3) --- */
.account-card {
  max-width: 440px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: acctFadeIn 0.5s ease;
}
.account-card--wide {
  max-width: 720px;
  padding: 40px 36px;
  text-align: left;
}
.account-card--hidden {
  display: none !important;
}
@keyframes acctFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.account-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0,200,83,0.12);
  color: #00C853;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.account-card__icon--verify {
  background: rgba(88,101,242,0.12);
  color: #5865F2;
}
.account-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.account-card__subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.5;
}
.account-card__note {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  margin-top: 16px;
}

/* --- Form --- */
.account-form__field {
  margin-bottom: 16px;
  text-align: left;
}
.account-form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.account-form__input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.account-form__input:focus {
  outline: none;
  border-color: #00C853;
  box-shadow: 0 0 0 3px rgba(0,200,83,0.15);
}
.account-form__input::placeholder {
  color: rgba(255,255,255,0.25);
}
.account-form__submit {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

/* --- Code Inputs --- */
.code-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.code-digit {
  width: 48px;
  height: 56px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  font-family: 'Outfit', monospace;
  transition: border-color 0.2s;
}
.code-digit:focus {
  outline: none;
  border-color: #00C853;
  box-shadow: 0 0 0 3px rgba(0,200,83,0.15);
}

/* --- Account Link --- */
.account-link {
  color: #00C853;
  text-decoration: none;
  font-weight: 500;
}
.account-link:hover {
  text-decoration: underline;
}

/* --- Dashboard --- */
.account-dashboard__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.account-dashboard__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,200,83,0.12);
  color: #00C853;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.account-dashboard__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.account-dashboard__email {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin: 2px 0 0;
}

/* --- Info Cards Grid --- */
.account-dashboard__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
@media (max-width: 640px) {
  .account-dashboard__grid {
    grid-template-columns: 1fr;
  }
}

.account-info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
}
.account-info-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.account-info-card__header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.account-info-card__icon {
  font-size: 1.3rem;
}

/* --- Plan Details --- */
.plan-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #00C853;
  margin-bottom: 8px;
}
.plan-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.plan-badge--active {
  background: rgba(0,200,83,0.15);
  color: #00C853;
  border: 1px solid rgba(0,200,83,0.3);
}
.plan-badge--cancelled {
  background: rgba(255,68,68,0.15);
  color: #ff4444;
  border: 1px solid rgba(255,68,68,0.3);
}
.plan-detail {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.plan-detail__label {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}
.plan-detail__value {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

/* --- Access List --- */
.access-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.access-item {
  padding: 6px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.access-item--active {
  color: rgba(255,255,255,0.8);
}
.access-check {
  color: #00C853;
  font-weight: 700;
  font-size: 0.9rem;
}

/* --- Action Cards --- */
.account-dashboard__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 640px) {
  .account-dashboard__actions {
    grid-template-columns: 1fr;
  }
}
.account-action-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
}
.account-action-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}
.account-action-card p {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  margin: 0 0 12px;
  line-height: 1.5;
}
.account-action-card--cancel {
  border-color: rgba(255,68,68,0.15);
}

/* --- Payment Method --- */
.payment-method {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* --- Cancel Confirm --- */
.cancel-confirm {
  margin-bottom: 24px;
  animation: acctFadeIn 0.3s ease;
}
.cancel-confirm__inner {
  background: rgba(255,68,68,0.06);
  border: 1px solid rgba(255,68,68,0.2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.cancel-confirm__inner h3 {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  margin: 0 0 8px;
}
.cancel-confirm__inner p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin: 0 0 20px;
  line-height: 1.5;
}
.cancel-confirm__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* --- Danger Button --- */
.btn-danger {
  background: rgba(255,68,68,0.15);
  color: #ff4444;
  border: 1px solid rgba(255,68,68,0.3);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.btn-danger:hover {
  background: rgba(255,68,68,0.25);
}

/* --- Free Member Message --- */
.account-free-message {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(0,200,83,0.06);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.account-free-message__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.account-free-message strong {
  color: #fff;
  font-size: 0.95rem;
}
.account-free-message p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin: 4px 0 0;
  line-height: 1.5;
}

/* --- Back Button --- */
.account-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --- Spinner --- */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Nav active state for account page --- */
.nav-link.active {
  color: #00C853;
}

/* ==========================================
   MOBILE FIXES — March 2026
   ========================================== */

/* --- Fix: Hamburger menu (CSS expects .open, JS uses .active) --- */
@media (max-width: 768px) {
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 100;
  }
  .nav-links.active ~ .nav-cta { display: none; }
}

/* --- Fix: Pricing grid 3-col override breaking mobile --- */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
    max-width: 400px !important;
    margin: 0 auto !important;
  }
}

/* --- Fix: My Account card mobile optimization --- */
@media (max-width: 480px) {
  .account-section {
    padding: 90px 0 40px;
  }
  .account-card {
    padding: 32px 20px;
    margin: 0 12px;
    max-width: none;
  }
  .account-card--wide {
    padding: 28px 16px;
    margin: 0 12px;
    max-width: none;
  }
  .account-card__title {
    font-size: 1.5rem;
  }
  .account-card__subtitle {
    font-size: 0.9rem;
  }
  .code-inputs {
    gap: 6px;
  }
  .code-digit {
    width: 42px;
    height: 48px;
    font-size: 1.25rem;
    border-radius: 8px;
  }
  .account-dashboard__grid {
    grid-template-columns: 1fr;
  }
  .account-dashboard__actions {
    grid-template-columns: 1fr;
  }
  .account-free-message {
    flex-direction: column;
    gap: 8px;
    padding: 16px;
  }
  .plan-detail__label,
  .plan-detail__value {
    font-size: 0.82rem;
  }
  .cancel-confirm__actions {
    flex-direction: column;
    gap: 8px;
  }
  .cancel-confirm__actions .btn {
    width: 100%;
  }
}

/* --- Fix: Ensure buttons meet 44px minimum tap targets on mobile --- */
@media (max-width: 768px) {
  .btn-sm {
    min-height: 44px;
    padding: 10px 20px;
  }
  .btn-block,
  .account-form__submit {
    min-height: 48px;
    font-size: 1rem;
  }
  .pricing-card .btn {
    min-height: 44px;
    padding: 12px 24px;
  }
  .testimonial-dot {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
  .footer-links a {
    padding: 6px 0;
    display: inline-block;
    min-height: 36px;
    line-height: 24px;
  }
}