
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;900&family=Barlow:wght@300;400;500;600&family=Barlow+Semi+Condensed:wght@600;700&display=swap');

:root {
  --red:     #C8402A;
  --salmon:  #E8735A;
  --gold:    #E8A832;
  --forest:  #2A5C45;
  --sky:     #4AACE8;
  --cream:   #F5EFE0;
  --dark:    #0D0D0A;
  --mid:     #1A1A14;
  --text:    #F0EBD8;
  --muted:   #8A8470;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

/* ── WORDMARK ─────────────────────────────────────── */
.wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-flex;
  gap: 0;
}
.wordmark .p  { color: var(--red); }
.wordmark .r  { color: var(--salmon); }
.wordmark .four { color: var(--gold); }
.wordmark .c  { color: var(--forest); }
.wordmark .a  { color: var(--sky); }

/* ── NAV ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(13,13,10,0.95) 0%, transparent 100%);
}

.nav-wordmark { font-size: 28px; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--cream); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,64,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(74,172,232,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(42,92,69,0.08) 0%, transparent 60%);
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.6s ease 0.2s forwards;
}

.hero-wordmark {
  font-size: clamp(80px, 15vw, 200px);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: rise 0.7s ease 0.35s forwards;
}

.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 56px);
  color: var(--cream);
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.7s ease 0.5s forwards;
}

.hero-tagline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.7s ease 0.65s forwards;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.7s ease 0.8s forwards;
}

.btn-primary {
  background: var(--red);
  color: white;
  padding: 16px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover { background: var(--salmon); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--cream);
  padding: 16px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(240,235,216,0.25);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover { border-color: var(--cream); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: rise 0.5s ease 1.2s forwards;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--muted);
}

/* ── DIAGNOSIS ────────────────────────────────────── */
.diagnosis {
  background: var(--mid);
  padding: 120px 48px;
  position: relative;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.big-statement {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  color: var(--cream);
  max-width: 900px;
  margin-bottom: 48px;
}

.big-statement span { color: var(--red); }

.diagnosis-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 960px;
}

.diagnosis-col p {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.diagnosis-col p strong {
  color: var(--cream);
  font-weight: 500;
}

.four-ways {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 40px;
  margin-top: 64px;
  max-width: 960px;
}

.four-ways-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.four-ways-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
}

.four-ways-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.way-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  color: rgba(255,255,255,0.1);
  flex-shrink: 0;
  width: 32px;
}

.way-num.active { color: var(--gold); }

.way-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  padding-top: 6px;
}

.way-text strong { color: var(--cream); }

/* ── STATS ────────────────────────────────────────── */
.stats {
  padding: 100px 48px;
  background: var(--dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 960px;
}

.stat-block {
  background: rgba(255,255,255,0.03);
  padding: 48px 36px;
  border: 1px solid rgba(255,255,255,0.05);
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number.red    { color: var(--red); }
.stat-number.gold   { color: var(--gold); }
.stat-number.sky    { color: var(--sky); }

.stat-label {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── SOLUTION ─────────────────────────────────────── */
.solution {
  background: var(--mid);
  padding: 120px 48px;
}

.solution-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  color: var(--cream);
  line-height: 1;
  max-width: 800px;
  margin-bottom: 64px;
}

.solution-headline em {
  font-style: normal;
  color: var(--sky);
}

.root-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 960px;
  margin-bottom: 80px;
}

.root-card {
  padding: 48px 40px;
}

.root-card.branches {
  background: rgba(200,64,42,0.08);
  border: 1px solid rgba(200,64,42,0.2);
}

.root-card.root {
  background: rgba(42,92,69,0.12);
  border: 1px solid rgba(42,92,69,0.3);
}

.root-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.root-card.branches .root-card-label { color: var(--red); }
.root-card.root .root-card-label { color: var(--forest); }

.root-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--cream);
  margin-bottom: 16px;
}

.root-card-items {
  list-style: none;
}

.root-card-items li {
  font-size: 15px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
}

.root-card-items li::before {
  content: '—';
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.model-spec {
  max-width: 960px;
  margin-bottom: 80px;
}

.model-spec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.spec-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 32px;
}

.spec-item-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.spec-item-value {
  font-size: 15px;
  color: var(--cream);
  line-height: 1.5;
}

.voter-experience {
  background: rgba(74,172,232,0.06);
  border: 1px solid rgba(74,172,232,0.2);
  padding: 48px;
  max-width: 960px;
  text-align: center;
}

.voter-experience-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
}

