:root {
  --bg: #0c0c0c;
  --bg-card: #141414;
  --bg-terminal: #0a0a0a;
  --fg: #f0f0f0;
  --fg-muted: #888;
  --accent: #00e5a0;
  --accent-dim: rgba(0, 229, 160, 0.12);
  --border: #222;
  --red: #ff5f57;
  --yellow: #febc2e;
  --green: #00e5a0;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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 {
  display: flex;
  align-items: center;
  padding: 24px 48px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__logo {
  width: 28px; height: 28px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.nav__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav__cta:hover { opacity: 0.8; }

/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,160,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,160,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.hero__status-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__highlight { color: var(--accent); }
.hero__sub {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 440px;
}

/* terminal */
.hero__visual { position: relative; }
.hero__terminal {
  background: var(--bg-terminal);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 40px rgba(0,229,160,0.05);
}
.terminal__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #111;
  border-bottom: 1px solid var(--border);
}
.terminal__dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal__dot.red { background: #ff5f57; }
.terminal__dot.yellow { background: #febc2e; }
.terminal__dot.green { background: #00e5a0; }
.terminal__title {
  margin-left: 8px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--fg-muted);
}
.terminal__body { padding: 20px 20px 24px; }
.terminal__line {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.9;
  display: flex;
  gap: 10px;
}
.t-dim { color: #444; flex-shrink: 0; min-width: 160px; }
.t-green { color: var(--accent); }
.terminal__cursor { color: var(--accent); animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ─── STATS ─── */
.stats { padding: 0 48px; }
.stats__rule { height: 1px; background: var(--border); }
.stats__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  padding: 48px 0;
  align-items: center;
}
.stats__item { padding: 0 32px; }
.stats__number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.stats__label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stats__divider { width: 1px; height: 60px; background: var(--border); }

/* ─── HOW ─── */
.how { padding: 100px 48px; }
.how__header { margin-bottom: 64px; }
.how__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.how__sub {
  font-size: 22px;
  color: var(--fg-muted);
}
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.how__step {
  background: var(--bg);
  padding: 40px 36px;
}
.how__step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.how__step-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.how__step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── PRICING ─── */
.pricing { padding: 80px 48px 100px; }
.pricing__header { margin-bottom: 48px; }
.pricing__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.pricing__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
}
.pricing__card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), inset 0 0 60px rgba(0,229,160,0.04);
}
.pricing__card-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 6px 6px;
}
.pricing__card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.pricing__card-price {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 28px;
}
.pricing__card-period {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing__card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing__card-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing__card-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}
.pricing__card-note {
  font-size: 12px;
  color: #555;
}
.pricing__math {
  display: flex;
  justify-content: center;
}
.pricing__math-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,160,0.2);
  border-radius: 8px;
  font-family: var(--font-display);
}
.pricing__math-num { font-size: 18px; font-weight: 600; color: var(--fg-muted); }
.pricing__math-x { color: var(--fg-muted); font-size: 20px; }
.pricing__math-result { font-size: 28px; font-weight: 800; color: var(--accent); }

/* ─── OUTCOME ─── */
.outcome { padding: 100px 48px; }
.outcome__inner { max-width: 680px; }
.outcome__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.outcome__sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}
.outcome__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,160,0.2);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}
.outcome__tag-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
}

/* ─── FOOTER ─── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer__brand { display: flex; align-items: center; gap: 8px; }
.footer__logo {
  width: 22px; height: 22px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.footer__tagline { font-size: 13px; color: var(--fg-muted); }
.footer__copy { font-size: 12px; color: #444; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 64px; }
  .hero__visual { display: none; }
  .stats { padding: 0 24px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stats__divider { display: none; }
  .how { padding: 64px 24px; }
  .how__steps { grid-template-columns: 1fr; }
  .pricing { padding: 64px 24px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .outcome { padding: 64px 24px; }
  .nav { padding: 20px 24px; }
}
@media (max-width: 600px) {
  .stats__grid { grid-template-columns: 1fr; }
  .pricing__math-inner { flex-wrap: wrap; justify-content: center; }
  .hero__headline { font-size: 32px; }
}