@font-face {
  font-family: 'Space Grotesk';
  src: url('./assets/fonts/Space-Grotesk-SemiBold.ttf') format('truetype');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('./assets/fonts/DM-Sans-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('./assets/fonts/DM-Sans-Medium.ttf') format('truetype');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --ice: #F5F8FA;
  --ink: #080C10;
  --blue: #5EBEFB;
  --white: #FFFFFF;
  --slate: #52616D;
  --mist: #A6B6C2;
  --line: rgb(166 182 194 / 18%);
  --body: 'DM Sans', system-ui, sans-serif;
  --display: 'Space Grotesk', system-ui, sans-serif;
  --gutter: clamp(18px, 4vw, 40px);
  --section-space: clamp(56px, 6.5vw, 96px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-clearance, 124px); }
body { margin: 0; background: var(--ink); color: var(--white); font: 400 1rem/1.7 var(--body); -webkit-font-smoothing: antialiased; }
::selection { background: var(--blue); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
a, button, summary { touch-action: manipulation; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }
main, .site-footer { position: relative; z-index: 1; }
main:focus { outline: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin: 0; }
h1, h2, h3 { overflow-wrap: anywhere; }
h1, h2 { font: 600 clamp(2rem, 3.8vw, 3rem)/1.12 var(--display); letter-spacing: 0; text-wrap: balance; }
h3 { font: 500 1.0625rem/1.4 var(--body); }
p { text-wrap: pretty; }
[hidden] { display: none !important; }
.icon-definitions { position: absolute; width: 0; height: 0; overflow: hidden; }
.shell { width: min(1160px, calc(100% - 2 * var(--gutter))); margin-inline: auto; }
.shell-narrow { width: min(920px, calc(100% - 2 * var(--gutter))); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.eyebrow { font: 500 .875rem/1.5 var(--body); color: var(--mist); }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 100; padding: 12px 24px; background: var(--ink); color: var(--white); border-radius: 8px; }
.skip-link:focus { top: 16px; }

/* The sticky navigation keeps its own dark surface over both Ink and Ice. */
.site-header { position: sticky; top: 16px; z-index: 20; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; min-height: 80px; margin-top: 24px; padding: 12px 18px; border: 1px solid rgb(166 182 194 / 20%); border-radius: 24px; background: var(--ink); color: var(--white); color-scheme: dark; box-shadow: 0 4px 18px rgb(8 12 16 / 12%); }
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .site-header { background: rgb(8 12 16 / 94%); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
}
/* The reflection sits behind the controls and is contained by its own rounded box.
   Keep the header overflow visible so the mobile menu and focus rings are not clipped. */
.site-header > * { z-index: 1; }
@media (prefers-reduced-motion: no-preference) {
  .site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(240px 90px at var(--glass-x, 50%) var(--glass-y, 50%), rgb(94 190 251 / 8%), rgb(94 190 251 / 4%) 35%, rgb(94 190 251 / 1%) 63%, transparent 82%);
    box-shadow: inset 0 1px 0 rgb(166 182 194 / 12%);
    opacity: 0;
    transition: opacity 180ms ease-out;
  }
  .site-header:has(:focus-visible)::before { --glass-x: 50%; --glass-y: 50%; opacity: .65; }
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .site-header[data-glass-active='true']::before { opacity: 1; }
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; flex-shrink: 0; padding: 4px; }
.brand-mark { width: 40px; height: 44px; object-fit: contain; }
.brand-name { font: 500 1rem/1.3 var(--body); }
.desktop-nav { position: relative; isolation: isolate; display: flex; gap: 4px; padding: 4px; border: 1px solid rgb(166 182 194 / 14%); border-radius: 999px; }
.nav-indicator { position: absolute; top: 4px; bottom: 4px; left: 0; z-index: -1; width: 0; border-radius: 999px; pointer-events: none; background: rgb(94 190 251 / 12%); opacity: 0; transform: translateX(var(--indicator-x, 0px)); transition: transform 350ms var(--ease), width 350ms var(--ease), opacity 180ms; }
.desktop-nav[data-indicator='true'] .nav-indicator { width: var(--indicator-width, 0px); opacity: 1; }
.desktop-nav a { display: flex; align-items: center; min-height: 44px; padding: 8px 12px; font-size: .875rem; font-weight: 500; color: var(--mist); border-radius: 999px; transition: color .18s, background .18s; }
.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav a[aria-current] { color: var(--white); }
.desktop-nav:not([data-indicator]) a:hover, .desktop-nav:not([data-indicator]) a[aria-current] { background: rgb(94 190 251 / 12%); }
.site-header .button:focus-visible, .join .button:focus-visible { outline-color: var(--white); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 24px; background: var(--blue); color: var(--ink); border: 1px solid transparent; border-radius: 8px; font: 500 1rem/1.4 var(--body); transition: box-shadow .18s; }
.button:hover { box-shadow: inset 0 0 0 1px var(--ink); }
.button-small { min-height: 44px; padding: 10px 16px; font-size: .875rem; }
.header-join { white-space: nowrap; flex-shrink: 0; }
.mobile-menu { display: none; }

/* One continuous light field stays behind every section and has no hit target. */
.site-atmosphere { position: fixed; inset: 0; z-index: 0; pointer-events: none; background: repeating-linear-gradient(112deg, transparent 0% 9%, rgb(94 190 251 / 5%) 16%, rgb(94 190 251 / 12%) 21%, transparent 29% 39%), var(--ink); }
.atmosphere-canvas { display: block; width: 100%; height: 100%; visibility: hidden; }
.site-atmosphere[data-light-ready='true'] .atmosphere-canvas { visibility: visible; }

/* A single opening burst frames the unchanged mark. Hidden unless JS opts in. */
.club-intro { display: none; position: fixed; inset: 0; z-index: 50; overflow: hidden; pointer-events: none; background: var(--ink); }
.intro-burst { position: absolute; inset: 0; display: grid; place-items: center; }
.intro-burst::before { content: ''; position: absolute; width: min(110vmax, 1500px); aspect-ratio: 1; background: radial-gradient(circle, rgb(94 190 251 / 12%), transparent 62%); opacity: 0; }
.intro-ring { position: absolute; width: min(68vmin, 600px); aspect-ratio: 1; border: 1px solid var(--blue); border-radius: 50%; opacity: 0; }
.intro-spark { position: absolute; left: 50%; top: 50%; width: 2px; height: clamp(12px, 3vmin, 26px); border-radius: 2px; background: linear-gradient(transparent, var(--blue)); opacity: 0; }
.intro-identity { position: relative; display: flex; align-items: center; justify-content: center; gap: clamp(18px, 3vw, 32px); width: min(800px, calc(100% - 48px)); font: 500 clamp(1.65rem, 4.4vw, 3.5rem)/1.2 var(--body); color: var(--white); }
.intro-identity img { width: clamp(40px, 6vw, 64px); height: auto; flex: none; }
.intro-identity span { min-width: 0; overflow-wrap: anywhere; }
@keyframes intro-depart { from { opacity: 1; visibility: visible; } to { opacity: 0; visibility: hidden; } }
@keyframes intro-light { 0% { opacity: 0; transform: scale(.35); } 30% { opacity: 1; } 100% { opacity: 0; transform: scale(1.25); } }
@keyframes intro-ring { 0% { opacity: 0; transform: scale(.12); } 22% { opacity: .55; } 100% { opacity: 0; transform: scale(calc(1.3 + var(--ring) * .28)); } }
@keyframes intro-spark { 0% { opacity: 0; transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-24px) scaleY(.3); } 25% { opacity: .75; } 100% { opacity: 0; transform: translate(-50%, -50%) rotate(var(--angle)) translateY(clamp(-370px, -42vmin, -130px)) scaleY(.6); } }
@keyframes intro-identity { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: no-preference) {
  .club-intro[data-intro-state='playing'] { display: grid; place-items: center; animation: intro-depart 650ms ease-in-out 1700ms both; }
  .club-intro[data-intro-state='playing'] .intro-burst::before { animation: intro-light 1700ms var(--ease) both; }
  .club-intro[data-intro-state='playing'] .intro-ring { animation: intro-ring 1600ms var(--ease) both; animation-delay: calc(var(--ring) * 130ms); }
  .club-intro[data-intro-state='playing'] .intro-spark { animation: intro-spark 1300ms var(--ease) both; animation-delay: calc(100ms + var(--spark) * 70ms); }
  .club-intro[data-intro-state='playing'] .intro-identity { animation: intro-identity 550ms ease-out 220ms both; }
}
.hero { position: relative; display: flex; align-items: center; min-height: calc(100svh - 104px); padding-block: clamp(80px, 9vw, 128px) clamp(88px, 10vw, 144px); }
.hero-panel { position: relative; }
.hero .eyebrow { color: var(--mist); }
.hero-accent { color: var(--blue); }

