:root {
  --text: #f7fbff;
  --muted: #dce8ef;
  --ink: #102331;
  --ink-muted: #3e5b6c;
  --paper: rgba(250, 253, 255, .94);
  --paper-strong: rgba(255, 255, 255, .97);
  --line: rgba(255, 255, 255, .24);
  --panel-line: rgba(22, 91, 128, .2);
  --institution: #276f9f;
  --institution-soft: rgba(39, 111, 159, .12);
  --accent: #16877f;
  --accent-dark: #0f4f57;
  --action: #d9a927;
  --warm: #c85f48;
  --focus: #217aa3;
  --shadow: 0 18px 42px rgba(0, 0, 0, .28);
  --official-shadow: 0 16px 38px rgba(4, 18, 28, .2);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding-bottom: 5.75rem;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.62;
  color: var(--text);
  background: #071018;
  overflow-x: hidden;
}

body.space-page {
  --earth-bg: url("assets/earth-about.jpg");
  --earth-position: center center;
  background-color: #071018;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 74px),
    linear-gradient(115deg, transparent 0 28%, rgba(39, 111, 159, .07) 28% 28.55%, transparent 28.55% 100%),
    linear-gradient(180deg, rgba(3, 10, 17, .7), rgba(3, 10, 17, .38) 42%, rgba(3, 10, 17, .86)),
    linear-gradient(90deg, rgba(6, 15, 23, .76), rgba(6, 15, 23, .3) 45%, rgba(6, 15, 23, .7)),
    var(--earth-bg);
  background-position: center center, center center, center center, center center, center center, var(--earth-position);
  background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 74px 74px, 74px 74px, cover, cover, cover, cover;
  background-attachment: fixed;
}

body.page-about {
  --earth-bg: url("assets/earth-about.jpg");
  --earth-position: center center;
}

body.page-why {
  --earth-bg: url("assets/earth-why.jpg");
  --earth-position: 54% center;
}

body.page-plan {
  --earth-bg: url("assets/earth-plan.png");
  --earth-position: center 42%;
}

body.page-join {
  --earth-bg: url("assets/earth-join.jpg");
  --earth-position: center center;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-underline-offset: .18em;
}

a:hover,
a:focus-visible {
  color: var(--action);
}

h1,
h2,
h3,
p,
li,
dt,
dd,
label,
input,
textarea,
button,
select {
  overflow-wrap: anywhere;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin: 0 0 1rem;
  font-size: 3.25rem;
  line-height: 1.06;
}

h2 {
  margin: 0 0 .65rem;
  font-size: 1.34rem;
  line-height: 1.24;
}

h3 {
  margin: 0 0 .4rem;
  font-size: 1.02rem;
  line-height: 1.25;
}

h4 {
  margin: 0 0 .5rem;
  font-size: .96rem;
  line-height: 1.25;
}

p {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  left: -9999px;
  top: .75rem;
  z-index: 100;
  padding: .75rem 1rem;
  border-radius: 8px;
  background: #000;
  color: #fff;
}

