@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: #0c0e12;
  --bg-raised: #14171e;
  --bg-card: #1a1e27;
  --fg: #e8e9ec;
  --fg-muted: #8a8f9d;
  --accent: #f5a623;
  --accent-glow: rgba(245, 166, 35, 0.15);
  --accent-bright: #ffc857;
  --danger: #ff4d4f;
  --border: rgba(255,255,255,0.06);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ─── HERO ─── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

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

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

.hero-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 6px 14px;
  background: var(--accent-glow);
  border-radius: 6px;
  border: 1px solid rgba(245,166,35,0.2);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 6px;
}

/* ─── 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: 900px;
  margin: 0 auto;
}

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

.problem-lead {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 640px;
  margin-bottom: 48px;
}

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

.pain-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color 0.2s;
}

.pain-card:hover {
  border-color: rgba(245,166,35,0.25);
}

.pain-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}

.pain-card h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ─── FEATURES ─── */
.features {
  padding: 100px 24px;
}

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

.section-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.features h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 56px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.feature-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--bg-card);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  -webkit-text-stroke: 1px rgba(245,166,35,0.3);
}

.feature-content h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 10px;
}

.feature-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ─── CLOSING ─── */
.closing {
  padding: 100px 24px;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  text-align: center;
}

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

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

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.closing-accent {
  display: inline-block;
  margin-top: 40px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 10px 20px;
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 6px;
}

/* ─── FOOTER ─── */
footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

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

footer a {
  color: var(--accent);
  text-decoration: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 60px 20px 48px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .pain-grid { grid-template-columns: 1fr; }
  .feature-row { flex-direction: column; gap: 16px; }
  .feature-num { width: auto; font-size: 2.5rem; }
  .problem, .features, .closing { padding: 64px 20px; }
}