/* Shared glass material. Borders supply depth without adding more blue glows. */
.glass-panel { position: relative; isolation: isolate; border: 1px solid var(--line); border-radius: 24px; background: var(--ink); box-shadow: inset 0 1px 0 rgb(255 255 255 / 7%), 0 20px 50px rgb(8 12 16 / 24%); }
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .glass-panel { background: rgb(8 12 16 / 42%); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
  .glass-panel.program-panel { background: rgb(8 12 16 / 66%); }
  .glass-panel.person, .glass-panel.full-team { background: rgb(8 12 16 / 52%); }
}
.glass-panel:focus-within { border-color: rgb(166 182 194 / 42%); }
@supports (mask-composite: exclude) or (-webkit-mask-composite: xor) {
  .glass-panel::before { content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none; z-index: 2; background: radial-gradient(280px circle at var(--glass-x, 50%) var(--glass-y, 0%), rgb(166 182 194 / 65%), transparent 72%); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 250ms; }
  .glass-panel:has(:focus-visible)::before { --glass-x: 50%; --glass-y: 0%; opacity: 1; }
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .glass-panel[data-glass-active='true']::before { opacity: 1; }
}
.hero h1 { margin-block: 28px; max-width: 950px; font-size: clamp(2.75rem, 6.25vw, 5rem); line-height: 1.08; }
.hero h1 > span { display: block; }
.hero-copy { max-width: 650px; font-size: 1.125rem; color: var(--mist); line-height: 1.7; }
.community-note { margin-top: 24px; font-size: .875rem; color: var(--mist); }
.mission-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 64px; padding: clamp(24px, 4vw, 48px); }
.section-heading .eyebrow { margin-bottom: 24px; }
.mission-statement { font-size: 1.125rem; line-height: 1.8; color: var(--mist); max-width: 62ch; }
.topic-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.topic-list > span { transition: border-color 250ms; padding: 5px 10px; border: 1px solid var(--line); border-radius: 6px; font-size: .875rem; font-weight: 500; }
.topic-list > span:hover { border-color: var(--blue); }
.section-topline { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.section-topline .eyebrow { margin-bottom: 20px; }
.section-note, .section-aside { color: var(--mist); font-size: .875rem; }

.analyst-program .section-topline { align-items: center; gap: 16px; margin-bottom: 24px; }
.analyst-program .section-topline .eyebrow { margin: 0; }
.program-status { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--mist); font: 500 .875rem/1.5 var(--body); white-space: nowrap; }
.program-panel { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); align-items: center; gap: 48px; padding: clamp(28px, 5vw, 56px); color: var(--white); border-color: rgb(166 182 194 / 28%); }
.program-intro::before { content: ''; display: block; width: 32px; height: 4px; background: var(--blue); margin-bottom: 24px; }
.program-copy .lead { font-size: 1.125rem; color: var(--white); }
.program-footnote { margin-top: 20px; font-size: 1rem; color: var(--mist); }
.collaboration .section-topline { align-items: center; }
.collaboration .section-topline .eyebrow { margin: 0; }
.partner-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 64px; padding: clamp(24px, 4vw, 48px); align-items: start; }
.partner-story h2 { margin-block: 16px 24px; font-size: clamp(2rem, 3.3vw, 2.5rem); }
.partner-lockup { font-size: .875rem; color: var(--mist); }
.partner-lockup span { padding-inline: 5px; }
.partner-lead { margin-bottom: 18px; font-size: 1.125rem; }
.partner-description { color: var(--mist); }
.text-link { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding-block: 8px; margin-top: 24px; font-weight: 500; font-size: .875rem; text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.text-link:hover { text-decoration-thickness: 2px; }

.team { padding-bottom: clamp(80px, 9vw, 128px); }
.featured-team { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; margin-top: 40px; }
.person { display: flex; flex-direction: column; min-width: 0; padding: 16px; border-radius: 16px; transition: transform 250ms var(--ease), border-color 250ms; }
.person:focus-within { transform: translateY(-2px); }
@media (hover: hover) and (pointer: fine) { .person:hover { transform: translateY(-2px); border-color: rgb(166 182 194 / 42%); } }
.portrait-link { flex-shrink: 0; position: relative; display: block; aspect-ratio: 4 / 5; background: var(--ink); border-radius: 8px; }
.portrait-link img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; border-radius: inherit; }
.portrait-link > span { position: absolute; right: 12px; bottom: 12px; display: grid; place-items: center; width: 32px; height: 32px; background: var(--ice); color: var(--ink); border-radius: 6px; }
.portrait-link:hover > span { background: var(--blue); }
.person-kind { margin-top: 20px; font: 500 .875rem/1.5 var(--body); color: var(--mist); }
.person h3 { margin-top: 8px; }
.person-role { margin-top: 6px; color: var(--mist); font-size: .875rem; }
.person-email { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding-block: 8px; font-size: .875rem; overflow-wrap: anywhere; }
.person-email:hover, .team-member a:hover, .join-contact:hover { text-decoration: underline; text-underline-offset: 4px; }
.full-team { margin-top: 40px; padding-inline: clamp(20px, 4vw, 40px); }
.full-team summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 24px; list-style: none; cursor: pointer; font-weight: 500; }
.full-team summary::-webkit-details-marker, .mobile-menu summary::-webkit-details-marker { display: none; }
.full-team summary:hover { color: var(--mist); }
.disclosure-icon { display: grid; place-items: center; flex: 0 0 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; line-height: 1; transition: transform .18s; }
.disclosure-icon svg { display: block; width: 14px; height: 14px; }
.full-team[open] .disclosure-icon { transform: rotate(45deg); }
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 24px; padding-block: 8px 28px; }
.team-member { display: flex; align-items: center; gap: 16px; min-width: 0; padding-block: 12px; }
.team-member img { width: 70px; height: 88px; object-fit: cover; object-position: center 35%; border-radius: 4px; flex-shrink: 0; }
.team-member > div { min-width: 0; overflow-wrap: anywhere; }
.team-member h3 { font-size: 1rem; }
.team-member p { margin-top: 4px; font-size: .875rem; color: var(--mist); }
.team-member div > a { display: inline-flex; align-items: center; min-height: 44px; font-size: .875rem; }

