:root {
  --ink: #070809;
  --ink-soft: #151718;
  --paper: #f4f4f0;
  --sheet: #ffffff;
  --line: rgba(7, 8, 9, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --muted: #5f666a;
  --red: #e53a32;
  --red-dark: #a92d2a;
  --green: #0a8f80;
  --blue: #2657b8;
  --gold: #b88116;
  --radius: 8px;
  --shadow: 0 24px 72px rgba(10, 14, 16, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

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

img,
canvas {
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 54px;
  color: var(--ink);
  border-bottom: 1px solid rgba(7, 8, 9, 0.08);
  background: rgba(244, 244, 240, 0.92);
  backdrop-filter: blur(18px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    height 220ms ease;
}

.home-page .site-header:not(.is-scrolled):not(.nav-active) {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: transparent;
  background: transparent;
}

.site-header.is-scrolled,
.site-header.nav-active {
  height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 22px;
  font-weight: 860;
}

.brand-logo {
  width: 58px;
  height: 48px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-header.is-scrolled .brand-logo,
.site-header.nav-active .brand-logo {
  width: 54px;
  height: 44px;
}

.home-page .site-header:not(.is-scrolled):not(.nav-active) .brand-logo {
  filter: grayscale(1) invert(1) brightness(1.32);
  opacity: 0.9;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 720;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  opacity: 0.74;
}

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

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #03050d;
}

.home-hero::before {
  position: absolute;
  inset: -4%;
  content: "";
  background:
    linear-gradient(90deg, rgba(1, 3, 10, 0.7), rgba(1, 3, 10, 0.22) 52%, rgba(1, 3, 10, 0.2)),
    url("../img/backgrounds/milky-way-hero.png") center 48% / cover no-repeat;
  filter: saturate(1.04) contrast(1.08) brightness(0.72);
  transform: scale(1.04);
  transform-origin: 58% 48%;
  animation: real-sky-drift 38s ease-in-out infinite alternate;
}

#starfield {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.24;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 72% 44%, rgba(139, 151, 216, 0.08), transparent 42%),
    linear-gradient(90deg, rgba(1, 3, 10, 0.96), rgba(2, 4, 12, 0.62) 42%, rgba(2, 4, 12, 0.08) 78%),
    linear-gradient(0deg, rgba(1, 3, 10, 0.9), rgba(1, 3, 10, 0.32) 48%, transparent 76%);
}

@keyframes real-sky-drift {
  0% {
    transform: scale(1.04) translate3d(-1.8%, -0.6%, 0);
  }

  100% {
    transform: scale(1.1) translate3d(2.2%, 1.2%, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(780px, calc(100% - 48px));
  padding: 180px 0 160px;
  margin-left: 64px;
}

.eyebrow,
.section-kicker,
.artifact-card span,
.preview-card span,
.join-card span,
.row-number {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 840;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-hero h1 {
  margin: 0;
  font-size: 128px;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 23px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 840;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.section {
  padding: 112px 64px;
}

.statement-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 54px;
  align-items: end;
  background: var(--sheet);
}

.statement,
.section-head,
.publication-page,
.research-list {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.statement h2,
.section h2,
.page-hero h1,
.resources-band h2,
.contact-section h2 {
  margin: 0;
  font-size: 60px;
  line-height: 1.02;
  letter-spacing: 0;
}

.statement p:last-child,
.section-note,
.publication-item p,
.artifact-card p,
.preview-card p,
.research-row p,
.large-panel p,
.method-list p,
.page-hero p,
.join-card p,
.contact-section p {
  color: var(--muted);
  line-height: 1.64;
}

.statement p:last-child {
  max-width: 700px;
  font-size: 18px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.metric-strip div {
  min-height: 130px;
  padding: 24px;
  background: #f9f9f6;
}

.metric-strip strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.metric-strip span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.preview-section {
  background: var(--paper);
}

.section-head {
  margin-bottom: 42px;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
}

.preview-grid,
.people-grid,
.artifact-grid,
.join-grid {
  display: grid;
  width: min(1160px, 100%);
  margin: 0 auto;
  gap: 18px;
}

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

.preview-card,
.person-card,
.artifact-card,
.join-card,
.publication-item,
.large-panel,
.method-list div,
.empty-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.preview-card {
  min-height: 292px;
  padding: 28px;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.preview-card:hover,
.artifact-card:hover {
  border-color: rgba(229, 58, 50, 0.34);
  transform: translateY(-4px);
}

.preview-card:nth-child(2) span {
  color: var(--green);
}

.preview-card:nth-child(3) span {
  color: var(--blue);
}

.preview-card:nth-child(4) span {
  color: var(--gold);
}

.preview-card h3,
.person-card h3,
.method-list h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.home-system-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, #080909 0%, #121414 100%),
    var(--ink);
}

.home-system-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent 82%);
}

.home-system-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1160px, 100%);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  margin: 0 auto;
}

.home-system-copy {
  position: sticky;
  top: 108px;
}

.home-system-copy h2 {
  max-width: 640px;
  margin: 0;
}

.home-system-copy p:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.7;
}

.home-system-flow {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.home-system-flow article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 28px;
  min-height: 148px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.home-system-flow span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.home-system-flow h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.home-system-flow p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.64;
}

.publication-page {
  background: var(--sheet);
}

.text-link {
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 840;
}

.publication-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 30px;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 38px;
}

.publication-item h2,
.artifact-card h2,
.join-card h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.16;
}

.resources-band,
.contact-section,
.panel-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  color: #fff;
  background: var(--ink);
}

.resources-band h2,
.contact-section h2,
.large-panel h2 {
  max-width: 820px;
}

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

.page-hero {
  padding: 160px 64px 92px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 244, 240, 0.98)),
    var(--paper);
}

.page-hero h1,
.page-hero p,
.page-hero .eyebrow {
  width: min(980px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.page-hero h1 {
  font-size: 82px;
}

.page-hero p:last-child {
  max-width: 720px;
  margin-top: 24px;
  margin-left: calc((100% - min(980px, 100%)) / 2);
  font-size: 20px;
}

.research-hero,
.join-hero {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 8, 9, 0.98), rgba(19, 22, 23, 0.94)),
    var(--ink);
}

.research-hero p,
.join-hero p {
  color: rgba(255, 255, 255, 0.72);
}

.research-list {
  display: grid;
  gap: 0;
}

.research-row {
  display: grid;
  grid-template-columns: 86px minmax(280px, 0.85fr) minmax(280px, 0.75fr);
  gap: 32px;
  align-items: start;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.research-row:last-child {
  border-bottom: 1px solid var(--line);
}

.research-row h2 {
  font-size: 42px;
}

.row-number {
  color: var(--muted);
}

.research-page-main {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f9f9f5 0, var(--paper) 44%, #f7f7f2 100%),
    var(--paper);
}

.research-landing {
  position: relative;
  padding: 150px 64px 92px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(229, 58, 50, 0.13), transparent 26%),
    linear-gradient(135deg, #060708 0%, #111417 56%, #070809 100%);
}

.research-landing::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 84%);
}

.research-landing::after {
  position: absolute;
  right: -16vw;
  bottom: -22vw;
  width: 48vw;
  height: 48vw;
  min-width: 520px;
  min-height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.research-landing-inner,
.research-focus-head,
.research-focus-grid,
.research-method-panel {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.research-landing-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.52fr);
  gap: 64px;
  align-items: end;
}

.research-landing-copy h1 {
  max-width: 860px;
  margin: 0;
  font-size: 76px;
  line-height: 0.96;
  letter-spacing: 0;
}

.research-landing-copy p:last-of-type {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 19px;
  line-height: 1.65;
}

.research-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.research-anchors a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 820;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.research-anchors a:hover {
  color: #fff;
  border-color: rgba(229, 58, 50, 0.58);
  transform: translateY(-2px);
}

.research-visual {
  position: relative;
  min-height: 330px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.research-visual::before {
  position: absolute;
  inset: 24px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  pointer-events: none;
}

.research-visual-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.research-system {
  position: absolute;
  inset: 74px 26px 28px;
}

.system-axis,
.system-ring {
  position: absolute;
  pointer-events: none;
}

.system-axis {
  background: rgba(255, 255, 255, 0.1);
}

.system-axis-x {
  top: 50%;
  right: 8%;
  left: 8%;
  height: 1px;
}

.system-axis-y {
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
}

.system-ring {
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.system-ring-two {
  inset: 23%;
  border-color: rgba(229, 58, 50, 0.18);
}

.system-core,
.system-node {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
}

.system-core {
  top: 50%;
  left: 50%;
  width: 104px;
  height: 104px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.05;
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.16), transparent 30%),
    #e53a32;
  box-shadow: 0 18px 48px rgba(229, 58, 50, 0.18);
  transform: translate(-50%, -50%);
}

.system-node {
  width: 104px;
  height: 104px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.18;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 8, 17, 0.56);
}

.system-node-world {
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.system-node-multi {
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
}

.system-node-vision {
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.system-node-physical {
  top: 50%;
  left: 1%;
  transform: translateY(-50%);
}

.research-focus-section {
  padding: 112px 64px 28px;
}

.research-focus-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.48fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 34px;
}

.research-focus-head h2,
.research-method-copy h2 {
  margin: 0;
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0;
}

.research-focus-head p:last-child,
.research-method-copy p:last-child,
.research-loop-list p,
.focus-copy {
  color: var(--muted);
  line-height: 1.64;
}

.research-focus-head p:last-child {
  margin: 0;
  font-size: 17px;
}

.research-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.research-focus-card {
  --focus-accent: var(--red);
  position: relative;
  display: grid;
  min-height: 474px;
  padding: 30px;
  overflow: hidden;
  align-content: space-between;
  scroll-margin-top: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 246, 0.9)),
    #fff;
  box-shadow: var(--shadow);
}

.research-focus-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--focus-accent);
}

.research-focus-card::after {
  position: absolute;
  top: -110px;
  right: -110px;
  width: 260px;
  height: 260px;
  content: "";
  border-radius: 50%;
  background: color-mix(in srgb, var(--focus-accent) 12%, transparent);
  pointer-events: none;
}

.focus-world {
  --focus-accent: var(--red);
}

.focus-multimodal {
  --focus-accent: var(--green);
}

.focus-vision {
  --focus-accent: var(--blue);
}

.focus-physical {
  --focus-accent: var(--gold);
}

.focus-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.focus-index {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.focus-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--focus-accent);
  border: 1px solid color-mix(in srgb, var(--focus-accent) 24%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--focus-accent) 7%, #ffffff);
}

.focus-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.focus-label {
  margin: 74px 0 12px;
  color: var(--focus-accent);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.research-focus-card h3 {
  margin: 0;
  font-size: 43px;
  line-height: 0.98;
  letter-spacing: 0;
}

.focus-copy {
  margin: 22px 0 0;
  font-size: 16px;
}

.focus-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.focus-points li {
  min-height: 38px;
  padding: 10px 11px;
  color: rgba(7, 8, 9, 0.72);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.25;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.research-method-section {
  padding: 18px 64px 112px;
}

.research-method-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.research-method-copy {
  padding: 44px;
  background: #fff;
}

.research-method-copy p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 17px;
}

.research-loop-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.research-loop-list div {
  min-height: 210px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 247, 242, 0.92)),
    #fafaf7;
}

.research-loop-list span {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
}

.research-loop-list h3 {
  margin: 46px 0 12px;
  font-size: 26px;
  line-height: 1.1;
}

.research-loop-list p {
  margin: 0;
  font-size: 14px;
}

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

.team-main {
  min-height: 100svh;
  background:
    radial-gradient(circle at 86% 18%, rgba(229, 58, 50, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfbf7, var(--paper));
}

.network-section {
  position: relative;
  padding: 132px 64px 96px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 16%, rgba(45, 63, 99, 0.34), transparent 24%),
    radial-gradient(circle at 18% 28%, rgba(229, 58, 50, 0.13), transparent 22%),
    linear-gradient(135deg, #06080d, #111722 54%, #07090e);
}

.network-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 78%);
}

.network-head,
.network-shell,
.partner-strip {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.network-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.network-head h1 {
  max-width: 780px;
  margin: 0;
  font-size: 76px;
  line-height: 0.95;
  letter-spacing: 0;
}

.network-head p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.65;
}

.network-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 334px;
  gap: 18px;
  align-items: stretch;
}

.network-detail,
.partner-strip div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.map-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.24);
}

.collab-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #050811;
}

.collab-map .leaflet-tile {
  filter: brightness(1.12) contrast(1.1) saturate(0.94);
}

.map-toolbar {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.map-toolbar button {
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-size: 12px;
  font-weight: 820;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 8, 17, 0.66);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.map-toolbar button:hover,
.map-toolbar button.is-active {
  color: #fff;
  border-color: rgba(229, 58, 50, 0.62);
  background: rgba(229, 58, 50, 0.22);
}

.leaflet-container {
  font: inherit;
  background: #050811;
}

.leaflet-control-attribution {
  color: rgba(255, 255, 255, 0.56);
  background: rgba(5, 8, 17, 0.68) !important;
}

.leaflet-control-attribution a {
  color: rgba(255, 255, 255, 0.78);
}

.leaflet-bar {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: var(--radius);
}

.leaflet-bar a {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.14) !important;
  background: rgba(5, 8, 17, 0.78);
}

.leaflet-bar a:hover {
  color: #fff;
  background: rgba(229, 58, 50, 0.32);
}

.country-highlight {
  mix-blend-mode: screen;
  transition:
    fill-opacity 180ms ease,
    opacity 180ms ease;
}

.map-fallback {
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.network-detail {
  display: flex;
  min-height: 510px;
  padding: 30px;
  flex-direction: column;
  justify-content: space-between;
}

.detail-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.network-detail h2 {
  margin: 18px 0 0;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0;
}

.network-detail p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.58;
}

.network-counts {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.network-counts span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 760;
  background: rgba(5, 8, 17, 0.52);
}

.network-counts strong {
  color: #fff;
  font-size: 24px;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.partner-strip div {
  min-height: 124px;
  padding: 20px;
}

.partner-strip span {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 860;
  text-transform: uppercase;
}

.partner-strip p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.55;
}

.partner-logo-wall {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 10px;
  width: min(1240px, 100%);
  margin: 14px auto 0;
}

.partner-logo-card {
  --logo-accent: rgba(229, 58, 50, 0.78);
  position: relative;
  display: grid;
  min-height: 112px;
  overflow: hidden;
  place-items: center;
  padding: 20px 18px;
  border: 1px solid rgba(16, 23, 40, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.92)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 32px rgba(0, 0, 0, 0.16);
}

.partner-logo-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--logo-accent);
}

.partner-logo-card::after {
  position: absolute;
  inset: auto 14px 12px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--logo-accent), transparent);
  opacity: 0.42;
}

.partner-logo-img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.partner-logo-card.is-wide .partner-logo-img {
  max-width: min(100%, 194px);
  max-height: 58px;
}

.partner-logo-card.is-northwestern {
  padding-inline: 8px;
}

.partner-logo-card.is-northwestern .partner-logo-img {
  width: 100%;
  max-width: none;
  height: 68px;
  max-height: 68px;
  object-fit: cover;
  object-position: center;
}

.partner-logo-card.is-seal .partner-logo-img {
  max-width: min(88%, 148px);
  max-height: 74px;
}

.partner-logo-card.is-tall .partner-logo-img {
  max-width: min(78%, 108px);
  max-height: 72px;
}

.partner-logo-card.is-dark {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(25, 31, 48, 0.98), rgba(4, 9, 22, 0.94)),
    rgba(7, 13, 27, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 32px rgba(0, 0, 0, 0.24);
}

.partner-logo-card.is-dark .partner-logo-img {
  max-width: min(100%, 208px);
  max-height: 64px;
}

.partner-logo-card[data-region="hong-kong"] {
  --logo-accent: rgba(229, 58, 50, 0.86);
}

.partner-logo-card[data-region="mainland-china"] {
  --logo-accent: rgba(184, 129, 22, 0.86);
}

.partner-logo-card[data-region="united-states"] {
  --logo-accent: rgba(38, 87, 184, 0.88);
}

.partner-logo-card[data-region="united-kingdom"] {
  --logo-accent: rgba(136, 112, 214, 0.9);
}

.partner-logo-card[data-region="singapore"] {
  --logo-accent: rgba(10, 143, 128, 0.86);
}

