@font-face {
  font-family: "Bebas Neue";
  src: url("./assets/fonts/bebas-neue-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Alegreya Sans";
  src: url("./assets/fonts/alegreya-sans-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Alegreya Sans";
  src: url("./assets/fonts/alegreya-sans-latin-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Alegreya Sans";
  src: url("./assets/fonts/alegreya-sans-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --background: hsl(228 32% 9%);
  --foreground: hsl(225 25% 92%);
  --card: hsl(228 30% 12%);
  --muted: hsl(228 28% 14%);
  --muted-foreground: hsl(228 15% 64%);
  --border: hsl(228 26% 20%);
  --primary: hsl(158 64% 45%);
  --primary-strong: hsl(160 84% 39%);
  --primary-foreground: hsl(232 40% 5%);
  --destructive: hsl(0 84% 60%);
  --display: "Bebas Neue", Impact, sans-serif;
  --sans: "Alegreya Sans", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --container: 80rem;
  --radius: 0.5rem;
  --header-height: 5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: color-mix(in srgb, var(--primary) 25%, transparent);
  color: var(--primary);
}

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

p {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  transform: translateY(-160%);
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(calc(100% - 3rem), 56rem);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
  background: color-mix(in srgb, var(--primary) 6%, transparent);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gtext {
  color: transparent;
  background: linear-gradient(135deg, #34d399, var(--primary), #2dd4bf);
  background-clip: text;
  -webkit-background-clip: text;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgb(255 255 255 / 0.05);
  background: rgb(16 18 30 / 0.95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  transition: transform 220ms ease;
}

.brand:hover .brand-mark {
  transform: scale(1.05);
}

.brand-name {
  color: #fff;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: stretch;
  height: 100%;
  transform: translateX(-50%);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 1.15rem;
  color: rgb(255 255 255 / 0.6);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--primary);
}

.desktop-nav a[aria-current="page"]::after {
  position: absolute;
  right: 1.15rem;
  bottom: 0;
  left: 1.15rem;
  height: 2px;
  background: var(--primary);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.2);
  background: transparent;
  color: rgb(255 255 255 / 0.8);
}

.menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  background: var(--background);
}

.mobile-nav[data-open="true"] {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.5rem;
}

.mobile-nav a {
  color: rgb(255 255 255 / 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-nav a[aria-current="page"] {
  color: var(--primary);
}

.page-main {
  min-height: 65vh;
  padding-top: var(--header-height);
}

.hero {
  position: relative;
  display: flex;
  min-height: 90vh;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgb(255 255 255 / 0.05);
}

.hero--compact {
  min-height: 31rem;
  padding-block: 8rem 6rem;
}

.hero-media,
.hero-scrim,
.hero-canvas {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.65;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-scrim {
  background: linear-gradient(to bottom, rgb(16 18 30 / 0.58), rgb(16 18 30 / 0.82), var(--background));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 3rem), 64rem);
  margin-inline: auto;
  text-align: center;
}

.hero h1 {
  margin: 2.2rem auto 1.75rem;
  font-size: clamp(3.6rem, 8vw, 7rem);
  letter-spacing: 0.03em;
  line-height: 0.9;
  text-shadow: 0 1rem 3rem rgb(0 0 0 / 0.6);
}

.hero--compact h1 {
  max-width: 55rem;
  margin-top: 1.8rem;
  font-size: clamp(3.2rem, 7vw, 5.75rem);
}

.hero-lede {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  color: rgb(255 255 255 / 0.78);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 400;
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  min-width: 15rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.8rem;
  border: 1px solid rgb(255 255 255 / 0.2);
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  border-color: rgb(255 255 255 / 0.4);
  background: rgb(255 255 255 / 0.06);
}

.button--primary {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}

.button--primary:hover {
  border-color: #fff;
  background: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.text-link:hover {
  color: #fff;
}

.section {
  position: relative;
  padding-block: 7.5rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.05);
}

.section--card {
  background: var(--card);
}

.section--tight {
  padding-block: 5.5rem;
}

.section-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--card), rgb(21 24 39 / 0.65), var(--card));
}

.section-content {
  position: relative;
  z-index: 1;
}

.section-heading {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.section-lede {
  max-width: 48rem;
  color: rgb(255 255 255 / 0.7);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
}

.centered {
  text-align: center;
}

.centered .section-lede {
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: 2rem;
}

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

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

.card {
  border: 1px solid rgb(255 255 255 / 0.06);
  background: var(--card);
  padding: 2.5rem;
}

.card--dark {
  background: var(--background);
}

.feature-card {
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--primary) 60%, transparent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--primary) 15%, transparent);
}

.icon-box {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin-bottom: 2rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: var(--card);
  color: var(--primary);
}

.icon-box svg {
  width: 2.4rem;
  height: 2.4rem;
}

