/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080b0e;
  --bg-2: #0e1318;
  --bg-card: #111620;
  --fg: #f0f2f5;
  --fg-2: #8a9aaa;
  --accent: #00e87a;
  --accent-dim: rgba(0, 232, 122, 0.12);
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- NAV --- */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex: 1;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--fg);
  text-decoration: none;
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--accent);
  color: #000;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* --- HERO --- */
.hero {
  padding: 80px 48px 64px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 60% 20%, rgba(0, 232, 122, 0.07) 0%, transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content { max-width: 560px; }
.hero-overline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(60px, 8vw, 100px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 480px;
  font-weight: 300;
}
.hero-visual {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(0,232,122,0.1);
}
.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.stat { padding: 0 40px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-2);
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.08);
}

/* --- HOW --- */
.how {
  padding: 96px 48px;
  background: var(--bg-2);
}
.how-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 56px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-2);
  font-weight: 300;
}
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.step {
  flex: 1;
  padding: 0 40px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-num {
  font-family: var(--font-head);
  font-size: 72px;
  color: rgba(0,232,122,0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.step-title {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-body {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.7;
  font-weight: 300;
}
.step-connector {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,232,122,0.4), rgba(0,232,122,0.1));
  margin-top: 40px;
  flex-shrink: 0;
}

/* --- FEATURES --- */
.features {
  padding: 96px 48px;
  background: var(--bg);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card {
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(0,232,122,0.3);
}
.feature-icon {
  margin-bottom: 24px;
  opacity: 0.9;
}
.feature-title {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-body {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.7;
  font-weight: 300;
}

/* --- OUTCOMES --- */
.outcomes {
  padding: 96px 48px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.outcomes-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.outcomes-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,232,122,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-weight: 500;
}
.outcomes-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 48px;
}
.outcomes-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.outcome {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--fg);
  font-weight: 400;
}

/* --- CLOSING --- */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,232,122,0.05) 0%, transparent 70%);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-tagline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* --- FOOTER --- */
.footer {
  padding: 32px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--fg);
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-2);
  font-weight: 300;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .hero { padding: 60px 24px 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 32px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .how { padding: 72px 24px; }
  .how-steps { flex-direction: column; gap: 48px; }
  .step { padding: 0; }
  .step-connector { display: none; }
  .features { padding: 72px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 32px; }
  .outcomes { padding: 72px 24px; }
  .closing { padding: 80px 24px; }
  .nav { padding: 20px 24px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 8px; }
}
