@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-elevated: #1a1a1a;
  --text-primary: #f5f5f5;
  --text-secondary: #888888;
  --text-muted: #555555;
  --accent-red: #ff3b30;
  --accent-red-dim: rgba(255, 59, 48, 0.15);
  --accent-gold: #c9a84c;
  --accent-gold-dim: rgba(201, 168, 76, 0.12);
  --border: #222222;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-display);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav-brand span {
  color: var(--accent-red);
}
.nav-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-red-dim) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  display: inline-block;
}
.hero-ticker {
  font-family: var(--font-mono);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 60px rgba(201, 168, 76, 0.3);
}
.hero-ticker-sub {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 20px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent-red);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== WASTE STATS ===== */
.waste-stats {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.waste-stats .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.waste-stat {
  text-align: center;
  padding: 20px;
  position: relative;
}
.waste-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}
.waste-stat-number {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--accent-red);
  line-height: 1.2;
}
.waste-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 0;
}
.manifesto-inner {
  max-width: 680px;
  margin: 0 auto;
}
.manifesto-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.manifesto h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.manifesto p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.manifesto p strong {
  color: var(--text-primary);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 0;
  background: var(--bg-secondary);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: block;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-red);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== RECEIPT ===== */
.receipt-section {
  padding: 100px 0;
}
.receipt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.receipt-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.receipt-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.receipt-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  font-family: var(--font-mono);
}
.receipt-mock-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--text-muted);
  margin-bottom: 20px;
}
.receipt-mock-header h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.receipt-mock-header .receipt-total {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-red);
}
.receipt-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.receipt-line .label { color: var(--text-muted); }
.receipt-line .value { color: var(--text-primary); font-weight: 500; }
.receipt-verdict {
  text-align: center;
  margin-top: 24px;
  padding: 12px;
  background: var(--accent-red-dim);
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--accent-red);
  letter-spacing: 0.05em;
}

/* ===== ACCOUNTABILITY ===== */
.accountability {
  padding: 80px 0;
  background: var(--bg-secondary);
}
.accountability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.acc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}
.acc-card-icon {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}
.acc-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.acc-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 0 100px;
  text-align: center;
}
.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.closing h2 em {
  font-style: normal;
  color: var(--accent-gold);
}
.closing p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-brand span { color: var(--accent-red); }
.footer-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ===== TICKER ANIMATION ===== */
@keyframes tickerPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.ticker-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  margin-right: 8px;
  animation: tickerPulse 1.5s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .waste-stats .container { grid-template-columns: 1fr; gap: 0; }
  .waste-stat:not(:last-child)::after { display: none; }
  .waste-stat { border-bottom: 1px solid var(--border); }
  .waste-stat:last-child { border-bottom: none; }
  .steps { grid-template-columns: 1fr; }
  .receipt-grid { grid-template-columns: 1fr; gap: 40px; }
  .accountability-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
  .footer .container { flex-direction: column; gap: 12px; text-align: center; }
}
