/* OutboundHQ Theme */
:root {
  --bg: #0c0f1a;
  --surface: #141827;
  --surface2: #1c2035;
  --fg: #e8eaf2;
  --fg-muted: #8b90a7;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --border: rgba(232,234,242,0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 28px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  width: fit-content;
  border: 1px solid rgba(245,158,11,0.2);
}

.hero-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}

/* Agent Viz */
.agent-viz {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  font-size: 13px;
}
.viz-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.viz-stream { display: flex; flex-direction: column; gap: 16px; }
.stream-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-muted);
  font-size: 13px;
}
.stream-step.done { color: var(--fg); }
.step-icon { font-size: 11px; color: var(--accent); flex-shrink: 0; width: 16px; }
.stream-step.done .step-icon { color: #22c55e; }
.stream-bar {
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin-left: 26px;
}
.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}
.bar-fill.w60 { width: 60%; }
.bar-fill.w35 { width: 35%; }
.agent-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--fg-muted);
}
.status-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Shared Section Styles ── */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.section-inner.narrow { max-width: 720px; }
.section-inner.center { text-align: center; }

.section-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-sub {
  color: var(--fg-muted);
  font-size: 16px;
  margin-bottom: 56px;
}

/* ── How it Works ── */
.how-it-works {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.workflow {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.wf-step { flex: 1; min-width: 200px; }
.wf-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.wf-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.wf-body p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.wf-arrow {
  font-size: 20px;
  color: var(--fg-muted);
  flex-shrink: 0;
  padding-top: 24px;
}

/* ── Outcomes ── */
.outcomes { padding: 120px 0; background: var(--bg); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.outcome-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.outcome-card.accent { border-color: rgba(245,158,11,0.25); }
.outcome-stat {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}
.outcome-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.outcome-note {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Why Now ── */
.why-now { padding: 120px 0; background: var(--surface); border-top: 1px solid var(--border); }
.why-grid { display: flex; flex-direction: column; gap: 40px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon { flex-shrink: 0; margin-top: 2px; }
.why-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.why-item p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ── Closing ── */
.closing { padding: 120px 0; background: var(--bg); border-top: 1px solid var(--border); }
.closing-quote {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 32px;
}
.closing-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ── Footer ── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-name {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}
.brand-tagline {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.footer-note {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 60px 24px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 36px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .workflow { flex-direction: column; }
  .wf-arrow { display: none; }
  .section-inner { padding: 0 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .outcome-stat { font-size: 40px; }
  .hero { padding: 48px 20px; }
}