:root {
  color-scheme: light;
  --ink: #000000;
  --muted: #51565e;
  --paper: #f2f2f2;
  --white: #ffffff;
  --navy: #134e84;
  --blue: #0777a8;
  --sky: #91c7de;
  --gold: #f0d886;
  --line: rgba(0, 0, 0, 0.14);
  --line-light: rgba(255, 255, 255, 0.22);
  --space-xs: clamp(0.75rem, 1vw, 1rem);
  --space-sm: clamp(1rem, 2vw, 1.75rem);
  --space-md: clamp(2rem, 5vw, 5rem);
  --space-lg: clamp(4rem, 9vw, 9rem);
  --max: 1480px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  text-rendering: geometricPrecision;
}

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

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

p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 16px clamp(16px, 3vw, 40px);
  color: var(--navy);
  transition: color 220ms var(--ease);
}

.site-header.on-dark {
  color: var(--sky);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.nav-links {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  padding: 10px 0;
}

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

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0.5)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 34%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: hero-dissolve 32s infinite;
}

.hero-media img:nth-child(1) {
  opacity: 1;
  animation-delay: 0s;
}

.hero-media img:nth-child(2) {
  animation-delay: 8s;
}

.hero-media img:nth-child(3) {
  animation-delay: 16s;
}

.hero-media img:nth-child(4) {
  animation-delay: 24s;
}

.hero-copy {
  align-self: end;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24vh 0 19vh;
  animation: text-hover-drift 7s var(--ease) infinite alternate;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
  transition: transform 700ms var(--ease), text-shadow 700ms var(--ease);
  will-change: transform;
}

.hero:hover .hero-copy {
  transform: translateY(-8px);
  text-shadow: 0 24px 68px rgba(0, 0, 0, 0.52);
}

.hero-copy h1 {
  max-width: 11ch;
  margin-top: 10px;
  font-size: clamp(4rem, 11vw, 12.5rem);
  font-weight: 700;
  line-height: 0.86;
}

.hero-copy > .kicker {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.45);
}

.hero-copy p:last-child {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.55vw, 1.38rem);
  line-height: 1.45;
}

.hero-copy .counterpunch {
  max-width: 680px;
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 3.1rem);
  font-weight: 700;
  line-height: 1;
}

.hero-panel {
  position: absolute;
  right: clamp(16px, 3vw, 44px);
  bottom: clamp(16px, 3vw, 44px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(820px, calc(100% - 32px));
  border: 1px solid var(--line-light);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-panel a {
  min-height: 72px;
  padding: 16px;
  border-right: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.hero-panel a:hover,
.hero-panel a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-panel a:last-child {
  border-right: 0;
}

.kicker,
.index {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.section-dark .kicker {
  color: var(--gold);
}

.priority-map-callout {
  padding: clamp(26px, 4vw, 52px) clamp(16px, 4vw, 64px);
  scroll-margin-top: 88px;
  background:
    linear-gradient(rgba(7, 21, 34, 0.9), rgba(7, 21, 34, 0.92)),
    linear-gradient(rgba(145, 199, 222, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 199, 222, 0.08) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
}

.priority-map-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr) auto;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  max-width: var(--max);
  min-height: 220px;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 36px);
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(145, 199, 222, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 18%, rgba(35, 184, 182, 0.18), transparent 34%),
    rgba(5, 18, 31, 0.72);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.2);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.priority-map-card:hover,
.priority-map-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(240, 216, 134, 0.78);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
}

.priority-map-copy h2 {
  max-width: 11ch;
  margin-top: 10px;
  font-size: clamp(1.65rem, 3.2vw, 3.7rem);
  font-weight: 800;
  line-height: 0.95;
}

.priority-map-copy p:last-child {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.92rem, 1.3vw, 1.1rem);
  line-height: 1.55;
}

.priority-bars {
  display: grid;
  gap: 12px;
}

.priority-bars span {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr 28px;
  align-items: center;
  gap: 12px;
  min-height: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
}

.priority-bars span::before,
.priority-bars span::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  height: 100%;
  border-radius: 4px;
}

.priority-bars span::before {
  background: rgba(145, 199, 222, 0.14);
}

.priority-bars span::after {
  width: var(--bar);
  background: var(--region);
  animation: priority-bar-rise 4.8s var(--ease) infinite alternate;
}

