:root {
  --bg: #1c1c1e;
  --bg-2: #252528;
  --fg: #f5f0e8;
  --fg-muted: #a8a49e;
  --accent: #e8a838;
  --accent-dim: rgba(232, 168, 56, 0.15);
  --green: #4ade80;
  --border: rgba(245, 240, 232, 0.1);
}

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

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

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-headline {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--fg);
  max-width: 560px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

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

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

.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 500;
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  color: var(--fg);
  font-weight: 700;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
}

.hero-stat-row {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  width: 280px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
}

.card-header {
  display: flex;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.card-dot.active { background: var(--accent); }

.card-body { display: flex; flex-direction: column; gap: 0.9rem; }

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-label { font-size: 0.78rem; color: var(--fg-muted); }

.metric-val {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}

.metric-val.green { color: var(--green); }
.metric-val.amber { color: var(--accent); }

.progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

.card-caption {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-align: right;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb-1 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.15) 0%, transparent 70%);
  top: -40px;
  right: 20px;
}

.orb-2 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.08) 0%, transparent 70%);
  bottom: -30px;
  left: -20px;
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg-muted);
  font-size: 0.8rem;
  margin-top: 3rem;
  padding-top: 2rem;
}

/* PROOF */
.proof {
  padding: 6rem 2rem;
  background: var(--bg-2);
}

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

.proof-header {
  margin-bottom: 3.5rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.proof-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.2s;
}

.proof-card:hover { border-color: var(--accent); }

.proof-icon {
  margin-bottom: 1.25rem;
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.proof-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 6rem 2rem;
}

.hiw-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hiw-header {
  margin-bottom: 4rem;
}

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.hiw-step { padding-top: 0.5rem; }

.step-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-dim);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.step-content h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.step-content p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.hiw-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 2.5rem;
  flex-shrink: 0;
}

/* MANIFESTO */
.manifesto {
  padding: 7rem 2rem;
  background: var(--bg-2);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.manifesto-quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.manifesto-attribution {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.manifesto-body p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* PRICING */
.pricing {
  padding: 6rem 2rem;
}

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

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 1rem auto 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-tier {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s;
}

.pricing-tier:hover { border-color: rgba(232, 168, 56, 0.4); }

.pricing-tier.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(232, 168, 56, 0.05) 0%, var(--bg-2) 60%);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 20px;
}

.pricing-tier h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--fg);
}

.tier-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.price-num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fg);
}

.price-period {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tier-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
}

.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

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

.closing-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

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

.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }

.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.footer-legal {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual { display: none; }

  .proof-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hiw-connector { display: none; }

  .step-num { font-size: 1.8rem; }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-stat-row { gap: 1.5rem; }

  .closing { padding: 5rem 2rem; }
  .manifesto { padding: 4rem 2rem; }
}