.team-showcase {
  width: min(1240px, 100%);
  padding: 138px 64px 116px;
  margin: 0 auto;
}

.team-title-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding-bottom: 32px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.team-title-block h1 {
  margin: 0;
  font-size: 154px;
  line-height: 0.82;
  letter-spacing: 0;
}

.team-title-block .eyebrow {
  align-self: end;
  margin-bottom: 10px;
}

.team-roster {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(348px, auto);
  gap: 18px;
}

.team-member {
  position: relative;
  display: flex;
  min-height: 330px;
  padding: 26px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 244, 0.9)),
    #fff;
  box-shadow: var(--shadow);
}

.team-member::before {
  position: absolute;
  inset: auto 26px 116px 26px;
  height: 1px;
  content: "";
  background: rgba(7, 8, 9, 0.1);
}

.team-member-featured {
  min-height: 348px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(229, 58, 50, 0.24), transparent 28%),
    linear-gradient(135deg, #08090a, #171819 58%, #090a0b);
}

.team-member-featured::before {
  background: rgba(255, 255, 255, 0.16);
}

.member-index {
  color: var(--muted);
  font-size: 12px;
  font-weight: 860;
}

.team-member-featured .member-index {
  color: rgba(255, 255, 255, 0.62);
}

.member-portrait {
  position: absolute;
  top: 54px;
  right: 24px;
  color: rgba(7, 8, 9, 0.045);
  font-size: 132px;
  font-weight: 920;
  line-height: 0.8;
  letter-spacing: 0;
  pointer-events: none;
}

.member-portrait-link {
  pointer-events: auto;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease;
}

.member-portrait-link:hover,
.member-portrait-link:focus-visible {
  color: rgba(7, 8, 9, 0.14);
}

.team-member-featured .member-portrait-link:hover,
.team-member-featured .member-portrait-link:focus-visible {
  color: rgba(255, 255, 255, 0.18);
}

.member-portrait-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}

.team-member-featured .member-portrait {
  top: 54px;
  right: 22px;
  color: rgba(255, 255, 255, 0.09);
  font-size: 150px;
}

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

.member-copy p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.team-member-featured .member-copy p {
  color: rgba(255, 255, 255, 0.62);
}

.member-copy h2 {
  max-width: 460px;
  margin: 0;
  font-size: 40px;
  line-height: 0.96;
  letter-spacing: 0;
}

.team-member-featured .member-copy h2 {
  font-size: 40px;
}

.member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.member-tags span {
  padding: 8px 11px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(7, 8, 9, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
}

.team-member-featured .member-tags span {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

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

.person-card {
  min-height: 248px;
  padding: 28px;
}

.avatar {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 42px;
  place-items: center;
  color: #fff;
  font-weight: 900;
  border-radius: 50%;
  background: var(--red-dark);
}

.avatar-green {
  background: var(--green);
}

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

.avatar-gold {
  background: var(--gold);
}

.panel-section {
  align-items: stretch;
}

.large-panel {
  padding: 42px;
  color: var(--ink);
}

.method-list {
  display: grid;
  gap: 14px;
  color: var(--ink);
}

.method-list div {
  padding: 24px;
}

.publication-page {
  display: grid;
  gap: 22px;
}

.empty-note {
  padding: 38px;
}

.empty-note h2 {
  font-size: 38px;
}

.publications-main {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7f7f2 0, var(--paper) 56%, #fbfbf7 100%),
    var(--paper);
}

.publications-hero {
  position: relative;
  padding: 150px 64px 96px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(229, 58, 50, 0.13), transparent 26%),
    linear-gradient(135deg, #060708 0%, #111417 56%, #070809 100%),
    var(--ink);
}

.publications-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 84%);
}

.publications-hero::after {
  position: absolute;
  right: -18vw;
  bottom: -24vw;
  width: 48vw;
  height: 48vw;
  min-width: 520px;
  min-height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.publications-hero-inner,
.publication-section-head,
.publication-featured-card,
.publication-index {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.publications-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.52fr);
  gap: 64px;
  align-items: end;
}

.publications-hero-copy h1 {
  max-width: 860px;
  margin: 0;
  font-size: 80px;
  line-height: 0.96;
  letter-spacing: 0;
}

.publications-hero-copy p:last-of-type {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 19px;
  line-height: 1.65;
}

.publication-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.publication-anchors a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 820;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.publication-anchors a:hover {
  color: #fff;
  border-color: rgba(229, 58, 50, 0.58);
  transform: translateY(-2px);
}

.publication-record-panel {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 28px;
  min-height: 330px;
  padding: 24px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.publication-record-panel::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.13), transparent 34%),
    radial-gradient(circle at 78% 22%, rgba(229, 58, 50, 0.16), transparent 32%);
}

.publication-record-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 860;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.publication-record-top strong {
  color: #fff;
  font-size: 13px;
}

.publication-record-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.publication-record-list div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.045);
}

.publication-record-list span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.publication-record-list strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.16;
}

.publication-feature-section,
.publication-index-section {
  padding: 104px 64px 0;
}

.publication-index-section {
  padding-bottom: 112px;
}

.publication-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(300px, 0.42fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 28px;
}

.publication-section-head h2 {
  margin: 0;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0;
  scroll-margin-top: 126px;
}

.publication-section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.64;
}

.compact-head {
  grid-template-columns: 1fr;
}

.publication-featured-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 246, 0.88)),
    #fff;
  box-shadow: var(--shadow);
}

.publication-template-card {
  min-height: 360px;
}

.publication-template-card .publication-tags span,
.publication-index-template .index-main p,
.publication-index-template .index-year {
  color: rgba(7, 8, 9, 0.48);
}

.publication-template-block {
  background:
    radial-gradient(circle at 74% 16%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(145deg, #111415, #242829 64%, #5f6465 145%);
}

.publication-template-copy h3,
.publication-index-template h3 {
  color: rgba(7, 8, 9, 0.72);
}

.publication-template-copy > p,
.publication-index-template .index-main span {
  color: rgba(7, 8, 9, 0.58);
}

.publication-year-block {
  display: grid;
  min-width: 0;
  min-height: 100%;
  align-content: space-between;
  gap: 34px;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 74% 16%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(145deg, #090a0b, #171819 56%, #a92d2a 145%);
}

.year-block-meta {
  display: grid;
  width: 100%;
  min-width: 0;
}

.year-block-meta > span {
  font-size: 44px;
  font-weight: 920;
  line-height: 0.95;
}

.year-block-meta > strong {
  align-self: end;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 880;
  text-transform: uppercase;
}

.year-block-meta > em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-style: normal;
  font-weight: 820;
}

.publication-mini-figure {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
}

.mini-figure-head,
.mini-node-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mini-figure-head span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 860;
  text-transform: uppercase;
}

.mini-bar {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.mini-bar-one {
  width: 76%;
}

.mini-bar-two {
  width: 58%;
  background: rgba(229, 58, 50, 0.56);
}

.mini-bar-three {
  width: 88%;
}

.mini-node-row {
  margin-top: 10px;
  justify-content: flex-start;
}

.mini-node-row b {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.publication-feature-copy {
  min-width: 0;
  padding: 42px;
}

.publication-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.publication-tags span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  color: rgba(7, 8, 9, 0.72);
  font-size: 12px;
  font-weight: 820;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.publication-feature-copy h3 {
  max-width: 860px;
  margin: 0;
  font-size: 42px;
  line-height: 1.04;
  letter-spacing: 0;
}

.publication-feature-copy p {
  max-width: 850px;
  color: var(--muted);
  line-height: 1.66;
}

.publication-authors {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 760;
}

.publication-insight-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  gap: 1px;
  overflow: hidden;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.publication-insight-panel div {
  min-height: 132px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 248, 244, 0.72)),
    #fff;
}

.publication-insight-panel span {
  display: block;
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.publication-insight-panel p {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.56;
}

.publication-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.publication-facts div {
  min-height: 96px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.publication-facts span {
  display: block;
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.publication-facts strong {
  display: block;
  margin-top: 20px;
  color: rgba(7, 8, 9, 0.84);
  font-size: 14px;
  line-height: 1.32;
}

.publication-actions,
.index-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.publication-actions {
  margin-top: 28px;
}

.publication-actions a,
.index-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 860;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fafaf7;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.publication-actions a:first-child,
.index-links a:first-child {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.publication-actions a:hover,
.index-links a:hover {
  border-color: rgba(229, 58, 50, 0.4);
  transform: translateY(-2px);
}

.publication-bibtex {
  min-width: 0;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.publication-bibtex summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 16px;
  cursor: pointer;
  list-style: none;
}

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

.publication-bibtex summary span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 880;
}

.publication-bibtex summary strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
}

.publication-bibtex pre {
  max-width: 100%;
  overflow-x: auto;
  padding: 18px;
  margin: 0;
  color: rgba(7, 8, 9, 0.74);
  font:
    12px/1.6 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  border-top: 1px solid var(--line);
  background: rgba(250, 250, 247, 0.92);
}

.publication-index {
  display: grid;
  gap: 14px;
}

.publication-index-row,
.publication-next {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.publication-index-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
}

.index-year {
  color: var(--red-dark);
  font-size: 26px;
  font-weight: 920;
}

.index-main p {
  margin: 0 0 8px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.index-main h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.index-main span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.index-template-links span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: rgba(7, 8, 9, 0.48);
  font-size: 13px;
  font-weight: 860;
  border: 1px dashed rgba(7, 8, 9, 0.18);
  border-radius: 999px;
  background: rgba(250, 250, 247, 0.64);
}

.publication-next {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 246, 0.76)),
    #fff;
}

.publication-next h3 {
  max-width: 760px;
  margin: 0;
  font-size: 30px;
  line-height: 1.16;
  letter-spacing: 0;
}

.resources-main {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8f8f3 0, var(--paper) 54%, #fbfbf7 100%),
    var(--paper);
}

.resources-hero {
  position: relative;
  padding: 154px 64px 88px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(10, 143, 128, 0.13), transparent 25%),
    radial-gradient(circle at 18% 78%, rgba(229, 58, 50, 0.12), transparent 28%),
    linear-gradient(135deg, #060708 0%, #111417 58%, #070809 100%);
}

.resources-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76), transparent 84%);
}

.resources-hero-inner,
.resource-section-head,
.resource-type-grid,
.release-workflow-panel,
.release-standards-head,
.release-standards-grid {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.resources-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.42fr);
  gap: 64px;
  align-items: end;
}

.resources-hero-copy h1 {
  max-width: 900px;
  margin: 0;
  font-size: 76px;
  line-height: 0.96;
  letter-spacing: 0;
}

.resources-hero-copy p:last-of-type {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 19px;
  line-height: 1.65;
}

.resource-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.resource-anchors a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 820;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.resource-anchors a:hover {
  color: #fff;
  border-color: rgba(10, 143, 128, 0.58);
  transform: translateY(-2px);
}

.resource-console {
  position: relative;
  min-height: 386px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.032) 58%, rgba(10, 143, 128, 0.08)),
    rgba(7, 9, 10, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 74px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.resource-console::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 18%, rgba(166, 230, 218, 0.15), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%);
  opacity: 0.76;
}

.console-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-top > span {
  min-width: 0;
  flex: 1;
  font-size: 10px;
  white-space: nowrap;
}

.console-top strong {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: #bcece2;
  font-size: 10px;
  letter-spacing: 0.06em;
  border: 1px solid rgba(166, 230, 218, 0.28);
  border-radius: 999px;
  background: rgba(10, 143, 128, 0.12);
}

.resource-hub-index {
  position: relative;
  z-index: 1;
  margin-top: 34px;
}

.resource-hub-item {
  display: grid;
  min-height: 72px;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.resource-hub-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.resource-hub-item span {
  color: #a6e6da;
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0.08em;
}

.resource-hub-item strong {
  color: #fff;
  font-size: 25px;
  line-height: 1.12;
}

.console-status {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.console-status div {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.console-status span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 840;
  text-transform: uppercase;
}

.console-status strong {
  color: #fff;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.22;
  text-align: right;
}

.resource-types-section,
.release-workflow-section,
.release-standards-section {
  padding: 104px 64px 0;
  scroll-margin-top: 92px;
}

.release-standards-section {
  padding-bottom: 112px;
}

.resource-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.42fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 28px;
}

.resource-section-head h2,
.release-workflow-copy h2,
.release-standards-head h2 {
  margin: 0;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0;
}

.resource-section-head p:last-child,
.release-workflow-copy p:last-child,
.release-steps p,
.release-standards-grid p,
.resource-type-card > span:last-child {
  color: var(--muted);
  line-height: 1.64;
}

.resource-section-head p:last-child {
  margin: 0;
  font-size: 16px;
}

.resource-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.resource-type-card {
  --resource-accent: var(--green);
  position: relative;
  min-height: 390px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 246, 0.88)),
    #fff;
  box-shadow: var(--shadow);
}

.resource-type-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--resource-accent);
}

.resource-type-card::after {
  position: absolute;
  top: -98px;
  right: -98px;
  width: 220px;
  height: 220px;
  content: "";
  border-radius: 50%;
  background: color-mix(in srgb, var(--resource-accent) 10%, transparent);
  pointer-events: none;
}

.resource-code-card {
  --resource-accent: var(--green);
}

.resource-model-card {
  --resource-accent: var(--blue);
}

.resource-data-card {
  --resource-accent: var(--red);
}

.resource-benchmark-card {
  --resource-accent: var(--gold);
}

.resource-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--resource-accent);
  border: 1px solid color-mix(in srgb, var(--resource-accent) 24%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--resource-accent) 7%, #ffffff);
}

.resource-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.resource-type-card p {
  margin: 66px 0 12px;
  color: var(--resource-accent);
  font-size: 12px;
  font-weight: 900;
}

.resource-type-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
}

.resource-type-card > span:last-child {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 22px;
  font-size: 15px;
}

.worldfoundry-section {
  padding: 28px 64px 0;
  scroll-margin-top: 92px;
}

.worldfoundry-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.48fr);
  gap: 1px;
  width: min(1240px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.worldfoundry-copy {
  position: relative;
  min-height: 430px;
  padding: 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(10, 143, 128, 0.12), transparent 26%),
    radial-gradient(circle at 18% 84%, rgba(229, 58, 50, 0.08), transparent 30%),
    #fff;
}

.worldfoundry-copy::after {
  position: absolute;
  right: -70px;
  bottom: -82px;
  width: 280px;
  height: 280px;
  content: "WF";
  color: rgba(7, 8, 9, 0.035);
  font-size: 164px;
  font-weight: 920;
  line-height: 1;
  pointer-events: none;
}

.worldfoundry-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: 64px;
  line-height: 0.96;
  letter-spacing: 0;
}

.worldfoundry-copy > p:last-of-type {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.64;
}

.worldfoundry-tags,
.worldfoundry-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.worldfoundry-tags {
  margin-top: 34px;
}

.worldfoundry-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 860;
  border: 1px solid rgba(10, 143, 128, 0.22);
  border-radius: 999px;
  background: rgba(10, 143, 128, 0.075);
}

.worldfoundry-actions {
  margin-top: 28px;
}

.worldfoundry-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 860;
  white-space: nowrap;
  border-radius: 999px;
  background: var(--ink);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.worldfoundry-actions a:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.worldfoundry-actions a.is-docs {
  color: #07110f;
  background: #a6e6da;
}

.worldfoundry-actions a.is-docs:hover {
  color: #fff;
  background: var(--green);
}

.worldfoundry-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.worldfoundry-release-card {
  display: grid;
  align-content: stretch;
  gap: 1px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(7, 8, 9, 0.96), rgba(20, 24, 26, 0.92)),
    var(--ink);
}

.worldfoundry-card-top,
.worldfoundry-card-row {
  display: grid;
  gap: 10px;
  align-content: center;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.worldfoundry-card-top {
  min-height: 118px;
  background:
    radial-gradient(circle at 86% 18%, rgba(10, 143, 128, 0.2), transparent 36%),
    rgba(255, 255, 255, 0.07);
}

.worldfoundry-card-top span,
.worldfoundry-card-row span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 860;
  text-transform: uppercase;
}

.worldfoundry-card-top strong {
  color: #fff;
  font-size: 30px;
  line-height: 1.06;
}

.worldfoundry-card-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.28;
}

