:root {
  --ink: #0b163b;
  --ink-soft: #172653;
  --blue: #4057ff;
  --blue-light: #8794ff;
  --teal: #14b8a6;
  --orange: #ff6a3d;
  --orange-soft: #ffddd3;
  --lime: #c8f24a;
  --lime-dark: #a9d529;
  --cream: #f6f5ee;
  --sky: #e7efff;
  --white: #ffffff;
  --text: #111a35;
  --muted: #58627a;
  --line: #dce1ed;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 28px 70px rgb(11 22 59 / 16%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
  transform: translateY(-160%);
}

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

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

.topline {
  position: relative;
  z-index: 102;
  color: var(--white);
  background: var(--ink);
}

.topline-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.topline a {
  color: var(--lime);
}

.site-header {
  position: fixed;
  top: 36px;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgb(11 22 59 / 8%);
}

.legal-header {
  top: 0;
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand img {
  border-radius: 13px;
  box-shadow: 0 8px 18px rgb(11 22 59 / 14%);
}

.brand span {
  display: grid;
  gap: 4px;
}

.brand strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.brand small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.primary-nav > a:not(.button) {
  position: relative;
  padding-block: 10px;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 3px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border: 2px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .01em;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgb(11 22 59 / 16%);
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
}

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

.button-orange:hover {
  background: #ed542a;
}

.button-lime {
  color: var(--ink);
  background: var(--lime);
}

.button-lime:hover {
  background: #d7ff5b;
}

.button-outline {
  color: var(--white);
  border-color: rgb(255 255 255 / 60%);
  background: transparent;
}

.button-outline:hover {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 880px;
  padding: 188px 0 96px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: auto auto 0 0;
  width: 36%;
  height: 16px;
  background: var(--orange);
  content: "";
}

.hero::after {
  position: absolute;
  top: 116px;
  right: -90px;
  width: 340px;
  height: 340px;
  border: 54px solid rgb(64 87 255 / 28%);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 590px;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 82px;
}

.hero-copy {
  padding-bottom: 24px;
}

.hero h1 {
  max-width: 680px;
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(65px, 6.5vw, 96px);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .91;
}

.hero h1 span {
  color: var(--lime);
}

.hero-copy > p {
  max-width: 590px;
  margin: 0 0 38px;
  color: #cbd3ee;
  font-size: 19px;
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 38px;
  color: #9aa7ca;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-meta span {
  position: relative;
}

.hero-meta span + span::before {
  position: absolute;
  top: 50%;
  left: -16px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.photo-frame {
  position: absolute;
  inset: 32px 20px 16px 70px;
  overflow: hidden;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.photo-frame::after {
  position: absolute;
  inset: 0;
  border: 8px solid rgb(255 255 255 / 12%);
  content: "";
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lesson-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 40px rgb(0 0 0 / 20%);
}

.lesson-card-budget {
  top: 6px;
  left: 0;
  animation: float 5s ease-in-out infinite;
}

.lesson-card-protect {
  right: -6px;
  bottom: 58px;
  animation: float 5s 1.2s ease-in-out infinite;
}

.lesson-card div {
  display: grid;
  gap: 1px;
}

.lesson-card strong {
  font-size: 13px;
  font-weight: 950;
}

.lesson-card small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.lesson-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 22px;
}

.lesson-icon-blue {
  color: var(--white);
  background: var(--blue);
}

.coin-stack {
  position: absolute;
  bottom: 5px;
  left: 22px;
  z-index: 4;
  display: grid;
  gap: 5px;
}

.coin-stack i {
  display: block;
  width: 88px;
  height: 22px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 4px 0 var(--orange);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
}

.hero-orbit-one {
  top: 160px;
  left: -200px;
  width: 520px;
  height: 520px;
}

.hero-orbit-two {
  bottom: -250px;
  left: 32%;
  width: 620px;
  height: 620px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.topic-rail {
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
}

.topic-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 22px;
  min-height: 64px;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: ticker 35s linear infinite;
}

.topic-track b {
  color: var(--orange);
  font-size: 22px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-label {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-label-lime {
  color: var(--lime);
}

.mission {
  background: var(--cream);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: start;
  gap: 110px;
}

.mission h2,
.section-heading h2,
.planner h2,
.partner h2,
.registry h2,
.contact h2,
.legal-page h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .99;
}

.mission h2 {
  max-width: 730px;
  font-size: clamp(48px, 5.2vw, 72px);
}

.mission-copy {
  padding-top: 32px;
}

.mission-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding-bottom: 4px;
  border-bottom: 3px solid var(--blue);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 80px;
}

.fact {
  display: grid;
  min-height: 170px;
  align-content: space-between;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
}

.fact-blue {
  background: var(--blue);
}

.fact-orange {
  color: var(--ink);
  background: var(--orange);
}

.fact strong {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -.04em;
  line-height: 1;
}

.fact span {
  max-width: 230px;
  color: #cbd3ee;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.fact-orange span {
  color: #38140b;
}

.programs {
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}

.section-heading h2 {
  color: var(--white);
  font-size: clamp(50px, 5.2vw, 72px);
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: #aab5d3;
  font-size: 16px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program {
  position: relative;
  min-height: 570px;
  padding: 32px;
  overflow: hidden;
  color: var(--ink);
}

.program-coral {
  background: var(--orange-soft);
}

.program-blue {
  color: var(--white);
  background: var(--blue);
}

.program-lime {
  background: var(--lime);
}

.program-number {
  display: block;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .2em;
}

.program-art {
  position: relative;
  height: 185px;
  margin: 34px 0 28px;
}

.program-art-budget {
  display: flex;
  align-items: flex-end;
  gap: 11px;
  padding-inline: 14px;
}

.program-art-budget i {
  display: block;
  flex: 1;
  border: 5px solid var(--ink);
  background: var(--orange);
}

.program-art-budget i:nth-child(1) { height: 45%; }
.program-art-budget i:nth-child(2) { height: 68%; background: var(--lime); }
.program-art-budget i:nth-child(3) { height: 58%; background: var(--blue); }
.program-art-budget i:nth-child(4) { height: 92%; background: var(--teal); }

.program-art-invest {
  display: grid;
  place-items: center;
}

.program-art-invest svg {
  width: 100%;
  overflow: visible;
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 10;
}

.program-art-invest circle {
  fill: var(--orange);
  stroke: var(--white);
  stroke-width: 5;
}

.program-art-business {
  display: flex;
  align-items: end;
  justify-content: center;
}

.program-art-business span {
  position: absolute;
  display: block;
  border: 6px solid var(--ink);
  background: var(--white);
}

.program-art-business span:nth-child(1) {
  bottom: 0;
  width: 210px;
  height: 115px;
}

.program-art-business span:nth-child(2) {
  bottom: 115px;
  width: 160px;
  height: 40px;
  background: var(--orange);
}

.program-art-business span:nth-child(3) {
  bottom: 155px;
  width: 72px;
  height: 30px;
  background: var(--blue);
}

.program h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: -.04em;
  line-height: 1;
}

.program p {
  margin: 0 0 22px;
  font-size: 14px;
}

.program ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid currentColor;
  list-style: none;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.program li::before {
  margin-right: 8px;
  color: var(--orange);
  content: "+";
}

.program-note {
  max-width: 780px;
  margin: 28px 0 0;
  color: #7f8bad;
  font-size: 11px;
}

.planner {
  background: var(--white);
}

.planner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 110px;
}

.planner h2 {
  max-width: 640px;
  font-size: clamp(50px, 5.2vw, 72px);
}

.planner-copy > p:not(.section-label) {
  max-width: 590px;
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: 17px;
}

.income-control {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  max-width: 600px;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
}

.income-control > span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.income-control output {
  color: var(--lime);
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -.03em;
  line-height: 1;
}

.income-control input {
  width: 100%;
  grid-column: 1 / -1;
  accent-color: var(--lime);
}

.planner-disclaimer {
  max-width: 590px;
  margin-top: 16px;
  color: #7d869b;
  font-size: 11px;
}

.planner-tool {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 34px;
  padding: 46px;
  background: var(--sky);
}

.donut {
  display: grid;
  width: 250px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 50%, var(--orange) 50% 80%, var(--lime) 80% 100%);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.donut > div {
  display: grid;
  width: 58%;
  aspect-ratio: 1;
  place-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  text-align: center;
  background: var(--white);
}

.donut strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 29px;
  letter-spacing: -.04em;
  line-height: 1;
}

