:root {
  --black: #050505;
  --ink: #0b0b0c;
  --paper: #f4f3ef;
  --white: #ffffff;
  --muted: #adadb2;
  --line: rgba(255, 255, 255, 0.16);
  --prism: linear-gradient(
    90deg,
    #cde7f7 0%,
    #c9e3f3 22%,
    #def8ff 46%,
    #def8ff 68%,
    #c3dded 100%
  );
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--black);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  padding: 1rem clamp(1.25rem, 4vw, 4.75rem);
  border-bottom: 1px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease,
    min-height 240ms ease;
}

.site-header.scrolled {
  min-height: 4.6rem;
  background: rgba(5, 5, 5, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
  text-transform: uppercase;
}

.brand-lockup-crop {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 9.1rem;
  height: 1.95rem;
  overflow: hidden;
}

.brand-lockup-crop img {
  position: absolute;
  top: -7.4rem;
  left: -0.48rem;
  width: 10rem;
  max-width: none;
  height: auto;
}

.brand-subline {
  width: 9.1rem;
  color: #f3f3f5;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 0.8rem rgba(214, 240, 255, 0.25);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.5vw, 2.8rem);
}

.site-nav a {
  position: relative;
  color: #dfdfe2;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-support)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--prism);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-support {
  padding: 0.75rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-support:hover,
.nav-support:focus-visible {
  background: var(--white);
  color: var(--black);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 1.55rem;
  height: 1px;
  margin: 0.42rem auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.82fr);
  align-items: center;
  min-height: 100svh;
  padding: 9rem clamp(1.25rem, 6vw, 7.5rem) 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 48%, rgba(5, 5, 5, 0.34) 100%),
    radial-gradient(circle at 78% 42%, #22242a 0%, #080808 46%, #030303 78%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dcf6ff, #cbe5f5, transparent);
  opacity: 0.58;
  content: "";
}

.aurora {
  position: absolute;
  z-index: -2;
  width: 34rem;
  height: 15rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.14;
  pointer-events: none;
  transform: rotate(-18deg);
}

.aurora-one {
  top: 21%;
  right: -10%;
  background: #cbe5f5;
}

.aurora-two {
  right: 12%;
  bottom: 4%;
  background: #8fa9b9;
}

@keyframes spectrum-power {
  0%,
  100% {
    opacity: 0.56;
  }

  50% {
    opacity: 0.74;
  }
}

@keyframes beacon-breathe {
  0%,
  100% {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0.94);
  }

  50% {
    opacity: 0.84;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.spectrum-lighthouse {
  --beam-angle: 180deg;
  --beam-length: 42rem;
  --beam-origin-x: 78%;
  --beam-origin-y: 48%;

  position: absolute;
  top: var(--beam-origin-y);
  left: var(--beam-origin-x);
  z-index: 2;
  width: var(--beam-length);
  height: clamp(8rem, 15vw, 14rem);
  background: linear-gradient(
    180deg,
    rgba(206, 232, 248, 0.01) 0%,
    rgba(206, 232, 248, 0.29) 18%,
    rgba(192, 218, 234, 0.34) 39%,
    rgba(218, 244, 255, 0.3) 59%,
    rgba(220, 246, 255, 0.24) 79%,
    rgba(195, 221, 237, 0.01) 100%
  );
  clip-path: polygon(0 47%, 0 53%, 100% 100%, 100% 0);
  filter: blur(1.5px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000000 5%, #000000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000000 5%, #000000 100%);
  mix-blend-mode: screen;
  opacity: 0.68;
  pointer-events: none;
  transform: translateY(-50%) rotate(var(--beam-angle));
  transform-origin: 0 50%;
  animation: spectrum-power 7s ease-in-out infinite;
  will-change: transform, opacity;
}

.spectrum-lighthouse::before {
  position: absolute;
  inset: 27% 0;
  background: linear-gradient(
    180deg,
    rgba(211, 237, 253, 0.06),
    rgba(190, 216, 232, 0.42) 32%,
    rgba(221, 247, 255, 0.48) 55%,
    rgba(220, 246, 255, 0.08)
  );
  box-shadow: 0 0 2.4rem rgba(214, 240, 255, 0.17);
  content: "";
  filter: blur(1px);
  opacity: 0.72;
}

.spectrum-lighthouse::after {
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.56));
  box-shadow: 0 0 1.5rem rgba(220, 246, 255, 0.6);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 47rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.6rem;
  color: #d7d7db;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 48rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8.8vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.title-line {
  --light-x: 50%;
  --light-y: 50%;
  --prism-strength: 0;

  display: block;
  width: fit-content;
  background-image:
    radial-gradient(
      ellipse 1.65em 0.82em at var(--light-x) var(--light-y),
      rgba(214, 240, 255, var(--prism-strength)) 0%,
      rgba(201, 227, 243, var(--prism-strength)) 29%,
      rgba(219, 245, 255, var(--prism-strength)) 51%,
      rgba(221, 247, 255, var(--prism-strength)) 66%,
      rgba(255, 255, 255, 0) 79%
    ),
    linear-gradient(#ffffff, #ffffff);
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-intro {
  max-width: 42rem;
  margin: 2.2rem 0 0;
  color: #ceced3;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease,
    color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button-light:hover,
.button-light:focus-visible {
  background: #e8e8ea;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

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

.hero-art {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(40vw, 38rem);
  min-width: 22rem;
}

.brand-art-crop {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  filter: drop-shadow(0 0 2.7rem rgba(213, 239, 255, 0.15));
}

.brand-art-crop::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 75%, var(--black) 99%);
  content: "";
  pointer-events: none;
}

.brand-art-crop img {
  position: absolute;
  inset: 0 auto auto;
  width: 100%;
  height: auto;
}

.eye-beacon {
  position: absolute;
  top: 47.9%;
  left: 50%;
  z-index: 2;
  width: 6.2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(215, 241, 255, 0.55) 13%,
    rgba(194, 220, 236, 0.25) 31%,
    transparent 68%
  );
  filter: blur(1px);
  mix-blend-mode: screen;
  opacity: 0.76;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: beacon-breathe 7s ease-in-out infinite;
}

.art-caption {
  margin: -0.2rem 2rem 0 0;
  color: #aaaab0;
  font-size: 0.67rem;
  letter-spacing: 0.28em;
  text-align: right;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: clamp(1.25rem, 6vw, 7.5rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #9999a0;
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 4rem;
  height: 1px;
  background: var(--prism);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--paper);
  color: var(--ink);
}

.pillars article {
  min-height: 11.5rem;
  padding: 2rem clamp(1rem, 2.3vw, 2.5rem);
  border-right: 1px solid rgba(8, 8, 8, 0.14);
}

.pillars article:last-child {
  border-right: 0;
}

.pillars span,
.work-number {
  color: #74747a;
  font-family: var(--display);
  font-size: 0.88rem;
}

.pillars h2 {
  margin: 1.25rem 0 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.pillars p {
  margin: 0;
  color: #616168;
  font-size: 0.92rem;
}

.section {
  padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 7vw, 8.5rem);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.spectrum-rule {
  display: block;
  width: 5rem;
  height: 1px;
  background: var(--prism);
}

.mission {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}

.mission::after {
  position: absolute;
  top: 10%;
  right: -13rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(5, 5, 5, 0.09);
  border-radius: 50%;
  content: "";
}

.mission .section-kicker {
  color: #55555b;
}

.mission-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.65fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}

.mission-statement h2,
.work-heading h2,
.involved h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.mission-statement > p {
  max-width: 47rem;
  margin: 2.1rem 0 0;
  color: #4c4c52;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.75;
}

blockquote {
  margin: 0;
  padding: 2.2rem 0 0;
  border-top: 1px solid rgba(5, 5, 5, 0.2);
}

blockquote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.2;
}

blockquote footer {
  margin-top: 1.6rem;
  color: #626269;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.leadership {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1fr);
  gap: clamp(3.5rem, 9vw, 10rem);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    #070809;
  background-size: 5rem 5rem, 5rem 5rem, auto;
  overflow: hidden;
  isolation: isolate;
}

.leadership::before {
  position: absolute;
  top: -18rem;
  left: -12rem;
  z-index: -1;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 225, 241, 0.12), transparent 66%);
  content: "";
  filter: blur(8px);
}

