@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --bg-primary: #0C0C0E;
  --bg-secondary: #141418;
  --bg-card: #1A1A20;
  --fg-primary: #F5F0E8;
  --fg-secondary: #9B978F;
  --fg-muted: #5E5B55;
  --accent: #E8763A;
  --accent-soft: #E8763A22;
  --accent-glow: #E8763A44;
  --green: #3AD47A;
  --red: #E84A4A;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- HERO ---- */
.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg-primary);
  max-width: 800px;
  margin-bottom: 28px;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero .lede {
  font-size: 20px;
  color: var(--fg-secondary);
  max-width: 560px;
  line-height: 1.6;
}

/* ---- STATS BAR ---- */
.stats-bar {
  padding: 60px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item .number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .label {
  font-size: 14px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  max-width: 600px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid #252530;
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s;
}

.step-card:hover {
  border-color: var(--accent);
}

.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: #1E1E26;
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg-primary);
}

.step-card p {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.6;
}

/* ---- COMPARISON ---- */
.comparison {
  padding: 100px 0;
}

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

.comparison-card {
  border-radius: 16px;
  padding: 40px 32px;
}

.comparison-card.old {
  background: var(--bg-card);
  border: 1px solid #252530;
}

.comparison-card.new {
  background: linear-gradient(135deg, #1A1510 0%, #1A1A20 100%);
  border: 1px solid var(--accent);
}

.comparison-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #333;
}

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

.comparison-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.5;
}

.comparison-card li .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}

.comparison-card.old li .icon {
  background: #2A1A1A;
  color: var(--red);
}

.comparison-card.new li .icon {
  background: #1A2A1A;
  color: var(--green);
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.closing p {
  font-size: 18px;
  color: var(--fg-secondary);
  max-width: 480px;
  margin: 0 auto;
}

/* ---- FOOTER ---- */
footer {
  padding: 40px 0;
  border-top: 1px solid #1A1A20;
  text-align: center;
}

footer p {
  font-size: 13px;
  color: var(--fg-muted);
}

footer .brand {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg-secondary);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { padding: 80px 0 60px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .how-it-works { padding: 60px 0; }
  .comparison { padding: 60px 0; }
  .closing { padding: 80px 0; }
}