:root {
  --bg: #0f0f1a;
  --bg-card: #16162a;
  --fg: #f0ece4;
  --fg-muted: #8a8899;
  --accent: #f5a623;
  --accent-dim: #b87d1a;
  --border: rgba(240, 236, 228, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* Grid background */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 166, 35, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 166, 35, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Navigation */
.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Manifesto */
.manifesto {
  position: relative;
  z-index: 10;
  padding: 80px 60px 60px;
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}
.manifesto-kicker {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 640px;
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.75;
}

/* Stats */
.manifesto-stats {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Proof bar */
.proof-bar {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 60px;
}
.proof-bar-inner {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-item {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* Features */
.features {
  position: relative;
  z-index: 10;
  padding: 80px 60px;
}
.features-inner { max-width: 1200px; }
.features-header { margin-bottom: 56px; }
.section-label {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.features-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
  max-width: 520px;
  line-height: 1.2;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 40px 36px;
}
.feature-card:first-child { border-radius: 12px 0 0 0; }
.feature-card:nth-child(2) { border-radius: 0 12px 0 0; }
.feature-card:nth-child(3) { border-radius: 0 0 0 12px; }
.feature-card:last-child { border-radius: 0 0 12px 0; }
.feature-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* How it works */
.how-it-works {
  position: relative;
  z-index: 10;
  padding: 80px 60px;
  border-top: 1px solid var(--border);
}
.how-inner { max-width: 800px; }
.how-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 480px;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.how-step:last-child { border-bottom: none; }
.how-step-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
}
.how-step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.how-step-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Difference */
.difference {
  position: relative;
  z-index: 10;
  padding: 80px 60px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.diff-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
}
.diff-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 520px;
  line-height: 1.2;
}
.diff-copy p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.diff-copy em { color: var(--accent); font-style: normal; }
.diff-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 40px;
  border: 2px solid var(--accent);
  border-radius: 16px;
  text-align: center;
  background: rgba(245, 166, 35, 0.05);
}
.diff-price-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.diff-price-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.diff-price-period {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.diff-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Closing */
.closing {
  position: relative;
  z-index: 10;
  padding: 100px 60px 80px;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 32px;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Footer */
.footer {
  position: relative;
  z-index: 10;
  padding: 32px 60px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 24px 28px; }
  .manifesto { padding: 60px 28px 40px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-stats { flex-direction: row; }
  .stat-card { flex: 1; }
  .proof-bar { padding: 18px 28px; }
  .proof-bar-inner { gap: 24px; }
  .features { padding: 60px 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-radius: 0 !important; }
  .feature-card:first-child { border-radius: 12px 12px 0 0 !important; }
  .feature-card:last-child { border-radius: 0 0 12px 12px !important; }
  .how-it-works { padding: 60px 28px; }
  .how-step { grid-template-columns: 56px 1fr; gap: 20px; }
  .difference { padding: 60px 28px; }
  .diff-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 80px 28px 60px; }
  .footer { padding: 24px 28px; }
}

@media (max-width: 480px) {
  .manifesto-stats { flex-direction: column; }
  .proof-bar-inner { flex-direction: column; gap: 12px; }
}