*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0D0D0D;
  --card: #1A1A1A;
  --accent: #7C5CFC;
  --accent2: #A78BFA;
  --text: #FFFFFF;
  --muted: #888888;
  --border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 24px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; }
.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,252,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 700px; }
.badge {
  display: inline-block;
  background: rgba(124,92,252,0.15);
  border: 1px solid rgba(124,92,252,0.4);
  color: var(--accent2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}
.headline {
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.headline .accent { color: var(--accent); }
.subline {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-group { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.primary-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.primary-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.cta-note { font-size: 13px; color: var(--muted); }

/* SECTIONS */
.how, .fears, .features, .testimonials { padding: 100px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub { color: var(--muted); font-size: 16px; max-width: 560px; margin-bottom: 56px; }

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.step { padding: 32px; background: var(--card); border-radius: 20px; border: 1px solid var(--border); }
.step-num { font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--accent); margin-bottom: 16px; }
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* FEARS */
.fears { background: #0A0A0A; }
.fear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 56px;
}
.fear-card {
  padding: 28px 24px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.fear-card.red { border-color: rgba(239,68,68,0.3); }
.fear-card.blue { border-color: rgba(59,130,246,0.3); }
.fear-card.yellow { border-color: rgba(234,179,8,0.3); }
.fear-card.green { border-color: rgba(34,197,94,0.3); }
.fear-card.purple { border-color: rgba(168,85,247,0.3); }
.fear-icon { font-size: 28px; margin-bottom: 12px; }
.fear-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.fear-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.feature-card {
  padding: 32px;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(124,92,252,0.4); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* TESTIMONIALS */
.testimonials { background: #0A0A0A; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  padding: 32px;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
}
.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card span { font-size: 13px; color: var(--muted); }

/* FINAL CTA */
.final-cta {
  padding: 120px 24px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(124,92,252,0.1) 0%, transparent 70%);
}
.final-cta h2 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.final-cta p { color: var(--muted); font-size: 18px; margin-bottom: 32px; }

/* FOOTER */
footer {
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }

/* HERO SPLIT */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-image-wrap {
  flex: 0 0 560px;
  position: relative;
}
.hero-img {
  width: 100%;
  border-radius: 12px;
  border: none;
  box-shadow: 0 0 80px rgba(124,92,252,0.25);
  display: block;
}
.hero-img-label {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* VAEL INTRO */
.vael-intro { padding: 100px 24px; background: #0A0A0A; }
.vael-split {
  display: flex;
  align-items: center;
  gap: 60px;
}
.vael-img-wrap { flex: 0 0 420px; }
.vael-img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(124,92,252,0.2);
  box-shadow: 0 0 40px rgba(124,92,252,0.15);
}
.vael-text { flex: 1; }
.vael-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.vael-quote {
  font-style: italic;
  color: var(--accent2) !important;
  font-size: 18px !important;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-top: 24px !important;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-split { flex-direction: column; }
  .hero-image-wrap { flex: none; width: 100%; max-width: 320px; }
  .vael-split { flex-direction: column; }
  .vael-img-wrap { flex: none; width: 100%; max-width: 280px; }
  .headline { letter-spacing: -1px; }
  .fear-grid { grid-template-columns: 1fr 1fr; }
  .steps, .feature-grid, .testimonial-grid { grid-template-columns: 1fr; }
}
