:root {
  --green: #164f3b;
  --green-2: #0f6a4a;
  --navy: #0b2545;
  --red: #a3231c;
  --gold: #d9a933;
  --ink: #142126;
  --muted: #5c6872;
  --paper: #fffdf7;
  --cream: #f6f0e2;
  --mist: #e8f1ea;
  --blue-mist: #e9f2f7;
  --line: #d4ddd2;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(11, 37, 69, 0.14);
  --soft-shadow: 0 14px 40px rgba(11, 37, 69, 0.08);
  --radius: 8px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 88px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background: var(--paper);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.6rem 0.8rem;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(22, 79, 59, 0.14);
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(14px);
  overflow: visible;
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  text-decoration: none;
}

.brand span {
  min-width: 0;
}

.brand strong {
  display: block;
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.header-email {
  margin-left: auto;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  min-width: 0;
}

.site-nav a {
  padding: 0.5rem 0.48rem;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 780;
  white-space: nowrap;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--mist);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  padding: 0.48rem 0.72rem;
}

.hero {
  padding: 0 0 54px;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper) 68%),
    radial-gradient(circle at 20% 20%, rgba(217, 169, 51, 0.16), transparent 34%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 30px;
}

.hero-grid > *,
.two-col > *,
.evidence-grid > *,
.action-grid > * {
  min-width: 0;
}

.hero-copy {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 44px 24px 38px;
  background: var(--green);
  box-shadow: 0 0 0 100vmax var(--green);
  clip-path: inset(0 -100vmax);
  color: var(--white);
  text-align: left;
}

.hero-lockup {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(290px, 370px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 3.2vw, 46px);
}

.hero-message {
  max-width: none;
}

.hero-logo {
  width: clamp(320px, 29vw, 390px);
  height: clamp(320px, 29vw, 390px);
  justify-self: end;
  margin: 0;
  border-radius: 50%;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
  object-fit: contain;
}

.hero-kicker {
  display: block;
  max-width: none;
  margin: 0 0 1rem;
  color: #ffe6a4;
  font-size: clamp(0.9rem, 1vw, 1.06rem);
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.45rem, 3.7vw, 3.7rem);
  white-space: nowrap;
}

.hero-copy h1 span {
  display: inline;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
  word-break: normal;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 4.15vw, 4.25rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span,
.lede span,
.lede strong {
  display: block;
}

.lede strong {
  margin-top: 0.9rem;
  color: var(--white);
  font-weight: 900;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

#hearing .hearing-copy > h2,
#public-comment .hearing-copy > h2,
#impacts .section-heading > h2,
.data-center-section .section-heading > h2,
.questions-block > div:first-child > h2,
#evidence > div:first-child > h2,
#timeline .section-heading > h2,
#action .action-copy > h2,
#officials .section-heading > h2,
#resources .section-heading > h2,
.faq-wrap .section-heading > h2 {
  position: relative;
  padding-left: 1.05rem;
}

#evidence > div:first-child > h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.55rem);
}

#hearing .hearing-copy > h2::before,
#public-comment .hearing-copy > h2::before,
#impacts .section-heading > h2::before,
.data-center-section .section-heading > h2::before,
.questions-block > div:first-child > h2::before,
#evidence > div:first-child > h2::before,
#timeline .section-heading > h2::before,
#action .action-copy > h2::before,
#officials .section-heading > h2::before,
#resources .section-heading > h2::before,
.faq-wrap .section-heading > h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  bottom: 0.08em;
  width: 5px;
  border-radius: 999px;
  background: var(--red);
}