/* One continuous closing band across the join section and footer. */
.join, .site-footer { background: rgb(8 12 16 / 64%); color: var(--white); color-scheme: dark; }
.join { padding-block: clamp(64px, 8vw, 112px) 64px; }
.join .eyebrow, .join-contact { color: var(--mist); }
.join h2 { margin-block: 24px; }
.join .shell > p:not(.eyebrow) { color: var(--mist); }
.join .button { margin-top: 28px; }
.join-contact { display: flex; align-items: center; gap: 8px; width: fit-content; max-width: 100%; min-height: 44px; margin-top: 16px; font-size: .875rem; }
.site-footer { padding-block: 32px 16px; }
.footer-top, .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-top { padding-top: 32px; border-top: 1px solid rgb(166 182 194 / 24%); }
.footer-top nav { display: flex; flex-wrap: wrap; gap: 24px; font-size: .875rem; font-weight: 500; }
.footer-top nav a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; }
.footer-top nav a:hover, .footer-bottom a:hover { color: var(--blue); }
.footer-bottom { margin-top: 24px; padding-block: 16px; color: var(--mist); font-size: .875rem; }
.footer-bottom > a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; }
.social-icon { display: inline-block; width: 20px; height: 20px; flex: 0 0 20px; fill: currentColor; vertical-align: -.15em; }
.portrait-link .social-icon { width: 16px; height: 16px; }
.team-member h3 .social-icon, .person-email .social-icon, .join-contact .social-icon, .footer-bottom .social-icon { width: 16px; height: 16px; flex-basis: 16px; }
.team-member h3 a { display: inline; }
.team-member h3 .social-icon { margin-left: 4px; }
@keyframes hero-enter { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes section-enter { from { opacity: .45; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .reveal-enter { animation: section-enter 550ms var(--ease) both; animation-delay: var(--reveal-delay, 0ms); }
  .hero-enter > * { animation: hero-enter 550ms var(--ease) both; }
  .hero-enter > :nth-child(2) { animation-delay: 90ms; }
  .hero-enter > :nth-child(3) { animation-delay: 180ms; }
  .hero-enter > :nth-child(4) { animation-delay: 270ms; }
}
@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .header-join { margin-left: auto; }
  .mobile-menu { display: block; }
  .mobile-menu summary { display: flex; align-items: center; gap: 8px; min-width: 44px; min-height: 44px; padding: 8px; list-style: none; cursor: pointer; font-size: .875rem; font-weight: 500; }
  .menu-icon { width: 16px; height: 10px; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; }
  .mobile-menu nav { position: absolute; inset: calc(100% + 10px) 0 auto; padding: 12px; background: var(--ink); color: var(--white); border: 1px solid rgb(166 182 194 / 20%); border-radius: 16px; box-shadow: 0 12px 24px rgb(8 12 16 / 8%); }
  .mobile-menu nav a { display: block; padding: 12px; border-radius: 6px; font-weight: 500; }
  .mobile-menu nav a:hover, .mobile-menu nav a[aria-current] { background: rgb(94 190 251 / 12%); }
  .mission-panel, .partner-panel { gap: 40px; }
  .featured-team { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { flex-wrap: wrap; }
  .footer-bottom > span:nth-child(2) { order: 3; width: 100%; }
}
@media (max-width: 760px) {
  .mission-panel, .partner-panel, .program-panel { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .section-topline { align-items: flex-start; }
  .section-aside { max-width: 150px; }
  .section-note { max-width: 130px; text-align: right; }
  .footer-top { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 540px) {
  html { scroll-padding-top: var(--header-clearance, 108px); }
  .site-header { gap: 6px; min-height: 72px; margin-top: 12px; top: 10px; padding: 10px; border-radius: 18px; }
  .site-header .brand { gap: 6px; padding: 3px; }
  .site-header .brand-mark { width: 28px; height: 32px; }
  .site-header .brand-name { max-width: 5.625rem; font-size: .875rem; }
  .header-join { padding: 10px; font-size: .875rem; }
  .mobile-menu summary { padding: 10px; }
  .mobile-menu summary > span:last-child { display: none; }
  .hero { min-height: calc(100svh - 84px); padding-block: 72px 80px; }
  .hero h1 { margin-block: 24px; }
  .hero-copy { font-size: 1rem; }
  .desktop-break { display: none; }
  .community-note span { display: block; }
  .mission-statement { font-size: 1rem; }
  .section-topline { flex-direction: column; gap: 16px; }
  .section-topline .eyebrow { margin-bottom: 16px; }
  .section-aside, .section-note { max-width: none; text-align: left; }
  .section-aside br { display: none; }
  .analyst-program .section-topline, .collaboration .section-topline { align-items: flex-start; }
  .featured-team, .team-grid { grid-template-columns: 1fr; }
  .featured-team { gap: 32px; }
  .person-kind { margin-top: 16px; }
  .team-grid { gap: 4px; }
  .join-contact { align-items: baseline; }
  .footer-top nav { gap: 18px; }
  .footer-bottom { gap: 8px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .person:hover, .person:focus-within { transform: none; }
}
@media print {
  .site-header, .skip-link { display: none; }
  .site-atmosphere, .club-intro, .glass-panel::before { display: none !important; }
  .glass-panel { box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; background: #FFFFFF !important; }
  body, .hero, .join, .site-footer, .program-panel, .glass-panel { color: #080C10; background: #FFFFFF; }
  .eyebrow, .mission-statement, .section-note, .section-aside, .program-status, .partner-lockup, .partner-description, .person-kind, .person-role, .team-member p, .hero .eyebrow, .hero-copy, .community-note, .hero-accent, .join .eyebrow, .join-contact, .join .shell > p:not(.eyebrow), .footer-bottom, .program-footnote, .program-copy .lead { color: #52616D; }
  .shell, .shell-narrow { width: 100%; }
  .section, .hero { padding-block: 24px; }
  .program-panel, .person, .team-member { break-inside: avoid; }
}