.skip-link:focus {
  left: .75rem;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 50;
  display: grid;
  width: min(1120px, calc(100% - 2rem));
  gap: .65rem;
  justify-items: center;
  padding: .75rem;
  transform: translateX(-50%);
  border: 1px solid rgba(22, 91, 128, .24);
  border-top: 4px solid var(--institution);
  border-radius: 8px;
  background: rgba(250, 253, 255, .94);
  box-shadow: var(--official-shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  min-width: 48px;
  padding: .2rem;
  border: 1px solid rgba(22, 91, 128, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f2f7fa);
  box-shadow: 0 10px 24px rgba(4, 18, 28, .16);
  filter: none;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.08;
}

.brand-tagline {
  display: block;
  margin-top: .1rem;
  color: var(--ink-muted);
  font-size: .95rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .45rem;
}

.site-nav a,
.button,
.toggle,
.share-button {
  min-height: 44px;
  border-radius: 8px;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .58rem .9rem;
  border: 1px solid rgba(22, 91, 128, .18);
  background: rgba(39, 111, 159, .07);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  background: var(--institution);
  border-color: var(--institution);
  color: #fff;
  box-shadow: 0 12px 26px rgba(39, 111, 159, .22);
}

.share-button {
  position: absolute;
  top: .75rem;
  right: .75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.8rem;
  padding: .5rem .72rem;
  border: 1px solid rgba(22, 91, 128, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: .92rem;
  font-weight: 900;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-hovered,
.button:hover,
.button:focus-visible,
.button.is-hovered,
.toggle:hover,
.toggle:focus-visible,
.toggle.is-hovered,
.share-button:hover,
.share-button:focus-visible,
.share-button.is-hovered {
  transform: translateY(-1px);
  border-color: var(--action);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-hovered,
.share-button:hover,
.share-button:focus-visible,
.share-button.is-hovered {
  background: var(--action);
  color: var(--ink);
}

.button.is-clicked,
.button:active,
.site-nav a.is-clicked,
.site-nav a:active,
.toggle.is-clicked,
.toggle:active,
.share-button.is-clicked,
.share-button:active {
  transform: translateY(1px);
  background: var(--warm);
  border-color: var(--warm);
  color: #081118;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, .24);
}

.main-content {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 10rem 0 3rem;
}

.hero {
  display: grid;
  min-height: calc(100vh - 13rem);
  align-content: center;
  padding: 2rem 0;
}

.manifesto-hero {
  position: relative;
}

.manifesto-hero::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 0;
  z-index: 0;
  width: min(22rem, 38vw);
  height: min(22rem, 38vw);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .16) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(255, 255, 255, .16) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    repeating-linear-gradient(0deg, transparent 0 1.15rem, rgba(255, 255, 255, .055) 1.15rem calc(1.15rem + 1px)),
    repeating-linear-gradient(90deg, transparent 0 1.15rem, rgba(255, 255, 255, .055) 1.15rem calc(1.15rem + 1px));
  box-shadow: inset 0 0 0 2.25rem rgba(39, 111, 159, .05);
  opacity: .62;
  pointer-events: none;
}

.manifesto-hero > * {
  position: relative;
  z-index: 1;
}

.centered-hero {
  justify-items: center;
  text-align: center;
}

.manifesto-hero::after {
  content: "";
  display: block;
  width: min(30rem, 72vw);
  height: 4px;
  margin-top: 1.55rem;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--action), var(--accent), rgba(255, 255, 255, 0));
}

.centered-hero::after {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 .85rem;
  padding: .3rem .72rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  color: var(--action);
  font-weight: 900;
  text-transform: uppercase;
}

.lede {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 1.22rem;
}

.manifesto-hero .lede {
  color: #edf7fb;
}

.hero-statement {
  max-width: 980px;
  font-size: 1.34rem;
  font-weight: 650;
  line-height: 1.72;
}

.manifesto-line {
  max-width: 760px;
  margin: 1rem 0 0;
  padding-left: 1rem;
  border-left: 5px solid var(--action);
  color: #ffffff;
  font-weight: 850;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.35rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .82rem 1.05rem;
  border: 1px solid var(--institution);
  background: var(--institution);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
}

.button-secondary {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .12);
  color: var(--text);
}

.content {
  position: relative;
  padding: 0 0 3.5rem;
}

.content::before {
  content: "";
  display: block;
  width: min(100%, 18rem);
  height: 4px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--institution), var(--action), var(--accent));
}

.wide-content {
  max-width: 1120px;
}

.charter-panel {
  margin: 1.25rem 0;
}

