:root {
  --bg: #FAFAF7;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --accent: #E8A83E;
  --accent-dark: #C98B28;
  --surface: #FFFFFF;
  --surface-2: #F4F4EF;
  --border: #E5E4DF;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 32px;
}
.hero-cta {
  display: inline-block;
  margin-bottom: 40px;
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
}
.hero-cta:hover { background: var(--accent-dark); }
.hero-proof {
  display: flex;
  gap: 28px;
}
.proof-item {
  display: flex;
  flex-direction: column;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.proof-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero card stack */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 320px;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hero-card-1 { transform: rotate(-1deg); }
.hero-card-2 { transform: rotate(1.5deg); }
.hero-card-3 { transform: rotate(0.8deg); }
.hero-card-4 { transform: rotate(-0.5deg); }
.card-icon {
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* SHARED SECTION */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 48px;
}

/* WHAT YOU GET */
.what-you-get {
  background: var(--surface-2);
  padding: 80px 48px;
}
.what-you-get .section-heading {
  max-width: 600px;
}
.wyg-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wyg-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.wyg-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 14px 0 8px;
  color: var(--fg);
}
.wyg-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.wyg-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.wyg-item-cta {
  background: var(--accent);
  border-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wyg-cta-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--surface);
  text-align: center;
  line-height: 1.3;
}

/* PRICING */
.pricing {
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
}
.pricing-card-main {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(232,168,62,0.12);
}
.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
}
.price-period {
  font-size: 16px;
  color: var(--fg-muted);
}
.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
}
.pricing-features li {
  font-size: 14px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
}
.pricing-features li:first-child { border-top: none; }
.check { color: var(--accent); font-weight: 600; }
.pricing-card-alt {
  border: 1px solid var(--border);
}
.pricing-card-alt .price-amount { color: var(--fg-muted); }
.pricing-note {
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--surface-2);
  border-radius: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 700px;
}
.pricing-note strong { color: var(--fg); }

/* CTA button inside pricing cards */
.pricing-cta {
  display: block;
  margin-top: 24px;
  padding: 14px 24px;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s;
}
.pricing-cta:hover { background: var(--accent-dark); }
.pricing-cta-alt {
  background: var(--surface-2);
  color: var(--fg);
  border: 1px solid var(--border);
}
.pricing-cta-alt:hover { background: var(--border); }

/* HOW IT WORKS */
.how-it-works {
  background: var(--surface-2);
  padding: 80px 48px;
}
.hiw-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.hiw-step .step-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.hiw-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.hiw-step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.hiw-tools {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hiw-tools p {
  font-size: 14px;
  color: var(--fg-muted);
}

/* MANIFESTO */
.manifesto {
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.manifesto-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 16px;
}
.manifesto-callout {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--surface-2);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  max-width: 640px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 8px;
}
.manifesto-source {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CLOSING */
.closing {
  background: var(--fg);
  padding: 100px 48px;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--bg);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 18px;
  color: #999;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.55;
}
.closing-vibe {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--accent);
}

/* FOOTER */
.footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 48px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-legal {
  font-size: 12px;
  color: #bbb;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px; grid-template-columns: 1fr; gap: 40px; }
  .hero-proof { flex-direction: column; gap: 12px; }
  .hero-right { display: none; }
  .wyg-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; }
  .manifesto, .pricing, .how-it-works { padding: 60px 24px; }
  .what-you-get { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
}

@media (max-width: 480px) {
  .hero-card-stack { max-width: 100%; }
  .section-heading { font-size: 28px; }
  .proof-item { flex-direction: row; align-items: center; gap: 8px; }
  .proof-num { font-size: 20px; margin-bottom: 0; }
}
