/* ===== HOME PAGE ===== */
.home-page { padding-top: 66px; }

/* Ticker */
#ticker-bar {
  position: fixed;
  top: 66px; left: 0; right: 0;
  z-index: 700;
  background: linear-gradient(90deg, #0a0800, #111100, #0a0800);
  border-bottom: 1px solid rgba(255,215,0,0.12);
  height: 36px;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.ticker-item .tick-icon { font-size: 14px; }
.ticker-item.highlight { color: var(--gold); }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 1.5rem 80px;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,215,0,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(255,165,0,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(255,215,0,0.03) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,215,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black, transparent);
}
.hero-content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.07);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeIn 0.6s ease both;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.6s 0.1s ease both;
}
.hero-title .line-gold {
  display: block;
  background: linear-gradient(135deg, var(--gold), #FFA500, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line-white { display: block; color: var(--text-primary); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  font-weight: 400;
  animation: fadeIn 0.6s 0.2s ease both;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeIn 0.6s 0.3s ease both;
}
.hero-cta .vip-badge-pulse {
  background: rgba(220,30,30,0.15);
  border: 1px solid rgba(220,30,30,0.35);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #ff6b6b;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulseRed 2s infinite;
}
@keyframes pulseRed {
  0%,100% { box-shadow: 0 0 0 0 rgba(220,30,30,0.3); }
  50%      { box-shadow: 0 0 0 10px rgba(220,30,30,0); }
}

/* Stats Strip */
.stats-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.5px; }

/* Features Section */
.features-section { padding: 100px 0; }
.features-section .section-header { text-align: center; margin-bottom: 4rem; }
.features-section .section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.features-section .section-header p { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 1.25rem;
}
.feature-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Pricing Preview CTA */
.pricing-cta-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,215,0,0.04), transparent);
}
.pricing-cta-section h2 { font-size: clamp(2rem,5vw,3rem); font-weight: 900; margin-bottom: 1rem; }
.pricing-cta-section p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1rem; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* Footer */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 0.75rem; line-height: 1.6; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 0.5px; margin-bottom: 1rem; text-transform: uppercase; }
.footer-col a { display: block; font-size: 14px; color: var(--text-muted); margin-bottom: 8px; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}
.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { border-color: var(--gold); background: var(--gold-glow); }

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
