:root {
  --bg: #0f0f0f;
  --fg: #f5f0eb;
  --fg-muted: #8a857e;
  --accent: #e8532a;
  --accent-dim: #3d1f10;
  --border: #2a2724;
  --card-bg: #181614;
  --card-border: #2e2a26;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* NAVBAR */
.navbar {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* HERO */
.hero {
  padding: 7rem 2rem 5rem;
  text-align: center;
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
}
.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* MANIFESTO */
.manifesto {
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.manifesto-quote {
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.manifesto-quote p {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--fg);
}
.manifesto-body p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* FEATURES */
.features {
  padding: 6rem 2rem;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 3rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  overflow: hidden;
}
.feature-card {
  background: var(--card-bg);
  padding: 2.5rem;
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 8px;
  margin-bottom: 1.2rem;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* HOW IT WORKS */
.howitworks {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}
.howitworks-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  padding: 0 2rem 0 0;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; padding-right: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.6;
  display: block;
  margin-bottom: 1rem;
}
.step-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* PRICING */
.pricing {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}
.pricing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.pricing-sub {
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 3rem;
  text-align: left;
}
.pricing-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2rem;
  line-height: 1;
}
.currency {
  font-size: 2rem;
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}
.per {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}
.pricing-features li {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing-features li::before {
  content: '—';
  color: var(--accent);
  font-size: 0.8rem;
}
.pricing-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
  opacity: 0.7;
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.2;
}

/* FOOTER */
.footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .step {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
  }
  .step:last-child { border-bottom: none; padding-bottom: 0; }
  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .pricing-card { padding: 2rem; }
  .pricing-price { font-size: 3rem; }
}