:root {
  --bg: #0a0a0c;
  --bg-surface: #0f0f13;
  --bg-elevated: #161619;
  --bg-card: #131316;
  --fg: #e8e6e3;
  --fg-muted: #8a8892;
  --fg-dim: #5a5865;
  --accent: #c4a35a;
  --accent-dim: rgba(196, 163, 90, 0.15);
  --red: #d94f4f;
  --red-bright: #e85555;
  --red-dim: rgba(217, 79, 79, 0.1);
  --amber: #d4830a;
  --border: #1e1e24;
  --border-bright: #2a2a32;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --max-w: 960px;
}

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

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;
}

/* ========== SHARED UTILS ========== */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(196, 163, 90, 0.05) 0%, transparent 60%),
    var(--bg);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
  color: var(--fg);
  max-width: 820px;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 640px;
  margin-bottom: 4rem;
}

/* Hero stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4rem;
}

.hero-stat {
  background: var(--bg-elevated);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-stat-value {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Video embed */
.hero-video-wrap {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.video-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
}

.video-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 580px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

/* ========== EVIDENCE ========== */
.evidence {
  padding: 7rem 2rem;
  background: var(--bg-surface);
  position: relative;
}

.evidence-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.evidence-header {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.evidence-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.evidence-intro {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 480px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.evidence-item {
  background: var(--bg-card);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.2s ease;
}

.evidence-item:hover {
  background: var(--bg-elevated);
}

.evidence-item--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem;
}

.evidence-item--wide .evidence-number {
  flex-shrink: 0;
}

.evidence-item--wide .evidence-rest {
  flex: 1;
}

.evidence-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
}

.evidence-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-top: 0.25rem;
}

.evidence-detail {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--fg-muted);
}

.evidence-source {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

/* ========== ACT NOW ========== */
.act {
  padding: 7rem 2rem;
  background: var(--bg);
}

.act-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.act-header {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.act-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.act-intro {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
}

.act-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.act-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s ease;
}

.act-card:hover {
  background: var(--bg-elevated);
}

.act-card-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.act-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  border-top: 2px solid var(--accent-dim);
  padding-top: 1rem;
  margin-top: -0.25rem;
}

.act-card-body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

.act-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.act-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border-bright);
  border-radius: 3px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.act-link:hover {
  border-color: var(--accent-dim);
  background: var(--accent-dim);
}

.act-link-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.act-link:hover .act-link-label {
  color: var(--accent);
}

/* CPRA targets list */
.act-cpra-targets {
  margin-top: 0.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1rem 1.25rem;
}

.cpra-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.cpra-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cpra-list li {
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding-left: 1rem;
  position: relative;
}

.cpra-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--fg-dim);
  font-size: 0.7rem;
}

/* Timeline */
.act-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-left: 2px solid var(--border-bright);
  padding-left: 1.25rem;
  margin-top: 0.25rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
  min-width: 2.75rem;
}

.timeline-event {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.45;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 540px;
}

.footer-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-dim);
  line-height: 1.5;
}

.footer-right {
  flex-shrink: 0;
}

.footer-contact {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fg-dim);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 5rem 1.5rem 4rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stat-value {
    font-size: 2.2rem;
  }

  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .evidence-item--wide {
    flex-direction: column;
    gap: 0.6rem;
  }

  .act-grid {
    grid-template-columns: 1fr;
  }

  .evidence,
  .act {
    padding: 4.5rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.1rem;
    letter-spacing: -0.03em;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .evidence-number {
    font-size: 2.2rem;
  }
}
