:root {
  --bg: #0c0c14;
  --bg-alt: #111122;
  --bg-card: #13132a;
  --fg: #e8e4d9;
  --fg-muted: #8a87a0;
  --accent: #f0a500;
  --accent-dim: rgba(240, 165, 0, 0.15);
  --border: rgba(240, 165, 0, 0.12);
  --terminal-green: #4ade80;
  --terminal-blue: #60a5fa;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
}

/* 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(240,165,0,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-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-proof {
  display: flex;
  gap: 40px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
}

.proof-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.proof-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* TERMINAL */
.terminal-window {
  background: #09091a;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(240,165,0,0.08);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  background: #0e0e22;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.terminal-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.terminal-title {
  font-size: 11px;
  color: var(--fg-muted);
  margin-left: 8px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.terminal-body {
  padding: 24px;
  min-height: 320px;
}

.terminal-line { font-size: 13px; line-height: 1.8; }
.terminal-prompt { color: var(--fg-muted); font-size: 11px; letter-spacing: 0.05em; }
.terminal-input { color: var(--fg); margin-bottom: 16px; padding-left: 4px; }
.terminal-spacer { height: 12px; }
.terminal-response { color: var(--fg-muted); margin-bottom: 12px; }
.agent-name { color: var(--terminal-blue); }

.progress-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-muted); }
.progress-item .check { color: var(--terminal-green); font-weight: bold; }
.progress-item.working { color: var(--accent); font-style: italic; }

.terminal-complete { color: var(--terminal-green); margin-top: 8px; }

/* SECTIONS */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-header {
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  font-weight: 300;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-alt);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.playbook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.playbook-step {
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.04);
  margin: -1px -1px 0 0;
  position: relative;
  transition: background 0.2s;
}

.playbook-step:hover { background: rgba(240,165,0,0.03); }

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(240,165,0,0.1);
  line-height: 1;
  margin-bottom: 24px;
}

.step-body h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.step-body p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* WHAT WE REMOVE */
.what-we-remove {
  padding: 120px 0;
  background: var(--bg);
}

.removal-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.removal-card {
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
}

.removal-icon {
  color: var(--accent);
  margin-bottom: 24px;
}

.removal-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.removal-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* PRICING */
.pricing-model {
  padding: 120px 0;
  background: var(--bg-alt);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2px;
  margin-top: 56px;
}

.pricing-tier {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 40px 36px;
  position: relative;
}

.tier-featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(240,165,0,0.08);
}

.tier-badge {
  position: absolute;
  top: -1px;
  right: 36px;
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.tier-header { margin-bottom: 28px; }
.tier-header h3 {
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.tier-features {
  list-style: none;
  margin-bottom: 28px;
}

.tier-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tier-features li::before {
  content: '—';
  color: var(--accent);
  font-size: 12px;
  margin-top: 2px;
}

.tier-note {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
}

.pricing-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* OUTCOME */
.outcome-proof {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.outcome-content h2 {
  font-size: 42px;
  margin-bottom: 24px;
}

.outcome-content p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.outcome-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
}

.outcome-stat { display: flex; flex-direction: column; }

.outcome-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.outcome-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 6px;
  line-height: 1.5;
}

.outcome-quote blockquote {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--accent);
  padding: 40px;
}

.outcome-quote blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.6;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 20px;
}

.outcome-quote cite {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: normal;
}

/* CLOSING */
.closing {
  padding: 140px 0;
  background: var(--bg-alt);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.closing h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 28px;
  line-height: 1.1;
}

.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* FOOTER */
footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-legal {
  font-size: 12px;
  color: var(--fg-muted);
  max-width: 480px;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { padding: 80px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .playbook-grid { grid-template-columns: 1fr; }
  .removal-categories { grid-template-columns: 1fr; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-legal { text-align: center; }
  .hero-proof { flex-wrap: wrap; gap: 24px; }
  .outcome-stats { flex-wrap: wrap; }
  .section-inner { padding: 0 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 48px; }
  .proof-num { font-size: 36px; }
  .tier-price { font-size: 40px; }
}