.news-invite,
.inspiration-band {
  margin: 1.25rem 0;
  padding: 1.35rem;
  border: 1px solid var(--panel-line);
  border-left: 5px solid var(--institution);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(39, 111, 159, .1), rgba(217, 169, 39, .09)),
    var(--paper-strong);
  box-shadow: var(--official-shadow);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.news-invite {
  display: grid;
  gap: .45rem;
  max-width: 920px;
}

.news-invite .button {
  width: fit-content;
}

.inspiration-band h2 {
  max-width: 820px;
  font-size: 1.6rem;
}

.inspiration-band p:last-child {
  max-width: 840px;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-weight: 650;
}

.charter-kicker {
  width: fit-content;
  margin: 0 0 .55rem;
  padding: .24rem .58rem;
  border: 1px solid rgba(39, 111, 159, .18);
  border-radius: 8px;
  background: rgba(250, 253, 255, .92);
  color: var(--institution);
  font-weight: 900;
  text-transform: uppercase;
}

.integrity-panel .charter-kicker,
.inspiration-band .charter-kicker {
  background: var(--institution-soft);
}

.charter-panel > h2,
.charter-panel > p {
  max-width: 850px;
}

.two-column,
.card-grid,
.definition-list,
.article-map,
.test-grid,
.phase-grid,
.role-grid {
  display: grid;
  gap: 1rem;
}

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.card-grid,
.definition-list,
.article-map,
.test-grid,
.phase-grid,
.role-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.two-column > article,
.card,
.definition-list > div,
.integrity-panel,
.commitment-band,
.article-map > article,
.test-grid > article,
.phase-grid > article,
.role-grid > article {
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--official-shadow);
  backdrop-filter: blur(14px);
}

.card,
.article-map > article,
.test-grid > article,
.role-grid > article,
.formula-strip li,
.metric-grid li,
.compact-grid li,
.time-phase {
  position: relative;
  overflow: hidden;
}

.two-column > article,
.card,
.definition-list > div,
.integrity-panel,
.commitment-band,
.article-map > article,
.test-grid > article,
.phase-grid > article,
.role-grid > article {
  padding: 1.15rem;
}

.two-column > article,
.commitment-band,
.integrity-panel,
.phase-grid > article {
  border-left: 5px solid var(--institution);
}

.article-map {
  margin-top: 1rem;
}

.card::before,
.test-grid > article::before,
.role-grid > article::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(39, 111, 159, .22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(39, 111, 159, .5) 48% 52%, transparent 52% 100%),
    linear-gradient(45deg, transparent 0 48%, rgba(217, 169, 39, .45) 48% 52%, transparent 52% 100%),
    rgba(39, 111, 159, .06);
}

.card > *,
.test-grid > article > *,
.role-grid > article > * {
  position: relative;
  z-index: 1;
}

.integrity-panel {
  position: relative;
  overflow: hidden;
}

.integrity-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: .45rem;
  background: linear-gradient(180deg, var(--institution), var(--accent), var(--action));
}

.integrity-panel::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 0;
  width: min(18rem, 38%);
  height: 7.5rem;
  border: 1px solid rgba(39, 111, 159, .18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(39, 111, 159, .14) 46% 48%, transparent 48% 100%),
    repeating-linear-gradient(90deg, rgba(39, 111, 159, .1) 0 1px, transparent 1px 2.1rem),
    repeating-linear-gradient(0deg, rgba(39, 111, 159, .08) 0 1px, transparent 1px 1.45rem);
  opacity: .9;
  pointer-events: none;
}

.integrity-panel > * {
  position: relative;
  z-index: 1;
}

.integrity-panel h2 {
  max-width: 840px;
  font-size: 1.72rem;
}

.integrity-panel p {
  max-width: 900px;
  color: var(--ink-muted);
  font-weight: 650;
}