.priority-bars b {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.priority-bars i {
  grid-column: 3;
  grid-row: 1;
  color: var(--gold);
  font-style: normal;
}

.priority-map-link {
  justify-self: end;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid rgba(145, 199, 222, 0.32);
  border-radius: 6px;
  background: rgba(35, 184, 182, 0.16);
}

@keyframes priority-bar-rise {
  from {
    transform: scaleX(0.92);
    transform-origin: left;
  }

  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.video-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  align-items: end;
  gap: var(--space-md);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(46px, 7vw, 90px) clamp(16px, 4vw, 64px);
  background: var(--white);
}

.video-copy h2 {
  max-width: 11ch;
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(1.65rem, 3.2vw, 4rem);
  font-weight: 800;
  line-height: 0.95;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: 0 24px 64px rgba(19, 78, 132, 0.16);
}

.video-frame::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.register-page {
  background: var(--paper);
}

.register-hero {
  position: relative;
  display: grid;
  min-height: min(72vh, 720px);
  place-items: end start;
  padding: clamp(96px, 12vw, 150px) clamp(16px, 5vw, 80px) clamp(32px, 5vw, 70px);
  overflow: hidden;
  isolation: isolate;
}

.register-page .register-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.22) 54%, rgba(0, 0, 0, 0.52)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
}

.register-page .register-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.register-title {
  width: min(720px, 100%);
  margin-right: auto;
}

.register-page .register-title h1 {
  max-width: 10ch;
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
}

.register-lede {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  font-weight: 700;
  line-height: 1.55;
}

.register-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 32px;
  padding: 0 22px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  background: var(--blue);
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.register-action:hover,
.register-action:focus-visible {
  transform: translateY(-2px);
  background: var(--navy);
}

.register-note {
  display: grid;
  grid-template-columns: minmax(160px, 0.38fr) minmax(0, 1fr);
  gap: var(--space-md);
  max-width: var(--max);
  margin: clamp(-52px, -4vw, -24px) auto 0;
  padding: clamp(36px, 6vw, 72px) clamp(16px, 4vw, 64px);
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--white);
  box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.register-note h2 {
  max-width: 12ch;
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4.8rem);
  font-weight: 800;
  line-height: 0.95;
}

.register-note-copy {
  max-width: 700px;
}

.register-note-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.register-note-copy p + p {
  margin-top: 18px;
}

.statement {
  display: grid;
  grid-template-columns: minmax(70px, 0.22fr) minmax(0, 1fr);
  gap: var(--space-md);
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-lg) clamp(16px, 4vw, 64px);
}

.legacy-statement {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--space-md);
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-lg) clamp(16px, 4vw, 64px);
}

.legacy-logo img {
  width: min(48vw, 520px);
  filter: drop-shadow(0 24px 42px rgba(19, 78, 132, 0.18));
}

.legacy-statement p {
  max-width: 620px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.55vw, 1.55rem);
  font-weight: 700;
  line-height: 1.24;
}

.statement h2,
.legacy-statement h2,
.section-copy h2,
.cinema h2,
.pledge h2 {
  max-width: 11ch;
  margin-top: 14px;
  font-size: clamp(2.6rem, 6vw, 7.2rem);
  font-weight: 700;
  line-height: 0.92;
}

.legacy-statement h2 {
  max-width: 13ch;
  font-size: clamp(2.25rem, 5vw, 5.9rem);
  line-height: 0.96;
}

.section-copy h2.measured-heading {
  max-width: 17ch;
  font-size: clamp(2rem, 4.5vw, 5.4rem);
  line-height: 0.98;
}

.section-copy h2.relationship-heading {
  max-width: 15ch;
  font-size: clamp(2rem, 4.1vw, 4.85rem);
  line-height: 0.98;
}

.section-copy h2.relationship-heading small {
  display: block;
  font-size: 0.38em;
  line-height: 1.04;
  color: #6a7078;
}

.section-copy h2.relationship-heading span {
  display: block;
  margin-top: 0.12em;
  color: var(--navy);
  font-size: 1.45em;
}

.object-section,
.relationship {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: var(--space-md);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 64px) var(--space-lg);
}

.object-section {
  grid-template-columns: minmax(760px, 1.4fr) minmax(300px, 0.6fr);
}

