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

:root {
  --bg: #0d1117;
  --surface: #161b22;
  --surface2: #1c2230;
  --amber: #f59e0b;
  --amber-dim: #f59e0b26;
  --amber-glow: #f59e0b18;
  --cream: #fdf6ec;
  --text: #e6edf3;
  --text-muted: #8b949e;
  --text-dim: #484f58;
  --border: #21262d;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav-tag {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #1a5c8a18 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* === HERO VISUAL === */
.hero-right { position: relative; z-index: 1; display: flex; justify-content: center; }

.hero-visual {
  position: relative;
  width: 340px;
  height: 340px;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--amber-dim);
}

.visual-ring-1 { width: 340px; height: 340px; top: 0; left: 0; animation: spin 20s linear infinite; }
.visual-ring-2 { width: 260px; height: 260px; top: 40px; left: 40px; animation: spin 15s linear infinite reverse; border-color: var(--amber-glow); }
.visual-ring-3 { width: 180px; height: 180px; top: 80px; left: 80px; border-color: var(--amber-dim); }

@keyframes spin { to { transform: rotate(360deg); } }

.visual-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.visual-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  min-width: 140px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.visual-card-1 { top: 10px; right: 10px; }
.visual-card-2 { bottom: 30px; right: -10px; }
.visual-card-3 { bottom: 10px; left: 10px; }

.card-icon {
  width: 24px; height: 24px;
  background: var(--amber-dim);
  border-radius: 6px;
  margin-bottom: 8px;
}

.card-lines { display: flex; flex-direction: column; gap: 5px; }

.card-line {
  height: 6px;
  background: var(--border);
  border-radius: 4px;
  width: 100%;
}

.card-line-short { width: 60%; }
.card-line-med { width: 80%; }

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--amber-dim);
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.card-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 36px;
  padding-top: 4px;
}

.chart-bar {
  width: 14px;
  background: var(--border);
  border-radius: 3px;
  transition: background 0.3s;
}

.chart-bar-active { background: var(--amber); }

/* === MANIFESTO === */
.manifesto {
  padding: 120px 24px;
  background: var(--surface);
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-dim), transparent);
}

.manifesto-inner { max-width: 1100px; margin: 0 auto; }

.manifesto-label,
.playbook-label,
.outcomes-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 20px;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 60px;
  max-width: 700px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 60px;
}

.manifesto-stat {
  background: var(--surface2);
  padding: 40px 36px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.stat-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.manifesto-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}

/* === PLAYBOOK === */
.playbook { padding: 120px 24px; }

.playbook-inner { max-width: 1100px; margin: 0 auto; }

.playbook-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 60px;
  max-width: 620px;
}

.playbook-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.playbook-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.2s;
}

.playbook-card:hover { border-color: var(--amber-dim); }

.playbook-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amber);
}

.playbook-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.playbook-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === OUTCOMES === */
.outcomes {
  padding: 120px 24px;
  background: var(--surface);
  position: relative;
}

.outcomes::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-dim), transparent);
}

.outcomes-inner { max-width: 1100px; margin: 0 auto; }

.outcomes-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 24px;
}

.outcomes-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.outcome-stack { display: flex; flex-direction: column; gap: 2px; }

.outcome-item {
  background: var(--surface2);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.outcome-item-highlight { border: 1px solid var(--amber-dim); background: var(--amber-glow); }

.outcome-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--amber);
  min-width: 120px;
  letter-spacing: -1px;
}

.outcome-number span { font-size: 18px; font-weight: 400; color: var(--text-muted); }

.outcome-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === CLOSING === */
.closing { padding: 140px 24px; position: relative; }

.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-dim), transparent);
}

.closing-inner { max-width: 1100px; margin: 0 auto; }

.closing-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -2px;
  max-width: 800px;
}

.closing-sub {
  font-size: 22px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 640px;
}

.closing-body {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

.closing-note {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--amber-dim);
  border-radius: 100px;
  font-size: 14px;
  color: var(--amber);
  font-weight: 500;
  background: var(--amber-glow);
}

/* === LEAD FORM === */
.lead-form {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
  max-width: 560px;
}
.lead-form input {
  flex: 1;
  min-width: 140px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.lead-form input:focus { border-color: var(--amber-dim); }
.lead-form input::placeholder { color: var(--text-dim); }
.lead-success {
  margin-top: 16px;
  color: var(--amber);
  font-size: 15px;
  font-weight: 500;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

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

.footer-copy {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-meta {
  font-size: 12px;
  color: var(--text-dim);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { display: none; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .playbook-grid { grid-template-columns: 1fr; }
  .outcomes-split { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 30px; }
  .closing-headline { font-size: 32px; }
  .outcome-number { min-width: 80px; font-size: 22px; }
}

@media (max-width: 480px) {
  .manifesto-stat { padding: 28px 24px; }
  .stat-number { font-size: 36px; }
  .playbook-card { padding: 24px; }
  .outcome-item { padding: 18px 20px; }
}

/* === SELECTION === */
::selection { background: var(--amber-dim); color: var(--text); }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }
