/* ===== THEME VARIABLES ===== */
:root {
  --bg-primary: #050507;
  --bg-secondary: #0a0a0f;
  --bg-tertiary: #1a1a24;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.05);
  --bg-input: rgba(255,255,255,0.04);
  --bg-overlay: rgba(0, 0, 0, 0.8);
  --text-heading: #fff;
  --text-primary: #e4e4e7;
  --text-secondary: #a1a1aa;
  --text-tertiary: #d4d4d8;
  --text-muted: #71717a;
  --text-placeholder: #52525b;
  --border-color: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.08);
  --border-stronger: rgba(255,255,255,0.1);
  --accent-green: #22c55e;
  --shadow-color: rgba(0,0,0,0.5);
  --marquee-fade: #050507;
  --nav-bg: rgba(5, 5, 7, 0.9);
  --mobile-nav-bg: rgba(5, 5, 7, 0.98);
}

[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f4f4f5;
  --bg-tertiary: #e4e4e7;
  --bg-card: rgba(0,0,0,0.02);
  --bg-card-hover: rgba(0,0,0,0.04);
  --bg-input: rgba(0,0,0,0.03);
  --bg-overlay: rgba(255, 255, 255, 0.85);
  --text-heading: #09090b;
  --text-primary: #27272a;
  --text-secondary: #52525b;
  --text-tertiary: #3f3f46;
  --text-muted: #71717a;
  --text-placeholder: #a1a1aa;
  --border-color: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.1);
  --border-stronger: rgba(0,0,0,0.15);
  --accent-green: #16a34a;
  --shadow-color: rgba(0,0,0,0.1);
  --marquee-fade: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.9);
  --mobile-nav-bg: rgba(255, 255, 255, 0.98);
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  background: none;
  border: 1px solid var(--border-stronger);
  border-radius: 8px;
  padding: 7px 8px;
  cursor: pointer;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.theme-toggle:hover {
  color: var(--text-heading);
  background: var(--bg-card);
}
.theme-toggle .icon-sun,
.theme-toggle .icon-moon { display: none; }
:root .theme-toggle .icon-sun { display: block; }
:root .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  transition: background 0.3s ease, color 0.3s ease;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== COLORS / GRADIENT ===== */
.gradient-text {
  background: linear-gradient(135deg, #22c55e, #10b981, #06d6a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ANIMATIONS ===== */
@keyframes float1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -40px) scale(1.1); } }
@keyframes float2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-40px, 30px) scale(1.15); } }
@keyframes float3 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(20px, 20px) scale(1.05); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marquee-reverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { 0% { left: -100%; } 100% { left: 200%; } }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #22c55e, #10b981);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #050507;
}
.logo-text { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: color 0.2s; }
.nav-links a:hover { color: var(--text-heading); }
.nav-cta {
  background: linear-gradient(135deg, #22c55e, #10b981) !important;
  color: #050507 !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3); }
.mobile-menu { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 4px; }
.mobile-menu span { display: block; width: 24px; height: 2px; background: var(--text-heading); transition: all 0.3s; border-radius: 2px; }
.mobile-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu.active span:nth-child(2) { opacity: 0; }
.mobile-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--mobile-nav-bg);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
  border-bottom: 1px solid var(--border-color);
}
.mobile-nav.active { display: flex; }
.mobile-nav a { font-size: 16px; padding: 12px 0; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
  max-width: 100vw;
}
.hero-bg-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%);
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: rgba(34, 197, 94, 0.08);
  top: -200px; right: -200px;
  animation: float1 8s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: rgba(16, 185, 129, 0.06);
  bottom: -100px; left: -200px;
  animation: float2 10s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: rgba(6, 214, 160, 0.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: float3 6s ease-in-out infinite;
}
.hero-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #22c55e;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text-heading);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 28px; font-weight: 800; color: var(--text-heading); }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border-stronger); }
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 40px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: all 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #22c55e, #10b981);
  color: #050507;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3); }
