/* ---- Variables ---- */
:root {
  --bg: #0f1117;
  --bg-2: #151820;
  --bg-3: #1a1f2a;
  --fg: #f0f0f0;
  --fg-muted: #8b8fa3;
  --fg-dim: #5c6070;
  --accent: #f59e0b;
  --accent-dim: #d97706;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --border: rgba(255,255,255,0.07);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}

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

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

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

/* ---- Nav ---- */
.nav {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.logo-accent { color: var(--accent); }
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---- Hero ---- */
.hero {
  padding: 80px 0 60px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-glow);
  border: 1px solid rgba(245,158,11,0.25);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-35 {
  color: var(--accent);
  font-size: clamp(4rem, 10vw, 8rem);
}
.stat-label {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--fg-muted);
  font-weight: 400;
  line-height: 1.3;
  max-width: 320px;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* Hero sides */
.hero-sides {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.side {
  padding: 28px 24px;
  background: var(--bg-2);
}
.side-before { background: var(--bg-2); }
.side-after { background: rgba(245, 158, 11, 0.04); }
.side-divider {
  width: 1px;
  background: var(--border);
}
.side-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 16px;
}
.accent-label { color: var(--accent); }
.side-content { display: flex; flex-direction: column; gap: 10px; }
.flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.step-icon { font-size: 1.1rem; flex-shrink: 0; width: 24px; text-align: center; }
.step-text { flex: 1; }
.flow-arrow {
  font-size: 0.75rem;
  color: var(--fg-dim);
  margin-left: 36px;
  font-family: var(--font-display);
}
.amber-check { color: var(--accent); }

/* ---- Proof ---- */
.proof {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.proof-stat {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  background: var(--bg-2);
}
.proof-stat:last-child { border-right: none; }
.proof-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.proof-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.proof-footnote {
  font-size: 0.7rem;
  color: var(--fg-dim);
  font-style: italic;
}

/* ---- How ---- */
.how {
  padding: 100px 0;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.how-header { margin-bottom: 60px; }
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.how-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.how-subtitle {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.6;
}
.how-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 40px;
}
.how-step {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step-connector {
  font-size: 1.2rem;
  color: var(--fg-dim);
  padding: 0 16px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.step-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.step-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.how-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.tools-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tool-tag {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ---- Outcomes ---- */
.outcomes {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.outcomes-header { margin-bottom: 48px; }
.outcomes-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.industry-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s;
}
.industry-card:hover { border-color: rgba(245,158,11,0.25); }
.industry-icon { font-size: 1.5rem; margin-bottom: 10px; }
.industry-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.industry-stat {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.pricing-callout {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius);
  padding: 32px;
}
.pricing-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.pricing-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.pricing-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.pricing-divider {
  width: 1px;
  height: 40px;
  background: rgba(245,158,11,0.2);
}
.pricing-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 280px;
  line-height: 1.5;
}

/* ---- Closing ---- */
.closing {
  padding: 100px 0;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.closing-icon { font-size: 2.5rem; margin-bottom: 28px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--fg);
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.closing-vision {
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 500;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.footer-tagline { font-size: 0.78rem; color: var(--fg-dim); }
.footer-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .hero { padding: 56px 0 48px; }
  .hero-sides {
    grid-template-columns: 1fr;
  }
  .side-divider { height: 1px; width: 100%; }
  .flow-arrow { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .proof-stat:last-child { border-bottom: none; }
  .how-steps { flex-direction: column; }
  .step-connector { display: none; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .pricing-inner { flex-direction: column; gap: 20px; }
  .pricing-divider { width: 40px; height: 1px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .nav-tagline { display: none; }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
  .hero-headline { flex-direction: column; gap: 8px; }
}