:root {
  --bg: #0a0f1c;
  --bg-elevated: #111827;
  --bg-card: #1a2236;
  --fg: #f0ede8;
  --fg-muted: #94a3b8;
  --accent: #f59e0b;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --red-muted: #ef4444;
  --green-muted: #22c55e;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.accent { color: var(--accent); }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 28px;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.nav-cta {
  background: var(--accent);
  color: #0a0f1c;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.88; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero .lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: var(--accent);
  color: #0a0f1c;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.15s, transform 0.1s;
  display: inline-block;
}
.hero-btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ── PROBLEM ── */
.problem {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  text-align: center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.stat {
  text-align: center;
  padding: 36px 20px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 12px;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.problem-summary {
  text-align: center;
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ── FEATURES ── */
.features {
  padding: 100px 24px;
}

.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 40px 32px;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.feature-icon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-glow);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── DIFFERENCE ── */
.difference {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.difference-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.difference h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  text-align: center;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comp-col {
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}

.comp-old {
  background: var(--bg-card);
}

.comp-new {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.02));
  border-color: rgba(245, 158, 11, 0.25);
}

.comp-col h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.comp-old h3 { color: var(--fg-muted); }
.comp-new h3 { color: var(--accent); }

.comp-col ul {
  list-style: none;
}

.comp-col ul li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--fg-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-left: 20px;
  position: relative;
}

.comp-col ul li:last-child { border-bottom: none; }

.comp-old ul li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: var(--red-muted);
  font-size: 0.8rem;
}

.comp-new ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green-muted);
  font-size: 0.85rem;
}

.comp-new ul li {
  color: var(--fg);
}

/* ── CLOSING ── */
.closing {
  padding: 120px 24px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.closing-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent) !important;
  font-size: 1.25rem !important;
  margin-top: 32px !important;
}

/* ── FOOTER ── */
.site-footer {
  padding: 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { min-height: 70vh; padding: 80px 20px 60px; }
  .stats-row { grid-template-columns: 1fr; gap: 16px; }
  .stat { padding: 28px 16px; }
  .stat-number { font-size: 2.4rem; }
  .features-grid { grid-template-columns: 1fr; }
  .comparison { grid-template-columns: 1fr; }
  .feature-card { padding: 28px 24px; }
  .comp-col { padding: 28px 24px; }
  .problem, .features, .difference { padding: 64px 20px; }
  .closing { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero .lede { font-size: 1rem; }
  .feature-card h3 { font-size: 1.15rem; }
}
