:root {
  --bg: #faf8f5;
  --bg-alt: #f2ede6;
  --fg: #1a1a1a;
  --fg-muted: #6b6560;
  --accent: #8b1a4a;
  --accent-light: #c93a6e;
  --green: #2d7a4f;
  --green-light: #e8f5ee;
  --red: #c93a3a;
  --red-light: #f5e8e8;
  --border: #e0d9cf;
  --white: #ffffff;
  --font-display: 'Playfair Display', 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);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.navbar-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* Section commons */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* Hero */
.hero {
  padding: 80px 40px 100px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-overline {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  max-width: 140px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Vote Widget */
.vote-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.vote-widget-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.vote-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.vote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8c4d4 0%, #d4a0b8 100%);
  flex-shrink: 0;
}
.vote-info { flex: 1; }
.vote-name { font-size: 15px; font-weight: 600; color: var(--fg); }
.vote-meta { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.vote-approval { margin-bottom: 4px; }
.vote-approval-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--bg-alt);
  overflow: hidden;
  margin-bottom: 4px;
}
.vote-approval-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 3px;
  transition: width 0.6s ease;
}
.vote-approval-text {
  font-size: 11px;
  color: var(--fg-muted);
}
.vote-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.vote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.15s;
}
.vote-yes {
  background: var(--green-light);
  color: var(--green);
  border-color: #b8d9c5;
}
.vote-yes:hover { background: #d5eedd; }
.vote-no {
  background: var(--bg);
  color: var(--fg-muted);
}
.vote-no:hover { background: var(--bg-alt); }
.vote-footer {
  font-size: 11px;
  color: var(--fg-muted);
  text-align: center;
}

/* How it works */
.how-it-works {
  padding: 100px 40px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  margin-top: 56px;
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 18px;
}
.step-connector::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--border);
}

/* Why it works */
.why-it-works {
  padding: 100px 40px;
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.why-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.why-point strong { font-size: 14px; font-weight: 600; color: var(--fg); }
.why-point span { font-size: 13px; color: var(--fg-muted); }

/* Pool visual */
.pool-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.pool-header {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.pool-bar-group { margin-bottom: 16px; }
.pool-bar-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.pool-bar {
  height: 10px;
  border-radius: 5px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 4px;
}
.pool-bar-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 1s ease;
}
.pool-bar-red { background: #e57373; }
.pool-bar-green { background: var(--green); }
.pool-label-right {
  margin-left: auto;
  font-weight: 600;
  font-size: 12px;
}
.pool-note {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 16px;
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* Monetization */
.monetization {
  padding: 100px 40px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  background: var(--bg);
}
.pricing-paid {
  background: var(--fg);
  border-color: var(--fg);
}
.pricing-paid .pricing-label,
.pricing-paid .pricing-price,
.pricing-paid .pricing-desc,
.pricing-paid .pricing-features li { color: var(--white); }
.pricing-paid .pricing-features li { border-color: rgba(255,255,255,0.1); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.pricing-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.pricing-period {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.pricing-features li {
  font-size: 13px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-cta {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
}
.pricing-cta-free { color: var(--green); background: var(--green-light); }
.pricing-cta-paid { background: var(--accent); color: var(--white); }
.pricing-cta-premium { color: var(--accent); background: #f8e8ee; }

/* Closing */
.closing {
  padding: 100px 40px;
  background: var(--bg);
}
.closing-inner { max-width: 760px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 560px;
}

/* Footer */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: 12px;
}
.footer-brand { display: flex; align-items: center; }
.footer-note { font-size: 12px; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .step-connector { display: none; }
  .hero-stats { flex-wrap: wrap; }
  .navbar { padding: 16px 20px; }
  .hero, .how-it-works, .why-it-works, .monetization, .closing { padding: 64px 20px; }
  .section-inner { padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .closing-headline { font-size: 28px; }
  .section-headline { font-size: 28px; }
}