h3 {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.lede {
  max-width: 900px;
  margin: 1.05rem 0 0;
  color: #e4f0e8;
  font-size: clamp(1.04rem, 1.28vw, 1.12rem);
  line-height: 1.45;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(22, 79, 59, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(11, 37, 69, 0.1);
}

.quick-facts div {
  min-height: 78px;
  padding: 0.9rem 1rem;
  border-left: 1px solid var(--line);
}

.quick-facts div:first-child {
  border-left: 0;
}

.quick-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quick-facts strong,
.quick-facts a {
  display: inline-block;
  margin-top: 0.24rem;
  color: var(--navy);
  font-weight: 950;
  line-height: 1.18;
}

.quick-facts a {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
}

.hero-actions,
.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-copy .button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero-copy .button.secondary:hover,
.hero-copy .button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #871a15;
}

.button.secondary {
  border-color: rgba(11, 37, 69, 0.25);
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--white);
  border-color: var(--navy);
}

.button.full {
  width: 100%;
}

.case-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  width: 100%;
  margin: 0.2rem auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 12px 30px rgba(11, 37, 69, 0.08);
}

.case-card div {
  min-height: 96px;
  padding: 0.95rem;
  background: var(--white);
  text-align: center;
}

.case-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card strong {
  display: block;
  margin-top: 0.18rem;
  color: var(--green);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.hero-panel {
  width: 100%;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 12px;
}

.simulation-heading {
  padding: 0.3rem 0.42rem 0.95rem;
}

.simulation-heading .eyebrow {
  margin-bottom: 0.35rem;
  color: var(--red);
}

.simulation-heading h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
}

.simulation-heading p:last-child {
  max-width: 720px;
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.compare {
  position: relative;
  isolation: isolate;
  aspect-ratio: 3.15 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #dce6dc;
}

.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.compare-after {
  clip-path: inset(0 0 0 50%);
}

.compare::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 3px;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(11, 37, 69, 0.35);
}

