:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #18182400;
  --fg: #e8e8ed;
  --fg-muted: #8888a0;
  --accent-1: #ff6b35;
  --accent-2: #ff3864;
  --accent-gradient: linear-gradient(135deg, #ff6b35 0%, #ff3864 100%);
  --border: rgba(255,255,255,0.06);
  --radius: 16px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { 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: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 32px;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- HERO ---- */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px 100px;
  position: relative;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,107,53,0.3);
  background: rgba(255,107,53,0.08);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-content { max-width: 700px; }
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 540px;
}

/* ---- HERO VISUAL ---- */
.hero-visual {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 28px;
  min-width: 260px;
  backdrop-filter: blur(20px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat-card:hover {
  transform: translateX(-4px);
  border-color: rgba(255,107,53,0.2);
}
.card-1 { transform: translateX(0); }
.card-2 { transform: translateX(24px); }
.card-3 { transform: translateX(8px); }
.card-1:hover { transform: translateX(-4px); }
.card-2:hover { transform: translateX(20px); }
.card-3:hover { transform: translateX(4px); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* ---- SECTIONS SHARED ---- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-1);
  margin-bottom: 16px;
}
h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 56px;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step {
  padding: 32px 0;
  border-top: 2px solid var(--border);
  transition: border-color 0.3s ease;
}
.step:hover { border-color: var(--accent-1); }
.step-num {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-1);
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- FEATURES ---- */
.features {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(255,107,53,0.2);
  transform: translateY(-2px);
}
.feature-large {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255,107,53,0.06) 0%, rgba(255,56,100,0.04) 100%);
  border-color: rgba(255,107,53,0.15);
}
.feature-icon {
  font-size: 28px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}

/* ---- CLOSING ---- */
.closing {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-content {
  max-width: 640px;
  margin: 0 auto;
}
.closing h2 {
  margin-bottom: 24px;
}
.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--fg-muted);
}
.footer-links {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-links a {
  color: var(--accent-1);
  text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-visual {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 48px;
  }
  .stat-card { min-width: auto; flex: 1 1 140px; }
  .card-1, .card-2, .card-3 { transform: none; }
  .card-1:hover, .card-2:hover, .card-3:hover { transform: translateY(-2px); }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 40px 20px 60px; }
  .hero h1 { font-size: 40px; letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .section-container { padding: 0 20px; }
  .how-it-works, .features, .closing { padding: 80px 0; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { padding: 24px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px; }
  .closing { padding: 100px 0; }
  h2 { font-size: 32px; margin-bottom: 40px; }
  .footer-content { flex-direction: column; gap: 12px; }
  .hero-visual { flex-direction: column; }
  .stat-card { min-width: auto; }
}