/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #050508;
  --bg2: #0a0a0f;
  --bg3: #0f0f18;
  --gold: #f5c842;
  --gold2: #e8a800;
  --red: #e63946;
  --red2: #c1121f;
  --white: #ffffff;
  --gray: #8892a4;
  --gray2: #4a5568;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --glow-gold: 0 0 30px rgba(245,200,66,0.3);
  --glow-red: 0 0 30px rgba(230,57,70,0.4);
  --font: 'Inter', sans-serif;
  --font2: 'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

.gold { color: var(--gold); }
.red-text { color: var(--red); }
.highlight { color: var(--gold); font-style: italic; }
.highlight-red { color: var(--red); font-style: italic; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(5,5,8,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--white);
}
.logo-img { width: 44px; height: 44px; object-fit: contain; }
.logo-text { font-family: var(--font2); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: var(--gray); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000 !important; padding: 0.5rem 1.2rem; border-radius: 50px;
  font-weight: 700 !important; transition: all 0.3s !important;
}
.nav-cta:hover { box-shadow: var(--glow-gold); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 8rem 2rem 4rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.grid-overlay {
  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;
}
.glow-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb1 { width: 500px; height: 500px; background: var(--gold); top: -100px; right: -100px; animation-delay: 0s; }
.orb2 { width: 400px; height: 400px; background: var(--red); bottom: -100px; left: -100px; animation-delay: 3s; }
.orb3 { width: 300px; height: 300px; background: #6c63ff; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 6s; }
@keyframes orbFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute; width: 2px; height: 2px; background: var(--gold);
  border-radius: 50%; opacity: 0; animation: particleFly linear infinite;
}
@keyframes particleFly {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 900px; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--glass); border: 1px solid var(--glass-border);
  padding: 0.5rem 1.2rem; border-radius: 50px;
  font-size: 0.85rem; color: var(--gray); margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.hero-eyebrow i { color: var(--gold); }

.hero-title {
  font-family: var(--font2); font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 1.5rem; white-space: nowrap;
  color: #ffffff;
  text-shadow: 0 0 40px rgba(245,200,66,0.5), 0 0 80px rgba(245,200,66,0.2), 0 2px 4px rgba(0,0,0,0.8);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--gray);
  margin-bottom: 2rem; line-height: 1.8;
}

/* HERO WARNING BOX */
.hero-warning-box {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: rgba(230,57,70,0.08);
  border: 1px solid rgba(230,57,70,0.3);
  border-top: 3px solid var(--red);
  border-radius: 12px; padding: 1.2rem 1.5rem;
  margin: 0 auto 2rem; max-width: 700px;
  backdrop-filter: blur(10px);
  animation: fadeSlideUp 0.6s ease 1.5s both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hwb-left { display: flex; align-items: center; gap: 1rem; text-align: left; }
.hwb-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(230,57,70,0.15); border: 1px solid rgba(230,57,70,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.1rem; flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.4); } 50% { box-shadow: 0 0 0 8px rgba(230,57,70,0); } }
.hwb-text h3 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.hwb-text p { font-size: 0.8rem; color: var(--gray); }
.hwb-btn {
  display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap;
  background: var(--red); color: var(--white); text-decoration: none;
  padding: 0.6rem 1.2rem; border-radius: 8px; font-size: 0.85rem; font-weight: 600;
  transition: all 0.3s; flex-shrink: 0;
}
.hwb-btn:hover { background: var(--red2); box-shadow: var(--glow-red); transform: translateY(-2px); }