.mandate-list {
  display: grid;
  gap: .55rem;
  max-width: 920px;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.mandate-list li {
  position: relative;
  padding: .68rem .85rem .68rem 2.35rem;
  border: 1px solid rgba(22, 91, 128, .15);
  border-radius: 8px;
  background: rgba(39, 111, 159, .06);
  color: var(--ink);
  font-weight: 800;
}

.mandate-list li::before {
  content: "";
  position: absolute;
  left: .85rem;
  top: 1.05rem;
  width: .62rem;
  height: .62rem;
  border-radius: 50%;
  background: var(--action);
  box-shadow: 0 0 0 4px rgba(217, 169, 39, .18);
}

.article-map > article {
  position: relative;
  padding-top: 3.25rem;
}

.article-map > article::after,
.time-phase::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 0;
  width: 5.5rem;
  height: 3.2rem;
  border-top: 1px solid rgba(39, 111, 159, .2);
  border-right: 1px solid rgba(39, 111, 159, .2);
  background:
    linear-gradient(90deg, rgba(39, 111, 159, .18) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(217, 169, 39, .16) 0 1px, transparent 1px 100%);
  background-size: 1.3rem 1.3rem;
  opacity: .82;
  pointer-events: none;
}

.article-map > article > *,
.time-phase > * {
  position: relative;
  z-index: 1;
}

.article-map span {
  position: absolute;
  left: 1.15rem;
  top: 1rem;
  display: inline-flex;
  min-width: 2.1rem;
  height: 1.7rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--institution);
  color: #fff;
  font-weight: 900;
}

.formula-strip,
.metric-grid,
.compact-grid {
  display: grid;
  gap: .65rem;
  padding: 0;
  list-style: none;
}

.formula-strip {
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  margin: 1rem 0;
}

.formula-strip li,
.metric-grid li,
.compact-grid li {
  padding: .82rem;
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 850;
  text-align: center;
  box-shadow: 0 8px 24px rgba(4, 18, 28, .12);
}

.formula-strip li::before,
.metric-grid li::before,
.compact-grid li::before {
  content: "";
  display: block;
  width: 2rem;
  height: .22rem;
  margin: 0 auto .5rem;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--institution), var(--accent), var(--action));
}

.metric-grid,
.compact-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 1rem 0 0;
}

.test-grid {
  margin: 1rem 0;
}

.test-grid > article {
  border-top: 4px solid var(--institution);
}

.test-grid > article:nth-child(2n),
.role-grid > article:nth-child(2n) {
  border-top: 4px solid var(--accent);
}

.test-grid > article:nth-child(3n),
.role-grid > article:nth-child(3n) {
  border-top: 4px solid var(--warm);
}

.phase-grid {
  margin: 1.25rem 0;
}

.role-grid {
  margin-top: 1rem;
}

.timetable {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}

.timeline-intro {
  max-width: 880px;
}

.time-phase {
  border: 1px solid var(--panel-line);
  border-left: 5px solid var(--institution);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--official-shadow);
  backdrop-filter: blur(14px);
}

.time-phase header {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  padding: 1rem 1rem .85rem;
  border-bottom: 1px solid var(--panel-line);
}

.time-phase header h3 {
  margin: 0;
  font-size: 1.28rem;
}

.phase-label,
.time-range {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
}

.phase-label {
  padding: .32rem .65rem;
  background: var(--institution);
  color: #fff;
}

.time-range {
  margin: 0 0 0 auto;
  padding: .28rem .58rem;
  border: 1px solid var(--panel-line);
  color: var(--institution);
}

.time-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.time-group {
  padding-left: .85rem;
  border-left: 4px solid var(--accent);
}

.time-group.metrics {
  border-left-color: var(--warm);
}

.time-group h4 {
  color: var(--ink);
  font-weight: 900;
}

.time-group ul {
  display: grid;
  gap: .35rem;
  margin: 0;
  padding-left: 1rem;
  color: var(--ink-muted);
}

.time-group li::marker {
  color: var(--action);
}

.note-line {
  margin: .75rem 0 0;
  color: var(--ink-muted);
  font-weight: 750;
}