.compare::after {
  content: "< >";
  position: absolute;
  z-index: 5;
  top: 50%;
  left: var(--pos, 50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(11, 37, 69, 0.25);
}

.compare-range {
  position: absolute;
  z-index: 8;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-label {
  position: absolute;
  z-index: 6;
  left: var(--pos, 50%);
  bottom: 18px;
  padding: 0.44rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  background: rgba(11, 37, 69, 0.86);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  opacity: 1;
  transition: opacity 160ms ease;
  box-shadow: 0 8px 22px rgba(11, 37, 69, 0.2);
  pointer-events: none;
}

.compare:not(.show-existing-label) .compare-label.before,
.compare:not(.show-proposed-label) .compare-label.after {
  opacity: 0;
}

.compare-label.before {
  transform: translateX(calc(-100% - 18px));
}

.compare-label.after {
  transform: translateX(18px);
}

.school-callout {
  position: absolute;
  z-index: 7;
  left: 30%;
  top: 48%;
  max-width: 190px;
  transform: none;
  border: 1px solid rgba(217, 169, 51, 0.72);
  border-radius: 4px;
  background: rgba(255, 253, 247, 0.94);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.46rem 0.58rem;
  box-shadow: 0 10px 24px rgba(11, 37, 69, 0.24);
  pointer-events: none;
  white-space: nowrap;
}

.school-callout::before {
  content: "";
  position: absolute;
  left: 78%;
  top: calc(100% + 2px);
  width: 86px;
  height: 2px;
  transform: rotate(28deg);
  transform-origin: left center;
  background: var(--gold);
  box-shadow: 0 1px 2px rgba(11, 37, 69, 0.3);
}

.school-callout::after {
  content: "";
  position: absolute;
  left: calc(78% + 75px);
  top: calc(100% + 38px);
  width: 9px;
  height: 9px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 2px 8px rgba(11, 37, 69, 0.34);
}

.school-callout[hidden] {
  display: none;
}

.viewpoint-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.72rem;
}

.viewpoint-button {
  min-width: 42px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.viewpoint-button.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.viewpoint-button:focus-visible {
  outline: 3px solid rgba(208, 84, 51, 0.36);
  outline-offset: 2px;
}

.caption,
figcaption {
  margin: 0.62rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.simulation-note {
  margin: 0.72rem 0 0;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  background: #fff8df;
  color: #44391d;
  padding: 0.64rem 0.78rem;
  font-size: 0.86rem;
  font-weight: 750;
}

.alert-band {
  position: relative;
  scroll-margin-top: 88px;
  background: var(--red);
  color: var(--white);
}

.alert-band::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 20px solid var(--red);
  z-index: 2;
}

.alert-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  padding: 28px 0;
  text-align: center;
}

.alert-copy {
  max-width: 1180px;
  width: 100%;
}

.alert-kicker {
  margin: 0 0 0.28rem;
  color: #ffe3a0;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alert-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3.25vw, 2.92rem);
  line-height: 1.05;
  text-wrap: balance;
  white-space: nowrap;
}

.alert-copy p:last-child {
  margin: 0.55rem 0 0;
  color: #fff5ee;
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  line-height: 1.35;
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hearing-section {
  background: var(--paper);
}

.action-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.action-choice-card {
  border: 1px solid rgba(22, 79, 59, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(1rem, 2vw, 1.45rem);
  box-shadow: 0 18px 54px rgba(11, 37, 69, 0.09);
}

.public-comment-card {
  background: linear-gradient(180deg, rgba(232, 241, 234, 0.88), rgba(255, 255, 255, 0.86));
}

.hearing-request-card {
  border-color: rgba(163, 35, 28, 0.26);
  background: linear-gradient(180deg, rgba(255, 248, 242, 0.9), rgba(255, 255, 255, 0.88));
}

.choice-label {
  margin: 0 0 0.4rem;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.action-choice-card h2 {
  margin: 0 0 0.8rem;
  color: var(--navy);
  font-size: clamp(1.8rem, 2.75vw, 2.72rem);
  line-height: 0.98;
  text-wrap: balance;
}

.action-choice-card p {
  color: #29373d;
  font-size: 1rem;
}

.action-choice-card .important-note,
.hearing-law-note {
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 244, 241, 0.78);
  color: var(--navy);
  padding: 0.74rem 0.9rem;
  font-weight: 850;
}

.hearing-law-note {
  background: rgba(255, 248, 223, 0.84);
  border-left-color: var(--gold);
}

.action-choice-card .template-intro h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.hearing-instructions-card {
  max-width: 980px;
  margin: 32px auto 0;
}

.template-drawer {
  margin-top: 0.9rem;
  border-top: 1px solid rgba(22, 79, 59, 0.16);
  padding-top: 0.8rem;
}

.template-drawer summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 950;
}

.template-drawer summary::marker {
  color: var(--red);
}

.public-comment-section {
  border-top: 1px solid rgba(22, 79, 59, 0.12);
  border-bottom: 1px solid rgba(22, 79, 59, 0.12);
  background: linear-gradient(180deg, rgba(232, 241, 234, 0.78), rgba(255, 253, 247, 0.98));
}

.hearing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  gap: 38px;
  align-items: start;
}

.hearing-copy p {
  max-width: 720px;
  color: #29373d;
  font-size: 1.04rem;
}

.hearing-copy > .eyebrow,
.two-col .eyebrow,
.evidence-grid .eyebrow {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hearing-copy .important-note {
  color: var(--navy);
  font-weight: 850;
  padding: 0.12rem 0;
}

.hearing-submit-link {
  margin-top: 0.35rem;
}

.deadline-callout {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  border: 1px solid rgba(163, 35, 28, 0.28);
  border-radius: 8px;
  background: #fff4f1;
  color: var(--red);
  padding: 0.68rem 0.82rem;
  font-weight: 850;
}

.deadline-callout strong {
  color: var(--navy);
}

.deadline-callout a {
  color: var(--red);
  font-weight: 950;
}

.deadline-callout a:hover,
.deadline-callout a:focus-visible {
  color: var(--navy);
}

.action-subhead {
  margin: 1.25rem 0 0;
  color: var(--navy);
  font-size: 1.25rem;
}

.hearing-steps {
  display: grid;
  gap: 10px;
  margin-top: 1.35rem;
}

.hearing-steps article {
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.85rem 1rem;
}

.hearing-steps strong,
.hearing-steps span {
  display: block;
}

.hearing-steps strong {
  color: var(--navy);
  font-weight: 950;
}

.hearing-steps span {
  margin-top: 0.18rem;
  color: #314047;
}

.hearing-tool {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(163, 35, 28, 0.34);
  border-radius: 12px;
  background: var(--white);
  padding: 1.35rem;
  box-shadow: 0 24px 80px rgba(11, 37, 69, 0.18);
}

.hearing-tool::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--red);
}