.leadership::after {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--prism);
  content: "";
  opacity: 0.7;
}

.leadership-media,
.leadership-copy {
  position: relative;
  z-index: 1;
}

.chair-portrait {
  position: relative;
  width: min(100%, 39rem);
  margin: 0;
  aspect-ratio: 1091 / 1442;
  background: #001323;
  box-shadow: 0 2.2rem 6rem rgba(0, 0, 0, 0.44);
}

.chair-portrait::before {
  position: absolute;
  inset: -1px;
  z-index: 2;
  border: 1px solid rgba(218, 244, 255, 0.3);
  border-right-color: rgba(194, 220, 236, 0.38);
  content: "";
  pointer-events: none;
}

.chair-portrait::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 24%;
  background: linear-gradient(to top, rgba(2, 5, 8, 0.84), transparent);
  content: "";
  pointer-events: none;
}

.chair-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chair-portrait figcaption {
  position: absolute;
  right: 1.4rem;
  bottom: 1.25rem;
  left: 1.4rem;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.leadership-copy {
  max-width: 46rem;
}

.leadership-copy .section-kicker {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
  color: #c5c5ca;
}

.leadership-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.6rem, 8.5vw, 9.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.78;
}

.leadership-copy h2 span {
  display: block;
  margin-left: -0.05em;
}

