:root {
  --bg: #08090d;
  --bg-elevated: #111318;
  --bg-card: #161820;
  --fg: #e8eaed;
  --fg-muted: #8b8f9a;
  --accent: #ff5c35;
  --accent-soft: rgba(255, 92, 53, 0.12);
  --accent-2: #ff8c35;
  --gradient: linear-gradient(135deg, #ff5c35, #ff8c35, #ffb347);
  --radius: 12px;
  --radius-lg: 20px;
  --space: clamp(1rem, 3vw, 1.5rem);
  --max-w: 1120px;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space);
}

.section-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ─── NAV ─── */
.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem var(--space);
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 4rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,92,53,0.08) 0%, transparent 70%),
    var(--bg);
}
.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem var(--space) 2rem;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  margin-bottom: 1.5rem;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-proof {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  align-self: center;
}

/* ─── HERO VISUAL ─── */
.hero-visual {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 0 var(--space);
}
.url-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius) var(--radius) 0 0;
}
.url-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.url-dot:first-child { background: #ff5f57; }
.url-dot:nth-child(2) { background: #febc2e; }
.url-dot:nth-child(3) { background: #28c840; }
.url-text {
  font-family: 'DM Sans', monospace;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-left: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.output-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}
.output-card {
  padding: 1.25rem 1rem;
  background: var(--bg-card);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.output-card:hover { background: var(--bg-elevated); }
.card-icon { color: var(--accent); font-size: 1rem; }

/* ─── HOW ─── */
.how {
  padding: 6rem 0;
  background: var(--bg);
}
.how h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 3rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.step p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── OUTPUTS ─── */
.outputs {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 70% 40% at 30% 100%, rgba(255,92,53,0.05) 0%, transparent 70%),
    var(--bg);
}
.outputs h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 3rem;
}
.outputs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.output-block {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.05);
}
.output-block.ob-large {
  grid-column: span 2;
}
.ob-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.output-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.output-block p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── PRICING ─── */
.pricing {
  padding: 6rem 0;
  background: var(--bg);
}
.pricing h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 3rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.price-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.price-card.price-featured {
  border-color: var(--accent);
  background:
    linear-gradient(var(--bg-card), var(--bg-card)),
    linear-gradient(135deg, rgba(255,92,53,0.15), rgba(255,140,53,0.05));
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.price-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-muted);
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.price-features li {
  font-size: 0.92rem;
  color: var(--fg-muted);
  padding-left: 1.5rem;
  position: relative;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ─── CLOSING ─── */
.closing {
  padding: 8rem 0 6rem;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(255,92,53,0.06) 0%, transparent 70%),
    var(--bg);
  text-align: center;
}
.closing-content {
  max-width: 720px;
  margin: 0 auto;
}
.closing h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ─── FOOTER ─── */
.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.footer-right {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .steps-grid,
  .outputs-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .output-block.ob-large {
    grid-column: span 1;
  }
  .output-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content { padding-top: 2rem; }
  .hero { min-height: auto; padding-bottom: 3rem; }
  .proof-divider { display: none; }
  .hero-proof { gap: 1.5rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .output-cards {
    grid-template-columns: 1fr;
  }
  .url-text { font-size: 0.75rem; }
}