@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-subtle: #111118;
  --bg-card: #16161f;
  --fg: #e8e8ed;
  --fg-muted: #8a8a9a;
  --accent: #22d68a;
  --accent-glow: rgba(34, 214, 138, 0.15);
  --accent-dim: #1a9e68;
  --red: #ff4d4d;
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1080px;
}

* { 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.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HERO ── */
.hero {
  padding: 120px 0 80px;
  position: relative;
}

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

.hero .container {
  position: relative;
  z-index: 1;
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 24px;
}

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

.hero .lede {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 10px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn-hero-primary:hover {
  background: #1fc47d;
  box-shadow: 0 0 32px rgba(34, 214, 138, 0.3);
  transform: translateY(-1px);
}

.btn-hero-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 14px 24px;
  transition: color 0.2s;
}

.btn-hero-secondary:hover {
  color: var(--accent);
}

/* ── STATS STRIP ── */
.stats {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

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

/* ── PROBLEM ── */
.problem {
  padding: 100px 0;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.problem h2 .red {
  color: var(--red);
}

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

.pain-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
}

.pain-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 77, 77, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--red);
}

/* ── SOLUTIONS ── */
.solutions {
  padding: 100px 0;
}

.solutions h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.solutions .subtitle {
  color: var(--fg-muted);
  font-size: 18px;
  margin-bottom: 48px;
  max-width: 560px;
}

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

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

.solution-card:hover {
  border-color: rgba(34, 214, 138, 0.3);
}

.solution-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.solution-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

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

/* ── WHO WE SERVE ── */
.verticals {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.verticals h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.vert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vert-tag {
  padding: 12px 24px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  transition: all 0.2s;
}

.vert-tag:hover {
  border-color: var(--accent-dim);
  color: var(--accent);
}

/* ── CLOSING ── */
.closing {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.closing p {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

footer p {
  font-size: 14px;
  color: var(--fg-muted);
  font-family: var(--font-display);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 80px 0 60px; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .pain-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 0 60px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
}
/* ── SOLUTION CARD LINKS ── */
.solution-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.solution-link-arrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-dim);
  margin-top: 16px;
  transition: color 0.2s;
}

.solution-card-link:hover .solution-link-arrow {
  color: var(--accent);
}
