@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --ink: #141414;
  --ink-soft: #575960;
  --paper: #ffffff;
  --paper-warm: #f7f6f2;
  --paper-cool: #f2f4f8;
  --line: #d9dadd;
  --line-dark: #333333;
  --blue: #19399a;
  --blue-light: #dce5ff;
  --yellow: #f3c800;
  --red: #ee4e37;
  --green: #008e68;
  --max: 1440px;
  --gutter: 40px;
  --radius: 6px;
  --shadow: 0 16px 38px rgba(16, 21, 31, 0.08);
  --display: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --type-page-title: clamp(2.75rem, 5vw, 5rem);
  --type-section-title: clamp(2rem, 3vw, 3.25rem);
  --type-section-lead: clamp(1.375rem, 2vw, 2.125rem);
  --type-body: clamp(1rem, 0.25vw + 0.95rem, 1.125rem);
  --type-eyebrow: clamp(0.8125rem, 0.75vw, 0.9375rem);
  --type-caption: clamp(0.75rem, 0.25vw + 0.7rem, 0.875rem);
  --section-space: clamp(6rem, 7vw, 7rem);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--type-body);
  line-height: 1.62;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

.home-page {
  --home-type-eyebrow: clamp(13px, 0.2vw + 12px, 14px);
  --home-type-module-title: clamp(30px, 2.2vw, 36px);
  --home-type-editorial: clamp(40px, 3vw, 48px);
  --home-type-body: clamp(16px, 0.35vw + 15px, 18px);
  --home-type-status: clamp(13px, 0.2vw + 12px, 14px);
}

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

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