.hearing-tool h3 {
  margin-bottom: 0.4rem;
  color: var(--red);
  font-size: 1.48rem;
}

.hearing-tool p {
  margin: 0 0 0.85rem;
  color: #314047;
}

.efiling-card {
  margin: 1rem 0;
  border: 1px solid rgba(22, 79, 59, 0.18);
  border-radius: 10px;
  background: rgba(232, 241, 234, 0.78);
  padding: 1rem;
}

.efiling-card h4 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.04rem;
}

.efiling-card p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.efiling-mini {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 0.95rem;
  padding-left: 1.15rem;
  color: #243944;
  font-size: 0.94rem;
}

.efiling-mini li::marker {
  color: var(--green);
  font-weight: 900;
}

.template-intro {
  margin: 1rem 0 0.75rem;
}

.template-intro h4 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.04rem;
}

.template-intro p,
.template-note {
  font-size: 0.95rem;
}

.hearing-tool .template-note {
  margin-top: -0.15rem;
  color: var(--red);
  font-weight: 800;
}

.data-center-section {
  border-top: 1px solid rgba(22, 79, 59, 0.16);
  background: var(--paper);
}

.data-center-section .wrap {
  display: grid;
  gap: 1.15rem;
}

.data-center-copy p {
  max-width: 960px;
}

.data-center-copy a {
  color: var(--red);
  font-weight: 950;
}

.data-center-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.data-center-points li {
  min-height: 118px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  padding: 1rem;
  box-shadow: var(--soft-shadow);
}

.required-list {
  display: grid;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
  padding: 0;
  list-style: none;
  counter-reset: required;
}

.required-list li {
  counter-increment: required;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(22, 79, 59, 0.16);
  border-radius: 8px;
  background: rgba(232, 241, 234, 0.72);
  color: var(--navy);
  font-weight: 850;
  padding: 0.55rem 0.68rem;
}

.required-list li::before {
  content: counter(required);
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 950;
}

.template-box {
  min-height: 420px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.86rem;
  line-height: 1.48;
}

.short-template {
  min-height: 250px;
}

.formal-letter {
  margin-top: 0.9rem;
  border: 1px solid rgba(22, 79, 59, 0.18);
  border-radius: 10px;
  background: rgba(242, 246, 240, 0.72);
  padding: 0.85rem;
}

.formal-letter summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 950;
}

.formal-letter summary::marker {
  color: var(--red);
}

.formal-letter p {
  margin: 0.75rem 0;
  font-size: 0.94rem;
}

.formal-template {
  min-height: 340px;
}

.tool-divider {
  height: 1px;
  margin: 1.25rem 0;
  background: rgba(163, 35, 28, 0.22);
}

.hearing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.hearing-actions .button.primary {
  min-height: 50px;
  padding-inline: 1.25rem;
  font-size: 1rem;
}

.copy-status {
  min-height: 1.3em;
  margin: 0.55rem 0 0;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 900;
}

.copy-status.is-error {
  color: var(--red);
}

.public-note {
  margin: 0.65rem 0 0;
  border-left: 4px solid var(--gold);
  background: #fff8df;
  color: #3d3521;
  padding: 0.72rem 0.84rem;
  font-size: 0.92rem;
}

.filing-note {
  margin: 0.75rem 0 0;
  border-left: 4px solid var(--red);
  padding-left: 0.8rem;
  font-size: 0.92rem;
}

.filing-note strong {
  color: var(--navy);
}

.section {
  padding: 82px 0;
}

.section-tint {
  border-top: 1px solid rgba(22, 79, 59, 0.12);
  background: linear-gradient(180deg, rgba(232, 241, 234, 0.9), rgba(232, 241, 234, 0.72));
}