.leadership-role {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.8rem;
  align-items: center;
  margin: clamp(2.4rem, 5vw, 4rem) 0 0;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.leadership-role strong {
  color: #ffffff;
  font-weight: 700;
}

.leadership-role span {
  color: #cfe9f9;
}

.leadership-bio {
  max-width: 42rem;
  margin: 2rem 0 2.2rem;
  color: #b8b8bf;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.85;
}

.savant-quote {
  position: relative;
  max-width: 43rem;
  margin: 0 0 2.4rem;
  padding: 1.7rem 0 0 1.6rem;
  border-top: 1px solid rgba(218, 244, 255, 0.32);
  border-left: 1px solid rgba(194, 220, 236, 0.44);
}

.savant-quote::before {
  position: absolute;
  top: 1.15rem;
  left: 0.48rem;
  color: #daf4ff;
  content: "“";
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  opacity: 0.72;
}

.savant-quote p {
  margin: 0;
  color: #e8e8ec;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.38;
}

.savant-quote p em {
  color: #ffffff;
  font-style: italic;
}

.savant-quote footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.45rem 1.25rem;
  margin-top: 1.3rem;
  color: #9898a0;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.savant-quote footer span:first-child {
  color: #daf4ff;
}

.leadership-link {
  border-bottom-color: rgba(217, 243, 255, 0.5);
  color: #e1fbff;
}

.work {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(4rem, 9vw, 10rem);
  background:
    radial-gradient(circle at 10% 10%, rgba(213, 239, 255, 0.08), transparent 27rem),
    var(--black);
}

.work-heading {
  position: sticky;
  top: 7.5rem;
  align-self: start;
}

.work-heading h2 {
  font-size: clamp(3.3rem, 5.5vw, 6.2rem);
}

.work-heading > p {
  max-width: 32rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.work-list article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.8rem;
  padding: 2.8rem 0 3.2rem;
  border-top: 1px solid var(--line);
}

.work-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.work-number {
  color: #8d8d95;
}

.work-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.work-list p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.platforms {
  position: relative;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 12%, rgba(212, 238, 254, 0.08), transparent 29rem),
    radial-gradient(circle at 10% 84%, rgba(194, 220, 236, 0.06), transparent 28rem),
    #080809;
  overflow: hidden;
}

.platforms::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--prism);
  content: "";
  opacity: 0.55;
}

.platforms-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.52fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
  margin-bottom: clamp(3.5rem, 7vw, 6.5rem);
}

.platforms-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -0.25rem;
}

.platforms-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.2vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.platforms-heading > p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 25rem;
  padding: clamp(1.6rem, 3vw, 3rem);
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  transition: background-color 220ms ease;
}

.platform-card-gabriel {
  isolation: isolate;
  overflow: hidden;
}

.platform-portrait {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.82) contrast(1.07);
  transform: scale(1.01);
  transition: filter 350ms ease, transform 700ms ease;
}

.platform-card-gabriel::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 3, 4, 0.42) 0%, rgba(3, 3, 4, 0.18) 28%, rgba(3, 3, 4, 0.93) 78%),
    linear-gradient(90deg, rgba(3, 3, 4, 0.55), transparent 70%);
  content: "";
  pointer-events: none;
}

