:root {
  --bg: #0f0f0f;
  --bg-elevated: #1a1a1a;
  --bg-card: #161616;
  --fg: #e8e4df;
  --fg-muted: #9a9590;
  --accent: #e85d26;
  --accent-glow: rgba(232, 93, 38, 0.15);
  --accent-light: #ff7a45;
  --border: #2a2725;
  --radius: 12px;
  --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);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 10% 80px;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(232, 93, 38, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(232, 93, 38, 0.04), transparent 50%),
    var(--bg);
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1px solid rgba(232, 93, 38, 0.3);
  border-radius: 100px;
  display: inline-block;
  background: var(--accent-glow);
}

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

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

.lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  color: var(--fg);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* FEATURES */
.features {
  padding: 100px 10%;
}

.features-header, .process-header {
  margin-bottom: 60px;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.features-header h2, .process-header h2, .closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(232, 93, 38, 0.4);
}

.feature-icon {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 20px;
}

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

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

/* PROCESS */
.process {
  padding: 100px 10%;
  background: var(--bg-elevated);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 24px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

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

.step-line {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.3;
  flex-shrink: 0;
  margin-top: 16px;
}

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

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

.closing h2 {
  margin-bottom: 28px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* FOOTER */
.site-footer {
  padding: 60px 10%;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.footer-location {
  color: var(--fg-muted);
  font-size: 0.82rem;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }
  
  .step-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
    margin-top: 0;
    margin-left: 24px;
  }
  
  .hero {
    padding: 80px 6% 60px;
    min-height: auto;
  }
  
  .features, .process, .closing {
    padding: 60px 6%;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .stat-divider {
    width: 40px;
    height: 1px;
  }
}