.project-section {
  border-top: 1px solid rgba(22, 79, 59, 0.12);
  border-bottom: 1px solid rgba(22, 79, 59, 0.12);
  background:
    linear-gradient(180deg, rgba(246, 240, 226, 0.86), rgba(255, 253, 247, 0.98));
}

.section-heading {
  max-width: 980px;
  margin-bottom: 28px;
}

#impacts .section-heading,
#officials .section-heading {
  max-width: none;
}

.story-heading {
  max-width: 920px;
}

.story-heading p {
  max-width: 880px;
  color: #29373d;
  font-size: 1.08rem;
}

.story-block {
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid rgba(22, 79, 59, 0.16);
}

.story-block:first-of-type {
  margin-top: 0;
}

.two-col,
.action-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: 44px;
  align-items: start;
}

.evidence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.evidence-grid > div:first-child {
  max-width: none;
}

.two-col p,
.action-grid p {
  max-width: 760px;
  color: #29373d;
  font-size: 1.04rem;
}

.evidence-grid p {
  max-width: none;
  color: #29373d;
  font-size: 1.04rem;
}

.info-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 12px 36px rgba(11, 37, 69, 0.08);
}

.info-list div {
  min-height: 76px;
  padding: 1rem;
  background: var(--white);
}

.info-list span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-list strong,
.info-list a {
  display: inline-block;
  margin-top: 0.22rem;
  color: var(--navy);
  font-weight: 900;
}

.question-list div {
  border-left: 4px solid transparent;
}

.question-list div:nth-child(1) {
  border-left-color: var(--green);
}

.question-list div:nth-child(2) {
  border-left-color: var(--gold);
}

.question-list div:nth-child(3) {
  border-left-color: var(--red);
}

.question-list div:nth-child(4) {
  border-left-color: var(--navy);
}

.copy-chip {
  margin-top: 0.22rem;
  border: 0;
  border-radius: 999px;
  background: var(--blue-mist);
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  padding: 0.42rem 0.62rem;
  cursor: pointer;
}

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

.impact-grid article {
  min-height: 250px;
  border: 1px solid rgba(22, 79, 59, 0.18);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.25rem;
}

.impact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(22, 79, 59, 0.22);
  border-radius: 7px;
  background: rgba(22, 79, 59, 0.08);
  color: var(--green);
}

.impact-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-grid article:nth-child(3) .impact-icon {
  background: rgba(217, 169, 51, 0.14);
  color: #8a6412;
}

.impact-grid article:nth-child(5) .impact-icon {
  background: rgba(163, 35, 28, 0.08);
  color: var(--red);
}

.impact-grid article:nth-child(2) {
  background: var(--white);
}

.impact-grid article:nth-child(3) {
  background: var(--blue-mist);
}

.impact-grid article:nth-child(4) {
  background: var(--white);
}

.impact-grid p {
  margin: 0;
  color: #304047;
}

.map-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
  box-shadow: 0 14px 44px rgba(11, 37, 69, 0.12);
}

.map-card img {
  width: 100%;
  aspect-ratio: 31 / 16;
  object-fit: cover;
  border-radius: 6px;
}

.map-embed-card {
  overflow: hidden;
}

.map-embed-card iframe {
  display: block;
  width: 100%;
  min-height: 680px;
  border: 0;
  border-radius: 6px;
  background: var(--blue-mist);
}

.map-fallback {
  margin: 0.68rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.map-fallback a {
  color: var(--navy);
  font-weight: 900;
}

.timeline-section {
  border-top: 1px solid rgba(22, 79, 59, 0.12);
  border-bottom: 1px solid rgba(22, 79, 59, 0.12);
  background: linear-gradient(180deg, rgba(232, 241, 234, 0.78), rgba(255, 253, 247, 0.98));
}

.timeline-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
}

.action-section {
  background:
    linear-gradient(135deg, rgba(11, 37, 69, 0.98), rgba(22, 79, 59, 0.96));
  color: var(--white);
}

