/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0d0d;
  --bg-surface: #151515;
  --bg-surface2: #1e1e1e;
  --fg: #f5f0e8;
  --fg-muted: #a09a8c;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(245, 158, 11, 0.15);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); font-weight: 400; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ===== NAV ===== */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(13,13,13,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; }
.wordmark { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--fg); letter-spacing: -0.02em; }
.wordmark-dot { color: var(--accent); }
.nav-tag { font-family: var(--font-body); font-size: 0.75rem; color: var(--fg-muted); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }

/* ===== LAYOUT ===== */
.section-label { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }

/* ===== HERO ===== */
.hero { padding: 100px 32px 80px; }
.hero-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-eyebrow { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.hero-headline { font-family: var(--font-display); font-size: clamp(2.6rem, 4vw, 3.8rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 24px; }
.hero-sub { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.7; max-width: 420px; }

.stat-block { background: var(--bg-surface2); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.stat-row { display: flex; align-items: center; gap: 0; }
.stat { flex: 1; padding: 0 20px; }
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }
.stat-value { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--fg); letter-spacing: -0.02em; margin-bottom: 4px; }
.stat-label { font-size: 0.72rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
.stat-ltv { margin-top: 20px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.stat-ltv-label { font-size: 0.8rem; color: var(--fg-muted); }
.stat-ltv-value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.stat-outcomes { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.outcome-pill { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--fg-muted); font-weight: 500; }

/* ===== OUTCOMES ===== */
.outcomes { padding: 80px 32px; background: var(--bg-surface); }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.outcome-card { padding: 36px 32px; border: 1px solid var(--border); border-radius: 0; background: var(--bg); }
.outcome-icon { margin-bottom: 20px; }
.outcome-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--fg); margin-bottom: 12px; letter-spacing: -0.01em; }
.outcome-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

/* ===== INDUSTRIES ===== */
.industries { padding: 80px 32px; }
.industries-inner { max-width: 1100px; margin: 0 auto; }
.industries-headline { font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; color: var(--fg); letter-spacing: -0.025em; line-height: 1.2; max-width: 600px; margin-bottom: 48px; }
.industry-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); }
.industry-item { padding: 20px 24px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: var(--fg); }
.industry-item:nth-child(3n) { border-right: none; }
.industry-item:nth-child(n+4) { border-bottom: none; }
.industry-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.industries-note { margin-top: 32px; font-size: 0.85rem; color: var(--fg-muted); font-style: italic; }

/* ===== PROCESS ===== */
.process { padding: 80px 32px; background: var(--bg-surface); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.process-step { padding: 36px 32px; border: 1px solid var(--border); border-right: none; position: relative; }
.process-step:last-child { border-right: 1px solid var(--border); }
.step-number { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--accent-dim); letter-spacing: -0.04em; margin-bottom: 16px; line-height: 1; }
.step-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--fg); margin-bottom: 12px; letter-spacing: -0.01em; }
.step-desc { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.75; }

/* ===== MANIFESTO ===== */
.manifesto { padding: 100px 32px; background: var(--bg); }
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto-body { border-left: 2px solid var(--accent); padding-left: 40px; }
.manifesto-line { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 400; color: var(--fg-muted); line-height: 1.5; font-style: italic; }
.manifesto-line--indent { padding-left: 32px; color: var(--fg); }
.manifesto-close { color: var(--fg) !important; font-weight: 700; font-style: normal; font-size: clamp(1.5rem, 2.2vw, 2rem); margin-top: 8px; }

/* ===== CLOSING ===== */
.closing { padding: 60px 32px 80px; background: var(--bg-surface); }
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-statement { font-family: var(--font-display); font-size: clamp(1.1rem, 1.6vw, 1.4rem); font-weight: 400; color: var(--fg-muted); line-height: 1.7; }

/* ===== FOOTER ===== */
.footer { padding: 40px 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-tagline { font-size: 0.75rem; color: var(--fg-muted); }
.footer-meta { font-size: 0.75rem; color: var(--fg-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 64px 24px 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-sub { max-width: 100%; }

  .outcomes-grid { grid-template-columns: 1fr; }
  .industry-list { grid-template-columns: 1fr; }
  .industry-item { border-right: none; border-bottom: 1px solid var(--border); }
  .industry-item:last-child { border-bottom: none; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: 1px solid var(--border); border-bottom: none; }
  .process-step:last-child { border-bottom: 1px solid var(--border); }

  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .nav-inner { padding: 16px 24px; }

  .manifesto-body { padding-left: 24px; }
}

@media (max-width: 480px) {
  .stat-row { flex-direction: column; gap: 16px; }
  .stat-divider { width: 100%; height: 1px; }
  .stat { padding: 0 !important; }
}