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

:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --fg: #e8e6e3;
  --fg-muted: #8a8691;
  --accent: #ff3d00;
  --accent-glow: rgba(255, 61, 0, 0.15);
  --accent-2: #00d4ff;
  --accent-2-glow: rgba(0, 212, 255, 0.1);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 6vw 80px;
  position: relative;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-2-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-glow);
  border: 1px solid rgba(255, 61, 0, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
  width: fit-content;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ═══ FLOW SECTION ═══ */
.flow {
  padding: 100px 6vw;
  position: relative;
}

.flow-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.flow h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  max-width: 600px;
}

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

.flow-step {
  background: var(--bg-elevated);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}

.flow-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.flow-step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }

.flow-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.flow-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.flow-step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.flow-arrow {
  color: var(--accent);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══ STATS STRIP ═══ */
.stats {
  padding: 60px 6vw;
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  flex: 1;
  padding: 32px 0;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
}

.stat-value .highlight { color: var(--accent); }

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ═══ FEATURES ═══ */
.features {
  padding: 100px 6vw;
}

.features-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.features-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 500px;
}

.features-header p {
  color: var(--fg-muted);
  max-width: 360px;
  text-align: right;
  font-size: 0.95rem;
  line-height: 1.65;
}

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

.feature-card {
  background: var(--bg-elevated);
  padding: 48px 40px;
  position: relative;
}

.feature-card:first-child { border-radius: var(--radius) 0 0 0; }
.feature-card:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
.feature-card:nth-child(3) { border-radius: 0 0 0 var(--radius); }
.feature-card:last-child { border-radius: 0 0 var(--radius) 0; }

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.feature-icon.orange { background: var(--accent-glow); }
.feature-icon.blue { background: var(--accent-2-glow); }

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

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

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

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

.closing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  position: relative;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 40px 6vw;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.footer-brand .dot { color: var(--accent); }

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

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .flow { padding: 60px 24px; }
  .flow-steps { grid-template-columns: 1fr; gap: 2px; }
  .flow-step:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .flow-step:last-child { border-radius: 0 0 var(--radius) var(--radius); }
  .stats { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0; }
  .stat:last-child { border-bottom: none; }
  .features { padding: 60px 24px; }
  .features-header { flex-direction: column; align-items: flex-start; }
  .features-header p { text-align: left; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .feature-card:nth-child(2) { border-radius: 0; }
  .feature-card:nth-child(3) { border-radius: 0; }
  .feature-card:last-child { border-radius: 0 0 var(--radius) var(--radius); }
  .closing { padding: 80px 24px; }
  .footer { flex-direction: column; gap: 12px; text-align: center; }
}