.action-copy {
  display: grid;
  gap: 18px;
}

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

.action-section .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.action-section p {
  color: #d9e4ee;
}

.action-card,
.join-card {
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  padding: 1.25rem;
  box-shadow: var(--soft-shadow);
}

.action-card h3,
.join-card h3 {
  color: var(--navy);
}

.action-card p,
.join-card p {
  color: #314047;
}

.timeline-list {
  display: grid;
  gap: 0;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  display: grid;
  grid-template-columns: minmax(118px, 0.36fr) 1fr;
  gap: 12px;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(22, 79, 59, 0.16);
}

.timeline-list li:first-child {
  border-top: 0;
}

.timeline-list time {
  color: var(--green);
  font-weight: 950;
}

.timeline-list span {
  color: #314047;
}

.timeline-list .is-urgent {
  margin: 0.25rem -0.55rem;
  border-top: 0;
  border-radius: 8px;
  background: #fff6d6;
  padding: 0.8rem 0.55rem;
}

.timeline-list .is-urgent time {
  color: var(--red);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.contact-links a {
  display: flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(22, 79, 59, 0.22);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  line-height: 1.15;
  padding: 0.65rem 0.75rem;
  text-decoration: none;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: var(--green);
  background: var(--mist);
}

.officials-section {
  border-top: 1px solid rgba(22, 79, 59, 0.12);
  background: var(--paper);
}

#resources {
  border-top: 1px solid rgba(22, 79, 59, 0.16);
  background:
    linear-gradient(180deg, rgba(232, 241, 234, 0.78), rgba(255, 253, 247, 0.96) 170px);
}

.official-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.official-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.15rem;
  box-shadow: var(--soft-shadow);
}

.official-card span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.official-card h3 {
  margin: 0.38rem 0 0.2rem;
  color: var(--navy);
  font-size: 1.22rem;
}

.official-card p {
  margin: 0;
  color: #314047;
}

.official-links {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.official-links a {
  color: var(--navy);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.join-card {
  position: sticky;
  top: 98px;
}

form {
  display: grid;
  gap: 12px;
  margin-top: 1rem;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 5px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid #bfcbbf;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0.72rem 0.78rem;
}

textarea {
  resize: vertical;
}

fieldset {
  margin: 0;
  border: 1px solid rgba(22, 79, 59, 0.22);
  border-radius: 8px;
  padding: 0.85rem;
}

legend {
  padding: 0 0.35rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 950;
}

.interest-options {
  display: grid;
  gap: 0.58rem;
}

.interest-options label {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 0.58rem;
  color: #26363d;
  font-weight: 800;
  line-height: 1.25;
}

.interest-options input {
  width: 18px;
  height: 18px;
  margin-top: 0.05rem;
  accent-color: var(--red);
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(217, 169, 51, 0.65);
  outline-offset: 3px;
}

.resource-feature-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.resource-feature-grid {
  margin-bottom: 14px;
}

.secondary-resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-card {
  display: block;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(11, 37, 69, 0.045);
}

.resource-card.is-featured {
  min-height: 168px;
  border-color: rgba(22, 79, 59, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 1), rgba(232, 241, 234, 0.62));
  box-shadow: var(--soft-shadow);
}

.resource-card:hover,
.resource-card:focus-visible {
  border-color: var(--green);
  box-shadow: 0 12px 30px rgba(11, 37, 69, 0.08);
}

.resource-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-card strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--navy);
  font-size: 1.02rem;
}

.resource-card.is-featured strong {
  font-size: 1.22rem;
}

.resource-card p {
  margin: 0.55rem 0 0;
  color: #314047;
  font-size: 0.94rem;
  line-height: 1.42;
}

.resource-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  margin-top: 0.85rem;
}

.resource-card-links a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.resource-footnote {
  margin: 1rem 0 0;
  color: #314047;
  font-size: 0.95rem;
}

.resource-footnote a {
  color: var(--navy);
  font-weight: 900;
}

.faq-wrap {
  max-width: var(--wrap);
}