.object-section.section-grid {
  max-width: none;
  padding: var(--space-lg) clamp(16px, 4vw, 64px);
  background:
    linear-gradient(rgba(215, 238, 247, 0.48), rgba(242, 242, 242, 0.72)),
    url("./assets/globe-grid-background.jpg") center / cover;
}

.object-frame {
  position: relative;
  display: grid;
  min-height: clamp(360px, 58vw, 760px);
  place-items: center;
  border: 0;
  background: transparent;
}

.object-frame:has(.sector-orbit.popup-open) {
  z-index: 12;
}

.object-frame.popup-open {
  z-index: 12;
}

.sector-orbit {
  position: relative;
  width: min(49vw, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: visible;
}

.sector-orbit.popup-open {
  z-index: 20;
}

.sector-orbit .sector-collage {
  width: min(49vw, 480px);
  border-radius: 50%;
  filter: drop-shadow(0 34px 58px rgba(19, 78, 132, 0.24));
  animation: logo-float 8s var(--ease) infinite alternate;
}

.sector-edges {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.sector-edges line {
  stroke: var(--edge-color, var(--navy));
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.76;
}

.sector-edges circle {
  fill: var(--white);
  stroke: var(--edge-color, var(--navy));
  stroke-width: 2;
  filter: drop-shadow(0 2px 5px rgba(19, 78, 132, 0.24));
}

.sector-node {
  --settle-x: 0px;
  --settle-y: 0px;
  position: absolute;
  left: var(--label-x);
  top: var(--label-y);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  width: max-content;
  max-width: 210px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--sector);
  color: var(--white);
  font-size: clamp(0.62rem, 0.72vw, 0.78rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(19, 78, 132, 0.18);
  transform: translate3d(var(--settle-x), var(--settle-y), 0);
  transition: transform 680ms var(--ease), box-shadow 680ms var(--ease), outline-color 180ms var(--ease);
  white-space: normal;
  will-change: transform;
  cursor: pointer;
}

.sector-right-edge {
  transform: translate3d(calc(var(--settle-x) - 100%), var(--settle-y), 0);
}

.sector-node:hover,
.sector-node:focus-visible,
.sector-node.active {
  outline: 3px solid rgba(240, 216, 134, 0.9);
  outline-offset: 3px;
}

.sector-popup {
  position: absolute;
  z-index: 80;
  width: min(260px, 78vw);
  border: 2px solid var(--popup-color, var(--navy));
  border-radius: var(--radius);
  padding: 14px 15px 13px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, calc(-100% - 14px));
  backdrop-filter: blur(12px);
}

.sector-popup[hidden] {
  display: none;
}

.sector-popup-title {
  display: block;
  color: var(--navy);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 900;
  line-height: 1.05;
}

.sector-popup p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.sector-popup em {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1.25;
}

.page-is-moving .sector-node {
  animation: sector-wave 1300ms var(--ease) infinite alternate;
  box-shadow: 0 18px 36px rgba(19, 78, 132, 0.22);
}

.page-is-moving .sector-node.sector-right-edge {
  animation-name: sector-wave-right;
}

.page-is-moving .sector-node:nth-of-type(3n) {
  animation-delay: -220ms;
}

.page-is-moving .sector-node:nth-of-type(3n + 1) {
  animation-delay: -520ms;
}

.page-is-moving .sector-node:nth-of-type(3n + 2) {
  animation-delay: -820ms;
}

.sector-dark {
  color: var(--ink);
}

.section-copy {
  align-self: center;
}

.section-copy p:last-child,
.cinema p:last-child {
  max-width: 520px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  line-height: 1.55;
}

.directive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.directive {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  border-right: 1px solid var(--line);
  background: var(--white);
  scroll-margin-top: 96px;
}

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

.directive-photo {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
}

.directive-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0));
}

.directive-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.directive span {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
}

.directive h3 {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  line-height: 0.98;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.58);
}

