:root {
  --navy: #0f2346;
  --blue: #1a3a6b;
  --mid-blue: #2563a8;
  --red: #b91c1c;
  --amber: #d97706;
  --cream: #faf8f3;
  --parchment: #f0ebe0;
  --border: #ddd5c0;
  --text: #1e1a14;
  --muted: #6b6355;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(15, 35, 70, 0.08);
  --shadow-md: 0 8px 30px rgba(15, 35, 70, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 999;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.95);
  outline-offset: 3px;
}

.container {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 64px 0;
}

section + section {
  border-top: 1px solid var(--border);
}

.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 35, 70, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: calc(12px + env(safe-area-inset-top)) 24px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: white;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #93b4e0;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: white;
}

.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(37,99,168,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(185,28,28,0.2) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.03) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.03) 60px);
  color: var(--white);
  padding: 84px 0 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #93b4e0;
  margin: 0 0 20px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  max-width: 820px;
  margin: 0 auto 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero h1 em {
  font-style: normal;
  color: #f59e0b;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: #e0d8c8;
  max-width: 680px;
  margin: 0 auto 12px;
}

.hero-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #f59e0b;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #f59e0b;
  color: #1b1b1b;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.25);
}

.button-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(185,28,28,0.4);
  animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 4px 20px rgba(185,28,28,0.4); }
  50% { box-shadow: 0 4px 32px rgba(185,28,28,0.7); }
}

.intro {
  background: var(--parchment);
  border-top: 4px solid var(--blue);
}

.intro p {
  font-size: 19px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.intro strong {
  color: var(--red);
  font-weight: 600;
}

.section-header {
  margin-bottom: 40px;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-blue);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
}

.section-intro {
  margin: -10px 0 8px;
  color: var(--muted);
  font-size: 16px;
}

.danger-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.danger-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  animation: fade-up 0.6s ease both;
}

.danger-item:last-child {
  border-bottom: none;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.danger-item:nth-child(1) { animation-delay: 0.05s; }
.danger-item:nth-child(2) { animation-delay: 0.10s; }
.danger-item:nth-child(3) { animation-delay: 0.15s; }
.danger-item:nth-child(4) { animation-delay: 0.20s; }
.danger-item:nth-child(5) { animation-delay: 0.25s; }

.danger-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 4px;
}

.danger-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.danger-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}

.action-section {
  background: var(--navy);
  color: var(--white);
}

.action-section .section-label { color: #93b4e0; }
.action-section .section-title { color: white; }

.action-steps {
  list-style: none;
  counter-reset: steps;
  display: grid;
  gap: 20px;
  margin: 32px 0 0;
  padding: 0;
}

.action-step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 20px;
  align-items: start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px 24px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.action-step:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: #f59e0b;
  line-height: 1;
  margin-top: 2px;
}

.step-content strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.step-content span {
  font-size: 15px;
  color: #c8d8ee;
  font-family: 'DM Sans', sans-serif;
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 8px;
}

details {
  border-bottom: 1px solid var(--border);
}

details:first-of-type {
  border-top: 1px solid var(--border);
}

summary {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  padding: 22px 48px 22px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.4;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--mid-blue);
}

details[open] summary::after {
  content: '−';
}

details[open] summary {
  color: var(--mid-blue);
}

.faq-answer {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  padding: 0 40px 24px 0;
  margin: 0;
}

.faq-answer em {
  font-style: italic;
  color: var(--text);
}

.coalition-section {
  background: var(--parchment);
}

.orgs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.org-item {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.45;
  border-radius: 10px;
}

.resources-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.resource-link {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.resource-link:hover {
  border-color: var(--mid-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.resource-arrow {
  font-size: 20px;
  color: var(--mid-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.resource-text strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.resource-text span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
}

footer {
  background: var(--navy);
  color: #93b4e0;
  text-align: center;
  padding: 32px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
}

footer strong {
  color: white;
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.02em;
}

@media (max-width: 820px) {
  .sticky-nav.is-open .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0 4px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 18px;
  }

  section {
    padding: 54px 0;
  }

  .hero {
    padding: 64px 0 56px;
  }

  .hero-eyebrow {
    font-size: 12px;
    line-height: 1.5;
  }

  .hero-date {
    font-size: 14px;
    letter-spacing: 0.06em;
  }

  .danger-item,
  .action-step {
    grid-template-columns: 1fr;
    gap: 14px 0;
  }

  .step-number {
    font-size: 28px;
  }

  .faq-answer {
    padding-right: 0;
  }

  summary {
    padding-right: 42px;
  }

  .resource-link {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