.donut span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.allocation-list {
  display: grid;
  gap: 18px;
}

.allocation-list > div {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 4px 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid #b9c5e4;
}

.allocation-list span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 12px;
  font-weight: 850;
}

.allocation-list small {
  color: var(--muted);
}

.allocation-list strong {
  grid-column: 2;
  color: var(--ink);
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -.03em;
}

.dot {
  width: 11px;
  height: 11px;
  margin-top: 5px;
  border-radius: 50%;
}

.dot-blue { background: var(--blue); }
.dot-orange { background: var(--orange); }
.dot-lime { background: var(--lime-dark); }

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.action {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.action:last-child {
  border-right: 0;
}

.action summary {
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -.03em;
  line-height: 1.15;
  cursor: pointer;
  list-style: none;
}

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

.action summary span {
  display: block;
  margin-bottom: 28px;
  color: var(--orange);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .16em;
}

.action summary::after {
  float: right;
  color: var(--blue);
  content: "+";
}

.action[open] summary::after {
  content: "−";
}

.action p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.partner {
  color: var(--white);
  background: var(--blue);
}

.partner-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.partner-photo {
  position: relative;
  min-height: 610px;
}

.partner-photo::before {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 130px;
  height: 130px;
  background: var(--lime);
  content: "";
}

.partner-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.partner-photo span {
  position: absolute;
  right: -40px;
  bottom: 42px;
  z-index: 2;
  width: 260px;
  padding: 22px;
  color: var(--ink);
  background: var(--orange);
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.partner h2 {
  color: var(--white);
  font-size: clamp(50px, 5.1vw, 72px);
}

.partner-copy > p:not(.section-label) {
  max-width: 600px;
  margin: 26px 0 32px;
  color: #dbe0ff;
  font-size: 17px;
}

.partner-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 38px;
}

.partner-list span {
  padding: 13px 14px;
  border: 1px solid rgb(255 255 255 / 36%);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.registry {
  background: var(--cream);
}

.registry-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
}

.registry h2 {
  max-width: 600px;
  font-size: clamp(48px, 4.9vw, 68px);
}

.registry-list {
  margin: 0;
  border-top: 2px solid var(--ink);
}

.registry-list > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 20px 4px;
  border-bottom: 1px solid #cfd1c9;
}