.directive p {
  margin: 0;
  padding: clamp(18px, 2vw, 28px);
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.wide-image {
  position: relative;
  padding: clamp(16px, 4vw, 64px);
  background: var(--paper);
}

.wide-image img {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  border-radius: var(--radius);
}

.connect-section {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.connect-anchor {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 1px;
  scroll-margin-top: 90px;
}

.connect-section img {
  min-height: clamp(560px, 72vw, 820px);
  object-position: 72% center;
}

.connect-form {
  position: absolute;
  left: clamp(28px, 6vw, 96px);
  top: 50%;
  display: grid;
  gap: 18px;
  width: min(520px, calc(54% - 40px));
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
}

.connect-form h2 {
  max-width: 20ch;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.25vw, 2.55rem);
  line-height: 1.06;
}

.read-pledge-link {
  width: fit-content;
  margin-top: -10px;
  color: var(--navy);
  font-size: clamp(0.76rem, 0.9vw, 0.9rem);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.22em;
}

.invitation-only {
  width: fit-content;
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: 10px 15px;
  background: var(--navy);
  color: var(--white);
  font-size: clamp(1rem, 1.65vw, 1.55rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(19, 78, 132, 0.24);
}

.connect-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(180px, 260px) auto;
  align-items: end;
  gap: 14px;
}

.pledge-check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding-bottom: 2px;
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
}

.pledge-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-track {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 52px;
  height: 28px;
  border: 2px solid rgba(19, 78, 132, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transition: background 220ms var(--ease), border-color 220ms var(--ease);
}

.toggle-track::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
  transform: translateY(-50%);
  transition: transform 220ms var(--ease), background 220ms var(--ease);
}

.pledge-check input:checked + .toggle-track {
  border-color: var(--navy);
  background: var(--gold);
}

.pledge-check input:checked + .toggle-track::after {
  background: var(--navy);
  transform: translate(23px, -50%);
}

.toggle-text {
  font-weight: 900;
}

.connect-form input:not([type="checkbox"]),
.connect-form select,
.connect-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(19, 78, 132, 0.34);
  border-radius: 6px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 700;
  line-height: 1.25;
}

.connect-form textarea {
  min-height: 92px;
  padding: 12px 14px 0 18px;
  resize: vertical;
}

.connect-form input:not([type="checkbox"])::placeholder,
.connect-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.55);
  font-family: Arial, Helvetica, sans-serif;
  font-size: inherit;
  font-weight: 700;
}

.connect-form select {
  cursor: pointer;
}

.connect-form button {
  justify-self: start;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  background: var(--navy);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.connect-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.2em;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.network-note {
  position: absolute;
  left: calc(clamp(28px, 6vw, 96px) + min(520px, calc(54% - 40px)) + clamp(20px, 3vw, 42px));
  top: auto;
  bottom: clamp(44px, 7vw, 96px);
  z-index: 2;
  max-width: min(560px, 36vw);
  margin: 0;
  color: var(--white);
  font-size: clamp(1.12rem, 1.55vw, 1.65rem);
  font-weight: 800;
  line-height: 1.26;
  text-align: left;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.82);
  transform: none;
}

.network-note strong {
  color: var(--white);
  font-weight: 900;
  background: none;
  text-decoration-line: underline;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 0.16em;
  text-underline-offset: 0.16em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.relationship {
  align-items: center;
  padding-top: var(--space-lg);
}

.relationship-graph {
  position: relative;
  min-height: clamp(560px, 52vw, 760px);
  overflow: hidden;
  border: 1px solid rgba(19, 78, 132, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.82)),
    url("./assets/globe-grid-background.jpg") center / cover,
    linear-gradient(rgba(19, 78, 132, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 78, 132, 0.05) 1px, transparent 1px);
  background-size: auto, cover, 28px 28px, 28px 28px;
}

.graph-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--white);
  font-size: clamp(1rem, 1.45vw, 1.45rem);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transform: none;
}

#idrn-relationship-graph {
  width: 100%;
  height: clamp(560px, 52vw, 760px);
  display: block;
}

.graph-link {
  stroke: rgba(19, 78, 132, 0.28);
  stroke-width: 1.5;
}

.graph-link.peer {
  stroke: var(--blue);
  stroke-width: 2.5;
}

.graph-link.event {
  stroke: var(--gold);
  stroke-dasharray: 6 6;
  stroke-width: 2.4;
}

.graph-link.selected-link {
  stroke-width: 4.8;
  opacity: 0.95;
}

.graph-link.static.selected-link {
  stroke: var(--navy);
}

.graph-node {
  cursor: pointer;
  outline: none;
}

.graph-node text {
  fill: var(--navy);
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  pointer-events: none;
}

