:root {
  --bg: #0C0C0E;
  --bg-elevated: #141418;
  --bg-card: #1A1A20;
  --fg: #E8E6E3;
  --fg-muted: #9A9690;
  --fg-dim: #5C5955;
  --accent: #E87C1E;
  --accent-glow: rgba(232, 124, 30, 0.15);
  --accent-light: #F5A623;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-icon {
  color: var(--accent);
  font-size: 20px;
}

.nav-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background: 
    radial-gradient(ellipse 70% 50% at 50% 0%, var(--accent-glow), transparent),
    linear-gradient(180deg, var(--bg) 0%, #0E0E12 100%);
}

.hero-inner {
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent-glow);
  border: 1px solid rgba(232, 124, 30, 0.25);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #FFFFFF 30%, var(--fg-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

/* Problem */
.problem {
  padding: 120px 24px;
  background: var(--bg);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-statement {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 56px;
}

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

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

.problem-card:hover {
  border-color: rgba(232, 124, 30, 0.2);
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

/* Features */
.features {
  padding: 120px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-inner .section-label {
  margin-bottom: 56px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.feature-block {
  padding: 44px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(232, 124, 30, 0.12);
  position: absolute;
  top: 20px;
  right: 28px;
  letter-spacing: -0.02em;
}

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

.feature-block p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
}

/* Comparison */
.comparison {
  padding: 120px 24px;
  background: var(--bg);
}

.comparison-inner {
  max-width: 800px;
  margin: 0 auto;
}

.comparison-inner .section-label {
  margin-bottom: 48px;
}

.comparison-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.comp-header,
.comp-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.comp-header {
  background: var(--bg-card);
}

.comp-cell {
  padding: 16px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.comp-header .comp-cell {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
}

.comp-label {
  font-weight: 500;
  color: var(--fg);
}

.comp-them {
  color: var(--fg-dim);
}

.comp-us {
  color: var(--accent-light);
  font-weight: 500;
}

.comp-row:last-child .comp-cell {
  border-bottom: none;
}

/* Closing */
.closing {
  padding: 140px 24px;
  background: 
    radial-gradient(ellipse 60% 40% at 50% 100%, var(--accent-glow), transparent),
    var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
}

/* Footer */
.site-footer {
  padding: 40px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-text {
  font-size: 13px;
  color: var(--fg-dim);
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .comp-header,
  .comp-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .comp-cell {
    padding: 12px 14px;
    font-size: 12px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .problem,
  .features,
  .comparison,
  .closing {
    padding: 80px 20px;
  }

  .feature-block {
    padding: 32px;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .comp-header .comp-cell {
    font-size: 10px;
  }

  .comp-cell {
    padding: 10px 10px;
    font-size: 11px;
  }
}