:root {
  --bg: #0b0b0f;
  --fg: #f5f0e8;
  --fg-muted: #8a8278;
  --accent: #e8a317;
  --accent-dim: #c48810;
  --card: #13131a;
  --card-border: #22222e;
  --green: #4ade80;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--card-border);
  background: rgba(11, 11, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--fg);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-mark {
  color: var(--accent);
  font-size: 1.2rem;
}

/* HERO */
.hero {
  padding: 8rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 600px;
  background: radial-gradient(ellipse at 50% -20%, rgba(232, 163, 23, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero-label {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 163, 23, 0.1);
  border: 1px solid rgba(232, 163, 23, 0.2);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  margin-bottom: 2rem;
}
.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.hero-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.2rem 2rem;
  display: inline-flex;
}
.hero-stat { text-align: center; padding: 0 1.5rem; }
.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.hero-stat-label { font-size: 0.75rem; color: var(--fg-muted); margin-top: 0.2rem; }
.hero-stat-divider { width: 1px; height: 36px; background: var(--card-border); }

/* HOW */
.how { padding: 5rem 2rem; background: var(--card); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.how-inner { max-width: 1000px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
  font-family: 'DM Mono', monospace;
}
.how-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.how-step { position: relative; }
.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.step-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65; }

/* FEATURES */
.features { padding: 5rem 2rem; }
.features-inner { max-width: 1000px; margin: 0 auto; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--card-border); border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; }
.feature-card {
  background: var(--card);
  padding: 2rem;
  transition: background 0.2s;
}
.feature-card:hover { background: #18181f; }
.feature-icon {
  width: 40px; height: 40px;
  background: rgba(232, 163, 23, 0.1);
  border: 1px solid rgba(232, 163, 23, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}
.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.65; }

/* PRICING */
.pricing { padding: 5rem 2rem; background: var(--card); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.pricing-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.pricing-sub { font-size: 0.9rem; color: var(--fg-muted); margin-bottom: 2.5rem; line-height: 1.7; }
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: left;
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0b0b0f;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-family: 'DM Mono', monospace;
}
.pricing-plan { font-size: 1rem; font-weight: 700; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.pricing-price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.75rem; }
.price-amount { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.04em; color: var(--fg); }
.price-period { font-size: 1rem; color: var(--fg-muted); }
.pricing-desc { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 2rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.check { color: var(--green); font-weight: 700; }

/* CLOSING */
.closing { padding: 6rem 2rem; }
.closing-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.closing-statement { font-size: 1.3rem; font-weight: 600; line-height: 1.6; color: var(--fg); }
.closing-statement span { color: var(--accent); }

/* FOOTER */
.footer { padding: 3rem 2rem; border-top: 1px solid var(--card-border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; font-weight: 700; }
.footer-tagline { font-size: 0.82rem; color: var(--fg-muted); }

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 6rem 1.5rem 4rem; }
  .how-steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-stat-row { padding: 1rem 1.2rem; gap: 0; }
  .hero-stat { padding: 0 1rem; }
  .hero-stat-value { font-size: 1.4rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}