.card h2,
.card h3 {
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

.card p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 0.62);
  font-weight: 400;
}

.resource-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: 3rem;
}

.resource-intro .section-heading {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.resource-grid {
  align-items: stretch;
}

.resource-index {
  margin-bottom: 2rem;
  color: var(--primary);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.resource-link {
  margin-top: 2rem;
  font-size: 0.72rem;
}

.resource-notes {
  margin-top: 3rem;
}

.resource-note {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.resource-note-number {
  color: var(--primary);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.resource-note h3 {
  margin-bottom: 0.75rem;
  font-size: 1.7rem;
}

.resource-note p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 0.62);
}

.glossary-list {
  display: grid;
  gap: 0;
}

.glossary-entry {
  display: grid;
  grid-template-columns: minmax(14rem, 0.75fr) 1.25fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.glossary-entry:first-child {
  padding-top: 0;
}

.glossary-term {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.glossary-term span {
  display: block;
  margin-top: 0.65rem;
  color: var(--primary);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.glossary-entry p {
  margin: 0;
  color: rgb(255 255 255 / 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
}

.card-copy {
  margin-top: 1rem;
  color: rgb(255 255 255 / 0.65);
}

.intro-copy {
  display: grid;
  gap: 1.5rem;
  color: rgb(255 255 255 / 0.7);
  font-size: 1.18rem;
  line-height: 1.75;
}

.intro-copy p {
  margin: 0;
}

.data-heading {
  margin-bottom: 3rem;
}

.data-heading h2 {
  margin-top: 0.75rem;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}

.data-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
  gap: 2rem;
}

.data-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid rgb(255 255 255 / 0.06);
  border-radius: 0.75rem;
  background: var(--card);
}

.data-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.06);
  color: rgb(255 255 255 / 0.52);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.data-note {
  color: rgb(255 255 255 / 0.4);
  font-size: 0.65rem;
  font-style: italic;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 0.65rem;
}

.state-cell {
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgb(16 185 129 / 0.35);
  border-radius: 2px;
  outline: none;
  background: rgb(16 185 129 / var(--state-opacity, 0.28));
  color: rgb(255 255 255 / 0.95);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.6);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.state-cell:hover,
.state-cell[aria-pressed="true"] {
  z-index: 1;
  transform: scale(1.07);
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 0 20px rgb(16 185 129 / 0.4);
  text-shadow: none;
}

.state-cell:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.scale-key {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 2rem;
  color: rgb(255 255 255 / 0.4);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.scale-gradient {
  width: 6rem;
  height: 0.5rem;
  background: linear-gradient(to right, rgb(16 185 129 / 0.1), rgb(16 185 129 / 0.55));
}

.state-name {
  margin-bottom: 0.35rem;
  color: #fff;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.state-name span {
  margin-left: 0.5rem;
  color: var(--primary);
  font-size: 1.1rem;
}

.state-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: rgb(255 255 255 / 0.42);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.state-meta strong {
  color: rgb(255 255 255 / 0.82);
  font-weight: 500;
}

.index-track {
  height: 0.35rem;
  margin-top: 1rem;
  overflow: hidden;
  background: rgb(255 255 255 / 0.05);
}

.index-fill {
  height: 100%;
  background: linear-gradient(to right, #059669, var(--primary));
  transition: width 450ms ease;
}

.chart-wrap {
  position: relative;
  height: 15rem;
  margin-top: 1.6rem;
  padding: 0 0 1.3rem 2.7rem;
}

.chart-wrap::before {
  position: absolute;
  inset: 0 0 1.3rem 2.7rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  border-left: 1px solid rgb(255 255 255 / 0.1);
  content: "";
}

.chart-wrap svg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-path {
  stroke-dasharray: 220;
  animation: dash 1.3s ease-out;
}

@keyframes dash {
  from { stroke-dashoffset: 220; }
  to { stroke-dashoffset: 0; }
}

.phases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.phase {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.06);
  background: linear-gradient(145deg, var(--card), var(--background));
  padding: 2.6rem;
}

.phase-number {
  margin-bottom: 2rem;
  color: var(--primary);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.35em;
}

.phase h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.phase p {
  max-width: 37rem;
  color: rgb(255 255 255 / 0.68);
  font-size: 1.15rem;
  line-height: 1.7;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.principle {
  display: flex;
  min-height: 12rem;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border: 1px solid rgb(255 255 255 / 0.06);
  background: var(--background);
}

.principle:nth-child(2) {
  transform: translateY(2rem);
}

.principle:nth-child(3) {
  transform: translateY(-2rem);
}

.principle strong {
  color: #fff;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.principle span {
  color: rgb(255 255 255 / 0.46);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.finding {
  padding-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.finding h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.finding p {
  color: rgb(255 255 255 / 0.62);
}

.warning-card {
  display: flex;
  grid-column: 1 / -1;
  gap: 2rem;
  padding: 2.5rem;
  border: 1px solid rgb(255 255 255 / 0.06);
  background: var(--card);
}

.warning-icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--destructive) 25%, transparent);
  background: color-mix(in srgb, var(--destructive) 10%, transparent);
  color: var(--destructive);
}

.form-card {
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgb(255 255 255 / 0.06);
  background: var(--card);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: rgb(255 255 255 / 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.optional {
  color: rgb(255 255 255 / 0.4);
}

.required-mark {
  color: var(--primary);
}

.field input,
.field textarea {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 0;
  outline: none;
  background: var(--background);
  color: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 20%, transparent);
}

[aria-invalid="true"] {
  border-color: var(--destructive) !important;
}

.form-error {
  margin: 0;
  color: var(--destructive);
  font-size: 0.85rem;
  font-weight: 700;
}

.consent-stack {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.06);
}

.consent-panel {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(16 18 30 / 0.55);
}

.consent-panel.has-error {
  border-color: var(--destructive);
}

.consent-panel input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  margin-top: 0.25rem;
  accent-color: var(--primary);
}

.consent-copy {
  color: rgb(255 255 255 / 0.8);
  font-size: 0.82rem;
  line-height: 1.55;
}

.consent-copy a,
.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-copy a:hover,
.legal-content a:hover {
  color: #5eead4;
}

.form-submit {
  margin-top: 2rem;
  text-align: center;
}

.form-submit .button {
  border: 0;
}

.reassurance {
  margin-top: 1.5rem;
  color: rgb(255 255 255 / 0.48);
  font-family: var(--mono);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.success-state {
  padding: 3rem;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary) 15%, transparent);
  color: var(--primary);
  font-size: 2rem;
}

.success-state h2 {
  margin-bottom: 1rem;
  font-size: 2.7rem;
}

.success-state p {
  color: rgb(255 255 255 / 0.7);
}

.contact-topics {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-topics li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  color: rgb(255 255 255 / 0.7);
}

.contact-topics li::before {
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.legal-wrap {
  padding-block: 7rem;
}

.legal-card {
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid rgb(255 255 255 / 0.06);
  background: var(--card);
}

.legal-content h1 {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 7vw, 5.3rem);
}

.legal-content h2 {
  margin: 3rem 0 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.08em;
}

.legal-content p {
  margin: 0 0 1.5rem;
  color: rgb(255 255 255 / 0.7);
  line-height: 1.75;
}

.legal-content strong {
  color: rgb(255 255 255 / 0.9);
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 6rem;
  padding-block: 4rem 2rem;
  border-top: 1px solid rgb(255 255 255 / 0.05);
  background: var(--background);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-copy {
  max-width: 25rem;
  color: rgb(255 255 255 / 0.5);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-copy strong {
  color: rgb(255 255 255 / 0.82);
}

.footer-copy p {
  margin: 0;
}

.footer-copy a:hover {
  color: var(--primary);
}

.footer-heading {
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.9rem;
}

.footer-links a {
  color: rgb(255 255 255 / 0.6);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 0.05);
  color: rgb(255 255 255 / 0.4);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 750ms ease, transform 750ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero-entrance {
  animation: hero-in 900ms both;
}

.hero-entrance:nth-child(2) { animation-delay: 100ms; }
.hero-entrance:nth-child(3) { animation-delay: 200ms; }
.hero-entrance:nth-child(4) { animation-delay: 300ms; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(2rem); }
  to { opacity: 1; transform: none; }
}

@keyframes draw-line {
  0% { stroke-dashoffset: 100; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -100; }
}

.line-graph-path {
  stroke-dasharray: 100;
  animation: draw-line 4s ease-in-out infinite;
}

@keyframes clock-spin {
  to { transform: rotate(360deg); }
}

.clock-minute-hand {
  transform-origin: 20px 20px;
  animation: clock-spin 8s linear infinite;
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .data-layout,
  .split,
  .resource-intro {
    grid-template-columns: 1fr;
  }

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

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 4.5rem;
  }

  .container,
  .container--narrow,
  .hero-content {
    width: min(calc(100% - 2rem), var(--container));
  }

  .header-cta {
    display: none;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .hero {
    min-height: 46rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero--compact {
    min-height: 29rem;
    padding-block: 7rem 4rem;
  }

  .section {
    padding-block: 5rem;
  }

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

  .data-panel {
    padding: 1rem;
  }

  .state-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .state-cell {
    font-size: 0.65rem;
  }

  .data-panel-head,
  .footer-bottom,
  .warning-card {
    flex-direction: column;
  }

  .phases,
  .principles,
  .grid--2,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .glossary-entry {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .principle:nth-child(2),
  .principle:nth-child(3) {
    transform: none;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .feature-card:hover,
  .state-cell:hover,
  .state-cell[aria-pressed="true"] {
    transform: none;
  }
}