.hero-buttons {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  flex-wrap: wrap; animation: fadeSlideUp 0.6s ease 2s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000; text-decoration: none; padding: 0.9rem 2rem;
  border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  transition: all 0.3s;
}
.btn-primary:hover { box-shadow: var(--glow-gold); transform: translateY(-3px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--white); text-decoration: none; padding: 0.9rem 2rem;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  backdrop-filter: blur(10px); transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.3; } }

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block; background: rgba(245,200,66,0.1);
  border: 1px solid rgba(245,200,66,0.3); color: var(--gold);
  padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-header h2 { font-family: var(--font2); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===== REALITY CARDS ===== */
.reality-section { background: var(--bg2); }
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.reality-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 1.8rem; position: relative; overflow: hidden;
  backdrop-filter: blur(10px); transition: all 0.4s ease;
  opacity: 0; transform: translateY(30px);
}
.reality-card.visible { opacity: 1; transform: translateY(0); }
.reality-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.reality-card:hover::before { transform: scaleX(1); }
.reality-card:hover {
  border-color: rgba(245,200,66,0.3);
  box-shadow: 0 8px 40px rgba(245,200,66,0.1);
  transform: translateY(-6px);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem; margin-bottom: 1rem;
}
.card-tag {
  display: inline-block; background: rgba(245,200,66,0.08);
  border: 1px solid rgba(245,200,66,0.2); color: var(--gold);
  padding: 0.2rem 0.7rem; border-radius: 50px; font-size: 0.7rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.8rem;
}
.reality-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--white); }
.reality-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ===== COMPARISON ===== */
.comparison-section { background: var(--bg); }
.comparison-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: start;
}
.comp-side {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 2rem; backdrop-filter: blur(10px);
}
.comp-side.expected { border-top: 3px solid var(--gold); }
.comp-side.reality { border-top: 3px solid var(--red); }
.comp-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem; }
.comp-side.expected .comp-header i { color: var(--gold); font-size: 1.2rem; }
.comp-side.reality .comp-header i { color: var(--red); font-size: 1.2rem; }
.comp-header h3 { font-size: 1.1rem; font-weight: 700; }
.comp-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.comp-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.9rem; color: var(--gray); }
.comp-side.expected .comp-list i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.comp-side.reality .comp-list i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.comp-divider { display: flex; align-items: center; justify-content: center; padding-top: 3rem; }
.vs-badge {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; color: #000;
  box-shadow: 0 0 30px rgba(245,200,66,0.3);
}

/* ===== STATS ===== */
.stats-section { background: var(--bg3); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.stat-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 1.8rem; backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.stat-card:hover { border-color: rgba(245,200,66,0.3); transform: translateY(-4px); }
.stat-number { font-family: var(--font2); font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.9rem; color: var(--gray); margin-bottom: 1.2rem; line-height: 1.5; }
.stat-bar-wrap { background: rgba(255,255,255,0.06); border-radius: 50px; height: 6px; overflow: hidden; }
.stat-bar { height: 100%; border-radius: 50px; width: 0; transition: width 1.5s cubic-bezier(0.4,0,0.2,1); background: linear-gradient(90deg, var(--gold), var(--red)); }

/* ===== FINAL SECTION ===== */
.final-section {
  background: radial-gradient(ellipse at center, rgba(230,57,70,0.08) 0%, var(--bg) 70%);
  text-align: center;
}
.final-content { max-width: 800px; margin: 0 auto; }
.final-quote-mark { font-size: 8rem; line-height: 0.5; color: var(--red); opacity: 0.3; font-family: Georgia, serif; margin-bottom: 1rem; }
.final-quote { font-family: var(--font2); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; line-height: 1.3; margin-bottom: 1.5rem; }
.final-sub { color: var(--gray); font-size: 1.1rem; margin-bottom: 2.5rem; }
.final-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-glow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--red), var(--red2));
  color: var(--white); text-decoration: none; padding: 1rem 2.2rem;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(230,57,70,0.3);
}
.btn-glow:hover { box-shadow: var(--glow-red); transform: translateY(-3px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--glass-border); color: var(--white);
  text-decoration: none; padding: 1rem 2.2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem; transition: all 0.3s;
  background: var(--glass); backdrop-filter: blur(10px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--glass-border); padding: 3rem 0; }
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font2); font-size: 1.2rem; font-weight: 700; }
.footer-logo { width: 36px; height: 36px; object-fit: contain; }
.footer-note { color: var(--gray2); font-size: 0.82rem; max-width: 500px; line-height: 1.6; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--gray2); font-size: 0.78rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(5,5,8,0.98); padding: 1.5rem 2rem; gap: 1.2rem; border-bottom: 1px solid var(--glass-border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-title { white-space: normal; font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-warning-box { flex-direction: column; text-align: center; }
  .hwb-left { flex-direction: column; text-align: center; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comp-divider { padding: 0; }
  .vs-badge { width: 44px; height: 44px; font-size: 0.85rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .final-actions { flex-direction: column; align-items: stretch; }
  .btn-glow, .btn-outline { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .hero { padding: 7rem 1.5rem 3rem; }
  .section { padding: 4rem 0; }
  .container { padding: 0 1.2rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
}
