@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500&display=swap');

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0e0c1a;
  --navy-2:     #1a1730;
  --navy-3:     #252040;
  --purple:     #3C3489;
  --purple-mid: #534AB7;
  --purple-light:#7F77DD;
  --purple-pale: #AFA9EC;
  --purple-ghost:#EEEDFE;
  --white:      #ffffff;
  --off-white:  #f5f3ee;
  --gray-light: #e8e6df;
  --gray-mid:   #9e9c95;
  --gray-text:  #5a5850;
  --red-dark:   #7a1f1f;
  --red-pale:   #fceaea;
  --teal:       #0f6e56;
  --teal-pale:  #e1f5ee;
  --green:      #3b6d11;
  --green-pale: #eaf3de;
  --amber:      #854f0b;
  --amber-pale: #faeeda;
  --blue:       #185fa5;
  --blue-pale:  #e6f1fb;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.2s ease;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── NAV ──────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
  border-bottom: 1px solid rgba(127,119,221,0.2);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
}

.nav-links {
  display: flex; gap: 4px; align-items: center;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--purple-pale);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  border-color: rgba(127,119,221,0.4);
  background: rgba(127,119,221,0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--purple-pale);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(83,74,183,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-pale);
  margin-bottom: 1.5rem;
}

.hero-question {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--purple-pale);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}

.hero-svr {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.hero-answer {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 3rem;
}

.btn-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--purple-mid);
  color: var(--white);
}
.btn-primary:hover { background: var(--purple); }

.btn-outline {
  background: transparent;
  color: var(--purple-pale);
  border: 1px solid rgba(127,119,221,0.5);
}
.btn-outline:hover {
  background: rgba(127,119,221,0.1);
  color: var(--white);
}

/* ─── SECTIONS ─────────────────────────────────────────── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-text);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* ─── ISSUE SELECTOR ──────────────────────────────────── */
.concern-section { background: var(--off-white); }

.issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.issue-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
  display: block;
}

.issue-card:hover {
  border-color: var(--purple-mid);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(83,74,183,0.12);
}

.issue-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
}

.issue-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.issue-teaser {
  font-size: 0.78rem;
  color: var(--gray-text);
  line-height: 1.4;
}

/* ─── REVEAL SECTION ──────────────────────────────────── */
.reveal-section {
  background: var(--navy-2);
  text-align: center;
  padding: 5rem 2rem;
}

.reveal-svr {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.reveal-stands {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--purple-pale);
  margin-bottom: 2rem;
}

.reveal-body {
  font-size: 1.05rem;
  color: var(--purple-ghost);
  max-width: 660px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.reveal-link {
  color: var(--purple-pale);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(175,169,236,0.4);
  transition: var(--transition);
  cursor: pointer;
}
.reveal-link:hover { color: var(--white); border-color: var(--white); }

/* ─── ISSUE CARDS (homepage preview) ─────────────────── */
.joe-section { background: var(--white); }

.joe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.joe-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  padding: 1.75rem;
  transition: var(--transition);
  display: block;
  text-decoration: none;
}

.joe-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-2px);
}

.joe-accent { width: 36px; height: 4px; border-radius: 2px; margin-bottom: 1rem; }
.joe-issue-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 0.5rem; }
.joe-headline { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.3; }
.joe-excerpt { font-size: 0.88rem; color: var(--gray-text); line-height: 1.6; margin-bottom: 1rem; }
.joe-readmore { font-size: 0.82rem; font-weight: 500; color: var(--purple-mid); }

/* ─── ACTION SECTION ──────────────────────────────────── */
.action-section { background: var(--off-white); }

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.action-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
}

.action-icon { font-size: 2rem; margin-bottom: 1rem; }
.action-title { font-size: 1.05rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.action-desc { font-size: 0.88rem; color: var(--gray-text); line-height: 1.6; margin-bottom: 1.5rem; }

/* ─── ISSUE PAGE STYLES ──────────────────────────────── */
.issue-hero {
  background: var(--navy);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.issue-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 20% 50%, rgba(83,74,183,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.issue-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.issue-tag { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--purple-pale); margin-bottom: 1rem; }
.issue-hero-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 0.75rem; max-width: 700px; }
.issue-hero-sub { font-size: 1rem; color: var(--purple-pale); max-width: 600px; }

.issue-body { padding: 4rem 2rem; }
.issue-body-inner { max-width: 780px; margin: 0 auto; }

.story-block {
  background: var(--off-white);
  border-left: 4px solid var(--purple-mid);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}
.story-block p { font-size: 1rem; color: var(--navy); line-height: 1.75; margin-bottom: 0.75rem; }
.story-block p:last-child { margin-bottom: 0; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 1.5rem 0 2rem;
}

.stat-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--gray-light);
}

