/* ─── Reset & Root ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0c0f14;
  --fg: #e8e3d8;
  --muted: #6b7280;
  --accent: #e8a838;
  --accent-dim: rgba(232, 168, 56, 0.12);
  --border: rgba(255,255,255,0.08);
  --card: #111318;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ─── Nav ─── */
.nav { padding: 20px 40px; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: baseline; gap: 16px; }
.nav-logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--fg); }
.nav-tagline { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }

/* ─── Hero ─── */
.hero { max-width: 1200px; margin: 0 auto; padding: 80px 40px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-badge { display: inline-block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); border: 1px solid rgba(232,168,56,0.3); padding: 4px 10px; border-radius: 2px; margin-bottom: 24px; }
.hero-headline { font-family: var(--font-display); font-size: clamp(42px, 5vw, 64px); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 20px; }
.hero-sub { font-size: 17px; color: rgba(232,227,216,0.65); line-height: 1.65; max-width: 480px; margin-bottom: 36px; }
.hero-stat { display: flex; align-items: baseline; gap: 10px; }
.stat-number { font-family: var(--font-display); font-size: 48px; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-label { font-size: 14px; color: var(--muted); }

/* Hero Widget */
.hero-widget { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; font-family: 'SF Mono', 'Fira Code', monospace; font-size: 12px; }
.widget-header { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.widget-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
.widget-label { color: var(--muted); flex: 1; }
.widget-time { color: rgba(232,227,216,0.3); }
.widget-line { height: 1px; background: var(--border); margin-bottom: 14px; }
.widget-event { display: flex; gap: 10px; padding: 6px 0; color: rgba(232,227,216,0.6); }
.event-time { color: var(--accent); min-width: 40px; opacity: 0.7; }
.widget-progress { margin-top: 14px; height: 2px; background: rgba(255,255,255,0.08); border-radius: 1px; }
.progress-bar { height: 100%; background: var(--accent); border-radius: 1px; }

/* ─── Brief ─── */
.brief { background: #0a0c10; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 40px; }
.brief-inner { max-width: 1200px; margin: 0 auto; }
.brief-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.brief-headline { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--fg); margin-bottom: 48px; max-width: 540px; }
.brief-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 28px; }
.brief-card { background: var(--card); padding: 28px 28px 32px; }
.brief-icon { width: 24px; height: 2px; background: var(--accent); margin-bottom: 14px; }
.brief-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.brief-card p { font-size: 14px; color: rgba(232,227,216,0.55); line-height: 1.55; }
.brief-email { display: flex; gap: 24px; }
.email-mono { font-family: 'SF Mono', 'Fira Code', monospace; font-size: 12px; color: var(--muted); }

/* ─── Features ─── */
.features { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.features-header { margin-bottom: 56px; }
.features-eyebrow { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 12px; }
.features-headline { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--fg); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border); }
.feature { padding: 32px 40px 32px 0; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); display: flex; gap: 20px; }
.feature:nth-child(even) { border-right: none; padding-right: 0; }
.feature:nth-last-child(-n+2) { border-bottom: none; }
.feature-marker { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 7px; }
.feature-body h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.feature-body p { font-size: 14px; color: rgba(232,227,216,0.55); line-height: 1.6; }

/* ─── Manifesto ─── */
.manifesto { background: var(--card); padding: 80px 40px; }
.manifesto-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.manifesto-quote { font-family: var(--font-display); font-size: clamp(24px, 2.8vw, 34px); font-style: italic; font-weight: 400; line-height: 1.3; color: var(--fg); border-left: 3px solid var(--accent); padding-left: 28px; }
.manifesto-body p { font-size: 16px; color: rgba(232,227,216,0.6); line-height: 1.7; margin-bottom: 16px; }
.manifesto-body p:last-child { margin-bottom: 0; }

/* ─── Outcomes ─── */
.outcomes { padding: 80px 40px; }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-eyebrow { display: block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 36px; }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.outcome { background: var(--card); padding: 36px 28px 40px; }
.outcome-metric { display: block; font-family: var(--font-display); font-size: 56px; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 10px; }
.outcome-label { font-size: 14px; color: rgba(232,227,216,0.55); line-height: 1.4; }

/* ─── Closing ─── */
.closing { padding: 80px 40px 100px; }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 60px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; color: var(--fg); margin-bottom: 20px; }
.closing-body { font-size: 17px; color: rgba(232,227,216,0.55); line-height: 1.65; max-width: 520px; }

/* ─── Footer ─── */
.footer { border-top: 1px solid var(--border); padding: 24px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 16px; }
.footer-brand { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--fg); }
.footer-copy { font-size: 13px; color: var(--muted); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 56px 24px 48px; grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 36px; }
  .hero-aside { display: none; }
  .brief { padding: 56px 24px; }
  .brief-grid { grid-template-columns: 1fr; }
  .features { padding: 56px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature { border-right: none; padding-right: 0; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 36px; }
  .manifesto-quote { font-size: 24px; }
  .outcomes { padding: 56px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing { padding: 56px 24px 80px; }
  .closing-headline { font-size: 30px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 30px; }
  .brief-email { flex-direction: column; gap: 6px; }
  .outcome-metric { font-size: 44px; }
}