:root {
  --bg: #faf9f7;
  --bg-card: #ffffff;
  --teal: #0d7c66;
  --teal-light: #e8f5f1;
  --amber: #f5a623;
  --amber-light: #fef5e7;
  --ink: #1a1a2e;
  --ink-muted: #6b7280;
  --ink-faint: #9ca3af;
  --border: #e5e2dc;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26,26,46,0.08);
  --shadow-lg: 0 12px 48px rgba(26,26,46,0.12);
}

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

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

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

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--teal);
}
.nav-tagline {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* Hero */
.hero {
  padding: 80px 48px 100px;
  background: linear-gradient(160deg, var(--bg) 60%, var(--teal-light) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-left { max-width: 540px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-headline {
  font-size: clamp(44px, 5vw, 72px);
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 18px;
  color: var(--ink-muted);
  margin-bottom: 48px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
}
.stat-label { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* Mockup Card */
.mockup-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.mockup-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal) 0%, var(--amber) 100%);
  z-index: -1;
  opacity: 0.3;
}
.mockup-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.mockup-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
}
.mockup-meta { flex: 1; }
.mockup-name { font-weight: 600; font-size: 14px; }
.mockup-time { font-size: 12px; color: var(--ink-muted); }
.cat-tag {
  display: inline-block;
  background: var(--amber-light);
  color: #b07d1a;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}
.mockup-question {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.4;
}
.mockup-video {
  background: var(--ink);
  border-radius: var(--radius);
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.mockup-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(167,139,250,0.15), rgba(96,165,250,0.15));
}
.video-play-icon {
  font-size: 28px;
  color: rgba(255,255,255,0.9);
  z-index: 1;
}
.video-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  z-index: 1;
}
.mockup-voters {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.voter-avatars { display: flex; }
.va {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  margin-right: -8px;
}
.v1 { background: #f87171; }
.v2 { background: #fb923c; }
.v3 { background: #fbbf24; }
.vote-count { font-size: 12px; color: var(--ink-muted); }
.mockup-answers { display: flex; flex-direction: column; gap: 10px; }
.mockup-answer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  background: var(--teal-light);
  border-radius: 8px;
}
.mockup-answer-video {
  background: var(--amber-light);
}
.ma-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
}
.ma-icon {
  font-size: 14px;
  color: #b07d1a;
  flex-shrink: 0;
}
.ma-text { font-size: 13px; color: var(--ink); line-height: 1.4; }

/* Features */
.features {
  padding: 100px 48px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}
.features-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.features-header p { font-size: 18px; color: var(--ink-muted); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.fc-1 { border-top: 3px solid var(--teal); }
.fc-2 { border-top: 3px solid var(--amber); }
.fc-3 { border-top: 3px solid #a78bfa; }
.fc-4 { border-top: 3px solid #f87171; }
.fc-5 { border-top: 3px solid #34d399; }
.fc-6 { border-top: 3px solid #60a5fa; }
.feature-icon {
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.feature-card p { font-size: 15px; color: var(--ink-muted); line-height: 1.6; }

/* How It Works */
.hiwitworks { display: none; }
.howitworks {
  padding: 100px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--teal-light) 100%);
}
.hiw-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.hiw-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.hiw-inner h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 64px;
}
.hiw-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.hiw-step {
  flex: 1;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
}
.hiw-arrow {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-arrow::after {
  content: '→';
  font-size: 24px;
  color: var(--ink-faint);
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.2;
  margin-bottom: 16px;
}
.hiw-step h3 { font-size: 20px; margin-bottom: 12px; }
.hiw-step p { font-size: 14px; color: var(--ink-muted); line-height: 1.6; }

/* Categories */
.categories {
  padding: 100px 48px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.cat-inner { max-width: 1200px; margin: 0 auto; }
.cat-header {
  text-align: center;
  margin-bottom: 64px;
}
.cat-header h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 12px; }
.cat-header p { font-size: 18px; color: var(--ink-muted); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.cat-amidumb::before { background: #a78bfa; }
.cat-lifehacks::before { background: #34d399; }
.cat-stupid::before { background: var(--amber); }
.cat-relationships::before { background: #f87171; }
.cat-local::before { background: #60a5fa; }
.cat-tech::before { background: var(--teal); }
.cat-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.cat-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.cat-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.5; }

/* Manifesto */
.manifesto {
  padding: 100px 48px;
  background: var(--ink);
  color: #f5f5f0;
}
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  margin-bottom: 12px;
  line-height: 1.4;
}
.manifesto-attribution {
  font-size: 14px;
  color: rgba(245,245,240,0.5);
  margin-bottom: 48px;
}
.manifesto-body p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(245,245,240,0.8);
  margin-bottom: 24px;
}
.manifesto-body strong {
  color: #f5f5f0;
  font-weight: 600;
}

/* Closing */
.closing {
  padding: 100px 48px;
  background: linear-gradient(180deg, var(--teal-light) 0%, var(--bg) 100%);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 24px;
}
.closing p {
  font-size: 18px;
  color: var(--ink-muted);
  margin-bottom: 48px;
  line-height: 1.7;
}
.closing-stripe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stripe-item {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.stripe-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.4;
}

/* Footer */
.footer {
  padding: 48px;
  background: var(--ink);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(245,245,240,0.4);
  margin-bottom: 24px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(245,245,240,0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-stats { gap: 20px; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .howitworks { padding: 80px 24px; }
  .hiw-steps { flex-direction: column; }
  .hiw-arrow { display: none; }
  .categories { padding: 80px 24px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
}