:root {
  --bg: #0f0f14;
  --bg-2: #16161e;
  --accent: #00e5b8;
  --accent-dim: rgba(0, 229, 184, 0.12);
  --text: #f0ede8;
  --text-muted: rgba(240, 237, 232, 0.55);
  --border: rgba(240, 237, 232, 0.08);
  --card-bg: rgba(255, 255, 255, 0.03);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -0.3px;
}

.nav-tagline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── HERO ── */
.hero {
  padding: 100px 32px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-pill {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0, 229, 184, 0.2);
  letter-spacing: 0.2px;
}

/* ── WIDGET ── */
.hero-widget {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.widget-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.widget-entry {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.widget-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240, 237, 232, 0.2);
  flex-shrink: 0;
  margin-top: 5px;
}

.widget-dot.active { background: var(--accent); }

.widget-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.widget-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.widget-action {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── PROBLEM ── */
.problem {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}

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

.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
  max-width: 560px;
  line-height: 1.2;
}

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

.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}

.problem-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.problem-stat {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── SOLUTION ── */
.solution { padding: 96px 32px; max-width: 1100px; margin: 0 auto; }

.solution-header { margin-bottom: 56px; }

.solution-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.solution-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
}

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

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

.solution-card:hover { border-color: rgba(0, 229, 184, 0.3); }

.solution-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}

.solution-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.solution-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── VERTICALS ── */
.verticals {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}

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

.verticals-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.verticals-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 520px;
}

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

.vertical-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.vertical-icon {
  color: var(--accent);
  margin-bottom: 14px;
}

.vertical-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.vertical-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.outcomes-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.outcome-item {}

.outcome-metric {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

.outcome-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}

.manifesto-inner { max-width: 780px; margin: 0 auto; }

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 32px;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.manifesto-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ── CLOSING ── */
.closing { padding: 96px 32px; max-width: 1100px; margin: 0 auto; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 680px;
}

.closing-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 16px;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 32px;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .verticals-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero { padding: 64px 20px 56px; }
  .problem { padding: 56px 20px; }
  .problem-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .solution { padding: 64px 20px; }
  .solution-grid { grid-template-columns: 1fr; }
  .verticals { padding: 56px 20px; }
  .verticals-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 56px 20px; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .manifesto { padding: 56px 20px; }
  .closing { padding: 64px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}