.btn-ghost {
  background: var(--border-color);
  color: var(--text-primary);
  border: 1px solid var(--border-stronger);
}
.btn-ghost:hover { background: var(--border-stronger); }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 12px; }
.trust-avatars { display: flex; }
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  margin-left: -8px;
  border: 2px solid var(--bg-primary);
}
.avatar:first-child { margin-left: 0; }
.a1 { background: #22c55e; color: #050507; }
.a2 { background: #3b82f6; color: var(--text-heading); }
.a3 { background: #f59e0b; color: #050507; }
.a4 { background: #ef4444; color: var(--text-heading); }
.a5 { background: var(--border-stronger); color: var(--text-secondary); }
.hero-trust span { font-size: 13px; color: var(--text-muted); }

/* ===== TICKER ===== */
.ticker-section {
  padding: 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(34, 197, 94, 0.02);
  position: relative;
  overflow: clip;
}
.ticker-label {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 1px;
  z-index: 2;
  background: var(--bg-primary);
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.ticker-bar { overflow: hidden; padding: 14px 0; }
.ticker-track {
  display: flex;
  gap: 32px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ticker-item::before {
  content: '';
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== FEATURES ===== */
.features { padding: 120px 0; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #22c55e;
  margin-bottom: 16px;
  text-align: center;
}
.features h2, .tools-section h2, .success-section h2, .how-it-works h2, .apply-section h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(34, 197, 94, 0.2);
  transform: translateY(-4px);
}
.feature-card.featured {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.04);
}
.feature-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-betting { background: rgba(34, 197, 94, 0.12); color: #22c55e; }
.icon-ecom { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.icon-ai { background: rgba(168, 85, 247, 0.12); color: #a855f7; }
.icon-community { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.icon-affiliate { background: rgba(236, 72, 153, 0.12); color: #ec4899; }
.icon-calls { background: rgba(6, 182, 212, 0.12); color: #06b6d4; }
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== TOOLS / BOTS ===== */
.tools-section { padding: 120px 0; }
.tools-grid { display: flex; flex-direction: column; gap: 80px; }
.tool-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tool-card.reverse { direction: rtl; }
.tool-card.reverse > * { direction: ltr; }
.tool-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.badge-purple { color: #a855f7; background: rgba(168, 85, 247, 0.1); border-color: rgba(168, 85, 247, 0.2); }
.tool-info h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.tool-info p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.tool-features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.tool-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-tertiary);
}

/* Phone mockup */
.phone-frame {
  background: var(--bg-secondary);
  border: 2px solid var(--border-stronger);
  border-radius: 32px;
  padding: 48px 20px 20px;
  max-width: 340px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 20px 60px var(--shadow-color);
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: var(--bg-tertiary);
  border-radius: 20px;
}
.notification-preview {
  background: var(--border-color);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}
.notif-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.notif-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #22c55e, #10b981);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: #050507;
}
.notif-header strong { font-size: 14px; color: var(--text-heading); }
.notif-time { font-size: 12px; color: var(--text-muted); margin-left: 8px; }
.notif-alert { font-size: 14px; font-weight: 700; color: #f59e0b; margin-bottom: 8px; }
.notif-detail { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.notif-2 { opacity: 0.7; }

/* Leaderboard */
.leaderboard {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}
.leaderboard-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  transition: background 0.2s;
}
.leaderboard-row:hover { background: var(--bg-input); }
.leaderboard-divider {
  height: 1px;
  background: var(--border-color);
  margin: 0 24px;
}
.lb-rank {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 20px;
  text-align: center;
}
.lb-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.lb-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-secondary);
}
.lb-badge.gold { background: #f59e0b; color: var(--text-heading); }
.lb-badge.silver { background: #94a3b8; color: var(--text-heading); }
.lb-badge.bronze { background: #c2703e; color: var(--text-heading); }
.lb-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-heading);
  flex: 1;
}
.lb-profit {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-tertiary);
  white-space: nowrap;
}

/* Odds screen banner */
.odds-screen-banner {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.06), rgba(34, 197, 94, 0.06));
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.odds-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 6px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.odds-screen-banner h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.odds-screen-banner p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.odds-mockup-placeholder {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.screen-line {
  height: 12px;
  background: var(--border-color);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.screen-line::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.15), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
.screen-line.short { width: 60%; }
.screen-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== SUCCESS / MARQUEE ===== */
.success-section { padding: 120px 0 80px; }
.success-category { margin-top: 48px; }
.category-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 28px;
  text-align: center;
}
.cat-icon { color: #22c55e; display: flex; }
.marquee-wrapper {
  overflow: clip;
  position: relative;
  padding: 10px 0;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(90deg, var(--marquee-fade), transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(-90deg, var(--marquee-fade), transparent); }
.marquee-track {
  display: flex;
  gap: 20px;
  animation: marquee 60s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-reverse { animation-name: marquee-reverse !important; }
.marquee-item {
  flex-shrink: 0;
  width: 300px;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-secondary);
  transition: all 0.3s;
}
.marquee-item:hover {
  border-color: rgba(34, 197, 94, 0.3);
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.marquee-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 120px 0; }
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  flex: 1;
  max-width: 320px;
}
.step-card:hover { border-color: rgba(34, 197, 94, 0.2); }
.step-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #22c55e, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 18px; font-weight: 700; color: var(--text-heading); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.step-connector { padding: 0 16px; color: var(--text-muted); }

/* ===== APPLY FORM ===== */
.apply-section { padding: 120px 0; }
.apply-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.apply-info .section-label { text-align: left; }
.apply-info h2 { text-align: left; }
.apply-info p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
.apply-benefits { display: flex; flex-direction: column; gap: 16px; }
.apply-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-tertiary);
}
.apply-form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.form-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border-color);
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #10b981);
  transition: width 0.4s ease;
  width: 0%;
}
.form-step { display: none; }
.form-step.active { display: block; animation: fadeUp 0.4s ease; }
.form-step-label { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.form-step h3 { font-size: 22px; font-weight: 700; color: var(--text-heading); margin-bottom: 24px; }
.form-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.form-option { cursor: pointer; }
.form-option input { display: none; }
.option-box {
  display: block;
  padding: 16px 20px;
  border: 1px solid var(--border-stronger);
  border-radius: 12px;
  font-size: 15px;
  color: var(--text-tertiary);
  transition: all 0.2s;
  background: var(--bg-card);
}
.option-box:hover { border-color: rgba(34, 197, 94, 0.3); background: rgba(34, 197, 94, 0.04); }
.form-option input:checked + .option-box {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
  color: var(--text-heading);
}
.form-fields { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-stronger);
  border-radius: 10px;
  color: var(--text-heading);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus { border-color: #22c55e; }
.form-group input::placeholder { color: var(--text-placeholder); }
.form-nav { display: flex; gap: 12px; }
.form-nav .btn-ghost { flex: 0; }
.form-nav .btn-primary { flex: 1; justify-content: center; }
.form-success { text-align: center; padding: 40px 0; }
.success-icon { margin-bottom: 20px; }
.form-success h3 { color: #22c55e; }
.form-success p { color: var(--text-secondary); }

/* ===== FOOTER ===== */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--border-color); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 8px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-heading); }
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}
.footer-bottom p { font-size: 12px; color: var(--text-placeholder); line-height: 1.7; margin-bottom: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-card { grid-template-columns: 1fr; gap: 40px; }
  .tool-card.reverse { direction: ltr; }
  .apply-wrapper { grid-template-columns: 1fr; }
  .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
  .cancel-modal { padding: 40px 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 22px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .steps-grid { flex-direction: column; gap: 20px; }
  .step-connector { transform: rotate(90deg); }
  .tool-info h3 { font-size: 24px; }
  .odds-screen-banner { padding: 40px 24px; }
  .apply-form-container { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .marquee-item { width: 250px; height: 320px; }
  .ticker-label { display: none; }
  .phone-frame { max-width: 280px; }
  .leaderboard { max-width: 100%; }
  .leaderboard-row { padding: 14px 16px; gap: 12px; }
  .lb-avatar { width: 36px; height: 36px; }
  .lb-name { font-size: 14px; }
  .lb-profit { font-size: 14px; }
  .hero { padding: 100px 20px 60px; overflow: clip; }
  .hero-content { max-width: 100%; }
  .ambient-orb { display: none; }
  .hero h1 { font-size: 24px; letter-spacing: -0.5px; }
  .hero h1 br { content: ' '; }
  .hero h1 br::after { content: ' '; }
  .hero-sub { font-size: 13px; }
  .hero-badge { font-size: 12px; padding: 6px 14px; }
  .section-sub { font-size: 14px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .stat-num { font-size: 20px; }
  .stat-divider { display: none; }
  .container { padding: 0 20px; }
  .features { padding: 80px 0; }
  .tools-section { padding: 80px 0; }
  .success-section { padding: 80px 0 60px; }
  .how-it-works { padding: 80px 0; }
  .apply-section { padding: 80px 0; }
  .odds-screen-banner h3 { font-size: 24px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .login-modal { padding: 32px 24px; }
  .cancel-modal { padding: 32px 24px; }
  .cancel-modal-actions { flex-direction: column; }
  .affiliate-link-box { flex-direction: column; }
  .affiliate-copy-btn { width: 100%; justify-content: center; }
  .dash-api-actions { flex-direction: column; }
  .dash-api-actions .btn { width: 100%; }
}

/* ===== LOGIN MODAL ===== */
.login-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-overlay);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.login-modal-overlay.active {
  display: flex;
}
.login-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  animation: fadeUp 0.3s ease;
}
.login-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.login-modal-close:hover { color: var(--text-heading); }
.login-modal-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.login-modal-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: 8px;
}
.login-modal-sub {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 28px;
}
.login-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.login-input-group input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-stronger);
  border-radius: 10px;
  color: var(--text-heading);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.login-input-group input:focus {
  border-color: #22c55e;
}
.login-input-group input::placeholder { color: var(--text-placeholder); }
.login-submit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.login-error {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  color: #ef4444;
  font-size: 13px;
  line-height: 1.5;
}
.login-error a { color: #22c55e; text-decoration: underline; }
.login-modal-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.login-modal-footer a { color: #22c55e; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.spin { animation: spin 1s linear infinite; }
.login-btn-loading { display: inline-flex; align-items: center; gap: 8px; }

/* ===== NAV LOGIN BUTTON ===== */
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  cursor: pointer;
}
.nav-login:hover { color: var(--text-heading); }
.nav-dashboard-link { color: #22c55e !important; }
.nav-dashboard-link:hover { color: var(--text-heading) !important; }
.mobile-login {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-login:hover { color: var(--text-heading); }
.mobile-dashboard-link { color: #22c55e !important; }

/* ===== MEMBER DASHBOARD ===== */
.dashboard-section {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border-color);
}
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.dashboard-header h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.5px;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
}
.dash-card-featured {
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.03);
}
.dash-card-finder {
  border-color: rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.03);
}
.dash-card-finder .dash-card-header svg { stroke: #3b82f6; }
.dash-card-finder .dash-affiliate-info strong { color: #3b82f6; }
.dash-card-leads {
  border-color: rgba(249, 115, 22, 0.2);
  background: rgba(249, 115, 22, 0.03);
}
.dash-card-leads .dash-card-header svg { stroke: #f97316; }
.dash-card-leads .dash-affiliate-info strong { color: #f97316; }
.dash-card-imagegen {
  border-color: rgba(168, 85, 247, 0.2);
  background: rgba(168, 85, 247, 0.03);
}
.dash-card-imagegen .dash-card-header svg { stroke: #a855f7; }
.dash-card-imagegen .dash-affiliate-info strong { color: #a855f7; }
.dash-card-reviews {
  border-color: rgba(244, 63, 94, 0.2);
  background: rgba(244, 63, 94, 0.03);
}
.dash-card-reviews .dash-card-header svg { stroke: #f43f5e; }
.dash-card-reviews .dash-affiliate-info strong { color: #f43f5e; }
.dash-card-chatbot {
  border-color: rgba(6, 182, 212, 0.2);
  background: rgba(6, 182, 212, 0.03);
}
.dash-card-chatbot .dash-card-header svg { stroke: #06b6d4; }
.dash-card-chatbot .dash-card-header span { color: #06b6d4; }
.dash-card-chatbot .dash-link { color: #06b6d4; }
.dash-card-tiktok {
  border-color: rgba(236, 72, 153, 0.2);
  background: rgba(236, 72, 153, 0.03);
}
.dash-card-tiktok .dash-card-header svg { stroke: #ec4899; }
.dash-card-tiktok .dash-card-header span { color: #ec4899; }
.dash-card-tiktok .dash-link { color: #ec4899; }
.dash-card-tiktok-analytics {
  border-color: rgba(244, 63, 94, 0.2);
  background: rgba(244, 63, 94, 0.03);
}
.dash-card-tiktok-analytics .dash-card-header svg { stroke: #f43f5e; }
.dash-card-tiktok-analytics .dash-card-header span { color: #f43f5e; }
.dash-card-tiktok-analytics .dash-link { color: #f43f5e; }
.dash-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}
.status-active {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.status-trialing {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.status-canceled, .status-expired {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.status-canceling {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.dash-detail {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-label { font-size: 13px; color: var(--text-muted); }
.dash-value { font-size: 13px; color: var(--text-tertiary); font-weight: 500; }

/* ===== AFFILIATE LINK ===== */
.dash-affiliate-info {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.dash-affiliate-info strong { color: #22c55e; }
.affiliate-link-box {
  display: flex;
  gap: 8px;
  align-items: center;
}
.affiliate-link-box input {
  flex: 1;
  padding: 12px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border-stronger);
  border-radius: 8px;
  color: #22c55e;
  font-size: 13px;
  font-family: 'Inter', monospace;
  outline: none;
}
.affiliate-copy-btn {
  padding: 12px 16px !important;
  white-space: nowrap;
  font-size: 13px !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.affiliate-no-link p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== QUICK LINKS ===== */
.dash-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dash-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: all 0.2s;
}
.dash-link:hover {
  background: var(--border-color);
  border-color: rgba(34, 197, 94, 0.2);
  color: var(--text-heading);
}

/* ===== API KEY DISPLAY ===== */
.dash-api-key {
  margin-bottom: 12px;
}
.dash-api-key input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-input);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 8px;
  color: #a855f7;
  font-size: 12px;
  font-family: 'Inter', monospace;
  outline: none;
  letter-spacing: 0.3px;
}
.dash-api-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dash-api-actions .btn {
  flex: 1;
  min-width: 100px;
  justify-content: center;
  font-size: 13px !important;
  padding: 10px 14px !important;
}

/* ===== MANAGE MEMBERSHIP ===== */
.dash-manage-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-danger-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 16px;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #ef4444;
  transition: all 0.2s;
}
.btn-danger-outline:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.4);
}

/* ===== CANCEL MODAL ===== */
.cancel-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-overlay);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cancel-modal-overlay.active {
  display: flex;
}
.cancel-modal {
  background: var(--bg-secondary);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: fadeUp 0.3s ease;
}
.cancel-modal-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cancel-modal-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: 8px;
}
.cancel-modal-sub {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 16px;
}
.cancel-modal-list {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.cancel-modal-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-tertiary);
}
.cancel-modal-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  flex-shrink: 0;
}
.cancel-modal-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
  padding: 12px;
  background: var(--bg-card);
  border-radius: 8px;
}
.cancel-modal-actions {
  display: flex;
  gap: 12px;
}
.cancel-modal-actions .btn {
  flex: 1;
  justify-content: center;
}
.btn-danger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  background: #ef4444;
  color: var(--text-heading);
  transition: all 0.2s ease;
}
.btn-danger:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

/* ===== WRITTEN GUIDES CARDS ===== */
.dash-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.dash-section-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0;
}
.dash-card-guide {
  border-color: rgba(245, 158, 11, 0.15);
  background: rgba(245, 158, 11, 0.03);
}
.dash-card-guide:hover {
  border-color: rgba(245, 158, 11, 0.3);
}
.dash-card-guide .dash-link {
  color: #f59e0b;
}
.dash-card-guide .dash-link:hover {
  border-color: rgba(245, 158, 11, 0.3);
}