.news-loop-section {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}

.news-rail {
  overflow: hidden;
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: rgba(250, 253, 255, .9);
  box-shadow: var(--official-shadow);
}

.news-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 1rem;
  animation: newsLoop 46s linear infinite;
}

.news-track:hover {
  animation-play-state: paused;
}

.news-card {
  position: relative;
  display: grid;
  align-content: start;
  width: min(23rem, 82vw);
  min-height: 18rem;
  padding: 1.1rem;
  border: 1px solid var(--panel-line);
  border-top: 5px solid var(--institution);
  border-radius: 8px;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(4, 18, 28, .12);
}

.news-card::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(39, 111, 159, .18);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(39, 111, 159, .18) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(39, 111, 159, .18) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px));
  pointer-events: none;
}

.news-card span {
  width: fit-content;
  margin-bottom: .65rem;
  padding: .22rem .55rem;
  border-radius: 8px;
  background: var(--institution-soft);
  color: var(--institution);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card h3 {
  max-width: 18rem;
  font-size: 1.2rem;
}

.news-card p {
  color: var(--ink-muted);
}

.news-card a {
  align-self: end;
  font-weight: 850;
}

.news-card.corruption {
  border-top-color: var(--warm);
}

.news-card.improvement {
  border-top-color: var(--accent);
}

.news-card.innovation {
  border-top-color: var(--action);
}

.source-panel {
  padding: 1.15rem;
  border: 1px solid var(--panel-line);
  border-left: 5px solid var(--institution);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--official-shadow);
}

.source-list {
  display: grid;
  gap: .65rem;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.source-list a {
  color: var(--institution);
  font-weight: 850;
}

@keyframes newsLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - .5rem));
  }
}

.card {
  border-top: 4px solid var(--institution);
}

.card:nth-child(2n) {
  border-top-color: var(--warm);
}

.card:nth-child(3n) {
  border-top-color: var(--action);
}

.definition-list {
  margin: 1rem 0 0;
  padding: 0;
}

.definition-list dt {
  margin-bottom: .35rem;
  color: var(--institution);
  font-weight: 900;
}

.definition-list dd {
  margin: 0;
  color: var(--ink-muted);
}

.two-column > article p,
.card p,
.commitment-band p,
.article-map > article p,
.test-grid > article p,
.phase-grid > article p,
.role-grid > article p {
  color: var(--ink-muted);
}

.commitment-band {
  margin-top: 1rem;
}

.steps {
  display: grid;
  gap: .8rem;
  padding: 0;
  margin: 0 0 1rem;
  list-style: none;
}

.steps li {
  padding: 1rem;
  border: 1px solid var(--panel-line);
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.numbered-steps {
  counter-reset: plan-step;
}

.numbered-steps li {
  position: relative;
  padding-left: 3.2rem;
}

.numbered-steps li::before {
  counter-increment: plan-step;
  content: counter(plan-step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  width: 1.55rem;
  height: 1.55rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--action);
  color: #061018;
  font-weight: 900;
}

.commitment-list li {
  padding: .55rem 0 .55rem .85rem;
  border: 0;
  border-left: 5px solid var(--warm);
  border-radius: 0;
  background: transparent;
}

body[dir="rtl"] .commitment-list li {
  padding-right: .85rem;
  padding-left: 0;
  border-right-color: var(--warm);
}

.simple-form {
  display: grid;
  gap: .7rem;
  padding: 0;
}

.simple-form label {
  font-weight: 850;
}

.form-note,
.form-status {
  margin: .25rem 0 0;
  color: var(--ink-muted);
  font-size: .92rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1.45em;
  color: var(--institution);
  font-weight: 800;
}

input,
textarea,
select,
button {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: .65rem .75rem;
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  color: #061018;
}

textarea {
  min-height: 7rem;
  resize: vertical;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-footer {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 45;
  width: min(1120px, calc(100% - 2rem));
  transform: translateX(-50%);
  border: 1px solid rgba(22, 91, 128, .22);
  border-radius: 8px;
  background: rgba(250, 253, 255, .94);
  box-shadow: var(--official-shadow);
  backdrop-filter: blur(18px);
  max-width: calc(100% - 2rem);
}

.footer-accessibility {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .55rem;
  text-align: left;
}

.footer-accessibility h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}

.footer-accessibility p {
  display: none;
}

.top-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  width: auto;
}

