:root {
  --bg: #0d0d0f;
  --bg-alt: #131316;
  --bg-card: #1a1a20;
  --fg: #f4f4f5;
  --fg-muted: #a1a1aa;
  --accent: #ff6b35;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --border: rgba(255,255,255,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Barlow', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(13,13,15,0.7);
  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-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.nav-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255,107,53,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(255,107,53,0.04) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.015) 79px,
      rgba(255,255,255,0.015) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.015) 79px,
      rgba(255,255,255,0.015) 80px
    );
  pointer-events: none;
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,107,53,0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.accent { color: var(--accent); }
.lede {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.pill {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  background: rgba(255,255,255,0.03);
}

/* ─── HOW ─────────────────────────────────── */
.how {
  padding: 6rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.how h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  max-width: 500px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.step { padding: 0; }
.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: rgba(255,107,53,0.2);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── PRICING ─────────────────────────────── */
.pricing {
  padding: 6rem 2rem;
  background: var(--bg);
}
.pricing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}
.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
  position: relative;
}
.plan-featured {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg);
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
}
.plan-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.plan-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 2rem;
}
.plan-price span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--fg-muted);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.plan-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 1.5rem;
  position: relative;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 800px;
  margin: 0 auto;
}

/* ─── PROOF ───────────────────────────────── */
.proof {
  padding: 6rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.5;
}
.proof-quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--fg);
  font-style: normal;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  text-align: left;
}

/* ─── OUTRO ───────────────────────────────── */
.outro {
  padding: 8rem 2rem;
  background: var(--bg);
  text-align: center;
}
.outro h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.15;
}
.outro p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FOOTER ─────────────────────────────── */
footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ─── MOBILE ─────────────────────────────── */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .proof-stats {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero { padding-top: 7rem; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  h1 { letter-spacing: -0.02em; }
}