:root {
  --bg: #080b12;
  --bg-alt: #0e1420;
  --bg-card: #111827;
  --fg: #f0f4ff;
  --fg-muted: #6b7a99;
  --accent: #00d4aa;
  --accent-dim: rgba(0, 212, 170, 0.10);
  --accent-glow: rgba(0, 212, 170, 0.25);
  --danger: #ff5a5a;
  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 30px;
  --text-3xl: 42px;
  --text-4xl: 56px;
  --radius: 12px;
  --radius-sm: 8px;
  --max-w: 1100px;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.mono { font-family: 'JetBrains Mono', monospace; }

.section-eyebrow {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-heading {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-3xl));
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.2;
  color: var(--fg);
}
.section-sub {
  font-size: var(--text-lg);
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #080b12;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
}
.btn-primary:hover {
  background: #00e8bb;
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 100px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.section-alt { background: var(--bg-alt); }

/* ── NAVBAR ─────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(8,11,18,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 30px;
  height: 30px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ── HERO ───────────────────────────────── */
.hero-section {
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(0,212,170,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,170,0.28);
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.12;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-subtext {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-note { font-size: var(--text-sm); color: var(--fg-muted); }
.hero-note a { color: var(--accent); text-decoration: none; }
.hero-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0 0 32px;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-avatar-stack { display: flex; }
.hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--bg-alt);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  overflow: hidden;
}
.hero-avatar:first-child { margin-left: 0; }
.hero-social-text { font-size: var(--text-sm); color: var(--fg-muted); }
.hero-social-text strong { color: var(--fg); }

/* Hero image panel */
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,212,170,0.07);
}
.hero-img-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.hero-img-badge {
  position: absolute;
  bottom: -16px;
  left: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}
.hero-img-badge-icon {
  width: 34px;
  height: 34px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-img-badge-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--fg); }
.hero-img-badge-text span { font-size: 12px; color: var(--fg-muted); }

/* ── LOGOS ──────────────────────────────── */
.logos-section { padding: 52px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); background: var(--bg-alt); }
.logos-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--fg-muted); text-align: center; margin-bottom: 28px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.logo-item { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 15px; color: var(--fg-muted); letter-spacing: -0.3px; opacity: 0.4; }

/* ── PROBLEM ────────────────────────────── */
.problem-section { padding: 96px 0; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 52px; }
.problem-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px;
  background: var(--bg-alt);
  transition: border-color 0.2s;
}
.problem-card:hover { border-color: rgba(255,255,255,0.12); }
.problem-card-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 14px; }
.problem-card h3 { font-size: 20px; font-weight: 700; color: var(--fg); margin-bottom: 12px; letter-spacing: -0.3px; }
.problem-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 22px; }
.problem-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
}
.too-expensive .problem-price-badge { background: rgba(255,90,90,0.1); color: #ff5a5a; border: 1px solid rgba(255,90,90,0.2); }
.too-dumb .problem-price-badge { background: rgba(107,122,153,0.1); color: var(--fg-muted); border: 1px solid rgba(255,255,255,0.06); }
.problem-vs { display: flex; align-items: center; justify-content: center; margin-top: 40px; }
.problem-vs-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: 99px;
  background: var(--accent-dim);
}
.problem-vs-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); flex-shrink: 0; }
.problem-vs-card p { font-size: 15px; font-weight: 600; color: var(--fg); margin: 0; }

/* ── HOW IT WORKS ───────────────────────── */
.how-section { padding: 96px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card {
  padding: 28px 24px;
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.step-card:hover { border-color: rgba(0,212,170,0.25); background: var(--bg-card); }
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 18px;
}
.step-card h3 { font-size: 15px; font-weight: 600; color: var(--fg); margin-bottom: 10px; }
.step-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.65; }
.step-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.step-card { position: relative; }

/* ── FEATURES ───────────────────────────── */
.features-section { padding: 96px 0; background: var(--bg-alt); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 52px; }
.feature-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--bg);
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(0,212,170,0.25); }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,170,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 15px; font-weight: 600; color: var(--fg); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* ── PRICING ────────────────────────────── */
.pricing-section { padding: 96px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; margin-bottom: 28px; }
.plan-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.plan-card:hover { border-color: rgba(255,255,255,0.12); }
.plan-card.featured { border-color: var(--accent); background: var(--accent-dim); box-shadow: 0 0 48px rgba(0,212,170,0.07); }
.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--accent);
  color: #080b12;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.plan-name-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.featured .plan-name-tag { color: var(--accent); }
.plan-price-row { display: flex; align-items: baseline; gap: 2px; margin-bottom: 8px; }
.plan-price { font-family: 'JetBrains Mono', monospace; font-size: 42px; font-weight: 700; color: var(--fg); letter-spacing: -1px; }
.plan-currency { font-size: 20px; color: var(--fg-muted); align-self: flex-start; margin-top: 8px; }
.plan-period { font-size: 15px; color: var(--fg-muted); margin-left: 2px; }
.plan-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 24px; flex: 1; }
.plan-divider { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 20px; }
.plan-features-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg); }
.plan-check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,170,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.featured .plan-check { background: rgba(0,212,170,0.2); border-color: rgba(0,212,170,0.4); }
.plan-cta { width: 100%; justify-content: center; }
.pricing-note { font-size: 13px; color: var(--fg-muted); }

/* ── CTA STRIP ─────────────────────────── */
.cta-section { padding: 96px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-inner .section-heading { margin-bottom: 16px; }
.cta-inner .section-sub { margin: 0 auto 40px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-note { margin-top: 16px; font-size: 13px; color: var(--fg-muted); }

/* ── FOOTER ─────────────────────────────── */
.footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { font-size: 18px; margin-bottom: 14px; display: inline-flex; }
.footer-brand p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--fg-muted); text-decoration: none; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--fg); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: var(--fg-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--fg-muted); text-decoration: none; transition: color 0.15s; }
.footer-bottom-links a:hover { color: var(--fg); }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}