.node-face {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(19, 78, 132, 0.24);
  border-radius: 50%;
  background: var(--white);
  clip-path: circle(50%);
  box-shadow: 0 10px 22px rgba(19, 78, 132, 0.18);
  font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.node-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.structural-face {
  border-color: rgba(19, 78, 132, 0.38);
  box-shadow: 0 12px 28px rgba(19, 78, 132, 0.24);
}

.event-face {
  background: var(--navy);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
}

.graph-node.selected .node-face {
  border-color: var(--gold);
  box-shadow:
    0 0 0 6px rgba(240, 216, 134, 0.62),
    0 0 0 11px rgba(240, 216, 134, 0.22),
    0 16px 32px rgba(19, 78, 132, 0.28);
}

.relationship-details {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: grid;
  gap: 8px;
  width: min(80%, 760px);
  padding: 16px;
  border: 1px solid rgba(19, 78, 132, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 50px rgba(19, 78, 132, 0.14);
  backdrop-filter: blur(14px);
  text-align: center;
  transform: translateX(-50%);
}

.relationship-details h3 {
  color: var(--navy);
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  line-height: 0.98;
}

.relationship-details p:last-child {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

.cinema {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(24px, 4vw, 64px);
}

.cinema::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.1) 58%);
}

.cinema img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinema div {
  max-width: var(--max);
  animation: text-hover-drift 7s var(--ease) infinite alternate;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
  transition: transform 700ms var(--ease), text-shadow 700ms var(--ease);
  will-change: transform;
}

.cinema:hover div {
  transform: translateY(-8px);
  text-shadow: 0 24px 68px rgba(0, 0, 0, 0.52);
}

.cinema p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.pledge {
  display: grid;
  grid-template-columns: minmax(70px, 0.18fr) minmax(0, 1fr);
  gap: var(--space-md);
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-lg) clamp(16px, 4vw, 64px);
  background: var(--gold);
}

.pledge .kicker,
.pledge h2 {
  grid-column: 2;
}

.pledge blockquote,
.pledge .text-link {
  grid-column: 2;
}

.pledge blockquote {
  max-width: 1060px;
  margin-top: 34px;
  color: var(--ink);
  font-size: clamp(1.45rem, 3.35vw, 4.25rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.08;
}

.text-link {
  width: fit-content;
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-weight: 700;
}

.walk-alone-banner {
  position: relative;
  display: grid;
  min-height: clamp(420px, 58vw, 720px);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(24px, 5vw, 72px);
}

.walk-alone-banner::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.38)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 54%);
}

.walk-alone-banner img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.walk-alone-banner div {
  width: min(860px, 100%);
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.58);
}

.walk-alone-banner h2 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 8.6rem);
  font-weight: 700;
  line-height: 0.9;
}

.walk-alone-banner p {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  font-weight: 700;
  line-height: 1.32;
}

.fine-print {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.fine-print::before {
  content: "";
  position: absolute;
  inset: -4%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)),
    url("./assets/LogosBackground.png") center / cover no-repeat;
  animation: background-drift 18s var(--ease) infinite alternate;
  will-change: transform;
}

.fine-print-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 86px) clamp(16px, 4vw, 64px);
}

.fine-print-heading {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  width: fit-content;
}

.fine-print-heading h2 {
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 3.3rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.fine-print-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: var(--space-md);
  margin-top: 24px;
}

.fine-print-copy {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2vw, 26px);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  line-height: 1.55;
}

.fine-print-copy strong {
  color: var(--ink);
}

.fine-print-details {
  display: grid;
  gap: 0;
  align-self: start;
  justify-self: center;
  width: min(100%, 340px);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.fine-print-logo {
  width: clamp(82px, 10vw, 126px);
  margin: 14px auto 0;
  border-radius: 50%;
}

.fine-print-details address {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 12px 14px 16px;
  color: var(--muted);
  font-size: clamp(0.84rem, 1vw, 1rem);
  font-style: normal;
  line-height: 1.35;
  text-align: center;
}

.fine-print-details address + address {
  border-top: 1px solid rgba(19, 78, 132, 0.16);
}

.fine-print-details strong {
  color: var(--navy);
}

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

.imagery-note-inner {
  display: grid;
  grid-template-columns: minmax(190px, 300px) minmax(0, 1fr) minmax(190px, 300px);
  align-items: center;
  gap: var(--space-md);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 82px) clamp(16px, 4vw, 64px);
}

.imagery-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.imagery-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.imagery-figure figcaption {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  max-width: calc(100% - 24px);
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--white);
  font-size: clamp(0.56rem, 0.68vw, 0.66rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

.imagery-copy {
  min-width: 0;
}

.imagery-note h2 {
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 2.05rem);
  line-height: 1.05;
}