.top-tools > *,
.site-nav > * {
  min-width: 0;
}

.top-tools select {
  max-width: 12rem;
}

.site-footer .top-tools {
  flex-wrap: nowrap;
}

.site-footer .top-tools select {
  flex: 0 0 12rem;
  width: auto;
}

.site-footer .toggle {
  flex: 0 0 auto;
  white-space: nowrap;
}

.toggle {
  padding: .55rem .78rem;
  border: 1px solid rgba(22, 91, 128, .2);
  background: rgba(39, 111, 159, .08);
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

.toggle[aria-pressed="true"] {
  background: var(--institution);
  border-color: var(--institution);
  color: #fff;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.large-text {
  font-size: 1.125rem;
}

body.high-contrast {
  --text: #fff;
  --muted: #f3f3f3;
  --ink: #fff;
  --ink-muted: #fff;
  --paper: #000;
  --paper-strong: #000;
  --line: #fff;
  --panel-line: #fff;
  --institution: #ffd400;
  --institution-soft: #000;
  --accent: #ffd400;
  --action: #8bdcff;
  --warm: #fff;
  --shadow: none;
  --official-shadow: none;
  background: #000;
  background-image: none;
}

body.high-contrast .site-header,
body.high-contrast .site-footer,
body.high-contrast .two-column > article,
body.high-contrast .card,
body.high-contrast .definition-list > div,
body.high-contrast .commitment-band,
body.high-contrast .integrity-panel,
body.high-contrast .article-map > article,
body.high-contrast .test-grid > article,
body.high-contrast .phase-grid > article,
body.high-contrast .role-grid > article,
body.high-contrast .formula-strip li,
body.high-contrast .metric-grid li,
body.high-contrast .compact-grid li,
body.high-contrast .inspiration-band,
body.high-contrast .news-invite,
body.high-contrast .news-rail,
body.high-contrast .news-card,
body.high-contrast .source-panel,
body.high-contrast .time-phase,
body.high-contrast .mandate-list li,
body.high-contrast .simple-form {
  background: #000;
}

body.high-contrast .button,
body.high-contrast .share-button,
body.high-contrast .site-nav a[aria-current="page"],
body.high-contrast .toggle[aria-pressed="true"] {
  color: #000;
}

body.high-contrast .manifesto-hero::before,
body.high-contrast .integrity-panel::after,
body.high-contrast .card::before,
body.high-contrast .test-grid > article::before,
body.high-contrast .role-grid > article::before,
body.high-contrast .article-map > article::after,
body.high-contrast .time-phase::after,
body.high-contrast .formula-strip li::before,
body.high-contrast .metric-grid li::before,
body.high-contrast .compact-grid li::before,
body.high-contrast .news-card::after {
  display: none;
}

body.reduced-motion *,
body.reduced-motion *::before,
body.reduced-motion *::after {
  scroll-behavior: auto !important;
  animation: none !important;
  transition: none !important;
}

body[dir="rtl"] .brand {
  direction: rtl;
  text-align: right;
}

body[dir="rtl"] .main-content {
  direction: ltr;
  text-align: left;
}

body[dir="rtl"] .steps li {
  border-left-width: 1px;
  border-right: 5px solid var(--accent);
}

body[dir="rtl"] .commitment-list li {
  border-right-color: var(--warm);
}

body[dir="rtl"] .numbered-steps li {
  padding-right: 3.2rem;
  padding-left: 1rem;
}

body[dir="rtl"] .numbered-steps li::before {
  right: 1rem;
  left: auto;
}

@media (max-width: 800px) {
  body {
    padding-bottom: 4.25rem;
  }

  body.space-page {
    background-image:
      linear-gradient(180deg, rgba(3, 10, 17, .72), rgba(3, 10, 17, .4) 42%, rgba(3, 10, 17, .88)),
      linear-gradient(90deg, rgba(6, 15, 23, .78), rgba(6, 15, 23, .32) 45%, rgba(6, 15, 23, .72)),
      var(--earth-bg);
    background-position: center center, center center, var(--earth-position);
    background-repeat: no-repeat;
    background-size: cover, cover, cover;
  }

  .site-header {
    top: .5rem;
    width: calc(100vw - .75rem);
    max-width: calc(100vw - .75rem);
    min-width: 0;
    gap: .5rem;
    padding: .6rem;
  }

  .share-button {
    top: .6rem;
    right: .6rem;
    min-height: 38px;
    min-width: 4.25rem;
    padding: .35rem .52rem;
    font-size: .82rem;
  }

  .site-header > * {
    min-width: 0;
  }

  .brand img {
    width: 40px;
    min-width: 40px;
  }

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

  .brand-tagline {
    display: none;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: .25rem;
    overflow: visible;
    padding-bottom: 0;
  }

  .site-nav a {
    min-width: 0;
    width: 100%;
    padding: .52rem .4rem;
    font-size: .94rem;
    overflow: hidden;
    white-space: normal;
  }

  .main-content {
    width: calc(100vw - 1rem);
    padding-top: 8.75rem;
  }

  .hero {
    min-height: auto;
    padding: 2.5rem 0 2rem;
  }

  .manifesto-hero::before,
  .integrity-panel::after {
    display: none;
  }

  .news-track {
    animation-duration: 58s;
  }

  h1 {
    font-size: 2.25rem;
  }

  .lede {
    font-size: 1.08rem;
  }

  .hero-statement {
    font-size: 1.04rem;
    line-height: 1.58;
  }

  .two-column,
  .card-grid,
  .definition-list {
    grid-template-columns: 1fr;
  }

  .actions,
  .actions .button {
    width: 100%;
  }

  .site-footer {
    bottom: .35rem;
    width: calc(100vw - .75rem);
    max-width: calc(100vw - .75rem);
    min-width: 0;
    max-height: none;
    overflow: visible;
  }

  .footer-accessibility {
    display: block;
    padding: .28rem;
    min-width: 0;
    text-align: center;
  }

  .footer-accessibility h2 {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .top-tools {
    display: grid;
    grid-template-columns: minmax(7rem, 1.4fr) repeat(3, minmax(2.45rem, .6fr));
    gap: .25rem;
    width: 100%;
    min-width: 0;
  }

  .site-footer .top-tools {
    display: grid;
  }

  .top-tools select {
    min-height: 34px;
    height: 34px;
    padding: .2rem .45rem;
    max-width: none;
    grid-column: auto;
    font-size: .78rem;
  }

  .site-footer .top-tools select,
  .site-footer .toggle {
    min-width: 0;
    width: 100%;
    white-space: nowrap;
  }

  .site-footer .toggle {
    display: inline-flex;
    height: 34px;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: .2rem .3rem;
    font-size: 0;
  }

  .site-footer .toggle::after {
    font-size: .68rem;
    line-height: 1;
  }

  .site-footer .toggle[data-toggle="large-text"]::after {
    content: "A+";
  }

  .site-footer .toggle[data-toggle="high-contrast"]::after {
    content: "Contrast";
  }

  .site-footer .toggle[data-toggle="reduced-motion"]::after {
    content: "Motion";
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: 4.25rem;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-statement {
    font-size: 1rem;
  }
}