a.worldfoundry-card-row {
  color: inherit;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

a.worldfoundry-card-row:hover {
  border-color: rgba(166, 230, 218, 0.36);
  background: rgba(10, 143, 128, 0.14);
  transform: translateX(3px);
}

.worldfoundry-actions a:focus-visible,
a.worldfoundry-card-row:focus-visible {
  outline: 2px solid #a6e6da;
  outline-offset: 3px;
}

.catalog-preview-section {
  padding: 18px 64px 0;
  scroll-margin-top: 92px;
}

.catalog-preview-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.56fr);
  gap: 1px;
  width: min(1240px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.catalog-preview-copy {
  padding: 44px;
  background:
    radial-gradient(circle at 84% 18%, rgba(10, 143, 128, 0.09), transparent 24%),
    #fff;
}

.catalog-preview-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: 0;
}

.catalog-preview-copy p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.64;
}

.catalog-board {
  display: grid;
  gap: 1px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(7, 8, 9, 0.96), rgba(20, 24, 26, 0.92)),
    var(--ink);
}

.catalog-board-head,
.catalog-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.catalog-board-head {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 860;
  text-transform: uppercase;
}

.catalog-row {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.catalog-row strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.16;
}

.catalog-row p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.catalog-row em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-style: normal;
  font-weight: 860;
  border: 1px solid rgba(10, 143, 128, 0.28);
  border-radius: 999px;
  background: rgba(10, 143, 128, 0.12);
  text-transform: uppercase;
}

.release-workflow-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.release-workflow-copy {
  padding: 44px;
  background: #fff;
}

.release-workflow-copy p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 17px;
}

.release-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.release-steps div {
  min-height: 210px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 247, 242, 0.92)),
    #fafaf7;
}

.release-steps span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.release-steps h3 {
  margin: 46px 0 12px;
  font-size: 26px;
  line-height: 1.1;
}

.release-steps p {
  margin: 0;
  font-size: 14px;
}

.release-standards-head {
  margin-bottom: 28px;
}

.release-standards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.release-standards-grid div {
  --standard-accent: var(--red-dark);
  position: relative;
  min-height: 210px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
  transition: background 180ms ease;
}

.release-standards-grid div:nth-child(2) {
  --standard-accent: var(--blue);
}

.release-standards-grid div:nth-child(3) {
  --standard-accent: var(--green);
}

.release-standards-grid div:nth-child(4) {
  --standard-accent: var(--gold);
}

.release-standards-grid div:hover {
  background: #fff;
}

.release-standards-grid .release-standard-label {
  color: var(--standard-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.release-standards-grid .release-standard-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--standard-accent);
  border: 1px solid color-mix(in srgb, var(--standard-accent) 28%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--standard-accent) 7%, #fff);
  transition: transform 180ms ease;
}

.release-standards-grid div:hover .release-standard-icon {
  transform: translateY(-2px);
}

.release-standard-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.release-standards-grid p {
  margin: 76px 0 0;
  font-size: 15px;
}

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

.artifact-card {
  min-height: 282px;
  padding: 30px;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.artifact-card h2 {
  font-size: 28px;
}

.artifact-featured {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 8, 9, 0.96), rgba(169, 45, 42, 0.9)),
    var(--ink);
}

.artifact-featured p,
.artifact-featured span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  padding: 44px 64px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 880;
}

.footer-logo {
  display: block;
  width: 62px;
  height: 52px;
  margin-bottom: 10px;
  object-fit: contain;
  filter: grayscale(1) invert(1) brightness(1.32);
  opacity: 0.9;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 760;
}

.footer-copyright {
  width: 100%;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0 28px;
  }

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

  .section,
  .page-hero,
  .site-footer {
    padding-right: 34px;
    padding-left: 34px;
  }

  .research-landing,
  .research-focus-section,
  .research-method-section,
  .publications-hero,
  .publication-feature-section,
  .publication-index-section,
  .resources-hero,
  .resource-types-section,
  .worldfoundry-section,
  .catalog-preview-section,
  .release-workflow-section,
  .release-standards-section,
  .join-landing,
  .collaboration-paths-section,
  .join-process-section,
  .join-contact-section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .hero-content {
    margin-left: 34px;
  }

  .statement-section,
  .resources-band,
  .contact-section,
  .panel-section,
  .home-system-shell,
  .research-row {
    grid-template-columns: 1fr;
  }

  .home-system-copy {
    position: static;
  }

  .team-showcase {
    padding: 126px 34px 96px;
  }

  .network-section {
    padding: 118px 34px 86px;
  }

  .network-head,
  .network-shell,
  .research-landing-inner,
  .research-focus-head,
  .research-method-panel,
  .publications-hero-inner,
  .publication-section-head,
  .publication-featured-card,
  .resources-hero-inner,
  .resource-section-head,
  .worldfoundry-panel,
  .catalog-preview-panel,
  .release-workflow-panel,
  .join-landing-inner,
  .join-section-head,
  .join-process-panel,
  .join-contact-inner {
    grid-template-columns: 1fr;
  }

  .research-landing-copy h1 {
    font-size: 64px;
  }

  .publications-hero-copy h1 {
    font-size: 64px;
  }

  .resources-hero-copy h1 {
    font-size: 64px;
  }

  .join-landing-copy h1 {
    font-size: 64px;
  }

  .research-visual {
    min-height: 370px;
  }

  .research-focus-grid {
    grid-template-columns: 1fr;
  }

  .research-focus-card {
    min-height: 420px;
  }

  .publication-record-panel {
    min-height: auto;
  }

  .publication-year-block {
    min-height: 180px;
  }

  .resource-console {
    min-height: auto;
  }

  .resource-type-grid,
  .release-standards-grid,
  .collaboration-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-head h1 {
    font-size: 62px;
  }

  .map-card {
    min-height: 480px;
  }

  .network-detail {
    min-height: auto;
  }

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

  .team-title-block h1 {
    font-size: 116px;
  }

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

  .team-member-featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: 430px;
  }

  .team-member:nth-child(4) {
    grid-column: auto;
  }

  .preview-grid,
  .artifact-grid,
  .people-grid,
  .join-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.nav-active {
    height: 66px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo,
  .site-header.nav-active .brand-logo {
    width: 50px;
    height: 40px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    visibility: hidden;
    pointer-events: none;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f4f4f0;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

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

  .site-nav a {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(7, 8, 9, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

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

  .hero-copy {
    font-size: 19px;
  }

  .statement h2,
  .section h2,
  .resources-band h2,
  .contact-section h2,
  .page-hero h1,
  .research-focus-head h2,
  .research-method-copy h2,
  .publication-section-head h2,
  .resource-section-head h2,
  .release-workflow-copy h2,
  .release-standards-head h2,
  .join-section-head h2,
  .join-process-copy h2,
  .join-contact-inner h2 {
    font-size: 44px;
  }

  .research-landing-copy h1 {
    font-size: 52px;
  }

  .publications-hero-copy h1 {
    font-size: 52px;
  }

  .resources-hero-copy h1 {
    font-size: 52px;
  }

  .join-landing-copy h1 {
    font-size: 52px;
  }

  .research-landing-copy p:last-of-type {
    font-size: 17px;
  }

  .research-focus-card h3 {
    font-size: 38px;
  }

  .publication-feature-copy h3 {
    font-size: 36px;
  }

  .network-head h1 {
    font-size: 52px;
  }

  .map-card {
    min-height: 430px;
  }

  .team-title-block {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .team-title-block h1 {
    font-size: 92px;
  }

  .team-member-featured .member-copy h2 {
    font-size: 52px;
  }

  .split-head,
  .publication-item,
  .publication-index-row {
    grid-template-columns: 1fr;
  }

  .index-links {
    justify-content: flex-start;
  }

}

@media (max-width: 620px) {
  .site-header {
    padding: 0 18px;
  }

  .brand {
    gap: 8px;
  }

  .home-hero {
    min-height: 96svh;
  }

  .hero-content {
    width: calc(100% - 40px);
    padding: 152px 0 300px;
    margin-left: 20px;
  }

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

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

  .section,
  .page-hero,
  .site-footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .research-landing,
  .research-focus-section,
  .research-method-section,
  .publications-hero,
  .publication-feature-section,
  .publication-index-section,
  .resources-hero,
  .resource-types-section,
  .worldfoundry-section,
  .catalog-preview-section,
  .release-workflow-section,
  .release-standards-section,
  .join-landing,
  .collaboration-paths-section,
  .join-process-section,
  .join-contact-section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .join-landing {
    padding-top: 124px;
    padding-bottom: 72px;
  }

  .join-landing-inner {
    gap: 34px;
  }

  .join-landing-copy h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .join-landing-copy p:last-of-type {
    font-size: 16px;
  }

  .join-anchors a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .join-brief {
    min-height: auto;
    padding: 18px;
  }

  .join-brief-core {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .join-brief-core span {
    min-height: 82px;
    padding: 14px;
    font-size: 12px;
  }

  .join-brief-note strong {
    font-size: 16px;
  }

  .collaboration-paths-section,
  .join-process-section {
    padding-top: 78px;
  }

  .join-contact-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .join-section-head {
    gap: 18px;
  }

  .collaboration-path-grid,
  .join-process-list {
    grid-template-columns: 1fr;
  }

  .collaboration-path-card {
    min-height: auto;
    padding: 24px;
  }

  .collaboration-path-card p {
    margin-top: 48px;
  }

  .join-process-copy,
  .join-process-list div,
  .join-contact-inner {
    padding: 26px;
  }

  .join-process-list div {
    min-height: auto;
  }

  .join-process-list h3 {
    margin-top: 28px;
  }

  .join-contact-inner .button {
    width: 100%;
  }

  .resources-hero {
    padding-top: 124px;
    padding-bottom: 72px;
  }

  .resources-hero-inner {
    gap: 34px;
  }

  .resources-hero-copy h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .resources-hero-copy p:last-of-type {
    font-size: 16px;
  }

  .resource-anchors a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .resource-console {
    padding: 18px;
  }

  .console-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .resource-hub-index {
    margin-top: 24px;
  }

  .resource-hub-item {
    min-height: 62px;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .resource-hub-item strong {
    font-size: 22px;
  }

  .console-status {
    gap: 10px;
    margin-top: 24px;
  }

  .console-status div {
    min-height: 30px;
  }

  .resource-types-section,
  .worldfoundry-section,
  .catalog-preview-section,
  .release-workflow-section {
    padding-top: 78px;
  }

  .release-standards-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .resource-section-head {
    gap: 18px;
  }

  .resource-type-grid,
  .release-steps,
  .release-standards-grid {
    grid-template-columns: 1fr;
  }

  .resource-type-card {
    min-height: auto;
    padding: 24px;
  }

  .resource-type-card p {
    margin-top: 48px;
  }

  .catalog-preview-copy,
  .worldfoundry-copy,
  .catalog-board {
    padding: 24px;
  }

  .worldfoundry-copy {
    min-height: auto;
  }

  .worldfoundry-copy h2 {
    font-size: 38px;
    line-height: 1.02;
  }

  .worldfoundry-copy > p:last-of-type {
    font-size: 16px;
  }

  .worldfoundry-release-card {
    padding: 14px;
  }

  .worldfoundry-card-top,
  .worldfoundry-card-row {
    min-height: auto;
  }

  .catalog-preview-copy h2 {
    font-size: 34px;
  }

  .catalog-board-head,
  .catalog-row {
    grid-template-columns: 1fr;
  }

  .catalog-row {
    min-height: auto;
  }

  .release-workflow-copy,
  .release-steps div,
  .release-standards-grid div {
    padding: 26px;
  }

  .release-steps div,
  .release-standards-grid div {
    min-height: auto;
  }

  .release-steps h3 {
    margin-top: 28px;
  }

  .release-standards-grid p {
    margin-top: 42px;
  }

  .publications-hero {
    padding-top: 124px;
    padding-bottom: 72px;
  }

  .publications-hero-inner {
    gap: 34px;
  }

  .publications-hero-copy h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .publications-hero-copy p:last-of-type {
    font-size: 16px;
  }

  .publication-anchors a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .publication-record-panel {
    padding: 22px;
  }

  .publication-record-list div {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
  }

  .publication-facts {
    grid-template-columns: 1fr;
  }

  .publication-facts div {
    min-height: auto;
  }

  .publication-feature-section {
    padding-top: 78px;
  }

  .publication-index-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .publication-section-head {
    gap: 18px;
  }

  .publication-year-block {
    min-height: 152px;
    padding: 26px;
  }

  .year-block-meta > span {
    font-size: 36px;
  }

  .publication-feature-copy {
    padding: 26px;
  }

  .publication-insight-panel,
  .publication-actions,
  .publication-actions a,
  .index-links,
  .index-links a {
    width: 100%;
  }

  .publication-insight-panel {
    grid-template-columns: 1fr;
  }

  .publication-mini-figure {
    padding: 14px;
  }

  .publication-index-row,
  .publication-next {
    padding: 24px;
  }

  .research-landing {
    padding-top: 124px;
    padding-bottom: 72px;
  }

  .research-landing-inner {
    gap: 34px;
  }

  .research-landing-copy h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .research-anchors a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .research-visual {
    min-height: 334px;
    padding: 20px;
  }

  .research-system {
    inset: 64px 20px 22px;
  }

  .system-core {
    width: 82px;
    height: 82px;
    font-size: 13px;
  }

  .system-node {
    width: 86px;
    height: 86px;
    font-size: 10px;
  }

  .research-focus-section {
    padding-top: 78px;
  }

  .research-focus-head {
    gap: 18px;
  }

  .research-focus-grid {
    gap: 14px;
  }

  .research-focus-card {
    min-height: auto;
    padding: 24px;
  }

  .focus-label {
    margin-top: 48px;
  }

  .focus-points,
  .research-loop-list {
    grid-template-columns: 1fr;
  }

  .research-method-section {
    padding-top: 8px;
    padding-bottom: 78px;
  }

  .research-method-copy,
  .research-loop-list div {
    padding: 26px;
  }

  .research-loop-list div {
    min-height: auto;
  }

  .research-loop-list h3 {
    margin-top: 28px;
  }

  .team-showcase {
    padding: 118px 22px 78px;
  }

  .network-section {
    padding: 104px 22px 72px;
  }

  .network-head {
    gap: 24px;
  }

  .network-head h1 {
    font-size: 40px;
  }

  .network-head p:last-child {
    font-size: 15px;
  }

  .map-card {
    min-height: 360px;
  }

  .network-detail {
    padding: 24px;
  }

  .network-detail h2 {
    font-size: 30px;
  }

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

  .team-title-block h1 {
    font-size: 72px;
  }

  .team-roster {
    grid-template-columns: 1fr;
  }

  .team-member,
  .team-member-featured {
    grid-column: auto;
    min-height: 320px;
  }

  .team-member-featured .member-portrait {
    font-size: 146px;
  }

  .member-portrait {
    font-size: 104px;
  }

  .member-copy h2,
  .team-member-featured .member-copy h2 {
    font-size: 36px;
  }

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

  .page-hero {
    padding-top: 132px;
    padding-bottom: 72px;
  }

  .statement h2,
  .section h2,
  .resources-band h2,
  .contact-section h2,
  .page-hero h1,
  .research-focus-head h2,
  .research-method-copy h2,
  .publication-section-head h2,
  .resource-section-head h2,
  .release-workflow-copy h2,
  .release-standards-head h2 {
    font-size: 36px;
  }

  .join-section-head h2,
  .join-process-copy h2,
  .join-contact-inner h2 {
    font-size: 36px;
  }

  .research-focus-card h3 {
    font-size: 34px;
  }

  .publication-feature-copy h3 {
    font-size: 30px;
  }

  .publication-next h3,
  .index-main h3 {
    font-size: 24px;
  }

  .preview-grid,
  .artifact-grid,
  .people-grid,
  .join-grid,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .preview-card,
  .person-card,
  .artifact-card,
  .join-card {
    min-height: auto;
  }

  .home-system-shell {
    gap: 38px;
  }

  .home-system-flow article {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    min-height: auto;
    padding: 24px 0;
  }

  .home-system-flow h3 {
    font-size: 28px;
  }

  .publication-item h2,
  .artifact-card h2,
  .join-card h2 {
    font-size: 25px;
  }

  .site-footer {
    display: grid;
  }
}

.join-main {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8f8f3 0%, #f4f4f0 46%, #fbfbf7 100%),
    var(--paper);
}

.join-landing {
  position: relative;
  padding: 154px 64px 96px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96), rgba(244, 244, 240, 0.82)),
    var(--paper);
}

.join-landing::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 8, 9, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 8, 9, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 84%);
}

.join-landing::after {
  position: absolute;
  right: 64px;
  bottom: 0;
  left: 64px;
  height: 1px;
  content: "";
  background: rgba(7, 8, 9, 0.12);
}

.join-landing-inner,
.join-section-head,
.join-opportunity-grid,
.join-fit-panel,
.join-process-timeline,
.join-proposal-card,
.join-contact-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.join-landing-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.44fr);
  gap: 68px;
  align-items: end;
}