.registry-list dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.registry-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.registry-source {
  display: flex;
  grid-column: 2;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 11px;
}

.registry-source a {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--blue);
  color: var(--ink);
  font-weight: 900;
}

.contact {
  color: var(--white);
  background: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 100px;
}

.contact h2 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(50px, 5.2vw, 72px);
}

.contact-copy > p:not(.section-label) {
  max-width: 580px;
  margin: 28px 0;
  color: #aab5d3;
  font-size: 17px;
}

.contact-copy > a {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--lime);
  color: var(--lime);
  font-size: 18px;
  font-weight: 900;
}

.contact-copy address {
  margin-top: 28px;
  color: #8997bb;
  font-size: 13px;
  font-style: normal;
}

.contact-form {
  display: grid;
  gap: 17px;
  padding: 42px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #aeb7ca;
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}

.contact-form textarea {
  min-height: 105px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgb(64 87 255 / 18%);
}

.contact-form .button {
  justify-self: start;
  margin-top: 4px;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-status.is-error {
  color: #ac2d20;
}

.form-status.is-success {
  color: #0b765e;
}

.site-footer {
  padding-top: 76px;
  color: var(--white);
  background: #050c22;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 62px;
}

.brand-light strong {
  color: var(--white);
}

.brand-light small {
  color: var(--lime);
}

.footer-brand > p {
  margin: 22px 0 0;
  color: #8e99b8;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -.03em;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid address {
  color: #a8b2ce;
  font-size: 12px;
  font-style: normal;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: #727e9e;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-delay {
  transition-delay: 110ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: calc(100vh - 300px);
  padding: 180px 0 110px;
  background: var(--cream);
}

.legal-page article {
  width: min(780px, calc(100% - 36px));
  margin-inline: auto;
}

.legal-page h1 {
  margin-bottom: 30px;
  font-size: clamp(52px, 6vw, 78px);
}

.legal-page h2 {
  margin: 42px 0 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page a {
  border-bottom: 2px solid var(--blue);
  color: var(--ink);
  font-weight: 850;
}

.legal-meta {
  margin-bottom: 42px;
  color: var(--orange) !important;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.financial-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-block: 34px;
}

.financial-summary div {
  padding: 22px;
  color: var(--white);
  background: var(--ink);
}

.financial-summary strong {
  display: block;
  color: var(--lime);
  font-family: var(--display);
  font-size: 28px;
}

.financial-summary span {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 36px, 780px);
  }

  .section {
    padding-block: 90px;
  }

  .site-header {
    backdrop-filter: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 103;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:not(.sr-only) {
    background: var(--white);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 102;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 22px;
    color: var(--white);
    background: var(--ink);
    font-family: var(--display);
    font-size: 30px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav .button {
    margin-top: 12px;
    font-family: var(--sans);
    font-size: 13px;
  }

  .hero {
    padding-top: 164px;
  }

  .hero-grid,
  .mission-grid,
  .section-heading,
  .planner-grid,
  .partner-grid,
  .registry-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 44px;
  }

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

  .hero-visual {
    min-height: 640px;
  }

  .mission-grid,
  .section-heading,
  .planner-grid,
  .partner-grid,
  .registry-grid,
  .contact-grid {
    gap: 54px;
  }

  .mission-copy {
    padding-top: 0;
  }

  .fact-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .program {
    min-height: auto;
  }

  .program-art {
    max-width: 420px;
  }

  .planner-tool {
    grid-template-columns: 250px 1fr;
  }

  .partner-photo {
    min-height: 620px;
  }

  .partner-photo span {
    right: 20px;
  }

  .registry-source {
    grid-column: 1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .section {
    padding-block: 72px;
  }

  .topline-inner {
    justify-content: center;
    font-size: 9px;
  }

  .topline-inner a {
    display: none;
  }

  .site-header {
    top: 36px;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 9px;
  }

  .hero {
    min-height: auto;
    padding: 145px 0 78px;
  }

  .hero::after {
    width: 220px;
    height: 220px;
    border-width: 36px;
  }

  .hero h1 {
    font-size: clamp(56px, 17vw, 72px);
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-meta span + span::before {
    display: none;
  }

  .hero-visual {
    min-height: 520px;
  }

  .photo-frame {
    inset: 48px 0 16px 26px;
  }

  .lesson-card {
    min-width: 205px;
    padding: 12px;
  }

  .lesson-card-budget {
    left: 0;
  }

  .lesson-card-protect {
    right: -4px;
    bottom: 36px;
  }

  .coin-stack {
    display: none;
  }

  .mission h2,
  .section-heading h2,
  .planner h2,
  .partner h2,
  .registry h2,
  .contact h2 {
    font-size: 45px;
  }

  .fact-grid {
    margin-top: 50px;
  }

  .fact {
    min-height: 145px;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 46px;
  }

  .program {
    padding: 26px;
  }

  .program-art {
    height: 155px;
  }

  .planner-tool {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 32px 22px;
  }

  .donut {
    width: min(250px, 100%);
  }

  .allocation-list {
    width: 100%;
  }

  .action-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .action {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .action:last-child {
    border-bottom: 0;
  }

  .partner-photo {
    min-height: 470px;
  }

  .partner-photo::before {
    right: -12px;
    width: 90px;
    height: 90px;
  }

  .partner-photo span {
    right: 14px;
    bottom: 22px;
    width: 220px;
  }

  .partner-list {
    grid-template-columns: 1fr;
  }

  .registry-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .registry-source {
    align-items: flex-start;
    flex-direction: column;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .financial-summary {
    grid-template-columns: 1fr;
  }
}

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

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

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