.voter-experience-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--cream);
  line-height: 1.2;
}

/* ── WHAT IF ──────────────────────────────────────── */
.whatif {
  padding: 120px 48px;
  background: var(--dark);
}

.whatif-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 12vw, 140px);
  color: var(--cream);
  line-height: 0.9;
  margin-bottom: 16px;
  opacity: 0.12;
  user-select: none;
  position: absolute;
}

.whatif-inner {
  position: relative;
  padding-top: 60px;
}

.whatif-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
}

.whatif-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--cream);
  max-width: 700px;
  line-height: 1.2;
  margin-bottom: 64px;
  position: relative;
}

.chambers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  position: relative;
}

.chamber-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 40px;
}

.chamber-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.chamber-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--cream);
  margin-bottom: 4px;
}

.chamber-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
}

.dots {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 24px;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.15s;
}

.dot:hover { transform: scale(1.5); }

.dot.prog   { background: #2DD4BF; box-shadow: 0 0 5px rgba(45,212,191,0.4); }
.dot.dem    { background: #3B82F6; box-shadow: 0 0 5px rgba(59,130,246,0.4); }
.dot.ind    { background: #A78BFA; box-shadow: 0 0 5px rgba(167,139,250,0.4); }
.dot.rep    { background: #F97316; box-shadow: 0 0 5px rgba(249,115,22,0.4); }
.dot.lib    { background: #EF4444; box-shadow: 0 0 5px rgba(239,68,68,0.4); }

.no-majority {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  max-width: 960px;
  position: relative;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-text {
  font-size: 13px;
  color: var(--muted);
}

.legend-text strong {
  color: var(--cream);
  font-weight: 500;
}

/* ── CALIFORNIA ───────────────────────────────────── */
.california {
  background: var(--mid);
  padding: 120px 48px;
}

.brandeis {
  border-left: 4px solid var(--gold);
  padding: 32px 40px;
  max-width: 800px;
  margin-bottom: 80px;
}

.brandeis-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 16px;
}

.brandeis-attr {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.labs-body {
  max-width: 720px;
}

.labs-body p {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.labs-body p strong { color: var(--cream); font-weight: 500; }

/* ── ROADMAP ──────────────────────────────────────── */
.roadmap {
  padding: 120px 48px;
  background: var(--dark);
}

.roadmap-phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 960px;
  margin-top: 64px;
}

.phase {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 28px;
  position: relative;
}

.phase-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 64px;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: 16px;
}

.phase-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.phase-date {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.phase-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CTA ──────────────────────────────────────────── */
.final-cta {
  background: var(--mid);
  padding: 140px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232,168,50,0.06) 0%, transparent 70%);
}

.final-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 96px);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
}

.final-cta-title em {
  font-style: normal;
  color: var(--gold);
}

.final-cta-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
  position: relative;
}

.final-cta-email {
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
  position: relative;
}

.final-cta-email a {
  color: var(--sky);
  text-decoration: none;
}

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-wordmark { font-size: 22px; }

.footer-text {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  line-height: 1.8;
}

.footer-text a {
  color: var(--muted);
  text-decoration: none;
}

.footer-text a:hover { color: var(--sky); }

/* ── ANIMATIONS ───────────────────────────────────── */
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 60px; }
  .diagnosis { padding: 80px 24px; }
  .diagnosis-body { grid-template-columns: 1fr; }
  .four-ways-list { grid-template-columns: 1fr; }
  .stats { padding: 60px 24px; }
  .stats-grid { grid-template-columns: 1fr; }
  .solution { padding: 80px 24px; }
  .root-branches { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .whatif { padding: 80px 24px; }
  .chambers { grid-template-columns: 1fr; }
  .california { padding: 80px 24px; }
  .roadmap { padding: 80px 24px; }
  .roadmap-phases { grid-template-columns: 1fr 1fr; }
  .final-cta { padding: 80px 24px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-text { text-align: center; }
}

/* inner pages */
.page {
  padding: 140px 48px 80px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 28px;
}
.page h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--cream);
  margin: 40px 0 12px;
}
.page p, .page li {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.page p { margin-bottom: 1.1em; }
.page p strong, .page li strong { color: var(--cream); font-weight: 500; }
.page ul { margin: 0 0 1.4em 1.2em; }
.page li { margin-bottom: 0.5em; }
.page a { color: var(--sky); }
.page .lead { color: var(--text); font-size: 20px; }
@media (max-width: 700px) {
  .page { padding: 120px 24px 64px; }
}
