:root {
  --bg-primary: #0c0c0f;
  --bg-secondary: #141419;
  --bg-card: #1a1a22;
  --fg-primary: #f0ece4;
  --fg-secondary: #9a9590;
  --fg-muted: #5c5855;
  --accent: #d4943a;
  --accent-glow: rgba(212, 148, 58, 0.15);
  --accent-soft: #b37a2e;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --max-width: 1120px;
}

* { 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: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── HERO ─── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.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: 8px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 148, 58, 0.2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 32px;
  width: fit-content;
}

.hero-badge span {
  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(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

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

/* ─── STATS BAR ─── */
.stats-bar {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

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

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

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

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

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

.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  transition: border-color 0.3s;
}

.timeline-card:hover {
  border-color: rgba(212, 148, 58, 0.2);
}

.timeline-card .step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(212, 148, 58, 0.1);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.timeline-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* ─── FEATURES ─── */
.features-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

.feature-card {
  padding: 36px;
  background: var(--bg-primary);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 148, 58, 0.15);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin: 0 auto 24px;
}

.closing-headline em {
  font-style: normal;
  color: var(--accent);
}

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

/* ─── FOOTER ─── */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

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

footer a {
  color: var(--fg-secondary);
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .timeline { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 36px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 36px; }
  .section-title { font-size: 28px; }
  .closing-headline { font-size: 28px; }
  .timeline-card { padding: 28px; }
  .feature-card { padding: 24px; }
}

/* ─── CTA BUTTON (landing page) ─── */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #0c0c0f;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}

.btn-cta:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.hero-cta-note {
  font-size: 14px;
  color: var(--fg-muted);
}