:root {
  --bg: #0A0B0F;
  --surface: #13151C;
  --surface-2: #1A1D27;
  --text: #F5F5F0;
  --text-muted: #94A3B8;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --slate: #64748B;
  --border: rgba(245, 158, 11, 0.15);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at top right, rgba(245,158,11,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.eyebrow-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 3px;
  display: inline-block;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 800px;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

.hero-proof {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 900px;
}

.proof-stat {
  flex: 1;
  padding: 24px 32px 24px 0;
}

.proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.proof-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
}

.proof-divider {
  width: 1px;
  background: var(--border);
  margin: 0 32px;
  align-self: stretch;
}

/* SECTION SHARED */
.section-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.75;
}

/* WHAT WE DO */
.what-we-do {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.offer-card {
  background: var(--surface);
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}

.offer-card:hover {
  background: var(--surface-2);
}

.offer-icon {
  margin-bottom: 20px;
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.offer-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.pipeline-steps {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 0;
}

.pipeline-step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 32px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pipeline-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4px;
  flex-shrink: 0;
}

.connector-line {
  width: 1px;
  height: 20px;
  background: var(--border);
}

.pipeline-result {
  margin-top: 56px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 40px;
}

.result-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: block;
}

.result-metrics {
  display: flex;
  align-items: center;
  gap: 0;
}

.metric {
  flex: 1;
  padding-right: 24px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.metric-divider {
  width: 1px;
  background: var(--border);
  margin: 0 32px;
  align-self: stretch;
}

/* VERTICALS */
.verticals {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--border);
}

.vertical-card {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.2s;
}

.vertical-card:hover {
  background: var(--surface);
}

.vertical-icon {
  margin-bottom: 20px;
}

.vertical-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.vertical-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 120px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.closing-content {
  max-width: 780px;
}

.closing-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 680px;
}

/* FOOTER */
.site-footer {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-links span {
  font-size: 0.82rem;
  color: var(--slate);
}

.footer-dot {
  color: var(--border) !important;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--slate);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .what-we-do, .how-it-works, .verticals, .closing { padding: 80px 24px; }
  .site-footer { padding: 48px 24px; }

  .offer-cards { grid-template-columns: 1fr; gap: 1px; }
  .vertical-grid { grid-template-columns: 1fr; }
  .pipeline-steps { flex-direction: column; gap: 1px; }
  .pipeline-connector { transform: rotate(90deg); padding: 4px 0; }
  .result-metrics { flex-direction: column; gap: 24px; }
  .metric-divider { display: none; }
  .hero-proof { flex-direction: column; gap: 24px; }
  .proof-divider { display: none; }
  .proof-stat { padding: 0; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .hero-proof .proof-stat:last-child { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 480px) {
  .section-headline { font-size: 1.6rem; }
  .closing-headline { font-size: 1.8rem; }
}