.stat-number { font-family: var(--font-display); font-size: 2rem; font-weight: 900; margin-bottom: 0.3rem; line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--gray-text); line-height: 1.4; }

.vote-block {
  background: var(--red-pale);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 0.75rem 0;
  border: 1px solid rgba(122,31,31,0.15);
}
.vote-title { font-size: 0.9rem; font-weight: 500; color: var(--red-dark); margin-bottom: 0.4rem; }
.vote-body { font-size: 0.88rem; color: #5a2020; line-height: 1.6; }

.fact-block {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 0.75rem 0;
}
.fact-title { font-size: 0.9rem; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.fact-body { font-size: 0.88rem; color: var(--gray-text); line-height: 1.6; }

.convo-card {
  background: var(--purple-ghost);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 0.75rem 0;
  border: 1px solid rgba(127,119,221,0.25);
  border-left: 4px solid var(--purple-mid);
}
.convo-scenario { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple-mid); margin-bottom: 0.3rem; }
.convo-line { font-size: 0.95rem; font-style: italic; color: var(--navy); margin-bottom: 0.75rem; }
.convo-response { font-size: 0.88rem; color: var(--gray-text); line-height: 1.65; }

.issue-cta {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}
.issue-cta-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.issue-cta-sub { font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ─── SHARE PAGE ──────────────────────────────────────── */
.ad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.ad-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
}

.ad-card-dark { background: var(--navy-2); }
.ad-concern { font-size: 0.95rem; color: #aaaaaa; margin-bottom: 0.75rem; }
.ad-concern span { color: var(--purple-pale); font-weight: 500; }
.ad-svr { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: var(--white); letter-spacing: 0.1em; margin-bottom: 0.3rem; line-height: 1; }
.ad-url { font-size: 0.75rem; color: var(--gray-mid); margin-top: 0.5rem; }
.ad-copy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--purple-pale);
  background: rgba(127,119,221,0.15);
  border: 1px solid rgba(127,119,221,0.3);
  border-radius: 20px;
  padding: 6px 16px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}
.ad-copy-btn:hover { background: rgba(127,119,221,0.25); color: var(--white); }

/* ─── WHAT IS SVR PAGE ────────────────────────────────── */
.explainer-section { padding: 5rem 2rem; }
.explainer-inner { max-width: 700px; margin: 0 auto; }

.step-row {
  display: flex; gap: 1.25rem; align-items: flex-start;
  margin-bottom: 2rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 900;
  color: var(--purple-ghost);
  min-width: 48px; line-height: 1;
}
.step-content h3 { font-size: 1rem; font-weight: 500; color: var(--navy); margin-bottom: 0.3rem; }
.step-content p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.65; }

/* ─── MERCH PAGE ──────────────────────────────────────── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.merch-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.merch-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }

.merch-preview {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.merch-svr-text {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 900;
  letter-spacing: 0.1em;
}
.merch-info { padding: 1.25rem; background: var(--white); }
.merch-name { font-size: 0.95rem; font-weight: 500; color: var(--navy); margin-bottom: 0.3rem; }
.merch-desc { font-size: 0.8rem; color: var(--gray-text); }

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(127,119,221,0.2);
}

.footer-svr {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 0.3rem;
}

.footer-tag { font-size: 0.85rem; color: var(--purple-pale); margin-bottom: 2rem; }

.footer-links {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-links a { font-size: 0.82rem; color: var(--purple-pale); transition: var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-copy { font-size: 0.75rem; color: var(--gray-mid); }

/* ─── SECTION LABEL ─────────────────────────────────── */
.content-section-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--purple-mid); margin-bottom: 0.5rem; margin-top: 2.5rem;
}

hr.section-rule {
  border: none; border-top: 1px solid var(--gray-light);
  margin: 1rem 0 1.5rem;
}

p.body-text { font-size: 1rem; color: var(--navy); line-height: 1.75; margin-bottom: 1rem; }

/* ─── UTILITY ─────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: 0.5rem; }
.mt-md { margin-top: 1rem; }
.mt-lg { margin-top: 2rem; }
.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem; }
.mb-lg { margin-bottom: 2rem; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--navy-2);
    padding: 1rem;
    border-bottom: 1px solid rgba(127,119,221,0.2);
    gap: 4px;
  }
  .nav-toggle { display: flex; }
  .issue-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-row { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .issue-grid { grid-template-columns: 1fr; }
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