.faq-wrap details {
  max-width: 900px;
}

details {
  border-top: 1px solid rgba(22, 79, 59, 0.22);
  padding: 1rem 0;
}

details:last-child {
  border-bottom: 1px solid rgba(22, 79, 59, 0.22);
}

summary {
  color: var(--navy);
  font-size: 1.06rem;
  font-weight: 900;
  cursor: pointer;
}

details p {
  max-width: 780px;
  margin-bottom: 0;
  color: #314047;
}

.site-footer {
  padding: 30px 0;
  background: var(--green);
  color: var(--white);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  max-width: 620px;
  margin: 0.25rem 0 0;
  color: #dceee3;
}

.footer-grid div:last-child {
  display: grid;
  gap: 8px;
  justify-items: end;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .hero-copy h1 {
    white-space: normal;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .school-callout {
    left: 24%;
    top: 52%;
    max-width: min(34vw, 190px);
    white-space: normal;
    text-align: center;
  }

  .school-callout::before,
  .school-callout::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .header-email {
    display: none;
  }

  .hero-lockup {
    width: min(760px, 100%);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    text-align: center;
  }

  .hero-logo {
    width: 150px;
    height: 150px;
    justify-self: center;
  }

  .hero-message {
    max-width: 760px;
  }

  .hero-copy h1 {
    white-space: normal;
  }

  .hero-kicker,
  .lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .public-comment-card h2 {
    white-space: normal;
  }

  .hero-grid,
  .two-col,
  .evidence-grid,
  .action-grid,
  .timeline-grid,
  .action-choice-grid,
  .hearing-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid,
  .data-center-points,
  .resource-feature-grid,
  .resource-grid,
  .official-card-grid,
  .quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 740px) {
  .wrap {
    width: min(100% - 28px, var(--wrap));
  }

  .nav-wrap {
    min-height: 70px;
    gap: 12px;
  }

  .brand strong {
    font-size: 1.02rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .nav-toggle {
    flex: 0 0 auto;
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 6px;
  }

  .hero,
  .section {
    padding: 52px 0;
  }

  .hero-logo {
    width: 122px;
    height: 122px;
  }

  h1 {
    font-size: clamp(1.95rem, 9.8vw, 2.55rem);
    line-height: 1.02;
  }

  .hero-copy h1 {
    white-space: normal;
  }

  h1 span,
  .lede span,
  .lede strong {
    display: inline;
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .lede {
    font-size: 1.02rem;
  }

  .hero-actions,
  .download-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .download-row .button {
    width: 100%;
  }

  .case-card,
  .impact-grid,
  .resource-feature-grid,
  .resource-grid,
  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-facts div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .quick-facts div:first-child {
    border-top: 0;
  }

  .hero-panel {
    padding: 7px;
  }

  .compare {
    aspect-ratio: 1.45 / 1;
  }

  .school-callout {
    left: 24%;
    top: 52%;
    max-width: min(56vw, 190px);
    white-space: normal;
    text-align: center;
  }

  .school-callout::before,
  .school-callout::after {
    display: none;
  }

  .viewpoint-tabs {
    gap: 0.34rem;
  }

  .viewpoint-button {
    flex: 1 1 42px;
    min-width: 0;
  }

  .alert-grid {
    padding: 24px 0;
  }

  .alert-copy h2 {
    white-space: normal;
  }

  .alert-copy p:last-child {
    font-size: 0.98rem;
    white-space: normal;
  }

  .map-embed-card iframe {
    min-height: 520px;
  }

  .hearing-tool {
    padding: 0.9rem;
  }

  .data-center-points {
    grid-template-columns: 1fr;
  }

  .template-box {
    min-height: 360px;
  }

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

  .hearing-actions .button {
    width: 100%;
  }

  .contact-links,
  .timeline-list li {
    grid-template-columns: 1fr;
  }

  .join-card {
    position: static;
  }

  .footer-grid {
    display: grid;
  }

  .footer-grid div:last-child {
    justify-items: start;
  }
}