@keyframes crystal-breathe {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(0.9) rotate(-7deg);
  }

  45% {
    opacity: 0.46;
    transform: scale(1.08) rotate(3deg);
  }

  68% {
    opacity: 0.22;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes crystal-sweep {
  0%,
  18% {
    opacity: 0;
    transform: translate3d(-145%, 0, 0) rotate(-18deg);
  }

  32% {
    opacity: 0.18;
  }

  58% {
    opacity: 0.32;
  }

  74%,
  100% {
    opacity: 0;
    transform: translate3d(185%, 0, 0) rotate(-18deg);
  }
}

.crystal-life {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000000 0%,
    #000000 27%,
    transparent 43%,
    transparent 61%,
    #000000 76%,
    #000000 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000000 0%,
    #000000 27%,
    transparent 43%,
    transparent 61%,
    #000000 76%,
    #000000 100%
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

.crystal-pulse {
  position: absolute;
  width: clamp(5.5rem, 10vw, 8.5rem);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 48% 50%, rgba(255, 255, 255, 0.78) 0 2%, transparent 7%),
    radial-gradient(ellipse at 42% 40%, rgba(206, 232, 248, 0.42), transparent 48%),
    radial-gradient(ellipse at 61% 58%, rgba(183, 209, 225, 0.38), transparent 52%),
    radial-gradient(ellipse at 36% 72%, rgba(211, 237, 253, 0.28), transparent 50%);
  clip-path: polygon(50% 0, 90% 27%, 100% 69%, 58% 100%, 13% 81%, 0 35%);
  filter: blur(4px) drop-shadow(0 0 1.1rem rgba(211, 237, 253, 0.32));
  opacity: 0.12;
  animation: crystal-breathe 8.5s ease-in-out infinite;
  will-change: transform, opacity;
}

.crystal-pulse-one {
  top: 34%;
  left: -2%;
}

.crystal-pulse-two {
  top: 22%;
  right: 8%;
  animation-delay: -3.1s;
  animation-duration: 10.5s;
}

.crystal-pulse-three {
  top: 43%;
  right: -5%;
  animation-delay: -6.2s;
  animation-duration: 9.3s;
}

.crystal-refraction {
  position: absolute;
  top: -28%;
  bottom: -28%;
  left: 8%;
  width: 11%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(206, 232, 248, 0.12) 24%,
    rgba(255, 255, 255, 0.66) 49%,
    rgba(192, 218, 234, 0.28) 64%,
    transparent
  );
  filter: blur(3px);
  opacity: 0;
  animation: crystal-sweep 12s ease-in-out infinite;
  will-change: transform, opacity;
}

a.platform-card-gabriel:hover .platform-portrait,
a.platform-card-gabriel:focus-visible .platform-portrait {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.035);
}

.platform-card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.platform-card:last-child {
  border-right: 0;
}

a.platform-card:hover,
a.platform-card:focus-visible {
  background: rgba(255, 255, 255, 0.055);
}

.platform-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  height: 2px;
  background: var(--prism);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

a.platform-card:hover::before,
a.platform-card:focus-visible::before,
.platform-current::before {
  opacity: 0.8;
}

.platform-current {
  background: linear-gradient(145deg, rgba(212, 238, 254, 0.07), rgba(199, 225, 241, 0.025));
}

