:root {
  --bg: #F9F6F1;
  --surface: #FFFFFF;
  --fg: #1C1C1C;
  --fg-muted: #6B6B6B;
  --accent: #CC4A17;
  --accent-light: #F5EAE4;
  --border: #E8E0D6;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s ease;
}
.nav-cta:hover { background: #B03D12; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 48px 96px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 48px;
  max-width: 400px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.proof-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* EDITORIAL GRAPHIC */
.editorial-graphic {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(28,28,28,0.06);
}
.eg-header {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: #FAFAF9;
}
.eg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.eg-body {
  padding: 24px 28px;
}
.eg-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eg-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.eg-line {
  height: 8px;
  background: #EAE4DC;
  border-radius: 4px;
}
.eg-line.full { width: 100%; }
.eg-line.med { width: 72%; }
.eg-line.short { width: 45%; }
.eg-avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.eg-avatar-inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.eg-check {
  width: 28px;
  height: 28px;
  background: #F9F6F1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eg-actions {
  display: flex;
  gap: 10px;
}
.eg-btn {
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  background: #F2EEE8;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eg-btn.active {
  background: var(--accent);
  color: #fff;
}

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 48px;
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 32px;
  color: #F9F6F1;
}
.manifesto-body {
  font-size: 16px;
  color: #A8A29E;
  line-height: 1.7;
}

/* PROCESS */
.process {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.process-header {
  margin-bottom: 64px;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.15;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.step {
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 1px var(--accent);
}
.step-connector {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
  display: none;
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* OUTCOMES */
.outcomes {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 48px;
}
.outcomes-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.outcomes-grid {
  max-width: 1200px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.outcome {}
.outcome-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.outcome-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.outcome-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PRICING */
.outcomes-pricing {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pricing-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.pricing-period {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 400;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 15px;
  color: var(--fg-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--accent-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3l2 2 4-4' stroke='%23CC4A17' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.closing-inner {
  max-width: 640px;
}
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.closing-cta {}
.cta-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.cta-btn-primary:hover { background: #B03D12; }
.cta-sub {
  font-size: 14px;
  color: var(--fg-muted);
}

/* WAITLIST FORM */
.waitlist-form {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.waitlist-input {
  flex: 1;
  min-width: 160px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  background: var(--surface);
  outline: none;
  transition: border-color 0.15s ease;
}
.waitlist-input:focus {
  border-color: var(--accent);
}
.waitlist-input::placeholder {
  color: var(--fg-muted);
}
.waitlist-submit {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
  white-space: nowrap;
}
.waitlist-submit:hover {
  background: #B03D12;
}
.waitlist-success {
  font-size: 16px;
  color: #2D7A4F;
  font-weight: 500;
  margin-bottom: 12px;
}
.waitlist-error {
  font-size: 14px;
  color: var(--accent);
  margin-top: 4px;
}
.cta-secondary {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.cta-secondary:hover {
  color: var(--fg);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-meta p {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 12px !important;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px 64px; }
  .hero-headline { font-size: 36px; }
  .hero-right { order: -1; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 64px 24px; }
  .process { padding: 64px 24px; }
  .outcomes { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer { flex-direction: column; padding: 32px 24px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-input { min-width: unset; width: 100%; }
  .waitlist-submit { width: 100%; }
}