.join-landing-copy h1 {
  max-width: 900px;
  margin: 0;
  font-size: 74px;
  line-height: 0.98;
  letter-spacing: 0;
}

.join-landing-copy p:last-of-type {
  max-width: 760px;
  margin: 28px 0 0;
  color: #4e5558;
  font-size: 19px;
  line-height: 1.68;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.join-landing .button-secondary {
  color: var(--ink);
  border-color: rgba(7, 8, 9, 0.18);
  background: rgba(255, 255, 255, 0.68);
}

.join-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.join-anchors a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: rgba(7, 8, 9, 0.7);
  font-size: 13px;
  font-weight: 820;
  border: 1px solid rgba(7, 8, 9, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.join-anchors a:hover {
  color: var(--ink);
  border-color: rgba(229, 58, 50, 0.36);
  background: #fff;
  transform: translateY(-2px);
}

.join-brief {
  position: relative;
  min-height: 468px;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #0a0d0e;
  box-shadow: 0 30px 90px rgba(10, 14, 16, 0.18);
}

.join-brief::before {
  display: none;
}

.join-brief-top,
.join-brief-statement,
.join-brief-grid,
.join-brief-note {
  position: relative;
  z-index: 1;
}

.join-brief-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 860;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.join-brief-top strong {
  color: #fff;
  font-size: 13px;
}

.join-brief-statement {
  margin-top: 34px;
}

.join-brief-statement span,
.join-brief-grid span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 860;
  text-transform: uppercase;
}

.join-brief-statement strong {
  display: block;
  max-width: 420px;
  margin-top: 12px;
  color: #fff;
  font-size: 28px;
  line-height: 1.16;
}

.join-brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.join-brief-grid div {
  min-height: 112px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.join-brief-grid p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.28;
}

.join-brief-note {
  margin: 18px 0 0;
  padding: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.58;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.join-opportunities-section,
.join-fit-section,
.join-process-section,
.join-proposal-section,
.join-contact-section {
  padding: 108px 64px 0;
  scroll-margin-top: 92px;
}

.join-contact-section {
  padding-bottom: 112px;
}

.join-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.42fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 30px;
}

.join-section-head h2,
.join-fit-copy h2,
.join-proposal-copy h2,
.join-contact-inner h2 {
  margin: 0;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0;
}

.join-section-head p:last-child,
.join-opportunity-card > span:last-child,
.join-fit-copy p,
.join-fit-grid p,
.join-process-timeline p,
.join-proposal-copy p,
.join-proposal-list p,
.join-contact-inner p {
  color: var(--muted);
  line-height: 1.64;
}

.join-section-head p:last-child {
  margin: 0;
  font-size: 16px;
}

.join-opportunity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.join-opportunity-card {
  --join-accent: var(--red);
  position: relative;
  min-height: 360px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 246, 0.9)),
    #fff;
  box-shadow: 0 18px 56px rgba(10, 14, 16, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.join-opportunity-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: var(--join-accent);
}

.join-opportunity-card:hover {
  border-color: color-mix(in srgb, var(--join-accent) 32%, var(--line));
  box-shadow: 0 26px 76px rgba(10, 14, 16, 0.12);
  transform: translateY(-4px);
}

.opportunity-students {
  --join-accent: var(--red);
}

.opportunity-research {
  --join-accent: var(--blue);
}

.opportunity-open {
  --join-accent: var(--green);
}

.opportunity-partner {
  --join-accent: var(--gold);
}

.join-card-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--join-accent);
  border: 1px solid color-mix(in srgb, var(--join-accent) 24%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--join-accent) 7%, #fff);
}

.join-card-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.join-opportunity-card > p {
  margin: 62px 0 12px;
  color: var(--join-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.join-opportunity-card h3 {
  max-width: 560px;
  margin: 0;
  font-size: 31px;
  line-height: 1.08;
}

.join-opportunity-card > span:last-child {
  display: block;
  max-width: 620px;
  margin-top: 22px;
  font-size: 15px;
}

.join-fit-section {
  margin-top: 112px;
  padding-top: 110px;
  padding-bottom: 110px;
  color: #fff;
  background:
    linear-gradient(180deg, #090b0c 0%, #121515 100%),
    var(--ink);
}

.join-fit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.join-fit-copy {
  position: sticky;
  top: 108px;
}

.join-fit-copy p:last-child {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.join-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.join-fit-grid div {
  min-height: 206px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
}

.join-fit-grid span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 900;
}

.join-fit-grid strong {
  display: block;
  margin-top: 42px;
  color: #fff;
  font-size: 22px;
  line-height: 1.12;
}

.join-fit-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.join-process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 18px 56px rgba(10, 14, 16, 0.08);
}

.join-process-timeline div {
  min-height: 286px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 244, 0.92)),
    #fff;
}

.join-process-timeline span {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
}

.join-process-timeline h3 {
  margin: 72px 0 14px;
  font-size: 27px;
  line-height: 1.1;
}

.join-process-timeline p {
  margin: 0;
  font-size: 14px;
}

.join-proposal-section {
  padding-top: 32px;
}

.join-proposal-card {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sheet);
  box-shadow: 0 18px 56px rgba(10, 14, 16, 0.08);
}

.join-proposal-copy {
  padding: 44px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    #0b0d0e;
}

.join-proposal-copy p:last-child {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.join-proposal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.join-proposal-list div {
  min-height: 188px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 250, 246, 0.92)),
    #fff;
}

.join-proposal-list strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.16;
}

.join-proposal-list p {
  margin: 48px 0 0;
  font-size: 14px;
}

.join-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 44px;
  color: #fff;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #070809, #171a1a),
    var(--ink);
  box-shadow: 0 24px 72px rgba(10, 14, 16, 0.16);
}

.join-contact-inner p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.join-contact-actions {
  display: grid;
  min-width: 330px;
  gap: 10px;
}

.contact-link-card {
  display: grid;
  min-height: 74px;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.contact-link-card:hover {
  border-color: rgba(166, 230, 218, 0.42);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.contact-logo-wrap {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
}

.contact-logo-wrap img {
  display: block;
  width: 25px;
  max-height: 25px;
  object-fit: contain;
}

.contact-link-card strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.contact-link-card small {
  display: block;
  min-width: 0;
  margin-top: 4px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-main {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7f7f2 0, var(--paper) 58%, #fbfbf7 100%),
    var(--paper);
}

.news-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  gap: 48px;
  align-items: end;
  padding: 150px 64px 86px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 8, 9, 0.92), rgba(13, 18, 20, 0.96)),
    var(--ink);
}

.news-hero-copy {
  max-width: 900px;
}