.imagery-note p {
  max-width: 620px;
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(0.84rem, 1vw, 0.98rem);
  font-weight: 700;
  line-height: 1.45;
}

.smile-mark {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 1.45rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(16px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms var(--ease),
    transform 720ms var(--ease);
}

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

@keyframes text-hover-drift {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -5px;
  }
}

@keyframes logo-float {
  from {
    translate: 0 8px;
  }

  to {
    translate: 0 -10px;
  }
}

@keyframes background-drift {
  from {
    transform: scale(1.03) translate3d(-1%, -1%, 0);
  }

  to {
    transform: scale(1.08) translate3d(1.5%, 1%, 0);
  }
}

@keyframes hero-dissolve {
  0%,
  20% {
    opacity: 1;
  }

  26%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes sector-wave {
  0% {
    transform: translate3d(var(--settle-x), var(--settle-y), 0);
  }

  48% {
    transform: translate3d(calc(var(--settle-x) + 8px), calc(var(--settle-y) - 5px), 0);
  }

  100% {
    transform: translate3d(calc(var(--settle-x) - 7px), calc(var(--settle-y) + 6px), 0);
  }
}

@keyframes sector-wave-right {
  0% {
    transform: translate3d(calc(var(--settle-x) - 100%), var(--settle-y), 0);
  }

  48% {
    transform: translate3d(calc(var(--settle-x) - 100% + 8px), calc(var(--settle-y) - 5px), 0);
  }

  100% {
    transform: translate3d(calc(var(--settle-x) - 100% - 7px), calc(var(--settle-y) + 6px), 0);
  }
}

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

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

  .hero-copy,
  .cinema div,
  .sector-orbit .sector-collage,
  .hero-media img,
  .fine-print::before,
  .page-is-moving .sector-node {
    animation: none;
  }

  .hero-media img:first-child {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .object-section,
  .relationship,
  .priority-map-card,
  .register-note,
  .video-section,
  .statement,
  .legacy-statement,
  .pledge {
    grid-template-columns: 1fr;
  }

  .pledge h2,
  .pledge .kicker,
  .pledge blockquote,
  .pledge .text-link {
    grid-column: auto;
  }

  .priority-map-card {
    min-height: 0;
  }

  .priority-map-copy h2 {
    max-width: none;
  }

  .priority-map-link {
    justify-self: start;
  }

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

  .directive:nth-child(2) {
    border-right: 0;
  }

  .directive:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .sector-orbit {
    width: min(86vw, 560px);
  }
}

@media (max-width: 660px) {
  .site-header {
    padding-top: 12px;
  }

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

  .nav-links {
    gap: 10px;
  }

  .hero-copy {
    width: calc(100% - 32px);
    padding-bottom: 210px;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 19vw, 6rem);
  }

  .hero-panel {
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr;
  }

  .hero-panel a {
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .hero-panel a:last-child {
    border-bottom: 0;
  }

  .sector-orbit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    aspect-ratio: auto;
  }

  .sector-orbit .sector-collage {
    width: min(72vw, 280px);
    order: 2;
    margin: 8px 0;
  }

  .sector-edges {
    display: none;
  }

  .sector-node {
    position: static;
    flex: 0 1 auto;
    max-width: none;
    font-size: 0.68rem;
    transform: none;
    animation: none;
  }

  .sector-right-edge {
    transform: none;
  }

  .sector-top-mobile {
    order: 1;
  }

  .sector-bottom-mobile {
    order: 3;
  }

  .sector-node::before,
  .sector-node::after {
    content: none;
  }

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

  .directive {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .directive h3 {
    margin-top: 0;
  }

  .fine-print-grid {
    grid-template-columns: 1fr;
  }

  .imagery-note-inner {
    grid-template-columns: 1fr;
  }

  .connect-form {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    margin: -92px 16px 0;
    transform: none;
  }

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

  .pledge-check {
    justify-content: flex-start;
  }

  .network-note {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -186px 20px 180px;
    font-size: clamp(1rem, 4.4vw, 1.34rem);
    transform: none;
  }

  .relationship-details {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -130px 14px 14px;
    transform: none;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (orientation: portrait) {
  .walk-alone-banner img {
    object-position: left center;
  }
}