a:hover {
  color: var(--blue);
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
h4,
p,
dl,
dd,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
.eyebrow,
.button,
.site-nav,
.status-link,
.news-meta,
dt {
  font-family: var(--display);
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 {
  font-size: var(--type-page-title);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

h2 {
  font-size: var(--type-section-title);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 23px;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

p {
  color: var(--ink-soft);
}

strong {
  color: var(--ink);
}

code {
  display: inline;
  overflow-wrap: anywhere;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.88em;
  font-weight: 500;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  align-items: center;
  min-height: 94px;
  padding: 16px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  display: block;
  width: 320px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  font-size: clamp(0.8125rem, 0.2vw + 0.78rem, 0.9375rem);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.status-link {
  display: flex;
  flex-direction: column;
  min-width: 176px;
  padding: 11px 14px;
  border-left: 2px solid var(--blue);
  background: var(--paper-cool);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.status-link span {
  color: var(--blue);
  font-size: 11px;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.mission-hero {
  width: min(100%, var(--max));
  min-height: 640px;
  margin: 0 auto;
  padding: 68px var(--gutter) 64px;
  background: var(--paper);
}

.mission-hero-grid {
  display: grid;
  min-height: 508px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
}

.mission-hero-copy {
  grid-column: span 7;
  min-width: 0;
}

.mission-hero h1 {
  max-width: none;
  margin: 18px 0 28px;
  color: var(--ink);
  font-size: clamp(64px, 5.3vw, 82px);
  font-weight: 400;
  line-height: 0.98;
}

.mission-hero h1 span {
  display: block;
}

.mission-hero-copy > p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.55;
}

.mission-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 30px;
}

.mission-status {
  display: inline-grid;
  gap: 3px;
  padding-top: 13px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--display);
  line-height: 1.35;
}

.mission-status > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mission-status strong {
  font-size: 13px;
  font-weight: 600;
}

.landing-hero {
  position: relative;
  width: 100%;
  height: calc(100svh - 94px);
  min-height: 720px;
  overflow: hidden;
  background: #f4f0e8;
  isolation: isolate;
}

.landing-hero-track,
.landing-hero-slide {
  position: absolute;
  inset: 0;
}

.landing-hero-slide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: #f4f0e8;
  transition:
    opacity 850ms ease,
    visibility 850ms;
}

.landing-hero-slide-dark {
  background: #11182b;
}

.landing-hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.landing-hero-art,
.landing-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-hero-art {
  overflow: hidden;
}

.landing-hero-shape {
  position: absolute;
  display: block;
  border-radius: 999px;
  transform-origin: center;
}

.landing-hero-art-light {
  background: #f4f0e8;
}

.landing-hero-art-light .shape-a {
  top: 12%;
  left: 24%;
  width: 88vw;
  height: clamp(100px, 12vw, 210px);
  background: rgba(50, 151, 92, 0.64);
  transform: rotate(8deg);
}

.landing-hero-art-light .shape-b {
  top: -17%;
  left: -7%;
  width: 52vw;
  height: clamp(100px, 11vw, 190px);
  background: rgba(255, 182, 37, 0.78);
  transform: rotate(43deg);
}

.landing-hero-art-light .shape-c {
  top: 48%;
  left: 16%;
  width: 58vw;
  height: clamp(112px, 13vw, 220px);
  background: rgba(66, 111, 221, 0.55);
  transform: rotate(-5deg);
}

.landing-hero-art-light .shape-d {
  bottom: -9%;
  left: -25%;
  width: 74vw;
  height: clamp(110px, 13vw, 220px);
  background: rgba(146, 101, 205, 0.46);
  transform: rotate(41deg);
}

.landing-hero-art-light .shape-e {
  top: -7%;
  right: -5%;
  width: clamp(180px, 22vw, 380px);
  aspect-ratio: 1;
  background: rgba(237, 86, 104, 0.6);
}

.landing-hero-art-dark {
  background: #10172a;
}

.landing-hero-art-dark .shape-a {
  top: -24%;
  right: -6%;
  width: 68vw;
  aspect-ratio: 1.9;
  border: clamp(34px, 5vw, 84px) solid rgba(56, 116, 255, 0.62);
  transform: rotate(-13deg);
}

.landing-hero-art-dark .shape-b {
  bottom: -18%;
  left: -8%;
  width: 64vw;
  aspect-ratio: 2.1;
  border: clamp(28px, 4vw, 70px) solid rgba(255, 86, 91, 0.56);
  transform: rotate(18deg);
}

.landing-hero-art-dark .shape-c {
  top: 24%;
  left: 4%;
  width: 40vw;
  height: clamp(70px, 8vw, 138px);
  background: rgba(255, 202, 33, 0.67);
  transform: rotate(-38deg);
}

.landing-hero-art-dark .shape-d {
  right: 12%;
  bottom: 11%;
  width: 34vw;
  height: clamp(74px, 9vw, 150px);
  background: rgba(57, 182, 133, 0.55);
  transform: rotate(-22deg);
}

.landing-hero-art-dark .shape-e {
  top: 9%;
  left: 42%;
  width: clamp(140px, 17vw, 290px);
  aspect-ratio: 1;
  border: clamp(22px, 3vw, 50px) solid rgba(181, 108, 217, 0.58);
}

.landing-hero-scrim {
  background: radial-gradient(circle at center, rgba(247, 244, 237, 0.38) 0%, rgba(247, 244, 237, 0.12) 43%, transparent 72%);
}

.landing-hero-slide-dark .landing-hero-scrim {
  background: radial-gradient(circle at center, rgba(16, 23, 42, 0.66) 0%, rgba(16, 23, 42, 0.28) 48%, rgba(16, 23, 42, 0.08) 72%);
}

.landing-hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  display: flex;
  align-items: center;
  flex-direction: column;
  transform: translateY(-54%);
  text-align: center;
}

.landing-hero .eyebrow {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: clamp(13px, 0.8vw, 15px);
  letter-spacing: 0.04em;
}

.landing-hero h1,
.landing-hero h2 {
  max-width: 25ch;
  margin: 0 0 30px;
  color: var(--ink);
  font-size: clamp(64px, 5.8vw, 96px);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.landing-hero h2 {
  max-width: 14ch;
  font-size: clamp(62px, 5.4vw, 90px);
}

.landing-hero h1 > span {
  display: block;
}

.landing-hero-copy > p {
  max-width: 760px;
  margin: 0;
  color: rgba(17, 17, 17, 0.76);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.48;
  text-wrap: balance;
}

.landing-hero-slide-dark .eyebrow {
  color: #ffdf3a;
}

.landing-hero-slide-dark h2,
.landing-hero-slide-dark .landing-hero-copy > p {
  color: var(--paper);
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.landing-hero-actions .button {
  min-height: 50px;
  padding: 14px 22px;
  font-size: 16px;
}

.landing-hero-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.landing-hero-primary:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--paper);
}

.landing-hero-secondary {
  border-color: rgba(17, 17, 17, 0.6);
  background: rgba(247, 244, 237, 0.34);
  color: var(--ink);
}

.landing-hero-secondary:hover {
  border-color: var(--ink);
  background: rgba(247, 244, 237, 0.72);
  color: var(--ink);
}

.landing-hero-slide-dark .landing-hero-primary {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.landing-hero-slide-dark .landing-hero-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(17, 17, 17, 0.16);
  color: var(--paper);
}

.landing-hero-controls {
  position: absolute;
  z-index: 4;
  right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  bottom: 30px;
  left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.landing-hero-arrows {
  display: flex;
  gap: 8px;
}

.landing-hero-pagination {
  display: flex;
  flex: 1;
  gap: 8px;
  margin-left: 12px;
}

.landing-hero-arrows button,
.landing-hero-pagination button,
.landing-hero-toggle {
  position: relative;
  height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.45);
  background: rgba(247, 244, 237, 0.36);
  color: inherit;
  cursor: pointer;
}

.landing-hero-arrows button,
.landing-hero-toggle {
  width: 48px;
  padding: 0;
  font-family: var(--display);
  font-size: 16px;
}

.landing-hero-pagination button {
  flex: 1;
  max-width: none;
  padding: 0 8px;
  overflow: hidden;
  font-family: var(--display);
  font-size: 12px;
  text-align: left;
}

.landing-hero-pagination button::before,
.landing-hero-pagination button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
}

.landing-hero-pagination button::before {
  background: rgba(17, 17, 17, 0.24);
}

.landing-hero-pagination button::after {
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
}

.landing-hero-pagination button.is-active {
  border-color: currentColor;
}

.landing-hero.is-playing .landing-hero-pagination button.is-active::after {
  animation: landing-progress 7s linear forwards;
}

.landing-hero-count {
  min-width: 50px;
  margin: 0 4px;
  font-family: var(--display);
  font-size: 12px;
  text-align: center;
}

.landing-hero-arrows button:hover,
.landing-hero-arrows button:focus-visible,
.landing-hero-pagination button:hover,
.landing-hero-pagination button:focus-visible,
.landing-hero-toggle:hover,
.landing-hero-toggle:focus-visible {
  border-color: currentColor;
  background: rgba(247, 244, 237, 0.68);
}

.landing-hero[data-theme="dark"] .landing-hero-controls {
  color: var(--paper);
}

.landing-hero[data-theme="dark"] .landing-hero-arrows button,
.landing-hero[data-theme="dark"] .landing-hero-pagination button,
.landing-hero[data-theme="dark"] .landing-hero-toggle {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(10, 14, 28, 0.24);
}

.landing-hero[data-theme="dark"] .landing-hero-pagination button::before {
  background: rgba(255, 255, 255, 0.28);
}

.landing-hero[data-theme="dark"] .landing-hero-arrows button:hover,
.landing-hero[data-theme="dark"] .landing-hero-arrows button:focus-visible,
.landing-hero[data-theme="dark"] .landing-hero-pagination button:hover,
.landing-hero[data-theme="dark"] .landing-hero-pagination button:focus-visible,
.landing-hero[data-theme="dark"] .landing-hero-toggle:hover,
.landing-hero[data-theme="dark"] .landing-hero-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

@keyframes landing-progress {
  to { transform: scaleX(1); }
}

.convergence-field {
  grid-column: span 5;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1.04;
  background: #f3f1ec;
}

.convergence-field-canvas {
  width: 100%;
  height: 100%;
  transform: translate3d(var(--field-shift-x, 0), var(--field-shift-y, 0), 0);
  transform-origin: center;
  transition: transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.convergence-field svg {
  display: block;
  width: 100%;
  height: 100%;
}

.field-strand {
  color: var(--strand-color);
  transform-box: fill-box;
  transform-origin: center;
  animation: field-breathe var(--strand-duration) ease-in-out var(--strand-delay) infinite alternate;
}

.field-strand path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 54;
  opacity: 0.78;
}

.field-anchor {
  fill: currentColor;
  opacity: 0.95;
}

.field-strand-1 { --strand-color: #ee4e37; --strand-duration: 19s; --strand-delay: -3s; --field-x: 10px; --field-y: -7px; }
.field-strand-2 { --strand-color: #1753d7; --strand-duration: 23s; --strand-delay: -11s; --field-x: -8px; --field-y: 9px; }
.field-strand-3 { --strand-color: #008e68; --strand-duration: 21s; --strand-delay: -7s; --field-x: 7px; --field-y: 8px; }
.field-strand-4 { --strand-color: #f3b81b; --strand-duration: 24s; --strand-delay: -15s; --field-x: -10px; --field-y: -6px; }
.field-strand-5 { --strand-color: #e77bbe; --strand-duration: 20s; --strand-delay: -5s; --field-x: 9px; --field-y: 5px; }
.field-strand-6 { --strand-color: #8d73cf; --strand-duration: 22s; --strand-delay: -13s; --field-x: -7px; --field-y: -9px; }

.field-pulse {
  opacity: 0.9;
}

.pulse-1 { fill: #141414; }
.pulse-2 { fill: #f3c800; }
.pulse-3 { fill: #19399a; }

@keyframes field-breathe {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(var(--field-x), var(--field-y), 0) scale(1.015); }
}

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

.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: var(--type-eyebrow);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.band-dark .eyebrow,
.band-color .eyebrow {
  color: var(--yellow);
}

.home-hero .eyebrow {
  color: var(--blue);
}

.hero-cycle {
  display: flex;
  width: fit-content;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-cycle strong,
.hero-cycle span {
  padding: 10px 20px 10px 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 13px;
}

.hero-cycle span {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.78);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button.primary:hover {
  background: var(--blue);
  color: var(--paper);
}

.button.secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

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

.button.light:hover {
  background: var(--yellow);
  color: var(--ink);
}

.button.outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--paper);
}

.button.outline-light:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.button.outline-dark {
  border-color: rgba(17, 17, 17, 0.68);
  background: rgba(250, 248, 242, 0.2);
  color: var(--ink);
}

.button.outline-dark:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.text-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 600;
}

.text-link:hover {
  color: var(--blue);
}

.band {
  padding: 52px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}

.glance {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 68px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}

.home-glance {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 44px var(--gutter);
  border-top: 1px solid var(--line);
}

.home-glance .glance-intro p {
  font-size: 17px;
  line-height: 1.55;
}

.home-glance .glance-grid dt {
  font-size: 12px;
}

.home-glance .glance-grid dd {
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.3;
}

.home-page .home-glance .eyebrow,
.home-page .section-heading .eyebrow,
.home-page .split-manifesto > div:first-child > .eyebrow,
.home-page .funding-teaser > div:first-child > .eyebrow,
.home-page .about-teaser .eyebrow {
  font-size: var(--home-type-eyebrow);
  font-weight: 600;
}

.home-page .home-research-areas .section-heading h2,
.home-page .committee-preview .section-heading h2,
.home-page .news-preview .section-heading h2 {
  font-size: var(--home-type-module-title);
  font-weight: 700;
  line-height: 1.15;
}

.home-page .split-manifesto h2,
.home-page .process-section .section-heading h2,
.home-page .home-people-community .section-heading h2,
.home-page .academic-network .section-heading h2,
.home-page .funding-teaser h2,
.home-page .about-teaser h2 {
  max-width: 24ch;
  font-size: var(--home-type-editorial);
  font-weight: 600;
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.home-page .split-manifesto {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 5vw, 72px);
}

.home-page .split-manifesto h2 {
  max-width: 31ch;
  font-size: 40px;
}

.section.home-relationship {
  padding-top: clamp(60px, 4.5vw, 72px);
  padding-bottom: clamp(60px, 4.5vw, 72px);
}

.home-relationship-header {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(34px, 3.2vw, 46px);
}

.home-relationship-header .eyebrow {
  margin-bottom: 14px;
  font-size: var(--home-type-eyebrow);
  font-weight: 600;
}

.home-relationship-header h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(32px, 2.4vw, 38px);
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
}

.home-relationship-header > p {
  max-width: 66ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.58;
}

.home-relationship .relationship-grid article {
  padding: 30px 30px 34px;
}

.home-relationship .relationship-grid span {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
}

.home-relationship .relationship-grid h3 {
  max-width: 360px;
  margin-bottom: 16px;
  font-size: clamp(22px, 1.65vw, 26px);
  font-weight: 700;
  line-height: 1.2;
}

.home-relationship .relationship-grid p {
  max-width: 42ch;
  font-size: clamp(15px, 1vw, 16px);
  line-height: 1.55;
}

.home-page .about-teaser h2 {
  max-width: 30ch;
}

.home-page .section-heading > p,
.home-page .split-manifesto .prose.large p,
.home-page .funding-teaser > div:last-child > p:not(.funding-number),
.home-page .about-teaser > div > p {
  font-size: var(--home-type-body);
  font-weight: 400;
  line-height: 1.6;
}

.glance-intro p {
  max-width: 420px;
  margin-bottom: 0;
}

.glance-grid {
  display: grid;
  grid-template-columns: 0.7fr 0.8fr 1.1fr 1.4fr;
  gap: 0;
  margin: 0;
}

.glance-grid div {
  min-width: 0;
  padding: 0 26px;
  border-left: 1px solid var(--line);
}

.glance-grid dt {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.glance-grid dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.home-fellowship {
  --home-fellowship-line: rgba(255, 255, 255, 0.2);
  display: grid;
  max-width: none;
  grid-template-areas:
    "intro progress"
    "facts progress"
    "actions progress";
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  column-gap: clamp(48px, 5vw, 72px);
  row-gap: 22px;
  align-items: center;
  padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  color: #fff;
  background: var(--ink);
}

.home-fellowship-intro {
  grid-area: intro;
  min-width: 0;
  align-self: end;
}

.home-fellowship-title {
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  text-wrap: balance;
}

.home-editorial-heading {
  max-width: 24ch;
  margin: 28px 0 30px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(44px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.02em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.home-fellowship-intro > p:not(.home-fellowship-status):not(.home-editorial-heading) {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--home-type-body);
  font-weight: 400;
  line-height: 1.58;
}

.home-fellowship-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 14px 0 0;
  color: var(--yellow);
  font-family: var(--display);
  font-size: var(--home-type-status);
  font-weight: 600;
  text-transform: uppercase;
}

.home-fellowship-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.home-fellowship-facts {
  grid-area: facts;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr) minmax(0, 1.5fr);
  margin: 0;
  border-top: 1px solid var(--home-fellowship-line);
  border-bottom: 1px solid var(--home-fellowship-line);
}

.home-fellowship-facts div {
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid var(--home-fellowship-line);
}

.home-fellowship-facts div:first-child {
  padding-left: 0;
}

.home-fellowship-facts div:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-fellowship-facts dt {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.home-fellowship-facts dd {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(18px, 1.35vw, 20px);
  font-weight: 600;
  line-height: 1.3;
}

.home-fellowship-progress {
  position: relative;
  grid-area: progress;
  min-width: 0;
  align-self: stretch;
  overflow: hidden;
  padding: clamp(30px, 3.5vw, 50px);
  border-left: 1px solid var(--home-fellowship-line);
}

.home-fellowship-stage-number {
  position: absolute;
  top: -0.22em;
  right: 0;
  color: rgba(243, 200, 0, 0.055);
  font-family: var(--display);
  font-size: clamp(128px, 13.6vw, 204px);
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.home-fellowship-progress h3 {
  position: relative;
  margin: 0 0 36px;
  color: #fff;
  font-size: clamp(26px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.15;
}

.home-fellowship-progress ol {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-fellowship-progress li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--home-fellowship-line);
}

.home-fellowship-progress li:last-child {
  border-bottom: 1px solid var(--home-fellowship-line);
}

.home-fellowship-progress li > span,
.home-fellowship-progress li > small {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--display);
  font-size: clamp(14px, 0.8vw, 15px);
}

.home-fellowship-progress li > strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(18px, 1.25vw, 20px);
  font-weight: 500;
}

.home-fellowship-progress li > small {
  text-align: right;
}

.home-fellowship-progress li.current > span,
.home-fellowship-progress li.current > strong,
.home-fellowship-progress li.current > small {
  color: var(--yellow);
  font-weight: 700;
}

.home-fellowship-actions {
  grid-area: actions;
  align-self: start;
  margin: 0;
}

.home-fellowship-actions .button.primary {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.home-fellowship-actions .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
}

.home-fellowship-actions .button.primary:hover,
.home-fellowship-actions .button.primary:focus-visible {
  background: #ffe35a;
  border-color: #ffe35a;
}

.home-fellowship-actions .button.secondary:hover,
.home-fellowship-actions .button.secondary:focus-visible {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.home-about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-space) var(--gutter);
}

.section.home-fellowship {
  padding-top: clamp(64px, 4.8vw, 72px);
  padding-bottom: clamp(64px, 4.8vw, 72px);
}

.section.band-soft,
.section.band-dark,
.section.band-color {
  max-width: none;
  padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}

.band-soft {
  background: var(--paper-warm);
}

.band-dark {
  background: var(--ink);
  color: var(--paper);
}

.band-dark h2,
.band-dark h3,
.band-dark h4,
.band-dark strong {
  color: var(--paper);
}

.band-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.band-color {
  background: var(--blue);
  color: var(--paper);
}

.band-color h2,
.band-color h3 {
  color: var(--paper);
}

.band-color p {
  color: rgba(255, 255, 255, 0.8);
}

.split-manifesto {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(48px, 6vw, 88px);
}

.split-manifesto h2 {
  max-width: 20ch;
  margin-bottom: 0;
}

.prose {
  max-width: 70ch;
}

.prose p {
  margin-bottom: 24px;
  line-height: 1.62;
}

.prose.large p {
  font-size: 20px;
  line-height: 1.7;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 20ch;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 65ch;
  margin-bottom: 8px;
}

.relationship-title {
  max-width: 32ch;
  margin: 0 auto 52px;
  text-align: center;
}

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

.relationship-grid article {
  min-width: 0;
  padding: 42px 36px 48px;
  border-left: 1px solid var(--line);
}

.relationship-grid article:first-child {
  border-left: 0;
}

@media (min-width: 1051px) {
  .program-relationship .relationship-grid article:first-child {
    padding-left: 0;
  }
}

.relationship-grid span,
.dimension-grid span,
.reviewer-card span,
.contact-grid article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.relationship-grid h3 {
  max-width: 330px;
  margin-bottom: 18px;
}

.relationship-grid p {
  margin-bottom: 0;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px 28px;
}

.research-card {
  min-width: 0;
}

.research-image {
  display: block;
  aspect-ratio: 4 / 3;
  margin-bottom: 25px;
  overflow: hidden;
  background: var(--paper-cool);
}

.research-image img {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  object-fit: cover;
  transition:
    filter 260ms ease,
    transform 260ms ease;
}

.research-card:hover .research-image img {
  filter: grayscale(0.15);
  transform: scale(1.015);
}

.research-card-copy {
  position: relative;
  padding-left: 50px;
}

.research-index {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
}

.research-card h3 {
  min-height: 60px;
  margin-bottom: 12px;
}

.research-card p {
  margin-bottom: 18px;
}

.research-grid.detailed {
  gap: 100px 36px;
}

.research-grid.detailed .research-card-copy {
  padding-left: 0;
}

.research-grid.detailed .research-index {
  position: static;
  margin-bottom: 12px;
}

.research-grid.detailed .research-card h3 {
  min-height: 88px;
  font-size: 25px;
}

.research-grid.detailed .research-card p {
  min-height: auto;
}

.research-grid.detailed .research-card h4 {
  margin: 28px 0 12px;
}

.research-grid.detailed ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--ink-soft);
}

.output-note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.process-section .section-heading {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 40px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  display: flex;
  min-height: 160px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.process-list li:first-child {
  border-left: 0;
}

.process-list svg {
  width: 28px;
  height: 28px;
  color: var(--yellow);
  stroke-width: 1.4;
}

.process-list span {
  max-width: 170px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

.funding-teaser {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.funding-teaser h2 {
  max-width: 580px;
}

.funding-teaser > div:last-child {
  padding-top: 8px;
}

.funding-number {
  margin-bottom: 16px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
}

.news-layout {
  margin-bottom: 48px;
}

.news-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.news-card.featured {
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: none;
  gap: 48px;
  margin-bottom: 70px;
  padding-top: 0;
  border-top: 0;
  background: var(--paper-warm);
}

.news-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-cool);
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.news-card:hover .news-image img {
  transform: scale(1.012);
}

.news-card-copy {
  padding-top: 22px;
}

.news-card.featured .news-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px 48px 0;
}

.news-card h3 {
  margin-bottom: 14px;
}

.news-card.featured h3 {
  font-size: 36px;
  font-weight: 500;
}

.news-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.news-meta span {
  color: var(--blue);
}

.news-grid,
.news-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 28px;
}

.news-index-grid > div[hidden] {
  display: none;
}

.forum-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.forum-teaser img {
  width: min(100%, 680px);
  height: auto;
  aspect-ratio: 16 / 10;
  justify-self: end;
  object-fit: cover;
}

.forum-teaser h2 {
  max-width: 650px;
  font-size: 42px;
}

.about-teaser,
.about-image-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.about-teaser img,
.about-image-section img {
  width: min(100%, 720px);
  height: auto;
  aspect-ratio: 16 / 9;
  justify-self: end;
  filter: saturate(0.92) contrast(1.02);
  object-fit: cover;
}

.about-teaser h2,
.about-image-section h2 {
  max-width: 650px;
}

.inner-hero {
  display: grid;
  min-height: clamp(400px, 42vw, 500px);
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: clamp(72px, 7vw, 92px) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.inner-hero.has-image {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

.inner-hero-copy {
  max-width: 1080px;
}

.inner-hero h1 {
  max-width: 16ch;
  margin-bottom: 26px;
}

.inner-hero .lede {
  max-width: 65ch;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: clamp(1.125rem, 0.6vw + 1rem, 1.375rem);
  line-height: 1.55;
}

.inner-hero .lede-extra {
  margin-top: -2px;
}

.about-program-heading .about-program-logo {
  display: block;
  width: min(72%, 280px);
  height: auto;
  margin: 0 0 28px;
  aspect-ratio: auto;
  object-fit: contain;
}

.about-adw-heading .about-adw-logo {
  display: block;
  width: min(58%, 185px);
  height: auto;
  margin: 0 0 28px;
  aspect-ratio: auto;
  object-fit: contain;
}

.about-identity h2 {
  max-width: none;
  margin-bottom: 20px;
}

.section-lead,
.brand-statement {
  max-width: 34ch;
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--type-section-lead);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

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

.inner-hero img.theme-poster {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 700px;
  aspect-ratio: auto;
  justify-self: center;
  object-fit: contain;
}

.inner-hero img.program-poster {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.inner-hero.inner-hero-landscape {
  min-height: 500px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.inner-hero img.landscape-poster {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.hero-meta {
  color: var(--blue);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
}

.status-strip {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 22px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
  color: var(--ink-soft);
  font-size: 14px;
}

.status-strip strong {
  color: var(--blue);
  font-family: var(--display);
}

.anchor-nav {
  position: sticky;
  z-index: 30;
  top: 104px;
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 14px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.policy-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(480px, 1.16fr);
  gap: clamp(48px, 6vw, 88px);
}

.policy-section h2 {
  max-width: 20ch;
}

.funding-policy > div:last-child > p:first-child {
  max-width: 820px;
  font-size: 19px;
}

.funding-facts,
.submission-list {
  margin: 42px 0 32px;
  border-top: 1px solid var(--line);
}

.funding-facts div,
.submission-list div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.funding-facts dt,
.submission-list dt {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.funding-facts dd,
.submission-list dd {
  margin: 0;
  color: var(--ink-soft);
}

.note {
  padding: 20px 22px;
  border-left: 3px solid var(--yellow);
  background: #fff9da;
  font-size: 14px;
}

.material-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.material-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.material-list svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
  stroke-width: 1.5;
}

.material-list strong {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
}

.material-list small {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.timeline-dates,
.timeline-simple,
.selection-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-dates li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.timeline-dates li:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-dates time {
  color: var(--blue);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
}

.closing-cta {
  border-top: 1px solid var(--line);
  text-align: center;
}

.closing-cta h2,
.closing-cta p {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.closing-cta .actions {
  justify-content: center;
}

.principles-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px 28px;
}

.principles-grid article,
.support-grid article {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.principles-grid svg,
.support-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 42px;
  color: var(--blue);
  stroke-width: 1.4;
}

.principles-grid h3,
.support-grid h3 {
  min-height: 58px;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.principle-list p {
  min-height: 110px;
  margin: 0;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--paper);
  font-family: var(--display);
  font-size: 20px;
}

.cycle-grid,
.governance-teaser {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(48px, 6vw, 88px);
}

.timeline-simple li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.timeline-simple li:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-simple strong {
  color: var(--blue);
  font-family: var(--display);
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.dimension-grid article {
  min-height: 290px;
  padding: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.dimension-grid article:first-child {
  border-left: 0;
}

.dimension-grid span {
  color: var(--yellow);
}

.translation,
.proposal-prompt {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.proposal-prompt .section-heading,
.proposal-prompt .button {
  grid-column: 1 / -1;
}

.proposal-prompt .principles-grid {
  grid-column: 1 / -1;
}

.proposal-prompt .button {
  width: fit-content;
}

.funding-summary {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.display-amount {
  margin-bottom: 12px;
  color: var(--yellow) !important;
  font-family: var(--display);
  font-size: 62px;
  font-weight: 500;
  line-height: 1;
}

.funding-summary dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.funding-summary dl div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.funding-summary dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.funding-summary dd {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 18px;
}

.application-layout,
.submission-format {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

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

.submission-list {
  margin-top: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  content: "+";
  color: var(--blue);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 920px;
  padding: 0 52px 24px 0;
}

.selection-steps {
  counter-reset: selection;
  border-top: 1px solid var(--line);
}

.selection-steps li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.selection-steps li > span {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 30px;
}

.selection-steps h3 {
  margin-bottom: 8px;
}

.selection-steps p {
  max-width: 820px;
  margin-bottom: 0;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
}

.criteria-grid p {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 90px;
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
}

.criteria-grid svg {
  width: 21px;
  height: 21px;
  color: var(--blue);
  stroke-width: 1.5;
}

.reviewer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 54px 28px;
}

#program-committee,
#future-design-scholars,
#academic-practice-network {
  scroll-margin-top: 120px;
}

.people-selection-link {
  margin-top: 42px;
}

.profile-review-role {
  display: block;
  margin: -4px 0 18px;
  color: var(--ink-soft);
  font-size: 12px;
}

.scholars-announcement-panel,
.home-scholars-announcement {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.scholars-announcement-panel > img,
.home-scholars-announcement > img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3380 / 1863;
  object-fit: cover;
}

.scholars-announcement-copy,
.home-scholars-announcement > div {
  align-self: center;
  padding: clamp(34px, 5vw, 72px);
}

.home-scholars-announcement {
  margin: 12px 0 34px;
  color: inherit;
}

.home-scholars-announcement h3 {
  margin-bottom: 18px;
  font-size: clamp(26px, 2.3vw, 38px);
}

.home-scholars-announcement p {
  color: var(--ink-soft);
}

.home-scholars-announcement .text-link {
  display: inline-block;
  margin-top: 8px;
}

.people-meta {
  display: grid;
  gap: 0;
  margin: 0 0 34px;
  border-top: 1px solid var(--line);
}

.people-meta div {
  display: grid;
  grid-template-columns: minmax(90px, 0.45fr) 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.people-meta dt {
  color: var(--ink-soft);
  font-size: 11px;
  text-transform: uppercase;
}

.people-meta dd {
  margin: 0;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
}

.people-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.people-network-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 38px;
}

.people-network-categories span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
}

.people-collaborate-link {
  margin-top: 26px;
}

.reviewer-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  filter: grayscale(1);
  object-fit: cover;
  object-position: center top;
}

.reviewer-card h3 {
  min-height: 0;
  margin-bottom: 10px;
  line-height: 1.2;
}

.reviewer-affiliation {
  margin: 0 0 9px;
}

.reviewer-institution {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  overflow: visible;
  text-wrap: pretty;
}

.reviewer-title {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  overflow: visible;
  text-wrap: pretty;
}

.reviewer-region {
  display: block;
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
}

.source-note {
  margin-top: 36px;
  font-size: 13px;
}

.status-empty,
.contact-guidance {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.profile-schema {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.profile-schema span {
  min-height: 110px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
}

.forum-program {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}

.forum-program article {
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.forum-program article > span {
  grid-row: 1 / 3;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 20px;
}

.forum-program h3,
.forum-program p {
  margin-bottom: 8px;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 52px;
}

.filter-button {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

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

.resource-card {
  display: grid;
  min-height: 185px;
  grid-template-columns: 38px 1fr 28px;
  gap: 22px;
  align-items: start;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.resource-card > svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
  stroke-width: 1.5;
}

.resource-card h2 {
  margin-bottom: 6px;
  font-size: 21px;
  font-weight: 600;
}

.resource-card p {
  margin-bottom: 18px;
}

.resource-card span {
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 10px;
  text-transform: uppercase;
}

.resource-card > a {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
}

.resource-card > a svg {
  width: 20px;
  height: 20px;
}

.faq-groups {
  display: grid;
  gap: 86px;
}

.faq-groups > section {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
}

.faq-groups h2 {
  font-size: 32px;
}

.verification-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 50px;
  margin-bottom: 38px;
}

.verification-grid p {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.verification-grid svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

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

.contact-grid article {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-grid article > svg {
  width: 32px;
  height: 32px;
  margin-bottom: 52px;
  color: var(--blue);
  stroke-width: 1.4;
}

.contact-grid h2 {
  overflow-wrap: anywhere;
  font-size: 24px;
  font-weight: 600;
}

.contact-office-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.contact-office-grid h2 {
  font-size: 20px;
}

.contact-office-grid p {
  font-size: 15px;
  line-height: 1.65;
}

.link-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.link-list a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
}

.article {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--gutter) 120px;
}

.article-header {
  max-width: 1120px;
  margin-bottom: 58px;
}

.article-header h1 {
  margin-bottom: 30px;
  font-size: 62px;
}

.article-header .lede {
  max-width: 920px;
  font-size: 22px;
}

.article-hero {
  margin: 0 0 80px;
}

.article-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 110px;
  align-items: start;
}

.article-layout > * {
  min-width: 0;
}

.article-body {
  max-width: 70ch;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.article-inline-media {
  margin: 64px 0 72px;
}

.article-inline-media a {
  display: block;
  border: 0;
}

.article-inline-media img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--paper);
}

.article-inline-media figcaption {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 13px;
}

.article-body > p:first-child {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.65;
}

.article-body h2 {
  margin: 64px 0 20px;
  font-size: 34px;
}

.article-body h3 {
  margin: 42px 0 16px;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
}

.article-body li {
  margin-bottom: 12px;
}

.article-body a {
  border-bottom: 1px solid currentColor;
  color: var(--blue);
}

.article-layout aside {
  position: sticky;
  top: 145px;
  padding-top: 22px;
  border-top: 2px solid var(--blue);
}

.article-layout aside p {
  font-size: 14px;
}

.article-footer {
  margin-top: 100px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.article-footer-logo {
  display: block;
  width: 100%;
  min-height: 68px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.article-footer-logo-program img {
  width: min(100%, 340px);
}

.article-footer-logo-adw img {
  width: min(100%, 310px);
}

.article-footer-logo img {
  display: block;
  height: auto;
}

.article-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 80px;
}

.article-footer h2 {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 600;
}

.article-footer h3 {
  margin: 28px 0 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-footer p {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.75;
}

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

.article-footer-links li {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.article-footer-grid a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

.site-footer {
  padding: 76px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.75fr);
  gap: 70px;
}

.footer-brand img {
  width: min(100%, 360px);
  height: auto;
  margin-bottom: 32px;
}

.footer-brand p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand .small {
  font-size: 13px;
}

.footer-grid h2 {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

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

.footer-grid a svg {
  width: 13px;
  height: 13px;
}

.footer-social {
  max-width: 300px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-social-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-social-links {
  display: flex;
  gap: 0;
  align-items: center;
}

.footer-grid .footer-social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid .footer-social-link:hover,
.footer-grid .footer-social-link:focus-visible {
  color: var(--yellow);
}

.footer-grid .footer-social-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.footer-administration {
  display: grid;
  grid-template-columns: 1.25fr 1.25fr 1fr 1fr;
  gap: clamp(30px, 3vw, 46px);
  align-items: start;
  margin-top: 64px;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-administration-group {
  min-width: 0;
}

.footer-administration h2 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-administration p,
.footer-administration a {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.6;
}

.footer-administration a {
  display: block;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

.footer-administration a:hover {
  color: var(--yellow);
}

.footer-administration-contact a + a,
.footer-administration-links a + a,
.footer-administration-links p {
  margin-top: 3px;
}

.footer-administration + .footer-bottom {
  margin-top: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.more-menu {
  position: relative;
}

.more-menu summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  list-style: none;
}

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

.more-menu summary svg {
  width: 14px;
  height: 14px;
}

.more-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.more-menu-panel a {
  min-height: 42px;
  padding: 10px 12px;
}

.more-menu-panel a:hover,
.more-menu-panel a[aria-current="page"] {
  background: var(--paper-cool);
  color: var(--ink);
}

.language-link {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}

.why-method-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-method-grid article {
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-method-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 36px;
  color: var(--blue);
}

.why-method-grid h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.committee-portrait-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 18px;
  margin-bottom: 34px;
}

.committee-portrait-grid a {
  display: grid;
  gap: 6px;
}

.committee-portrait-grid img,
.committee-portrait-grid .portrait-placeholder {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  margin-bottom: 8px;
  object-fit: cover;
  object-position: center top;
}

.committee-portrait-grid strong {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
}

.committee-portrait-grid small {
  color: var(--ink-soft);
}

.committee-portrait-grid .committee-role {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.committee-portrait-grid .committee-institution {
  color: var(--ink);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  text-wrap: pretty;
}

.academic-network .section-heading {
  margin-bottom: 44px;
}

.academic-network-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.academic-network-grid a {
  display: flex;
  min-width: 0;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  transition: background 180ms ease;
}

.academic-network-grid a:hover,
.academic-network-grid a:focus-visible {
  background: var(--paper);
}

.academic-network-grid img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter 180ms ease, opacity 180ms ease;
}

.academic-network-grid a:hover img,
.academic-network-grid a:focus-visible img {
  filter: grayscale(0);
  opacity: 1;
}

.network-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.portrait-placeholder {
  display: flex;
  aspect-ratio: 4 / 5;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    linear-gradient(135deg, transparent 48%, rgba(25, 57, 154, 0.08) 48% 52%, transparent 52%),
    var(--paper-cool);
  color: var(--blue);
  text-align: center;
}

.portrait-placeholder span,
.portrait-placeholder b {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 500;
}

.portrait-placeholder small {
  max-width: 150px;
  color: var(--ink-soft);
  font-size: 11px;
}

.portrait-placeholder.compact {
  min-height: 0;
}

.reviewer-card {
  display: grid;
  grid-template-rows: auto 1fr;
  scroll-margin-top: 140px;
}

.profile-portrait-trigger {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.profile-portrait-trigger > img,
.profile-portrait-trigger > .portrait-placeholder {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.profile-portrait-trigger > img {
  transition: filter 180ms ease, transform 220ms ease;
}

.profile-portrait-trigger:hover > img,
.profile-portrait-trigger:focus-visible > img,
.profile-portrait-trigger:active > img {
  filter: grayscale(0);
  transform: scale(1.012);
}

.reviewer-card .profile-portrait-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  padding: 28px 16px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.62), rgba(10, 10, 10, 0.08) 48%, transparent 72%);
  color: #fff;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.profile-portrait-trigger:hover .profile-portrait-label,
.profile-portrait-trigger:focus-visible .profile-portrait-label,
.profile-portrait-trigger:active .profile-portrait-label {
  opacity: 1;
  transform: translateY(0);
}

.profile-portrait-trigger:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}

.reviewer-card > div:last-child {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.member-badge {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-dialog {
  width: min(1120px, calc(100vw - 48px));
  max-width: none;
  max-height: 82vh;
  margin: auto;
  border: 0;
  padding: 0;
  background: var(--paper);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.24);
}

.profile-dialog::backdrop {
  background: rgba(0, 0, 0, 0.58);
}

.profile-dialog-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 620px;
}

.profile-dialog-grid > img,
.profile-dialog-grid > .portrait-placeholder {
  width: 100%;
  height: 100%;
  max-height: 82vh;
  object-fit: cover;
  object-position: center top;
}

.profile-dialog-copy {
  align-self: center;
  max-width: 680px;
  padding: 70px;
}

.profile-dialog-copy h2 {
  margin-bottom: 18px;
  font-size: 40px;
}

.profile-affiliation {
  margin-bottom: 16px;
}

.profile-institution {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  text-wrap: pretty;
}

.profile-title {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}

.profile-region {
  color: var(--blue);
  font-family: var(--display);
  font-size: 14px;
}

.profile-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.dialog-close svg {
  width: 22px;
  height: 22px;
}

.cycle-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 54px 0 30px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.cycle-milestones li {
  display: grid;
  gap: 5px;
  padding: 18px 22px 18px 0;
  border-right: 1px solid var(--line);
}

.cycle-milestones li + li {
  padding-left: 22px;
}

.cycle-milestones time {
  color: var(--blue);
  font-family: var(--display);
  font-weight: 600;
}

.cycle-milestones span {
  color: var(--ink-soft);
  font-size: 14px;
}

.cycle-milestones .current {
  border-top: 3px solid var(--blue);
  margin-top: -2px;
}

.status-strip small {
  margin-left: auto;
  color: var(--ink-soft);
  white-space: nowrap;
}

.status-strip:has(.print-action) {
  grid-template-columns: 180px minmax(320px, 1fr) auto auto;
  align-items: center;
}

.print-action,
.copy-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line-dark);
  padding: 8px 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
}

.print-action svg,
.copy-action svg {
  width: 16px;
  height: 16px;
}

.copy-action {
  min-height: 34px;
  margin-top: 12px;
  border-color: var(--line);
}

.submission-list dd {
  min-width: 0;
}

.submission-list dd code {
  display: block;
}

.checklist-sheet {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.checklist-items {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: checklist;
}

.checklist-items li {
  position: relative;
  padding: 18px 20px 18px 46px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  counter-increment: checklist;
}

.checklist-items li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-dark);
  content: "";
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 46px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 11px;
}

.breadcrumbs svg {
  width: 13px;
  height: 13px;
}

.related-stories {
  margin-top: 100px;
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.related-stories > h2 {
  margin-bottom: 34px;
  font-size: 34px;
}

.related-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-image-section figure {
  margin: 0;
}

.about-image-section figcaption {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 12px;
}

[lang="zh-Hans"] body {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

[lang="zh-Hans"] h1,
[lang="zh-Hans"] h2,
[lang="zh-Hans"] h3,
[lang="zh-Hans"] h4 {
  font-family: "PingFang SC", "Microsoft YaHei", var(--display);
}

@media (max-width: 1280px) {
  :root {
    --gutter: 38px;
  }

  .status-strip:has(.print-action) {
    grid-template-columns: 160px minmax(0, 1fr) auto;
  }

  .status-strip:has(.print-action) small {
    grid-column: 2;
    margin-left: 0;
    white-space: normal;
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 42px;
  }

  .site-header {
    min-height: 86px;
    grid-template-columns: 265px 1fr;
  }

  .brand {
    width: 265px;
  }

  .site-nav {
    gap: 17px;
  }

  .nav-links {
    gap: 15px;
  }

  .status-link {
    min-width: 142px;
    padding: 9px 10px;
    font-size: 11px;
  }

  .home-hero h1 {
    font-size: 68px;
  }

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

  .process-list li:nth-child(4) {
    border-left: 0;
  }

  .research-grid.detailed .research-card h3 {
    min-height: 105px;
    font-size: 22px;
  }

  .article-layout {
    gap: 70px;
  }

  .anchor-nav {
    top: 86px;
  }
}

@media (max-width: 1050px) {
  :root {
    --gutter: 28px;
  }

  .status-strip:has(.print-action) {
    grid-template-columns: minmax(140px, auto) minmax(0, 1fr);
  }

  .status-strip:has(.print-action) .print-action {
    grid-column: 1 / -1;
    justify-self: start;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

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

  .brand {
    width: 245px;
  }

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

  .site-nav {
    position: fixed;
    inset: 86px 0 auto;
    display: none;
    max-height: calc(100vh - 86px);
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    overflow-y: auto;
    padding: 30px var(--gutter) 40px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .more-menu {
    grid-column: 1 / -1;
  }

  .more-menu summary {
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    font-weight: 500;
  }

  .more-menu-panel {
    position: static;
    width: auto;
    padding: 0 0 8px;
    border: 0;
    box-shadow: none;
  }

  .more-menu-panel a {
    display: block;
    min-height: 44px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .language-link {
    min-width: 66px;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    font-weight: 500;
  }

  .nav-links a::after {
    display: none;
  }

  .status-link {
    min-width: 0;
    padding: 16px;
    font-size: 13px;
  }

  .home-hero {
    height: min(680px, 72svh);
    min-height: 600px;
  }

  .home-hero-copy {
    width: min(100%, var(--max));
    padding: 64px var(--gutter) 148px;
  }

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

  .home-hero-copy-inner {
    width: min(700px, 82%);
  }

  .home-hero-slide.align-center .home-hero-copy-inner {
    width: min(840px, 88%);
  }

  .home-hero h1,
  .home-hero h2 {
    font-size: 54px;
  }

  .home-carousel-controls {
    right: var(--gutter);
    left: var(--gutter);
  }

  .glance {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .glance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .glance-grid div:nth-child(odd) {
    border-left: 0;
  }

  .section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .split-manifesto,
  .policy-section,
  .funding-teaser,
  .cycle-grid,
  .governance-teaser,
  .translation,
  .funding-summary,
  .application-layout,
  .submission-format,
  .status-empty,
  .contact-guidance {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .relationship-grid,
  .dimension-grid {
    grid-template-columns: 1fr;
  }

  .relationship-grid article,
  .dimension-grid article {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .relationship-grid article:first-child,
  .dimension-grid article:first-child {
    border-top: 0;
  }

  .dimension-grid article {
    border-color: rgba(255, 255, 255, 0.25);
  }

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

  .news-card.featured,
  .forum-teaser,
  .about-teaser,
  .about-image-section,
  .scholars-announcement-panel,
  .home-scholars-announcement {
    grid-template-columns: 1fr;
  }

  .scholars-announcement-panel > img,
  .home-scholars-announcement > img {
    height: auto;
  }

  .news-card.featured .news-card-copy {
    padding: 0 32px 36px;
  }

  .inner-hero {
    min-height: 420px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .inner-hero.has-image {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .inner-hero.inner-hero-landscape {
    grid-template-columns: 1fr;
  }

  .inner-hero img {
    max-width: 780px;
  }

  .forum-teaser img,
  .about-teaser img,
  .about-image-section img {
    justify-self: start;
  }

  .anchor-nav {
    top: 92px;
  }

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

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

  .profile-dialog-grid {
    grid-template-columns: 42% 58%;
  }

  .profile-dialog-copy {
    padding: 46px;
  }

  .checklist-sheet {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
  }

  .article-layout aside {
    position: static;
    max-width: 680px;
  }

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

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

  .contact-office-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-administration {
    grid-template-columns: 1fr 1fr;
    gap: 34px 40px;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 20px;
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  .site-header {
    min-height: 72px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .brand {
    width: 220px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    inset: 72px 0 auto;
    max-height: calc(100vh - 72px);
  }

  .nav-actions {
    grid-template-columns: 1fr;
  }

  .language-link {
    justify-content: flex-start;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-hero {
    height: min(610px, 72svh);
    min-height: 560px;
  }

  .home-hero-image {
    object-position: var(--hero-position-mobile, var(--hero-position, center));
  }

  .home-hero-veil {
    background: rgba(250, 248, 242, 0.34);
  }

  .home-hero-copy {
    width: 100%;
    align-items: flex-end;
    padding: 64px var(--gutter) 118px;
  }

  .academic-network .section-heading {
    margin-bottom: 30px;
  }

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

  .academic-network-grid a {
    min-height: 92px;
    padding: 14px;
  }

  .academic-network-grid img {
    height: 48px;
  }

  .home-hero-copy-inner,
  .home-hero-slide.align-center .home-hero-copy-inner,
  .home-hero-slide.align-right .home-hero-copy-inner {
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .home-hero-slide.align-center .actions {
    justify-content: flex-start;
  }

  .home-hero h1,
  .home-hero h2 {
    margin-bottom: 18px;
    font-size: 40px;
    line-height: 1.04;
  }

  .home-hero-copy-inner > p {
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.45;
  }

  .home-hero .eyebrow {
    margin-bottom: 14px;
  }

  .home-carousel-controls {
    right: var(--gutter);
    bottom: 18px;
    left: var(--gutter);
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
  }

  .home-carousel-arrows {
    gap: 5px;
  }

  .home-carousel-arrows button,
  .home-carousel-toggle {
    width: 38px;
    height: 38px;
  }

  .home-carousel-pagination {
    gap: 5px;
  }

  .home-carousel-pagination button {
    height: 38px;
    padding-bottom: 6px;
  }

  .home-carousel-pagination button span {
    font-size: 9px;
  }

  .home-hero .actions {
    width: auto;
  }

  .home-hero .actions .button {
    width: auto;
    min-height: 44px;
    padding: 11px 15px;
    font-size: 12px;
  }

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

  .glance-grid div {
    padding: 0 0 22px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .prose.large p {
    font-size: 17px;
  }

  .research-grid,
  .research-grid.detailed,
  .news-grid,
  .news-index-grid,
  .principles-grid,
  .support-grid,
  .reviewer-grid,
  .criteria-grid,
  .resource-grid,
  .verification-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-method-grid,
  .cycle-milestones,
  .related-story-grid {
    grid-template-columns: 1fr;
  }

  .why-method-grid article {
    min-height: 0;
  }

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

  .cycle-milestones li,
  .cycle-milestones li + li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
  }

  .profile-dialog {
    width: 100vw;
    height: 100dvh;
    max-height: none;
  }

  .profile-dialog-grid {
    display: block;
    min-height: 0;
  }

  .profile-dialog-grid > img,
  .profile-dialog-grid > .portrait-placeholder {
    height: 38vh;
  }

  .profile-dialog-copy {
    padding: 32px 24px 70px;
  }

  .profile-dialog-copy h2 {
    font-size: 32px;
  }

  .scholars-announcement-copy,
  .home-scholars-announcement > div {
    padding: 30px 24px 36px;
  }

  .people-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .people-actions .button {
    width: 100%;
  }

  .research-card-copy {
    padding-left: 42px;
  }

  .research-card h3,
  .research-grid.detailed .research-card h3 {
    min-height: 0;
  }

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

  .process-list li:nth-child(odd) {
    border-left: 0;
  }

  .process-list li:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.28);
  }

  .funding-number {
    font-size: 40px;
  }

  .news-card.featured h3 {
    font-size: 28px;
  }

  .inner-hero {
    min-height: 360px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .inner-hero h1 {
    font-size: 42px;
  }

  .inner-hero .lede {
    font-size: 18px;
  }

  .about-adw-heading .about-adw-logo {
    width: min(54%, 170px);
    margin: 0 0 24px;
  }

  .about-program-heading .about-program-logo {
    width: min(76%, 260px);
    margin: 0 0 24px;
  }

  .status-strip {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .status-strip:has(.print-action) {
    grid-template-columns: 1fr;
  }

  .status-strip:has(.print-action) small,
  .status-strip:has(.print-action) .print-action {
    grid-column: auto;
  }

  .status-strip small {
    margin-left: 0;
    white-space: normal;
  }

  .anchor-nav {
    top: 78px;
  }

  .funding-facts div,
  .submission-list div,
  .timeline-dates li,
  .timeline-simple li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .principle-list,
  .profile-schema {
    grid-template-columns: 1fr;
  }

  .display-amount {
    font-size: 44px;
  }

  .funding-summary dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .selection-steps li {
    grid-template-columns: 48px 1fr;
  }

  .forum-program,
  .article-footer {
    grid-template-columns: 1fr;
  }

  .article-footer-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .article-footer-logo {
    margin-bottom: 26px;
    padding-bottom: 24px;
  }

  .article-footer-logo-program img {
    width: min(100%, 300px);
  }

  .article-footer-logo-adw img {
    width: min(100%, 280px);
  }

  .forum-program article {
    grid-template-columns: 48px 1fr;
  }

  .resource-grid {
    border-left: 0;
  }

  .resource-card {
    grid-template-columns: 34px 1fr 26px;
    border-left: 1px solid var(--line);
  }

  .faq-groups > section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-grid {
    gap: 54px;
  }

  .article {
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .article-header h1 {
    font-size: 40px;
  }

  .article-header .lede {
    font-size: 18px;
  }

  .article-hero {
    margin-bottom: 50px;
  }

  .article-body {
    font-size: 16px;
  }

  .article-body > p:first-child {
    font-size: 19px;
  }

  .article-body h2 {
    font-size: 28px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-administration {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .footer-grid .footer-social-link svg {
    width: 23px;
    height: 23px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .home-hero {
    height: min(590px, 74svh);
    min-height: 540px;
  }

  .home-hero-copy {
    padding: 52px var(--gutter) 112px;
  }

  .home-hero h1,
  .home-hero h2 {
    font-size: 36px;
  }

  .home-hero-copy-inner > p {
    font-size: 16px;
  }

  .home-carousel-pagination button span {
    display: none;
  }

  .home-carousel-pagination button {
    height: 34px;
  }

  .home-carousel-arrows button,
  .home-carousel-toggle {
    width: 36px;
    height: 36px;
  }
}

/* Homepage mission layout. Kept after legacy breakpoints so shared page rules stay intact. */
@media (max-width: 1050px) {
  :root {
    --gutter: 24px;
  }

  .mission-hero {
    min-height: 600px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .mission-hero-grid {
    min-height: 488px;
    gap: 28px;
  }

  .mission-hero h1 {
    font-size: clamp(52px, 6.3vw, 68px);
  }

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

  .home-glance {
    gap: 34px;
  }

  .home-fellowship {
    grid-template-areas:
      "intro"
      "facts"
      "progress"
      "actions";
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-fellowship-progress {
    padding: 32px 0 0;
    border-top: 1px solid var(--home-fellowship-line);
    border-left: 0;
  }

  .home-page .split-manifesto {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-relationship-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 18px;
  }

  .home-page {
    --home-type-module-title: clamp(24px, 7vw, 28px);
    --home-type-editorial: clamp(32px, 8vw, 36px);
  }

  .home-page .split-manifesto h2 {
    font-size: var(--home-type-editorial);
  }

  .section.home-relationship {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .home-relationship-header {
    margin-bottom: 28px;
  }

  .home-relationship-header h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
  }

  .home-relationship-header > p {
    font-size: 16px;
  }

  .home-relationship .relationship-grid article {
    padding: 28px 0 30px;
  }

  .home-relationship .relationship-grid h3 {
    font-size: 22px;
  }

  .mission-hero {
    min-height: 0;
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .mission-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .mission-hero-copy,
  .convergence-field {
    grid-column: 1;
  }

  .mission-hero h1 {
    max-width: 100%;
    margin: 14px 0 22px;
    font-size: clamp(42px, 10.7vw, 48px);
    line-height: 0.98;
  }

  .mission-hero-copy > p {
    font-size: 17px;
    line-height: 1.5;
  }

  .mission-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin: 28px 0 26px;
  }

  .mission-hero-actions .button {
    width: 100%;
  }

  .convergence-field {
    width: 100%;
    max-height: 360px;
    aspect-ratio: 1.1 / 1;
  }

  .home-glance {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .home-glance .glance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .home-glance .glance-grid div,
  .home-glance .glance-grid div:nth-child(odd) {
    min-height: 126px;
    padding: 18px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .home-glance .glance-grid dd {
    font-size: 16px;
  }

  .home-fellowship {
    grid-template-areas:
      "intro"
      "facts"
      "progress"
      "actions";
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home-fellowship-title {
    max-width: 20ch;
    font-size: clamp(24px, 7vw, 28px);
  }

  .home-editorial-heading {
    max-width: 21ch;
    margin-top: 24px;
    margin-bottom: 26px;
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.09;
  }

  .home-fellowship-intro > p:not(.home-fellowship-status):not(.home-editorial-heading) {
    font-size: 16px;
  }

  .home-fellowship-facts {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .home-fellowship-facts div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--home-fellowship-line);
  }

  .home-fellowship-facts dd {
    font-size: 18px;
  }

  .home-fellowship-progress {
    overflow: hidden;
    padding: 30px 0 0;
    border-top: 1px solid var(--home-fellowship-line);
    border-left: 0;
  }

  .home-fellowship-stage-number {
    top: 0;
    font-size: 112px;
  }

  .home-fellowship-progress h3 {
    margin-bottom: 30px;
  }

  .home-fellowship-progress li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 4px 12px;
    padding: 17px 0;
  }

  .home-fellowship-progress li > small {
    grid-column: 2;
    text-align: left;
  }

  .home-fellowship-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-fellowship-actions .button {
    width: 100%;
  }
}

@media (max-width: 1050px) {
  .landing-hero {
    height: calc(100svh - 86px);
  }

  .landing-hero-copy {
    transform: translateY(-52%);
  }

  .landing-hero h1,
  .landing-hero h2 {
    font-size: clamp(52px, 7.4vw, 74px);
  }
}

@media (max-width: 720px) {
  .landing-hero {
    height: calc(100svh - 72px);
    min-height: 680px;
    max-height: 880px;
  }

  .landing-hero-art-light .shape-a {
    top: 11%;
    left: 4%;
    width: 150vw;
  }

  .landing-hero-art-light .shape-b {
    top: -9%;
    left: -58%;
    width: 120vw;
  }

  .landing-hero-art-light .shape-c {
    top: 46%;
    left: -24%;
    width: 145vw;
  }

  .landing-hero-art-light .shape-d {
    bottom: -1%;
    left: -74%;
    width: 150vw;
  }

  .landing-hero-art-light .shape-e {
    top: -2%;
    right: -32%;
  }

  .landing-hero-art-dark .shape-a {
    top: -4%;
    right: -55%;
    width: 150vw;
  }

  .landing-hero-art-dark .shape-b {
    bottom: -4%;
    left: -62%;
    width: 150vw;
  }

  .landing-hero-art-dark .shape-c {
    top: 21%;
    left: -26%;
    width: 100vw;
  }

  .landing-hero-art-dark .shape-d {
    right: -24%;
    bottom: 16%;
    width: 92vw;
  }

  .landing-hero-art-dark .shape-e {
    top: 11%;
    left: 50%;
  }

  .landing-hero-scrim {
    background: linear-gradient(180deg, rgba(247, 244, 237, 0.18), rgba(247, 244, 237, 0.42));
  }

  .landing-hero-copy {
    top: 46%;
    right: var(--gutter);
    bottom: auto;
    left: var(--gutter);
    max-width: none;
    transform: translateY(-50%);
  }

  .landing-hero .eyebrow {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .landing-hero h1,
  .landing-hero h2 {
    max-width: 15ch;
    margin-bottom: 18px;
    font-size: clamp(36px, 9.4vw, 46px);
    line-height: 0.99;
    letter-spacing: -0.035em;
  }

  .landing-hero-copy > p {
    max-width: 36ch;
    font-size: 15px;
    line-height: 1.4;
  }

  .landing-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 300px);
    margin-top: 20px;
  }

  .landing-hero-actions .button {
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
    font-size: 15px;
  }

  .landing-hero-controls {
    right: var(--gutter);
    bottom: 18px;
    left: var(--gutter);
    gap: 8px;
  }

  .landing-hero-arrows {
    gap: 6px;
  }

  .landing-hero-arrows button,
  .landing-hero-pagination button {
    height: 42px;
  }

  .landing-hero-arrows button {
    width: 42px;
  }

  .landing-hero-pagination {
    gap: 6px;
    margin-left: 2px;
  }

  .landing-hero-toggle {
    width: 42px;
    height: 42px;
  }

  .landing-hero-count {
    display: none;
  }
}

@media (max-width: 420px) {
  .landing-hero {
    min-height: 700px;
  }

  .landing-hero-copy {
    top: 45%;
  }

  .landing-hero h1,
  .landing-hero h2 {
    max-width: 14ch;
    font-size: clamp(35px, 9.4vw, 40px);
    line-height: 1;
    text-wrap: balance;
  }

  .landing-hero-copy > p {
    max-width: 34ch;
    font-size: 14px;
  }

  .landing-hero-pagination {
    min-width: 0;
  }

  .landing-hero-pagination button {
    min-width: 0;
    font-size: 11px;
  }
}

/* Configured Home media Hero. */
.landing-hero {
  background: #101010;
  color: #fff;
}

.landing-hero-slide {
  background: #101010;
  transition:
    opacity 750ms ease,
    visibility 750ms;
}

.landing-hero-media,
.landing-hero-media img,
.landing-hero-media video,
.landing-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-hero-media {
  display: block;
  overflow: hidden;
}

.landing-hero-media img,
.landing-hero-media video {
  display: block;
  object-fit: cover;
  object-position: var(--hero-position-desktop, 50% 50%);
}

.landing-hero-scrim,
.landing-hero-slide-dark .landing-hero-scrim {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.58) 0%, rgba(5, 5, 5, 0.24) 46%, rgba(5, 5, 5, 0.36) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.18) 100%);
}

.landing-hero-dynamic-layout,
.landing-hero-fixed-layout {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, var(--max));
  height: 100%;
  margin: 0 auto;
  padding: clamp(46px, 5vw, 72px) var(--gutter) clamp(88px, 7vw, 112px);
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}

.landing-hero-fixed-layout {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.landing-hero-dynamic-copy {
  min-width: 0;
  grid-column: 1;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.landing-hero-slide.is-active .landing-hero-dynamic-copy {
  opacity: 1;
  transform: translateY(0);
}

.landing-hero-theme-label {
  max-width: 42ch;
  margin: 0 0 22px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(13px, 0.78vw, 14px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-wrap: balance;
}

.landing-hero .landing-hero-headline {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: clamp(56px, 5.15vw, 88px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.045em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.landing-hero-panel {
  width: 100%;
  max-width: 540px;
  grid-column: 2;
  justify-self: end;
  padding: clamp(30px, 3.2vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(8, 8, 10, 0.68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
}

.landing-hero-panel-logo {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin-bottom: clamp(34px, 3vw, 48px);
}

.landing-hero .landing-hero-panel-title {
  max-width: 16ch;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(30px, 2.5vw, 42px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.025em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.landing-hero-panel > p {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
}

.landing-hero-panel .landing-hero-actions {
  justify-content: flex-start;
  gap: 10px 20px;
  align-items: center;
  margin-top: 30px;
}

.landing-hero-panel .landing-hero-actions .button {
  min-height: 48px;
  font-size: 15px;
}

.landing-hero-panel .landing-hero-primary {
  border-color: rgba(255, 255, 255, 0.2);
  background: #050505;
  color: #fff;
}

.landing-hero-panel .landing-hero-primary:hover,
.landing-hero-panel .landing-hero-primary:focus-visible {
  border-color: var(--yellow);
  background: #050505;
  color: var(--yellow);
}

.landing-hero-panel .landing-hero-secondary {
  padding-right: 0;
  padding-left: 0;
  border-color: transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
}

.landing-hero-panel .landing-hero-secondary:hover,
.landing-hero-panel .landing-hero-secondary:focus-visible {
  border-color: transparent;
  background: transparent;
  color: var(--yellow);
}

.landing-hero-controls {
  right: auto;
  width: auto;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.54);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.landing-hero-pagination {
  flex: 0 0 auto;
  gap: 4px;
  margin-left: 2px;
}

.landing-hero-pagination button {
  width: 40px;
  flex: 0 0 40px;
  border-color: transparent;
  background: transparent;
  text-align: center;
}

.landing-hero-arrows button,
.landing-hero-toggle {
  border-color: transparent;
  background: transparent;
}

.landing-hero-count {
  min-width: 58px;
}

.landing-hero[data-theme="dark"] .landing-hero-arrows button,
.landing-hero[data-theme="dark"] .landing-hero-pagination button,
.landing-hero[data-theme="dark"] .landing-hero-toggle {
  border-color: transparent;
  background: transparent;
}

@media (max-width: 1050px) {
  .landing-hero-dynamic-layout,
  .landing-hero-fixed-layout {
    padding-top: 42px;
    padding-bottom: 94px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 32px;
  }

  .landing-hero .landing-hero-headline {
    font-size: clamp(46px, 6.2vw, 64px);
  }

  .landing-hero-panel {
    max-width: 430px;
    padding: 28px;
    border-radius: 24px;
  }

  .landing-hero-panel-logo {
    width: min(100%, 230px);
    margin-bottom: 30px;
  }

  .landing-hero .landing-hero-panel-title {
    margin-bottom: 18px;
    font-size: clamp(25px, 3vw, 32px);
  }

  .landing-hero-panel .landing-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 24px;
  }

  .landing-hero-panel .landing-hero-actions .button {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .landing-hero {
    height: auto;
    min-height: max(820px, calc(100svh - 72px));
    max-height: none;
  }

  .landing-hero-track {
    position: relative;
    min-height: inherit;
  }

  .landing-hero-slide {
    min-height: inherit;
  }

  .landing-hero-slide.is-active {
    position: relative;
  }

  .landing-hero-media img,
  .landing-hero-media video {
    object-position: var(--hero-position-mobile, var(--hero-position-desktop, 50% 50%));
  }

  .landing-hero-scrim,
  .landing-hero-slide-dark .landing-hero-scrim {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.52) 0%, rgba(5, 5, 5, 0.26) 40%, rgba(5, 5, 5, 0.58) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.18));
  }

  .landing-hero-dynamic-layout,
  .landing-hero-fixed-layout {
    min-height: inherit;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .landing-hero-dynamic-layout {
    padding: 42px var(--gutter) 0;
    align-items: start;
  }

  .landing-hero-fixed-layout {
    padding: 0 var(--gutter) 92px;
    align-items: end;
  }

  .landing-hero-dynamic-copy {
    grid-column: 1;
  }

  .landing-hero .landing-hero-headline {
    max-width: 12ch;
    font-size: clamp(39px, 10.4vw, 50px);
    line-height: 1.03;
  }

  .landing-hero-theme-label {
    max-width: 34ch;
    margin-bottom: 16px;
    font-size: 13px;
  }

  .landing-hero-panel {
    max-width: none;
    grid-column: 1;
    padding: 24px;
    border-radius: 20px;
  }

  .landing-hero-panel-logo {
    width: min(100%, 210px);
    margin-bottom: 24px;
  }

  .landing-hero .landing-hero-panel-title {
    max-width: 18ch;
    margin-bottom: 16px;
    font-size: clamp(23px, 7vw, 28px);
  }

  .landing-hero-panel > p {
    font-size: 15px;
    line-height: 1.48;
  }

  .landing-hero-panel .landing-hero-actions {
    gap: 6px;
    margin-top: 20px;
  }

  .landing-hero-controls {
    bottom: 16px;
    left: var(--gutter);
    max-width: calc(100% - (var(--gutter) * 2));
  }
}

@media (max-width: 420px) {
  .landing-hero {
    min-height: max(850px, calc(100svh - 72px));
  }

  .landing-hero-dynamic-layout {
    padding-top: 34px;
  }

  .landing-hero-fixed-layout {
    padding-bottom: 84px;
  }

  .landing-hero .landing-hero-headline {
    font-size: clamp(35px, 9.8vw, 41px);
  }

  .landing-hero-panel {
    padding: 21px;
  }

  .landing-hero-panel-logo {
    width: min(100%, 180px);
    margin-bottom: 20px;
  }

  .landing-hero .landing-hero-panel-title {
    font-size: 22px;
  }
}

/* Home Research Areas: local editorial-card alignment. */
.home-research-areas .section-heading {
  align-items: center;
  margin-bottom: 56px;
}

.home-research-areas .section-heading > p {
  margin-bottom: 0;
}

.home-research-areas .research-grid {
  gap: 58px 32px;
}

.home-research-areas .research-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.home-research-areas .research-image {
  margin-bottom: 20px;
}

.home-research-areas .research-card-copy {
  position: static;
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
}

.home-research-areas .research-index {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  padding: 6px 9px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.home-research-areas .research-card:hover .research-index,
.home-research-areas .research-card:focus-within .research-index {
  background: var(--yellow);
  color: var(--ink);
}

.home-research-areas .research-card h3 {
  min-height: 3.54em;
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.18;
}

.home-research-areas .research-card p {
  margin: 0 0 22px;
}

.home-research-areas .research-card .text-link {
  align-self: flex-start;
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
}

.home-research-areas .research-card .text-link::after {
  content: " →";
}

@media (max-width: 1050px) {
  .home-research-areas .research-grid {
    gap: 54px 28px;
  }
}

@media (max-width: 720px) {
  .home-research-areas .section-heading {
    align-items: start;
    margin-bottom: 42px;
  }

  .home-research-areas .research-grid {
    gap: 46px;
  }

  .home-research-areas .research-card h3 {
    min-height: 0;
    font-size: 19px;
  }

  .home-research-areas .research-card .text-link {
    margin-top: 0;
  }
}

@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;
  }

  .convergence-field-canvas {
    transform: none !important;
    will-change: auto;
  }

  .field-strand {
    animation: none !important;
  }

  .field-pulse {
    display: none;
  }

  .landing-hero-slide {
    transition: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .anchor-nav,
  .menu-toggle,
  .actions,
  .print-action,
  .copy-action,
  .more-menu,
  .language-link {
    display: none !important;
  }

  body {
    color: #000;
    font-size: 11pt;
  }

  .section,
  .inner-hero,
  .article {
    max-width: none;
    padding: 24px 0;
  }
}