.news-hero-copy h1 {
  margin: 0;
  font-size: clamp(56px, 8vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
}

.news-hero-copy > p:last-child {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
  line-height: 1.62;
}

.news-brief {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.news-brief div {
  min-height: 106px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.news-brief div:last-child {
  border-bottom: 0;
}

.news-brief span,
.news-day div > p:first-child {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-brief strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 18px;
  line-height: 1.22;
}

.news-feed-section {
  padding: 104px 64px 116px;
}

.news-feed-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto 26px;
}

.news-feed-head h2 {
  margin: 0;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0;
}

.news-archive {
  display: grid;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.news-month {
  overflow: hidden;
  border: 1px solid rgba(7, 8, 9, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 246, 0.92)),
    #fff;
  box-shadow: 0 18px 50px rgba(10, 14, 16, 0.08);
}

.news-month-summary {
  display: flex;
  width: 100%;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 30px;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
}

.news-month-summary span {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.news-month-summary em {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 840;
  white-space: nowrap;
  border: 1px solid rgba(7, 8, 9, 0.12);
  border-radius: 999px;
  background: rgba(244, 244, 240, 0.78);
}

.news-month-summary::after {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  content: "+";
  border-radius: 50%;
  background: var(--ink);
  transition:
    background 180ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-month.is-open .news-month-summary::after {
  content: "-";
  background: var(--red-dark);
}

.news-month.is-animating .news-month-summary::after {
  transform: rotate(180deg) scale(0.96);
}

.news-month-list {
  display: grid;
  will-change: height, opacity, transform;
  border-top: 1px solid rgba(7, 8, 9, 0.1);
}

.news-month:not(.is-open) .news-month-list {
  display: none;
}

.news-day {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 166px;
  padding: 28px 30px;
  border-bottom: 1px solid rgba(7, 8, 9, 0.08);
}

.news-day:last-child {
  border-bottom: 0;
}

.news-day time {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: #fff;
  border-radius: var(--radius);
  background: var(--ink);
}

.news-day time span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 860;
  line-height: 1;
  letter-spacing: 0.08em;
}

.news-day time strong {
  margin-top: -8px;
  font-size: 28px;
  line-height: 1;
}

.news-day div > p:first-child {
  color: var(--muted);
}

.news-day h3 {
  max-width: 720px;
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: 0;
}

.news-day div > p:last-child {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.64;
}

.news-day a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 840;
  white-space: nowrap;
  border-radius: 999px;
  background: var(--ink);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.news-day a:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.news-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .news-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-right: 34px;
    padding-left: 34px;
  }

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

  .news-brief div {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .news-brief div:last-child {
    border-right: 0;
  }

  .news-feed-section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .news-day {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .news-day a,
  .news-links {
    justify-self: start;
    grid-column: 2;
  }

  .news-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .news-hero {
    padding: 124px 22px 70px;
  }

  .news-hero-copy h1 {
    font-size: 50px;
    line-height: 0.94;
  }

  .news-hero-copy > p:last-child {
    font-size: 16px;
  }

  .news-brief {
    grid-template-columns: 1fr;
  }

  .news-brief div,
  .news-brief div:last-child {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .news-brief div:last-child {
    border-bottom: 0;
  }

  .news-feed-section {
    padding: 78px 22px 88px;
  }

  .news-feed-head {
    display: block;
  }

  .news-feed-head h2 {
    font-size: 38px;
  }

  .news-month-summary {
    min-height: 82px;
    padding: 0 22px;
  }

  .news-month-summary span {
    font-size: 26px;
  }

  .news-month-summary em {
    display: none;
  }

  .news-day {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 22px;
  }

  .news-day h3 {
    font-size: 24px;
  }

  .news-day a,
  .news-links {
    grid-column: auto;
    justify-self: start;
  }

  .news-links {
    justify-content: flex-start;
  }
}

@media (max-width: 1100px) {
  .join-landing,
  .join-opportunities-section,
  .join-fit-section,
  .join-process-section,
  .join-proposal-section,
  .join-contact-section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .join-landing-inner,
  .join-section-head,
  .join-fit-panel,
  .join-proposal-card,
  .join-contact-inner {
    grid-template-columns: 1fr;
  }

  .join-landing-copy h1 {
    font-size: 62px;
  }

  .join-brief {
    min-height: auto;
  }

  .join-fit-copy {
    position: static;
  }

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

  .join-contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .join-landing-copy h1 {
    font-size: 50px;
  }

  .join-section-head h2,
  .join-fit-copy h2,
  .join-proposal-copy h2,
  .join-contact-inner h2 {
    font-size: 42px;
  }

  .join-opportunity-grid,
  .join-fit-grid,
  .join-proposal-list {
    grid-template-columns: 1fr;
  }

  .join-opportunity-card,
  .join-process-timeline div {
    min-height: auto;
  }

  .join-process-timeline h3 {
    margin-top: 52px;
  }
}

@media (max-width: 620px) {
  .join-landing,
  .join-opportunities-section,
  .join-fit-section,
  .join-process-section,
  .join-proposal-section,
  .join-contact-section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .join-landing {
    padding-top: 124px;
    padding-bottom: 72px;
  }

  .join-landing::after {
    right: 22px;
    left: 22px;
  }

  .join-landing-inner {
    gap: 34px;
  }

  .join-landing-copy h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .join-landing-copy p:last-of-type {
    font-size: 16px;
  }

  .join-actions,
  .join-actions .button,
  .join-contact-actions,
  .contact-link-card {
    width: 100%;
  }

  .join-contact-actions {
    min-width: 0;
  }

  .join-anchors a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .join-brief,
  .join-opportunity-card,
  .join-proposal-copy,
  .join-proposal-list div,
  .join-contact-inner {
    padding: 24px;
  }

  .join-brief-statement strong {
    font-size: 23px;
  }

  .join-brief-grid,
  .join-process-timeline {
    grid-template-columns: 1fr;
  }

  .join-opportunities-section,
  .join-process-section {
    padding-top: 78px;
  }

  .join-fit-section {
    margin-top: 78px;
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .join-contact-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .join-section-head {
    gap: 18px;
  }

  .join-section-head h2,
  .join-fit-copy h2,
  .join-proposal-copy h2,
  .join-contact-inner h2 {
    font-size: 36px;
  }

  .join-opportunity-card > p {
    margin-top: 48px;
  }

  .join-opportunity-card h3 {
    font-size: 26px;
  }

  .join-fit-grid div {
    min-height: auto;
    padding: 24px;
  }

  .join-fit-grid strong {
    margin-top: 32px;
  }

  .join-process-timeline div {
    padding: 26px;
  }

  .join-process-timeline h3 {
    margin-top: 30px;
  }

  .join-proposal-section {
    padding-top: 0;
  }

  .join-proposal-list p {
    margin-top: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Join Us — editorial research-community redesign */
body.join-page {
  background: #f4f4f0;
}

.join-page .site-header:not(.is-scrolled):not(.nav-active) {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 7, 8, 0.48);
  backdrop-filter: blur(16px);
}

.join-page .site-header:not(.is-scrolled):not(.nav-active) .brand-logo {
  filter: grayscale(1) invert(1) brightness(1.36);
  opacity: 0.94;
}

.join-page .join-main {
  overflow: hidden;
  background: #f4f4f0;
}

.join-page .join-landing {
  position: relative;
  min-height: auto;
  padding: 101px 64px 0;
  overflow: hidden;
  color: #fff;
  background: #080a0b;
}

.join-page .join-landing::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.72) 78%, transparent 100%);
}

.join-page .join-landing::after {
  position: absolute;
  inset: 0;
  height: auto;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 39%, rgba(229, 58, 50, 0.09), transparent 24%),
    linear-gradient(90deg, rgba(8, 10, 11, 0.18), transparent 42%);
}

.join-page .join-landing-inner,
.join-page .join-section-head,
.join-page .join-opportunity-list,
.join-page .join-fit-panel,
.join-page .join-contact-inner,
.join-page .join-formal-note {
  position: relative;
  z-index: 2;
  width: min(1400px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.join-page .join-landing-inner {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: clamp(30px, 4vw, 74px);
  align-items: center;
}

.join-page .join-landing-copy {
  position: relative;
  z-index: 3;
  padding: 26px 0 12px;
}

.join-page .join-landing-copy .eyebrow {
  margin: 0 0 24px;
  color: #f05a50;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.join-page .join-landing-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 4.55vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.join-page .join-landing-copy > p:last-of-type {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.66;
}

.join-page .join-actions {
  margin-top: 32px;
}

.join-page .join-actions .button-primary {
  min-height: 52px;
  padding: 0 26px;
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(229, 58, 50, 0.18);
}

.join-page .join-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 29px;
}

.join-page .join-anchors a {
  display: inline-flex;
  min-height: auto;
  align-items: center;
  gap: 8px;
  padding: 0 0 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 680;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.join-page .join-anchors a:hover {
  color: #fff;
  border-color: #e53a32;
  background: transparent;
  transform: none;
}

.join-page .join-anchors svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #e53a32;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.join-page .join-anchors a:hover svg {
  transform: translateX(3px);
}

.join-network-visual {
  --join-shift-x: 0px;
  --join-shift-y: 0px;
  --join-reveal-y: 0px;
  position: relative;
  min-height: 620px;
  transform: translate3d(var(--join-shift-x), calc(var(--join-shift-y) + var(--join-reveal-y)), 0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.join-network-topline {
  position: absolute;
  z-index: 2;
  inset: 4px 22px auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.join-network-map {
  position: absolute;
  inset: 18px 0 0;
  width: 100%;
  height: calc(100% - 18px);
  overflow: visible;
}

.network-grid-lines {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.network-links {
  fill: none;
  stroke: rgba(255, 255, 255, 0.26);
  stroke-width: 1.15;
}

.network-signals rect {
  fill: #f4f4f0;
  opacity: 0.78;
}

.network-signals rect:nth-child(2),
.network-signals rect:nth-child(6) {
  fill: #e53a32;
}

.network-signals rect:nth-child(3),
.network-signals rect:nth-child(7) {
  fill: #6b9fe8;
}

.network-signals rect:nth-child(4),
.network-signals rect:nth-child(8) {
  fill: #a6e6da;
}

.network-core,
.network-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(12, 15, 17, 0.88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.network-core {
  top: 50%;
  left: 50%;
  width: 132px;
  height: 132px;
  padding: 20px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: #d9473c;
  transform: translate(-50%, -50%);
}

.network-core::before {
  position: absolute;
  inset: -11px;
  content: "";
  border: 1px dashed rgba(229, 58, 50, 0.54);
  border-radius: 50%;
  animation: join-network-spin 28s linear infinite;
}

.network-core img {
  width: 58px;
  height: 50px;
  object-fit: contain;
  filter: grayscale(1) invert(1) brightness(2);
}

.network-core strong {
  margin-top: -8px;
  font-size: 13px;
}

.network-node {
  width: 114px;
  height: 114px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.network-node svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.network-node span {
  margin-top: -10px;
  font-size: 12px;
  font-weight: 790;
  line-height: 1.12;
}

.network-node-world {
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.network-node-multi {
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

.network-node-vision {
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

.network-node-physical {
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes join-network-spin {
  to {
    transform: rotate(360deg);
  }
}

.join-page .join-scope-rail {
  position: relative;
  z-index: 3;
  display: grid;
  width: calc(100% + 128px);
  min-height: 112px;
  grid-template-columns: minmax(300px, 1.35fr) repeat(4, minmax(170px, 1fr));
  margin: 16px -64px 0;
  padding: 0 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(5, 7, 8, 0.56);
}

.join-scope-rail > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 15px;
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.join-scope-rail > div:first-child {
  border-left: 0;
}

.join-scope-rail span {
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.join-scope-rail strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

.join-scope-summary svg {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 1.25;
}

.join-scope-summary span {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.45;
}

.join-page .join-opportunities-section {
  padding: 132px 64px 128px;
  scroll-margin-top: 74px;
  background: #f4f4f0;
}

.join-page .join-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.4fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: end;
  margin-bottom: 64px;
}

.join-page .join-section-head h2,
.join-page .join-fit-copy h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.join-page .join-section-head > p:last-child {
  margin: 0;
  color: #5f666a;
  font-size: 16px;
  line-height: 1.7;
}

.join-opportunity-list {
  border-bottom: 1px solid rgba(7, 8, 9, 0.15);
}

.join-opportunity-row {
  --join-accent: #e53a32;
  display: grid;
  min-height: 194px;
  grid-template-columns: 72px minmax(300px, 0.9fr) minmax(310px, 1fr) 70px;
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
  padding: 34px 20px;
  border-top: 1px solid rgba(7, 8, 9, 0.15);
  transition:
    background 240ms ease,
    transform 240ms ease;
}

.join-opportunity-row:hover {
  background: color-mix(in srgb, var(--join-accent) 4.5%, #fff);
  transform: translateX(8px);
}

.join-opportunity-index {
  align-self: start;
  padding-top: 6px;
  color: var(--join-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.join-opportunity-title > p {
  margin: 0 0 14px;
  color: var(--join-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.join-opportunity-title h3 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.join-opportunity-copy {
  margin: 0;
  color: #5f666a;
  font-size: 15px;
  line-height: 1.68;
}

.join-opportunity-row .join-card-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--join-accent);
  border: 1px solid color-mix(in srgb, var(--join-accent) 32%, transparent);
  border-radius: 50%;
  background: transparent;
}

.join-opportunity-row .join-card-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.join-page .join-fit-section {
  position: relative;
  margin: 0;
  padding: 132px 64px;
  overflow: hidden;
  scroll-margin-top: 66px;
  color: #fff;
  background: #090b0c;
}

.join-page .join-fit-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.15));
}

.join-page .join-fit-panel {
  display: grid;
  grid-template-columns: minmax(340px, 0.56fr) minmax(0, 1fr);
  gap: clamp(60px, 8vw, 126px);
  align-items: start;
}

.join-page .join-fit-copy {
  position: sticky;
  top: 108px;
}

.join-page .join-fit-copy .section-kicker {
  color: #f05a50;
}

.join-page .join-fit-copy h2 {
  color: #fff;
  font-size: clamp(44px, 4.5vw, 64px);
}

.join-page .join-fit-copy > p:last-child {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.72;
}

.join-value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.join-value-list article {
  position: relative;
  min-height: 222px;
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 220ms ease;
}

.join-value-list article::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 4px;
  height: 44px;
  content: "";
  background: #e53a32;
}

.join-value-list article:nth-child(2)::before,
.join-value-list article:nth-child(5)::before {
  background: #477ccc;
}

.join-value-list article:nth-child(3)::before,
.join-value-list article:nth-child(6)::before {
  background: #3aa593;
}

.join-value-list article:nth-child(4)::before {
  background: #c18d25;
}

.join-value-list article:hover {
  background: rgba(255, 255, 255, 0.045);
}

.join-value-list span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.08em;
}

.join-value-list strong {
  display: block;
  margin-top: 46px;
  color: #fff;
  font-size: 23px;
  line-height: 1.12;
}

.join-value-list p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.62;
}

.join-page .join-contact-section {
  padding: 118px 64px 112px;
  scroll-margin-top: 66px;
  background: #f4f4f0;
}

.join-page .join-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: clamp(54px, 8vw, 122px);
  align-items: end;
  padding: 72px 64px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 18%, rgba(229, 58, 50, 0.13), transparent 28%),
    #090b0c;
  box-shadow: 0 32px 90px rgba(7, 8, 9, 0.16);
}

.join-page .join-contact-copy .section-kicker {
  color: #f05a50;
}

.join-page .join-contact-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(68px, 8vw, 116px);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.join-page .join-contact-copy > p:last-child {
  max-width: 750px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.7;
}

.join-page .join-contact-actions {
  display: grid;
  min-width: 0;
  gap: 0;
}

.join-page .contact-link-card {
  display: grid;
  min-height: 94px;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  gap: 16px;
  align-items: center;
  padding: 18px 8px;
  color: #fff;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  transition:
    padding 220ms ease,
    background 220ms ease;
}

.join-page .contact-link-card:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.join-page .contact-link-card:hover {
  padding-right: 14px;
  padding-left: 14px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(229, 58, 50, 0.1);
  transform: none;
}

.join-page .contact-logo-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.join-page .contact-logo-wrap img {
  width: 25px;
  max-height: 25px;
}

.join-page .contact-link-card strong {
  font-size: 16px;
}

.join-page .contact-link-card small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.join-page .contact-link-card > svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 220ms ease;
}

.join-page .contact-link-card:hover > svg {
  transform: translateX(4px);
}

.join-page .join-formal-note {
  margin-top: 22px;
  color: #73797c;
  font-size: 12px;
  line-height: 1.6;
}

.join-page.join-motion-ready [data-join-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.join-page.join-motion-ready [data-join-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.join-page.join-motion-ready .join-network-visual[data-join-reveal] {
  --join-reveal-y: 28px;
  transform: translate3d(var(--join-shift-x), calc(var(--join-shift-y) + var(--join-reveal-y)), 0);
}

.join-page.join-motion-ready .join-network-visual[data-join-reveal].is-visible {
  --join-reveal-y: 0px;
}

.join-value-list article:nth-child(2n) {
  transition-delay: 70ms;
}

@media (max-width: 1180px) {
  .join-page .join-landing-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  }

  .join-page .join-landing-copy h1 {
    font-size: clamp(48px, 5vw, 68px);
  }

  .join-network-visual {
    min-height: 540px;
  }

  .network-node {
    width: 100px;
    height: 100px;
  }

  .network-core {
    width: 118px;
    height: 118px;
  }

  .join-opportunity-row {
    grid-template-columns: 58px minmax(260px, 0.85fr) minmax(280px, 1fr) 64px;
    gap: 26px;
  }
}

@media (max-width: 980px) {
  .join-page .join-landing,
  .join-page .join-opportunities-section,
  .join-page .join-fit-section,
  .join-page .join-contact-section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .join-page .join-landing-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .join-page .join-landing-copy {
    max-width: 780px;
  }

  .join-network-visual {
    width: min(720px, 100%);
    min-height: 560px;
    margin: 0 auto;
  }

  .join-page .join-scope-rail {
    width: calc(100% + 68px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-right: -34px;
    margin-left: -34px;
    padding-right: 34px;
    padding-left: 34px;
  }

  .join-scope-rail > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .join-scope-rail .join-scope-summary {
    grid-column: 1 / -1;
    border-left: 0;
  }

  .join-page .join-section-head,
  .join-page .join-fit-panel,
  .join-page .join-contact-inner {
    grid-template-columns: 1fr;
  }

  .join-page .join-section-head {
    gap: 26px;
  }

  .join-opportunity-row {
    grid-template-columns: 58px minmax(0, 1fr) 64px;
  }

  .join-opportunity-copy {
    grid-column: 2;
  }

  .join-opportunity-row .join-card-icon {
    grid-row: 1 / span 2;
    grid-column: 3;
  }

  .join-page .join-fit-copy {
    position: static;
    max-width: 760px;
  }

  .join-page .join-contact-inner {
    padding: 58px 48px;
  }

  .join-page .join-contact-actions {
    width: min(540px, 100%);
  }
}

@media (max-width: 620px) {
  .join-page .join-landing,
  .join-page .join-opportunities-section,
  .join-page .join-fit-section,
  .join-page .join-contact-section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .join-page .join-landing {
    padding-top: 112px;
  }

  .join-page .join-landing-copy {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .join-page .join-landing-copy .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .join-page .join-landing-copy h1 {
    font-size: clamp(40px, 12vw, 52px);
    line-height: 1;
  }

  .join-page .join-landing-copy > p:last-of-type {
    margin-top: 22px;
    font-size: 16px;
  }

  .join-page .join-actions,
  .join-page .join-actions .button-primary {
    width: 100%;
  }

  .join-page .join-anchors {
    gap: 0 18px;
  }

  .join-page .join-anchors a {
    min-height: auto;
    padding: 0 0 7px;
    font-size: 12px;
  }

  .join-network-visual {
    min-height: 390px;
    margin-top: 10px;
  }

  .join-network-topline {
    right: 0;
    left: 0;
  }

  .network-core {
    width: 90px;
    height: 90px;
    padding: 14px;
  }

  .network-core img {
    width: 43px;
    height: 38px;
  }

  .network-core strong {
    font-size: 10px;
  }

  .network-node {
    width: 76px;
    height: 76px;
    padding: 9px;
  }

  .network-node svg {
    width: 21px;
    height: 21px;
  }

  .network-node span {
    margin-top: -7px;
    font-size: 8.5px;
  }

  .network-node-multi {
    left: 1%;
  }

  .network-node-vision {
    right: 1%;
  }

  .join-page .join-scope-rail {
    display: flex;
    width: calc(100% + 44px);
    min-height: 104px;
    margin-right: -22px;
    margin-left: -22px;
    padding-right: 22px;
    padding-left: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .join-scope-rail > div,
  .join-scope-rail .join-scope-summary {
    min-width: 230px;
    flex: 0 0 230px;
    grid-column: auto;
    padding: 18px;
    scroll-snap-align: start;
    border-bottom: 0;
  }

  .join-scope-rail .join-scope-summary {
    min-width: 300px;
    flex-basis: 300px;
  }

  .join-page .join-opportunities-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .join-page .join-section-head {
    margin-bottom: 46px;
  }

  .join-page .join-section-head h2,
  .join-page .join-fit-copy h2 {
    font-size: 40px;
    line-height: 1;
  }

  .join-opportunity-row {
    min-height: auto;
    grid-template-columns: 1fr auto;
    gap: 22px 18px;
    padding: 30px 0;
  }

  .join-opportunity-row:hover {
    background: transparent;
    transform: none;
  }

  .join-opportunity-index {
    grid-column: 1;
  }

  .join-opportunity-title {
    grid-column: 1 / -1;
  }

  .join-opportunity-title h3 {
    font-size: 28px;
  }

  .join-opportunity-copy {
    grid-column: 1 / -1;
    font-size: 14px;
  }

  .join-opportunity-row .join-card-icon {
    width: 50px;
    height: 50px;
    grid-row: 1;
    grid-column: 2;
  }

  .join-opportunity-row .join-card-icon svg {
    width: 25px;
    height: 25px;
  }

  .join-page .join-fit-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .join-page .join-fit-panel {
    gap: 52px;
  }

  .join-page .join-fit-copy > p:last-child {
    font-size: 15px;
  }

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

  .join-value-list article {
    min-height: 190px;
    padding: 26px 24px;
  }

  .join-value-list article:nth-child(2n) {
    transition-delay: 0ms;
  }

  .join-page .join-contact-section {
    padding-top: 80px;
    padding-bottom: 82px;
  }

  .join-page .join-contact-inner {
    gap: 48px;
    padding: 38px 22px;
  }

  .join-page .join-contact-copy h2 {
    font-size: 66px;
  }

  .join-page .join-contact-copy > p:last-child {
    margin-top: 26px;
    font-size: 15px;
  }

  .join-page .contact-link-card {
    min-height: 82px;
    grid-template-columns: 42px minmax(0, 1fr) 22px;
    gap: 12px;
    padding: 14px 4px;
  }

  .join-page .contact-logo-wrap {
    width: 40px;
    height: 40px;
  }

  .join-page .join-formal-note {
    margin-top: 18px;
  }
}

/* ========================================================================== 
   OpenEnvision visual system refinement · 2026-07
   Scientific editorial × deep-space observatory
   ========================================================================== */

:root {
  --ink: #05070d;
  --ink-soft: #0d111a;
  --paper: #ffffff;
  --sheet: #ffffff;
  --line: rgba(5, 7, 13, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --muted: #626872;
  --red: #f04a3a;
  --red-dark: #c9362c;
  --green: #247f73;
  --blue: #335f9f;
  --gold: #98711c;
  --radius: 6px;
  --shadow: 0 24px 70px rgba(5, 7, 13, 0.08);
  --page-gutter: clamp(22px, 4.45vw, 68px);
  --page-width: 1320px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  background: var(--ink);
  scroll-padding-top: 104px;
}

body {
  overflow-x: hidden;
  background: #fff;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: #fff;
  background: var(--red);
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

/* Floating observatory header */
.site-header,
.site-header.is-scrolled,
.site-header.nav-active,
.join-page .site-header:not(.is-scrolled):not(.nav-active) {
  top: 18px;
  right: 32px;
  left: 32px;
  width: auto;
  height: 76px;
  padding: 0 60px 0 26px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(3, 6, 14, 0.66);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(20px) saturate(125%);
  -webkit-backdrop-filter: blur(20px) saturate(125%);
  transition:
    top 280ms var(--ease-out),
    height 280ms var(--ease-out),
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  top: 10px;
  height: 66px;
  color: var(--ink);
  border-color: rgba(5, 7, 13, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 44px rgba(5, 7, 13, 0.09);
}

.home-page .site-header:not(.is-scrolled):not(.nav-active) {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.2);
  background: rgba(3, 6, 14, 0.64);
}

.brand {
  align-self: stretch;
  gap: 10px;
  padding-right: 30px;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.025em;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .brand,
.site-header.nav-active .brand {
  border-right-color: rgba(5, 7, 13, 0.1);
}

.brand-logo,
.site-header.is-scrolled .brand-logo,
.site-header.nav-active .brand-logo {
  width: 54px;
  height: 44px;
  transition: filter 220ms ease, opacity 220ms ease;
}

.site-header:not(.is-scrolled):not(.nav-active) .brand-logo,
.home-page .site-header:not(.is-scrolled):not(.nav-active) .brand-logo,
.join-page .site-header:not(.is-scrolled):not(.nav-active) .brand-logo {
  filter: grayscale(1) invert(1) brightness(1.32);
  opacity: 0.94;
}

.site-nav {
  width: 100%;
  max-width: 720px;
  flex: 1;
  gap: clamp(18px, 2.25vw, 34px);
  justify-content: space-between;
  margin-left: auto;
  margin-right: 100px;
  font-size: 13px;
  font-weight: 760;
}

.site-nav a {
  padding: 12px 0;
  opacity: 0.76;
}

.site-nav a::after {
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
}

/* Shared typography and controls */
.eyebrow,
.section-kicker,
.artifact-card span,
.preview-card span,
.join-card span,
.row-number {
  margin-bottom: 20px;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker::after,
.eyebrow::after {
  display: inline-block;
  width: 38px;
  height: 1px;
  margin: 0 0 3px 16px;
  content: "";
  background: currentColor;
  opacity: 0.42;
}

.button {
  min-height: 50px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 830;
  letter-spacing: -0.01em;
  border-radius: 999px;
  box-shadow: none;
  transition:
    color 220ms ease,
    transform 220ms var(--ease-out),
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--red);
  box-shadow: 0 14px 38px rgba(240, 74, 58, 0.2);
}

.button-primary:hover {
  background: #ff5847;
  box-shadow: 0 18px 46px rgba(240, 74, 58, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(3, 6, 14, 0.28);
  backdrop-filter: blur(10px);
}

/* Homepage: preserve the Milky Way, improve composition and viewport rhythm */
.home-hero {
  height: clamp(740px, calc(100svh - 28px), 970px);
  min-height: 740px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.home-hero::before {
  inset: -3%;
  background:
    linear-gradient(90deg, rgba(1, 3, 10, 0.88), rgba(1, 3, 10, 0.52) 40%, rgba(1, 3, 10, 0.08) 78%),
    url("../img/backgrounds/milky-way-hero.png") 65% 50% / cover no-repeat;
  filter: saturate(0.93) contrast(1.1) brightness(0.82);
}

.home-hero::after {
  position: absolute;
  bottom: 44px;
  left: 34px;
  z-index: 2;
  width: 246px;
  height: 214px;
  content: "";
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100% 0 0;
  background:
    radial-gradient(circle at 76% 42%, var(--red) 0 3px, rgba(240, 74, 58, 0.25) 4px 7px, transparent 8px),
    repeating-linear-gradient(0deg, transparent 0 11px, rgba(255, 255, 255, 0.16) 11px 12px, transparent 12px 23px) 0 0 / 7px 100% no-repeat;
  opacity: 0.72;
  pointer-events: none;
}

.hero-shade {
  background:
    radial-gradient(ellipse at 76% 46%, rgba(96, 117, 181, 0.05), transparent 42%),
    linear-gradient(90deg, rgba(1, 3, 10, 0.97), rgba(2, 4, 12, 0.68) 42%, rgba(2, 4, 12, 0.05) 82%),
    linear-gradient(0deg, rgba(1, 3, 10, 0.76), transparent 45%);
}

.hero-content {
  display: flex;
  width: min(var(--page-width), calc(100% - (var(--page-gutter) * 2)));
  height: 100%;
  min-height: 100%;
  padding: 130px 0 80px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
}

.home-hero h1 {
  max-width: 100%;
  font-size: clamp(86px, 9.35vw, 148px);
  font-weight: 760;
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 680px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.62;
  letter-spacing: -0.018em;
}

.hero-actions {
  gap: 14px;
  margin-top: 36px;
}

.section {
  padding: 124px var(--page-gutter);
}

.statement-section {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
}

.statement-section::before,
.statement-section::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(5, 7, 13, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.statement-section::before {
  top: 86px;
  right: 8%;
  width: 320px;
  height: 320px;
}

.statement-section::after {
  top: 222px;
  right: 2%;
  width: 250px;
  height: 250px;
  border-color: rgba(240, 74, 58, 0.2);
}

.statement,
.metric-strip {
  position: relative;
  z-index: 1;
  width: min(var(--page-width), 100%);
  margin-inline: auto;
}

.statement {
  max-width: 820px;
  margin-left: max(0px, calc((100% - var(--page-width)) / 2));
}

.statement h2,
.section h2,
.resources-band h2,
.contact-section h2 {
  letter-spacing: -0.045em;
}

.statement h2 {
  max-width: 760px;
  font-size: clamp(54px, 5.25vw, 78px);
  line-height: 0.98;
}

.statement p:last-child {
  max-width: 630px;
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.72;
}

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

.metric-strip div {
  min-height: 112px;
  padding: 28px 24px 0;
  border-bottom: 0;
  border-left: 1px solid var(--line);
}

.metric-strip div:first-child {
  border-left: 0;
}

.metric-strip div::before {
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 18px;
  content: "";
  border: 1px solid var(--red);
  transform: rotate(45deg);
}

.metric-strip strong {
  font-size: 17px;
}

.metric-strip span {
  margin-top: 7px;
  font-size: 13px;
  font-weight: 520;
  text-transform: none;
}

.preview-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.preview-section::before {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 470px;
  height: 470px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 78px rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.preview-section .section-head,
.preview-grid {
  position: relative;
  z-index: 1;
  width: min(var(--page-width), 100%);
  margin-inline: auto;
}

.preview-section .section-head {
  max-width: 760px;
  margin-left: max(0px, calc((100% - var(--page-width)) / 2));
}

.preview-section .section-head h2 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(48px, 4.35vw, 66px);
  line-height: 1.02;
}

.preview-grid {
  display: block;
  margin-top: 68px;
}

.preview-card {
  position: relative;
  display: grid;
  min-height: 126px;
  grid-template-columns: 104px minmax(240px, 0.72fr) minmax(320px, 1fr) 36px;
  gap: 28px;
  align-items: center;
  padding: 26px 16px;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    padding 240ms var(--ease-out),
    background 240ms ease;
}

.preview-card:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.preview-card::after {
  content: "\2192";
  color: var(--red);
  font-size: 27px;
  font-weight: 400;
  transition: transform 240ms var(--ease-out);
}

.preview-card:hover {
  padding-right: 26px;
  padding-left: 26px;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.045);
  transform: none;
}

.preview-card:hover::after {
  transform: translateX(5px);
}

.preview-card span,
.preview-card:nth-child(2) span,
.preview-card:nth-child(3) span,
.preview-card:nth-child(4) span {
  margin: 0;
  color: var(--red);
  font-size: 46px;
  font-weight: 420;
  letter-spacing: -0.06em;
}

.preview-card h3 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.08;
}

.preview-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.6;
}

.home-system-section {
  color: var(--ink);
  background: #fff;
}

.home-system-section::before {
  opacity: 0.35;
}

.home-system-shell {
  width: min(var(--page-width), 100%);
  gap: 92px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-system-copy {
  padding: 48px 0 64px;
}

.home-system-copy h2 {
  font-size: clamp(46px, 4vw, 62px);
}

.home-system-flow {
  gap: 0;
}

.home-system-flow article {
  min-height: 132px;
  grid-template-columns: 58px minmax(0, 1fr);
  padding: 28px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.home-system-flow article:first-child {
  border-top: 0;
}

.home-system-flow span {
  color: var(--red);
}

.resources-band {
  position: relative;
  width: 100%;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(240, 74, 58, 0.12), transparent 46%),
    var(--ink);
}

.resources-band::before {
  position: absolute;
  top: 0;
  right: var(--page-gutter);
  left: var(--page-gutter);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--red) 0 86px, rgba(255, 255, 255, 0.18) 86px);
}

.resources-band h2 {
  color: #fff;
}

.resources-band .button-dark {
  color: var(--ink);
  background: #fff;
}

/* Interior heroes: one coherent deep-space family */
.research-landing,
.publications-hero,
.resources-hero,
.news-hero,
.network-section,
.join-page .join-landing {
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 6, 14, 0.98), rgba(3, 6, 14, 0.87) 50%, rgba(3, 6, 14, 0.36)),
    url("../img/backgrounds/milky-way-hero.png") 82% 50% / cover no-repeat,
    var(--ink);
}

.research-landing,
.publications-hero,
.resources-hero {
  min-height: min(720px, calc(100svh - 28px));
  padding: 164px var(--page-gutter) 96px;
}

.research-landing::before,
.publications-hero::before,
.resources-hero::before,
.network-section::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.6;
  mask-image: linear-gradient(180deg, #000, transparent 88%);
}

.research-landing-inner,
.publications-hero-inner,
.resources-hero-inner,
.network-head,
.network-shell,
.partner-strip,
.partner-logo-wall,
.research-focus-head,
.research-focus-grid,
.research-method-panel,
.publication-section-head,
.publication-featured-card,
.publication-index,
.resource-section-head,
.resource-type-grid,
.worldfoundry-panel,
.catalog-preview-panel,
.release-workflow-panel,
.release-standards-head,
.release-standards-grid {
  width: min(var(--page-width), 100%);
}

.research-landing-inner,
.publications-hero-inner,
.resources-hero-inner {
  min-height: 450px;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.58fr);
  gap: clamp(50px, 6vw, 100px);
  align-items: center;
}

.research-landing-copy h1,
.publications-hero-copy h1,
.resources-hero-copy h1,
.network-head h1,
.news-hero-copy h1,
.join-page .join-landing-copy h1 {
  font-size: clamp(64px, 6.8vw, 104px);
  font-weight: 740;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.research-landing-copy p:last-of-type,
.publications-hero-copy p:last-of-type,
.resources-hero-copy p:last-of-type,
.news-hero-copy > p:last-child,
.join-page .join-landing-copy > p:last-of-type {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.72;
}

.research-anchors,
.publication-anchors,
.resource-anchors,
.join-page .join-anchors {
  gap: 20px 28px;
  margin-top: 38px;
}

.research-anchors a,
.publication-anchors a,
.resource-anchors a,
.join-page .join-anchors a {
  min-height: 34px;
  padding: 0 0 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 780;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0;
  background: transparent;
}

.research-anchors a:hover,
.publication-anchors a:hover,
.resource-anchors a:hover,
.join-page .join-anchors a:hover {
  color: #fff;
  border-color: var(--red);
  background: transparent;
  transform: translateY(-2px);
}

.research-visual,
.publication-record-panel,
.resource-console,
.join-network-visual,
.network-detail {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(3, 6, 14, 0.46);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.research-visual {
  min-height: 410px;
}

.system-core {
  background: var(--red);
  box-shadow: 0 16px 44px rgba(240, 74, 58, 0.2);
}

.system-node {
  background: rgba(3, 6, 14, 0.74);
}

/* True-white editorial content surfaces */
.research-page-main,
.publications-main,
.resources-main,
.team-main,
.news-main {
  background: #fff;
}

.research-focus-section,
.research-method-section,
.publication-feature-section,
.publication-index-section,
.resource-types-section,
.worldfoundry-section,
.catalog-preview-section,
.release-workflow-section,
.release-standards-section,
.news-feed-section,
.team-showcase,
.join-page .join-opportunities-section {
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.research-focus-section,
.publication-feature-section,
.resource-types-section,
.news-feed-section,
.join-page .join-opportunities-section {
  padding-top: 124px;
}

.research-focus-head,
.publication-section-head,
.resource-section-head,
.join-page .join-section-head {
  margin-bottom: 48px;
}

.research-focus-head h2,
.research-method-copy h2,
.publication-section-head h2,
.resource-section-head h2,
.release-workflow-copy h2,
.release-standards-head h2,
.news-feed-head h2,
.join-page .join-section-head h2,
.join-page .join-fit-copy h2 {
  font-size: clamp(46px, 4.25vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.research-focus-card,
.resource-type-card,
.team-member,
.publication-featured-card,
.publication-index-row,
.publication-next,
.worldfoundry-panel,
.catalog-preview-panel,
.release-workflow-panel,
.release-standards-grid,
.join-value-list article,
.join-page .join-contact-inner {
  border-color: var(--line);
  border-radius: 5px;
  background: #fff;
  box-shadow: none;
}

.research-focus-card,
.resource-type-card,
.team-member,
.join-value-list article {
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms var(--ease-out);
}

.research-focus-card:hover,
.resource-type-card:hover,
.team-member:hover,
.join-value-list article:hover {
  border-color: rgba(5, 7, 13, 0.26);
  box-shadow: 0 24px 64px rgba(5, 7, 13, 0.07);
  transform: translateY(-4px);
}

.research-focus-card::after,
.resource-type-card::after {
  display: none;
}

.research-focus-card::before,
.resource-type-card::before {
  height: 2px;
  background: var(--red);
}

.focus-world,
.focus-multimodal,
.focus-vision,
.focus-physical,
.resource-code-card,
.resource-model-card,
.resource-data-card,
.resource-benchmark-card {
  --focus-accent: var(--red);
  --resource-accent: var(--red);
}

.focus-icon,
.resource-icon,
.release-standards-grid .release-standard-icon {
  border-radius: 5px;
  background: rgba(240, 74, 58, 0.05);
}

.focus-points li,
.worldfoundry-tags span,
.publication-tags span,
.index-template-links span {
  border-radius: 4px;
  background: transparent;
}

.research-method-panel,
.release-workflow-panel {
  border-radius: 5px;
  background: var(--line);
}

.research-loop-list div,
.release-steps div,
.release-standards-grid div {
  background: #fff;
}

/* Team: reduce logo-wall noise and improve roster rhythm */
.network-section {
  padding: 154px var(--page-gutter) 104px;
}

.network-head {
  margin-bottom: 46px;
}

.map-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.map-toolbar button {
  min-height: 36px;
  border-radius: 4px;
  background: rgba(3, 6, 14, 0.78);
}

.partner-strip {
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.partner-strip div {
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(3, 6, 14, 0.52);
  box-shadow: none;
}

.partner-strip div:first-child {
  border-left: 0;
}

.partner-logo-wall {
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
}

.partner-logo-card,
.partner-logo-card.is-dark {
  min-height: 104px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.partner-logo-card::before,
.partner-logo-card::after {
  display: none;
}

.team-showcase {
  width: min(calc(var(--page-width) + (var(--page-gutter) * 2)), 100%);
  padding: 128px var(--page-gutter);
}

.team-title-block h1 {
  font-size: clamp(92px, 11vw, 154px);
  letter-spacing: -0.07em;
}

.team-roster {
  gap: 12px;
}

.team-member-featured {
  background:
    linear-gradient(135deg, rgba(240, 74, 58, 0.13), transparent 44%),
    var(--ink);
}

.member-tags span {
  border-radius: 4px;
}

/* Publications and resource library */
.publication-featured-card,
.worldfoundry-panel,
.catalog-preview-panel,
.release-workflow-panel {
  overflow: hidden;
}

.publication-year-block,
.worldfoundry-release-card,
.catalog-board {
  background: var(--ink);
}

.publication-index {
  gap: 10px;
}

.publication-index-row {
  transition:
    border-color 220ms ease,
    transform 220ms var(--ease-out);
}

.publication-index-row:hover {
  border-color: rgba(5, 7, 13, 0.28);
  transform: translateX(4px);
}

.resource-type-grid,
.release-standards-grid {
  gap: 10px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.release-standards-grid div {
  border: 1px solid var(--line);
  border-radius: 5px;
}

/* News archive: editorial chronology */
.news-hero {
  min-height: 660px;
  padding: 164px var(--page-gutter) 96px;
}

.news-hero-copy,
.news-brief,
.news-feed-head,
.news-archive {
  width: min(var(--page-width), 100%);
}

.news-brief {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(3, 6, 14, 0.48);
  box-shadow: none;
  backdrop-filter: blur(15px);
}

.news-feed-section {
  padding-bottom: 128px;
}

.news-month {
  border-color: var(--line);
  border-radius: 5px;
  background: #fff;
  box-shadow: none;
}

.news-month-summary {
  min-height: 78px;
  background: #fff;
}

.news-day {
  padding: 38px 30px;
}

.news-day time strong {
  color: var(--red);
}

.news-day a {
  border-radius: 4px;
}

/* Join page: preserve the network visual, align details with the shared system */
.join-page .join-landing {
  padding-top: 150px;
}

.join-page .join-scope-rail {
  border-top-color: rgba(255, 255, 255, 0.16);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  background: rgba(3, 6, 14, 0.68);
}

.join-opportunity-row {
  border-top-color: var(--line);
}

.join-opportunity-row:last-child {
  border-bottom: 1px solid var(--line);
}

.join-opportunity-row:hover {
  background: rgba(5, 7, 13, 0.025);
}

.join-page .join-fit-section {
  background: var(--ink);
}

.join-page .join-contact-section {
  background: #fff;
}

.join-page .join-contact-inner {
  border: 1px solid var(--line);
}

.join-page .join-landing-copy h1 {
  max-width: 700px;
  font-size: clamp(58px, 5vw, 76px);
  letter-spacing: -0.05em;
}

.join-page .contact-link-card {
  border-bottom-color: var(--line);
}

/* Footer */
.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 64px;
  padding: 72px var(--page-gutter) 34px;
  color: rgba(255, 255, 255, 0.6);
  background: #03060e;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: var(--page-gutter);
  left: var(--page-gutter);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--red) 0 84px, rgba(255, 255, 255, 0.14) 84px);
}

.footer-logo {
  width: 56px;
  height: 46px;
}

.footer-brand {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.footer-links {
  align-items: flex-start;
  gap: 16px 26px;
  padding-top: 10px;
  font-size: 13px;
}

.footer-links a {
  opacity: 0.72;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-links a:hover {
  color: var(--red);
  opacity: 1;
}

.footer-copyright {
  grid-column: 1 / -1;
  padding-top: 28px;
}

/* Progressive reveal; content stays visible without JavaScript */
.motion-ready [data-site-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1180px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.nav-active,
  .join-page .site-header:not(.is-scrolled):not(.nav-active) {
    right: 18px;
    left: 18px;
  }

  .site-nav {
    max-width: 650px;
    gap: 18px;
    margin-right: 0;
    font-size: 12px;
  }

  .brand {
    padding-right: 20px;
  }

  .research-landing-inner,
  .publications-hero-inner,
  .resources-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
    gap: 42px;
  }

  .preview-card {
    grid-template-columns: 82px minmax(220px, 0.7fr) minmax(260px, 1fr) 32px;
    gap: 22px;
  }
}

@media (max-width: 980px) {
  .home-hero {
    height: min(900px, 100svh);
  }

  .home-hero h1 {
    font-size: clamp(70px, 11vw, 108px);
  }

  .statement-section::before,
  .statement-section::after {
    opacity: 0.5;
  }

  .research-landing-inner,
  .publications-hero-inner,
  .resources-hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .research-visual,
  .publication-record-panel,
  .resource-console {
    width: min(680px, 100%);
  }

  .preview-card {
    grid-template-columns: 72px minmax(210px, 0.7fr) minmax(0, 1fr) 28px;
  }

  .home-system-shell {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .partner-strip div:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 84px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.nav-active,
  .join-page .site-header:not(.is-scrolled):not(.nav-active) {
    top: 12px;
    right: 14px;
    left: 14px;
    height: 62px;
    padding: 0 10px 0 16px;
  }

  .brand {
    padding-right: 0;
    font-size: 18px;
    border-right: 0;
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo,
  .site-header.nav-active .brand-logo {
    width: 46px;
    height: 38px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    top: 82px;
    right: 14px;
    left: 14px;
    width: auto;
    max-width: none;
    margin-left: 0;
    padding: 8px 14px;
    color: var(--ink);
    border-color: rgba(5, 7, 13, 0.14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(5, 7, 13, 0.14);
    backdrop-filter: blur(18px);
  }

  .site-nav a {
    padding: 15px 6px;
  }

  .home-hero::after {
    width: 170px;
    height: 148px;
  }

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

  .metric-strip div:nth-child(3) {
    border-left: 0;
  }

  .preview-card {
    grid-template-columns: 58px minmax(0, 1fr) 28px;
    gap: 18px;
  }

  .preview-card p {
    grid-column: 2 / 4;
  }

  .preview-card::after {
    grid-row: 1;
    grid-column: 3;
  }

  .preview-card span {
    font-size: 34px !important;
  }

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

  .footer-copyright {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  .home-hero {
    height: 820px;
    min-height: 820px;
  }

  .home-hero::before {
    background-position: 66% 50%;
  }

  .hero-content {
    width: calc(100% - 44px);
    padding: 118px 0 160px;
    margin: 0 auto;
    justify-content: center;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(48px, 15.3vw, 68px);
    line-height: 0.92;
    letter-spacing: -0.055em;
  }

  .hero-copy {
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: auto;
    min-width: 154px;
    padding-inline: 18px;
  }

  .home-hero::after {
    bottom: 30px;
    left: 20px;
    width: 132px;
    height: 116px;
  }

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

  .statement-section::before {
    top: 46px;
    right: -140px;
  }

  .statement-section::after {
    display: none;
  }

  .statement h2,
  .preview-section .section-head h2,
  .home-system-copy h2 {
    font-size: 42px;
  }

  .statement p:last-child {
    font-size: 16px;
  }

  .metric-strip {
    margin-top: 58px;
  }

  .metric-strip div {
    min-height: 122px;
    padding: 22px 14px 0;
  }

  .preview-grid {
    margin-top: 46px;
  }

  .preview-card {
    min-height: 144px;
    grid-template-columns: 48px minmax(0, 1fr) 24px;
    gap: 14px;
    padding: 24px 2px;
  }

  .preview-card:hover {
    padding-right: 2px;
    padding-left: 2px;
  }

  .preview-card h3 {
    font-size: 23px;
  }

  .preview-card p {
    font-size: 13px;
  }

  .home-system-shell {
    padding: 0;
  }

  .research-landing,
  .publications-hero,
  .resources-hero {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 72px;
  }

  .research-landing-copy h1,
  .publications-hero-copy h1,
  .resources-hero-copy h1,
  .network-head h1,
  .news-hero-copy h1,
  .join-page .join-landing-copy h1 {
    font-size: clamp(48px, 13vw, 64px);
  }

  .research-visual {
    min-height: 340px;
  }

  .research-focus-section,
  .publication-feature-section,
  .resource-types-section,
  .news-feed-section,
  .join-page .join-opportunities-section {
    padding-top: 88px;
  }

  .research-focus-head h2,
  .research-method-copy h2,
  .publication-section-head h2,
  .resource-section-head h2,
  .release-workflow-copy h2,
  .release-standards-head h2,
  .news-feed-head h2,
  .join-page .join-section-head h2,
  .join-page .join-fit-copy h2 {
    font-size: 40px;
  }

  .research-focus-card,
  .resource-type-card {
    padding: 24px;
  }

  .network-section {
    padding-top: 120px;
  }

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

  .team-showcase {
    padding-top: 94px;
  }

  .news-hero {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 74px;
  }

  .news-day {
    padding: 28px 20px;
  }

  .site-footer {
    padding-top: 58px;
    padding-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero::before,
  .motion-ready [data-site-reveal] {
    animation: none;
    transition: none;
    transform: none;
  }

  .motion-ready [data-site-reveal] {
    opacity: 1;
  }
}

/* Team partner identity wall: consistent optical sizing and clear attribution. */
.partner-logo-wall {
  width: min(1180px, 100%);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 156px;
  gap: 12px;
  margin-top: 28px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.partner-logo-card,
.partner-logo-card.is-dark {
  position: relative;
  min-height: 156px;
  height: 156px;
  padding: 20px 20px 52px;
  overflow: hidden;
  border: 1px solid rgba(5, 7, 13, 0.13);
  border-radius: 7px;
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 12px 34px rgba(0, 0, 0, 0.08);
  isolation: isolate;
  transition:
    opacity 240ms ease,
    filter 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms var(--ease-out);
}

.partner-logo-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  display: block;
  width: auto;
  height: 3px;
  content: "";
  background: var(--logo-accent);
}

.partner-logo-card::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: flex;
  min-height: 39px;
  align-items: center;
  padding: 0 17px;
  overflow: hidden;
  color: rgba(5, 7, 13, 0.64);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.04em;
  line-height: 1.15;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: uppercase;
  content: attr(aria-label);
  border-top: 1px solid rgba(5, 7, 13, 0.08);
  background: #f8f9fb;
  opacity: 1;
}

.partner-logo-img,
.partner-logo-card.is-dark .partner-logo-img {
  max-width: min(88%, 190px);
  max-height: 72px;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.02);
  transition:
    filter 240ms ease,
    transform 240ms var(--ease-out);
}

.partner-logo-card.is-wide .partner-logo-img,
.partner-logo-card.is-dark.is-wide .partner-logo-img {
  max-width: min(92%, 200px);
  max-height: 66px;
}

.partner-logo-card.is-seal .partner-logo-img {
  width: auto;
  max-width: 86px;
  max-height: 86px;
}

.partner-logo-card.is-tall .partner-logo-img {
  width: auto;
  max-width: 66px;
  max-height: 84px;
}

.partner-logo-card.is-northwestern {
  padding-inline: 20px;
}

.partner-logo-card.is-northwestern .partner-logo-img {
  width: auto;
  height: auto;
  max-width: min(88%, 190px);
  max-height: 82px;
  object-fit: contain;
  object-position: center;
}

.partner-logo-card:hover {
  z-index: 4;
  border-color: color-mix(in srgb, var(--logo-accent) 48%, rgba(5, 7, 13, 0.14));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.partner-logo-card:hover .partner-logo-img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.035);
}

.partner-logo-card.is-muted {
  opacity: 0.3;
  filter: grayscale(0.64) saturate(0.42);
  transform: scale(0.985);
}

.partner-logo-card.is-highlighted {
  z-index: 2;
  border-color: color-mix(in srgb, var(--logo-accent) 62%, rgba(5, 7, 13, 0.16));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--logo-accent) 16%, transparent),
    0 18px 46px rgba(0, 0, 0, 0.13);
}

@media (max-width: 1180px) {
  .partner-logo-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 152px;
  }

  .partner-logo-card,
  .partner-logo-card.is-dark {
    min-height: 152px;
    height: 152px;
  }
}

@media (max-width: 820px) {
  .partner-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 146px;
    gap: 10px;
  }

  .partner-logo-card,
  .partner-logo-card.is-dark {
    min-height: 146px;
    height: 146px;
    padding: 18px 16px 48px;
  }

  .partner-logo-card::after {
    min-height: 37px;
    padding: 0 13px;
    font-size: 9px;
  }
}

@media (max-width: 620px) {
  .partner-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 140px;
    gap: 8px;
    margin-top: 20px;
  }

  .partner-logo-card,
  .partner-logo-card.is-dark {
    min-height: 140px;
    height: 140px;
    padding: 16px 12px 46px;
    border-radius: 6px;
  }

  .partner-logo-card.is-wide .partner-logo-img,
  .partner-logo-card.is-dark.is-wide .partner-logo-img {
    max-width: 94%;
    max-height: 58px;
  }

  .partner-logo-card.is-seal .partner-logo-img {
    max-width: 72px;
    max-height: 72px;
  }

  .partner-logo-card.is-tall .partner-logo-img {
    max-height: 70px;
  }

  .partner-logo-card.is-northwestern .partner-logo-img {
    max-width: 92%;
    max-height: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-logo-card,
  .partner-logo-img {
    transition: none;
  }
}

/* Join Us — 2026 concept-led refinement */
body.join-page {
  --join-ink: #03060e;
  --join-paper: #ffffff;
  --join-text: #05070d;
  --join-muted: #626a76;
  --join-line: #dfe2e7;
  --join-red: #f04a3a;
  background: var(--join-ink);
}

.join-page .join-main {
  overflow: clip;
  background: var(--join-ink);
}

.join-page .site-header:not(.is-scrolled):not(.nav-active) {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(3, 6, 14, 0.76);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.join-page .join-landing {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  padding: 124px var(--page-gutter) 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 6, 14, 0.98), rgba(3, 6, 14, 0.9) 48%, rgba(3, 6, 14, 0.36)),
    url("../img/backgrounds/milky-way-hero.png") 84% 50% / cover no-repeat,
    var(--join-ink);
}

.join-page .join-landing::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.75;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.82) 88%, transparent 100%);
}

.join-page .join-landing::after {
  background:
    radial-gradient(circle at 76% 43%, rgba(240, 74, 58, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(3, 6, 14, 0.12), transparent 52%);
}

.join-page .join-landing-inner,
.join-page .join-section-head,
.join-page .join-opportunity-list,
.join-page .join-fit-panel,
.join-page .join-contact-inner {
  width: min(1280px, 100%);
}

.join-page .join-landing-inner {
  flex: 1 1 auto;
  min-height: 610px;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(38px, 4vw, 72px);
  align-items: center;
}

.join-page .join-landing-copy {
  padding: 28px 0 46px;
}

.join-page .join-landing-copy h1 {
  max-width: 670px;
  color: #fff;
  font-size: clamp(58px, 5vw, 76px);
  font-weight: 740;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.join-page .join-landing-copy > p:last-of-type {
  max-width: 650px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.72;
}

.join-page .join-actions {
  margin-top: 30px;
}

.join-page .join-actions .button-primary {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: var(--join-red);
  box-shadow: 0 16px 38px rgba(240, 74, 58, 0.18);
}

.join-page .join-actions .button-primary svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 180ms ease;
}

.join-page .join-actions .button-primary:hover svg {
  transform: translateX(4px);
}

.join-page .join-anchors {
  gap: 26px 34px;
  margin-top: 34px;
}

.join-page .join-anchors a {
  min-height: 36px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.join-page .join-network-visual {
  min-height: 620px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.join-page .join-network-topline {
  display: none;
}

.join-page .join-network-map {
  inset: 0;
  height: 100%;
}

.join-page .network-grid-lines {
  stroke: rgba(255, 255, 255, 0.13);
}

.join-page .network-links {
  stroke: rgba(255, 255, 255, 0.38);
}

.join-page .network-core {
  width: 142px;
  height: 142px;
  border-color: rgba(255, 255, 255, 0.6);
  background: #de4d40;
  box-shadow: 0 24px 70px rgba(240, 74, 58, 0.22);
}

.join-page .network-node {
  width: 116px;
  height: 116px;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(3, 6, 14, 0.86);
}

.join-page .join-scope-rail {
  width: calc(100% + (var(--page-gutter) * 2));
  min-height: 112px;
  grid-template-columns: minmax(320px, 1.35fr) repeat(4, minmax(170px, 1fr));
  margin: 0 calc(var(--page-gutter) * -1);
  padding: 0 var(--page-gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 6, 14, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.join-page .join-scope-rail > div {
  padding: 22px 26px;
}

.join-page .join-scope-rail > div:not(.join-scope-summary) {
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.join-page .join-scope-rail > div:not(.join-scope-summary) span {
  color: var(--join-red);
  font-size: 12px;
}

.join-page .join-scope-rail strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.join-page .join-opportunities-section {
  padding: 82px var(--page-gutter) 90px;
  background: var(--join-paper);
}

.join-page .join-section-head {
  grid-template-columns: minmax(0, 1.8fr) minmax(310px, 0.72fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: start;
  margin-bottom: 38px;
}

.join-page .join-section-head h2 {
  max-width: 850px;
  color: var(--join-text);
  font-size: clamp(50px, 4.55vw, 66px);
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.join-page .join-section-head > p:last-child {
  max-width: 430px;
  padding-top: 4px;
  color: var(--join-muted);
  font-size: 16px;
  line-height: 1.68;
}

.join-page .join-opportunity-list {
  border-bottom: 1px solid var(--join-line);
}

.join-page .join-opportunity-row {
  min-height: 140px;
  grid-template-columns: 70px minmax(320px, 0.92fr) minmax(350px, 1fr) 58px;
  gap: clamp(24px, 3.2vw, 54px);
  padding: 22px 20px;
  border-top: 1px solid var(--join-line);
  background: var(--join-paper);
  transition:
    background 200ms ease,
    border-color 200ms ease;
}

.join-page .join-opportunity-row:last-child {
  border-bottom: 0;
}

.join-page .join-opportunity-row:hover {
  background: #fbfbfc;
  transform: none;
}

.join-page .join-opportunity-index,
.join-page .join-opportunity-title > p {
  color: var(--join-red);
}

.join-page .join-opportunity-title > p {
  margin-bottom: 12px;
}

.join-page .join-opportunity-title h3 {
  color: var(--join-text);
  font-size: clamp(25px, 2.15vw, 32px);
  line-height: 1.08;
}

.join-page .join-opportunity-copy {
  color: var(--join-muted);
  font-size: 15px;
  line-height: 1.65;
}

.join-page .join-opportunity-row .join-card-icon {
  width: 50px;
  height: 50px;
  color: var(--join-red);
  border: 0;
  border-radius: 0;
}

.join-page .join-opportunity-row .join-card-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.55;
  transition: transform 200ms ease;
}

.join-page .join-opportunity-row:hover .join-card-icon svg {
  transform: translateX(3px);
}

.join-page .join-fit-section {
  padding: 120px var(--page-gutter);
  color: #fff;
  background: var(--join-ink);
}

.join-page .join-fit-section::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.78;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.48));
}

.join-page .join-fit-panel {
  grid-template-columns: minmax(340px, 0.48fr) minmax(0, 1fr);
  gap: clamp(58px, 7vw, 108px);
}

.join-page .join-fit-copy {
  top: 116px;
}

.join-page .join-fit-copy h2 {
  max-width: 470px;
  color: #fff;
  font-size: clamp(50px, 4.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.join-page .join-fit-copy > p:last-child {
  max-width: 460px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.72;
}

.join-page .join-value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border: 0;
}

.join-page .join-value-list article {
  min-height: 210px;
  padding: 30px 28px 28px;
  color: var(--join-text);
  border: 1px solid var(--join-line);
  border-radius: 6px;
  background: var(--join-paper);
  box-shadow: none;
}

.join-page .join-value-list article::before {
  inset: 0 8px auto;
  width: auto;
  height: 3px;
  border-radius: 0 0 2px 2px;
  background: var(--join-red);
}

.join-page .join-value-list article:nth-child(2)::before,
.join-page .join-value-list article:nth-child(5)::before {
  background: #279f91;
}

.join-page .join-value-list article:nth-child(3)::before {
  background: #426fc2;
}

.join-page .join-value-list article:nth-child(4)::before {
  background: #d39a2a;
}

.join-page .join-value-list article:nth-child(6)::before {
  background: var(--join-red);
}

.join-page .join-value-list article:hover {
  border-color: #c8cdd4;
  background: var(--join-paper);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.join-page .join-value-list span {
  color: var(--join-red);
  font-size: 13px;
}

.join-page .join-value-list article:nth-child(2) span,
.join-page .join-value-list article:nth-child(5) span {
  color: #238c81;
}

.join-page .join-value-list article:nth-child(3) span {
  color: #426fc2;
}

.join-page .join-value-list article:nth-child(4) span {
  color: #b57d13;
}

.join-page .join-value-list strong {
  margin-top: 34px;
  color: var(--join-text);
  font-size: 24px;
  letter-spacing: -0.025em;
}

.join-page .join-value-list p {
  margin-top: 14px;
  color: var(--join-muted);
  font-size: 14px;
  line-height: 1.6;
}

.join-page .join-contact-section {
  position: relative;
  padding: 64px var(--page-gutter);
  overflow: hidden;
  background: var(--join-ink);
}

.join-page .join-contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.68;
}

.join-page .join-contact-inner {
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1fr);
  gap: clamp(60px, 8vw, 118px);
  align-items: start;
  padding: 50px 54px;
  color: var(--join-text);
  border: 1px solid var(--join-line);
  border-radius: 8px;
  background: var(--join-paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.join-page .join-contact-copy .section-kicker {
  margin-bottom: 24px;
  color: var(--join-red);
}

.join-page .join-contact-copy h2 {
  color: var(--join-text);
  font-size: clamp(66px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.join-page .join-contact-copy > p:not(.section-kicker):not(.join-formal-note) {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--join-muted);
  font-size: 16px;
  line-height: 1.7;
}

.join-page .join-contact-inner .join-contact-copy > .join-formal-note:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  padding: 5px 0 5px 18px;
  color: var(--join-muted);
  font-size: 13px;
  line-height: 1.62;
  border-left: 3px solid var(--join-red);
}

.join-page .join-contact-actions {
  width: 100%;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--join-line);
  border-radius: 7px;
  background: var(--join-paper);
}

.join-page .contact-link-card {
  min-height: 116px;
  grid-template-columns: 54px minmax(0, 1fr) 24px;
  gap: 18px;
  padding: 20px 26px;
  color: var(--join-text);
  border: 0;
  border-top: 1px solid var(--join-line);
  background: var(--join-paper);
}

.join-page .contact-link-card:first-child {
  border-top: 0;
}

.join-page .contact-link-card:last-child {
  border-bottom: 0;
}

.join-page .contact-link-card:hover {
  padding-right: 30px;
  padding-left: 30px;
  border-color: var(--join-line);
  background: #fff8f7;
}

.join-page .contact-logo-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f6f7f9;
}

.join-page .contact-logo-wrap img {
  width: 29px;
  max-height: 29px;
}

.join-page .contact-link-card strong {
  color: var(--join-text);
  font-size: 18px;
}

.join-page .contact-link-card small {
  margin-top: 5px;
  color: var(--join-muted);
  font-size: 13px;
}

.join-page .contact-link-card > svg {
  stroke: var(--join-text);
}

.join-page .site-footer {
  padding-top: 58px;
  background: var(--join-ink);
}

.join-page .site-footer::before {
  background: linear-gradient(90deg, var(--join-red) 0 84px, rgba(255, 255, 255, 0.14) 84px);
}

.join-page.join-motion-ready [data-join-reveal] {
  transform: translateY(18px);
  transition:
    opacity 440ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

.join-page .join-actions .button-primary:focus-visible,
.join-page .join-anchors a:focus-visible,
.join-page .contact-link-card:focus-visible {
  outline: 3px solid rgba(240, 74, 58, 0.4);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .join-page .join-landing-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
  }

  .join-page .join-scope-rail {
    grid-template-columns: minmax(280px, 1.2fr) repeat(4, minmax(142px, 1fr));
  }

  .join-page .join-opportunity-row {
    grid-template-columns: 56px minmax(270px, 0.9fr) minmax(300px, 1fr) 50px;
    gap: 24px;
  }
}

@media (max-width: 980px) {
  .join-page .join-landing-inner {
    grid-template-columns: 1fr;
  }

  .join-page .join-landing-copy {
    max-width: 760px;
    padding-bottom: 12px;
  }

  .join-page .join-network-visual {
    width: min(700px, 100%);
    min-height: 540px;
    margin: 0 auto;
  }

  .join-page .join-scope-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .join-page .join-scope-rail .join-scope-summary {
    grid-column: 1 / -1;
  }

  .join-page .join-section-head,
  .join-page .join-fit-panel,
  .join-page .join-contact-inner {
    grid-template-columns: 1fr;
  }

  .join-page .join-section-head {
    gap: 24px;
  }

  .join-page .join-opportunity-row {
    grid-template-columns: 50px minmax(0, 1fr) 54px;
  }

  .join-page .join-opportunity-copy {
    grid-column: 2;
  }

  .join-page .join-opportunity-row .join-card-icon {
    grid-row: 1 / span 2;
    grid-column: 3;
  }

  .join-page .join-fit-copy {
    position: static;
    max-width: 740px;
  }

  .join-page .join-contact-inner {
    padding: 54px 48px;
  }
}

@media (max-width: 620px) {
  .join-page .join-landing {
    min-height: auto;
    padding: 108px 20px 0;
  }

  .join-page .join-landing-copy {
    padding: 24px 0 30px;
  }

  .join-page .join-landing-copy h1 {
    max-width: 100%;
    font-size: clamp(42px, 12.5vw, 52px);
    line-height: 0.99;
  }

  .join-page .join-landing-copy > p:last-of-type {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.68;
  }

  .join-page .join-actions,
  .join-page .join-actions .button-primary {
    width: 100%;
  }

  .join-page .join-anchors {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }

  .join-page .join-network-visual {
    min-height: 380px;
  }

  .join-page .network-core {
    width: 92px;
    height: 92px;
  }

  .join-page .network-node {
    width: 78px;
    height: 78px;
  }

  .join-page .join-scope-rail {
    display: flex;
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .join-page .join-scope-rail > div,
  .join-page .join-scope-rail .join-scope-summary {
    min-width: 220px;
    flex: 0 0 220px;
    grid-column: auto;
    scroll-snap-align: start;
  }

  .join-page .join-scope-rail .join-scope-summary {
    min-width: 286px;
    flex-basis: 286px;
  }

  .join-page .join-opportunities-section,
  .join-page .join-fit-section,
  .join-page .join-contact-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .join-page .join-opportunities-section {
    padding-top: 76px;
    padding-bottom: 82px;
  }

  .join-page .join-section-head {
    margin-bottom: 40px;
  }

  .join-page .join-section-head h2,
  .join-page .join-fit-copy h2 {
    font-size: 40px;
  }

  .join-page .join-section-head > p:last-child,
  .join-page .join-fit-copy > p:last-child {
    font-size: 15px;
  }

  .join-page .join-opportunity-row {
    min-height: auto;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    padding: 28px 0;
  }

  .join-page .join-opportunity-copy {
    grid-column: 2;
  }

  .join-page .join-opportunity-row .join-card-icon {
    display: none;
  }

  .join-page .join-opportunity-title h3 {
    font-size: 25px;
  }

  .join-page .join-fit-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .join-page .join-fit-panel {
    gap: 42px;
  }

  .join-page .join-value-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .join-page .join-value-list article {
    min-height: auto;
    padding: 24px 22px 26px;
  }

  .join-page .join-value-list strong {
    margin-top: 28px;
    font-size: 23px;
  }

  .join-page .join-contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .join-page .join-contact-inner {
    gap: 42px;
    padding: 34px 22px;
  }

  .join-page .join-contact-copy h2 {
    font-size: 52px;
  }

  .join-page .join-contact-copy > p:not(.section-kicker):not(.join-formal-note) {
    font-size: 15px;
  }

  .join-page .contact-link-card {
    min-height: 94px;
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    gap: 13px;
    padding: 16px 14px;
  }

  .join-page .contact-link-card:hover {
    padding-right: 14px;
    padding-left: 14px;
  }

  .join-page .contact-logo-wrap {
    width: 42px;
    height: 42px;
  }

  .join-page .contact-link-card small {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  .join-page.join-motion-ready [data-join-reveal],
  .join-page .join-opportunity-row,
  .join-page .join-value-list article,
  .join-page .contact-link-card {
    transition: none;
  }
}

/* Community — embedded BlogXiv discovery surface */
@media (min-width: 1181px) {
  .site-nav {
    max-width: 820px;
    margin-right: 20px;
  }
}

body.community-page {
  --community-border: rgba(255, 255, 255, 0.16);
  --community-surface: rgba(9, 13, 23, 0.92);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.community-main {
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  padding: 108px 32px 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 0%, rgba(52, 104, 190, 0.18), transparent 29%),
    radial-gradient(circle at 12% 100%, rgba(240, 74, 58, 0.06), transparent 24%),
    var(--ink);
}

.community-shell {
  display: flex;
  width: min(1500px, 100%);
  height: 100%;
  min-height: 0;
  flex-direction: column;
  margin: 0 auto;
}

.community-toolbar {
  position: relative;
  display: flex;
  min-height: 66px;
  flex: 0 0 66px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 20px 0 22px;
  overflow: hidden;
  border: 1px solid var(--community-border);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 34%),
    var(--community-surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.community-toolbar::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95, 141, 231, 0.45), transparent);
  content: "";
}

.community-title-block {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 16px;
}

.community-title-block h1 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.035em;
}

.community-title-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.community-external-link {
  display: inline-flex;
  min-height: 38px;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 780;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.community-external-link:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(240, 74, 58, 0.68);
  background: rgba(240, 74, 58, 0.12);
}

.community-external-link:focus-visible,
.community-mobile-primary:focus-visible,
.community-mobile-links a:focus-visible {
  outline: 2px solid #5f8de7;
  outline-offset: 3px;
}

.community-external-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.community-frame-wrap {
  position: relative;
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
  border: 1px solid var(--community-border);
  border-radius: 0 0 12px 12px;
  background: #f6f9ff;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(95, 141, 231, 0.04);
}

.community-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  border: 0;
  background: #f6f9ff;
  color-scheme: light;
  transition: opacity 260ms ease;
}

.community-frame-wrap.is-loaded .community-frame {
  opacity: 1;
}

.community-frame-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #315b9c;
  background:
    radial-gradient(circle at 50% 42%, rgba(82, 130, 213, 0.12), transparent 30%),
    #f6f9ff;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.community-frame-loading > span:first-child {
  font-size: 30px;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.community-loading-track {
  width: 116px;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(49, 91, 156, 0.12);
}

.community-loading-track i {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #315b9c, #5f8de7);
  animation: community-loading-slide 1.15s ease-in-out infinite;
}

.community-frame-wrap.is-loaded .community-frame-loading {
  opacity: 0;
  visibility: hidden;
}

@keyframes community-loading-slide {
  0% {
    transform: translateX(-105%);
  }

  100% {
    transform: translateX(235%);
  }
}

.community-mobile-launch {
  display: none;
}

.community-mobile-launch-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(440px, calc(100% - 28px));
  flex-direction: column;
  align-items: center;
  padding: 38px 28px 30px;
  border: 1px solid rgba(39, 89, 170, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 24px 60px rgba(25, 63, 124, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.community-mobile-blogxiv-logo {
  width: min(210px, 72%);
  height: auto;
}

.community-mobile-launch p {
  margin: 14px 0 25px;
  color: #53657e;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.025em;
  text-align: center;
}

.community-mobile-primary,
.community-mobile-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.community-mobile-primary {
  width: min(260px, 100%);
  min-height: 50px;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border-radius: 12px;
  background: linear-gradient(135deg, #173f80, #356de0);
  box-shadow: 0 13px 30px rgba(37, 85, 168, 0.25);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.community-mobile-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 36px rgba(37, 85, 168, 0.3);
}

.community-mobile-primary svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.community-mobile-links {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.community-mobile-links a {
  min-height: 42px;
  padding: 0 8px;
  color: #24456f;
  font-size: 11px;
  font-weight: 760;
  border: 1px solid rgba(39, 89, 170, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.community-mobile-links a:hover {
  color: #16396d;
  border-color: rgba(39, 89, 170, 0.3);
  background: #fff;
}

@media (max-width: 900px) {
  .community-main {
    padding: 88px 14px 14px;
  }
}

@media (max-width: 820px) {

  .community-toolbar {
    min-height: 68px;
    flex: 0 0 68px;
    gap: 14px;
    padding: 0 16px;
  }

  .community-title-block {
    display: block;
  }

  .community-title-block h1 {
    font-size: 22px;
  }

  .community-title-block p {
    margin-top: 5px;
    font-size: 10px;
  }

  .community-external-link {
    min-height: 40px;
    padding: 0 11px;
    font-size: 11px;
  }
}

@media (max-width: 799px) {
  .community-frame {
    display: none;
  }

  .community-mobile-launch {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
    overflow: auto;
    color: #0b1930;
    background:
      radial-gradient(circle at 20% 18%, rgba(92, 142, 232, 0.2), transparent 32%),
      radial-gradient(circle at 90% 85%, rgba(124, 169, 241, 0.16), transparent 30%),
      linear-gradient(rgba(62, 105, 174, 0.055) 1px, transparent 1px),
      linear-gradient(90deg, rgba(62, 105, 174, 0.055) 1px, transparent 1px),
      #f4f8ff;
    background-size: auto, auto, 30px 30px, 30px 30px, auto;
  }

  .community-frame-loading {
    display: none;
  }
}

@media (max-width: 430px) {
  .community-main {
    padding-right: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
  }

  .community-toolbar {
    padding: 0 14px;
  }

  .community-external-link {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

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

  .community-external-link svg {
    width: 19px;
    height: 19px;
  }

  .community-mobile-launch-inner {
    width: calc(100% - 24px);
    padding: 34px 20px 24px;
    border-radius: 18px;
  }
}

@media (max-height: 620px) {
  .community-main {
    padding-bottom: 10px;
  }

  .community-toolbar {
    min-height: 58px;
    flex-basis: 58px;
  }

  .community-mobile-launch {
    align-items: flex-start;
  }

  .community-mobile-launch-inner {
    padding-top: 26px;
    padding-bottom: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .community-external-link,
  .community-mobile-primary,
  .community-mobile-links a {
    transition: none;
  }

  .community-loading-track i {
    animation: none;
  }

  .community-frame,
  .community-frame-loading {
    transition: none;
  }
}
