:root {
  --bg: #09090b;
  --bg-raised: #131316;
  --bg-card: #18181b;
  --fg: #f0ede8;
  --fg-muted: #8a8a8d;
  --accent: #ff6b2b;
  --accent-glow: rgba(255, 107, 43, 0.15);
  --green: #22c55e;
  --red: #ef4444;
  --border: rgba(255,255,255,0.06);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1100px;
}

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

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

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 120px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  background: var(--accent-glow);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 24px;
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 56px;
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.4;
}

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

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 24px;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 24px;
}

.problem-left p {
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-size: 16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--accent), var(--green));
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  position: relative;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  left: -24px;
  flex-shrink: 0;
}

.timeline-dot.missed { background: var(--red); box-shadow: 0 0 12px rgba(239,68,68,0.4); }
.timeline-dot.recovery { background: var(--accent); box-shadow: 0 0 12px rgba(255,107,43,0.4); }
.timeline-dot.booked { background: var(--green); box-shadow: 0 0 12px rgba(34,197,94,0.4); }

.timeline-content {
  display: flex;
  flex-direction: column;
}

.timeline-time {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
}

.timeline-text {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ===== HOW ===== */
.how {
  padding: 100px 24px;
}

.how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.how-inner > h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
}

.how-sub {
  color: var(--fg-muted);
  font-size: 17px;
  margin-bottom: 56px;
}

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

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.2s;
}

.how-card:hover {
  border-color: rgba(255, 107, 43, 0.3);
}

.how-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 107, 43, 0.2);
  margin-bottom: 16px;
  line-height: 1;
}

.how-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

/* ===== INDUSTRIES ===== */
.industries {
  padding: 100px 24px;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.industries-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.industries-inner > h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 48px;
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.2s;
}

.industry-item:hover {
  border-color: rgba(255, 107, 43, 0.3);
}

.industry-icon {
  font-size: 20px;
}

.industry-note {
  color: var(--fg-muted);
  font-size: 15px;
  font-style: italic;
}

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

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 17px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.closing-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 48px;
  background: var(--accent-glow);
  border: 1px solid rgba(255, 107, 43, 0.2);
  border-radius: 16px;
}

.closing-num {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.closing-label {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 280px;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

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

.footer-tagline {
  color: var(--fg-muted);
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 2.2rem; }
  .stat-divider { display: none; }
  
  .problem { padding: 64px 20px; }
  .problem-inner { grid-template-columns: 1fr; gap: 48px; }
  
  .how { padding: 64px 20px; }
  .how-grid { grid-template-columns: 1fr; }
  
  .industries { padding: 64px 20px; }
  
  .closing { padding: 80px 20px; }
  .closing-stat { padding: 24px 32px; }
  .closing-num { font-size: 2.4rem; }
}