.platform-type {
  color: #9b9ba2;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.platform-card h3 {
  margin: auto 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.6vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.platform-card p {
  max-width: 28rem;
  margin: 0 0 2.4rem;
  color: var(--muted);
}

.platform-role {
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.platform-role small {
  display: block;
  color: #daf4ff;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.platform-description {
  margin-bottom: 1.5rem;
  color: #c8c8ce;
  font-size: 0.9rem;
}

.platform-destination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: #dadae0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.platform-destination b {
  font-size: 1rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

a.platform-card:hover .platform-destination b,
a.platform-card:focus-visible .platform-destination b {
  transform: translate(0.25rem, -0.25rem);
}

.involved {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4rem;
  align-items: end;
  min-height: 34rem;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.involved-glow {
  position: absolute;
  right: 5%;
  bottom: -13rem;
  width: 34rem;
  height: 24rem;
  border-radius: 50%;
  background: linear-gradient(110deg, #c7e1f1, #c5dfef, #daf4ff);
  filter: blur(100px);
  opacity: 0.13;
  pointer-events: none;
}

.involved-copy {
  position: relative;
  z-index: 1;
}

.involved h2 {
  max-width: 55rem;
  font-size: clamp(3.3rem, 6.5vw, 7.2rem);
}

.involved-copy > p:last-child {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.involved-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: min(100%, 25rem);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, rgba(212, 238, 254, 0.08), rgba(199, 225, 241, 0.025));
  scroll-margin-top: 7rem;
}

.donate-label {
  color: #daf4ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.involved-actions h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.involved-actions p {
  margin: 0 0 0.25rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.involved-actions .donate-status {
  margin: -0.35rem 0 0;
  color: #8f8f96;
  font-size: 0.68rem;
  line-height: 1.55;
}

.donate-status a {
  color: #daf4ff;
  text-decoration: underline;
  text-decoration-color: rgba(218, 244, 255, 0.45);
  text-underline-offset: 0.18em;
}

.legal-status {
  display: grid;
  grid-template-columns: minmax(15rem, 0.48fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 8vw, 9rem);
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.25rem, 7vw, 8.5rem);
  border-top: 1px solid var(--line);
  background: #080809;
  scroll-margin-top: 7rem;
}

.legal-heading .eyebrow {
  margin-bottom: 0.7rem;
}

.legal-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.legal-copy {
  max-width: 54rem;
}

.legal-copy p {
  margin: 0 0 1rem;
  color: #aaaab1;
  font-size: 0.83rem;
  line-height: 1.7;
}

.legal-copy .text-link {
  display: inline-block;
  margin-top: 0.5rem;
}

.text-link {
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #797980;
  color: #d6d6db;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 0.4rem;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(0.2rem, -0.2rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: 3rem clamp(1.25rem, 4vw, 4.75rem);
  border-top: 1px solid var(--line);
  color: #8f8f95;
}

.footer-brand {
  grid-column: 1;
  color: var(--white);
}

.site-footer > p {
  grid-column: 1;
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-meta {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid #daf4ff;
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 4.8rem;
  }

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

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.23rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-0.23rem) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 51;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;
    padding: 6rem 2rem;
    background: rgba(5, 5, 5, 0.97);
    transform: translateX(100%);
    transition: transform 250ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-nav .nav-support {
    margin-top: 1rem;
    padding: 0.8rem 1.4rem;
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding-top: 8rem;
  }

  .hero-copy {
    z-index: 3;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 15vw, 7.5rem);
  }

  .hero-art {
    justify-self: center;
    width: min(100%, 36rem);
    margin-top: 2.5rem;
  }

  .spectrum-lighthouse {
    display: block;
    height: clamp(5.75rem, 16vw, 9rem);
    filter: blur(1.25px);
  }

  .scroll-cue {
    display: none;
  }

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

  .pillars article {
    border-bottom: 1px solid rgba(8, 8, 8, 0.14);
  }

  .pillars article:nth-child(even) {
    border-right: 0;
  }

  .pillars article:last-child {
    grid-column: 1 / -1;
  }

  .mission-grid,
  .leadership,
  .work,
  .involved,
  .platforms-heading,
  .legal-status {
    grid-template-columns: 1fr;
  }

  .leadership {
    gap: 4rem;
  }

  .leadership-media {
    width: min(100%, 36rem);
  }

  .leadership-copy {
    max-width: 42rem;
  }

  .platforms-heading .section-kicker {
    grid-column: 1;
  }

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

  .platform-card {
    min-height: 19rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .platform-card:last-child {
    border-bottom: 0;
  }

  .work-heading {
    position: static;
  }

  .involved-actions {
    margin-top: 1rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .brand-lockup-crop {
    width: 8.1rem;
    height: 1.74rem;
  }

  .brand-lockup-crop img {
    top: -6.58rem;
    left: -0.43rem;
    width: 8.9rem;
  }

  .brand-subline {
    width: 8.1rem;
    font-size: 0.54rem;
    letter-spacing: 0.12em;
  }

  .hero {
    padding: 7.2rem 1.1rem 4rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.7rem);
  }

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

  .hero-art {
    min-width: 0;
  }

  .spectrum-lighthouse {
    height: clamp(4.75rem, 23vw, 7rem);
  }

  .art-caption {
    margin-right: 0;
    text-align: center;
  }

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

  .pillars article,
  .pillars article:nth-child(even) {
    min-height: auto;
    border-right: 0;
  }

  .pillars article:last-child {
    grid-column: auto;
  }

  .section {
    padding: 5.5rem 1.25rem;
  }

  .mission-statement h2,
  .leadership-copy h2,
  .work-heading h2,
  .platforms-heading h2,
  .involved h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .leadership-copy h2 {
    line-height: 0.84;
  }

  .chair-portrait figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.56rem;
  }

  .eye-beacon {
    width: 4.5rem;
  }

  .mission-grid {
    gap: 4rem;
  }

  .work-list article {
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
  }

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

  .site-footer > p,
  .footer-brand,
  .footer-meta {
    grid-row: auto;
    grid-column: 1;
  }

  .footer-meta {
    align-items: flex-start;
    margin-top: 1rem;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .spectrum-lighthouse {
    animation: none;
    opacity: 0.68;
  }

  .eye-beacon,
  .crystal-pulse,
  .crystal-refraction {
    animation: none;
  }

  .crystal-pulse {
    opacity: 0.16;
    transform: none;
  }

  .crystal-refraction {
    opacity: 0;
  }
}
