:root {
  --ink: #f5f0e8;
  --muted: #b8c4cc;
  --bg: #0c0b10;
  --bg-soft: #14111b;
  --bg-panel: rgba(255, 255, 255, 0.06);
  --line: rgba(201, 162, 39, 0.18);
  --line-strong: rgba(201, 162, 39, 0.35);
  --glass: rgba(255, 255, 255, 0.08);
  --gold: #c9a227;
  --gold-soft: #e2c45f;
  --violet: #4a148c;
  --violet-deep: #1a237e;
  --white: #ffffff;
  --logo-ink: #001f38;
  font-family: Poppins, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% -15%, #1a0840 0, #0c0b10 44rem);
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: 5;
}

a {
  color: inherit;
}

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

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
  opacity: 0.62;
}

.ambient-one {
  width: 34rem;
  height: 34rem;
  top: 4rem;
  left: -20rem;
  background: #4a148c;
}

.ambient-two {
  width: 30rem;
  height: 30rem;
  top: 36rem;
  right: -17rem;
  background: #1a237e;
}

.ambient-three {
  width: 20rem;
  height: 20rem;
  bottom: -6rem;
  left: 20%;
  background: #8b6914;
  opacity: 0.26;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 24px;
}

.campus-label {
  margin: 0;
  color: var(--gold-soft);
  font: 600 11px/1.4 "Poppins", Arial, sans-serif;
  letter-spacing: 0.11em;
  padding-top: 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0 0;
  position: relative;
  z-index: 40;
}

.nav-frame {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 0;
  flex-wrap: nowrap;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  min-height: 64px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.brand-badge img {
  height: 56px;
  width: auto;
}

.brand-name-art {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  min-height: 64px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.brand-name-art img {
  height: 40px;
  width: auto;
}

.brand-text {
  min-width: 0;
}

.brand-label {
  margin: 0;
  color: rgba(245, 240, 232, 0.72);
  font: 600 11px/1.4 "Poppins", Arial, sans-serif;
  letter-spacing: 0.1em;
}

.brand-title {
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.is-active {
  color: var(--bg);
  background: var(--gold);
  border-color: rgba(255, 255, 255, 0.2);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.menu-backdrop {
  display: none;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle span {
  margin: 5px 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: clamp(50px, 7vw, 82px) 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow,
.section-label,
.meta-label,
.tagline {
  color: var(--gold-soft);
  font: 600 12px/1.4 "Poppins", Arial, sans-serif;
  letter-spacing: 0.12em;
}

.home-hero {
  padding-top: 28px;
}

.home-hero-media {
  width: min(70%, 780px);
  margin-inline: auto;
  margin-bottom: 28px;
}

.home-hero-media .hero-video {
  margin-inline: 0 auto;
}

.home-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: end;
}

.home-hero-copy .intro {
  max-width: 100%;
}

.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
}

h1,
h2,
h3,
h4,
p,
ul {
  margin-top: 0;
}

h1 {
  margin: 16px 0 18px;
  font-size: clamp(40px, 5.8vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 800;
}

h2 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

h3 {
  margin: 0 0 10px;
  font-size: clamp(23px, 2.4vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h4 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.intro,
.section-intro,
.body-copy,
.page-intro {
  color: var(--muted);
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.65;
}

.intro {
  max-width: 620px;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

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

.glass-panel {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 15px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-media {
  display: flex;
}

.hero-video {
  position: relative;
  width: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
}

.hero-video-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #120f18;
}

.hero-video::before {
  content: none;
}

.video-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(12, 11, 16, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  font: 600 11px/1.2 "Poppins", Arial, sans-serif;
  letter-spacing: 0.08em;
}

.video-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  flex: 0 0 auto;
}

.video-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--white);
}

.video-caption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px;
  padding: 18px 20px;
  width: 100%;
  border-radius: 18px;
  background: rgba(12, 11, 16, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.video-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.video-caption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: var(--ink);
}

.section {
  padding: 0 0 92px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-heading p {
  max-width: 620px;
  margin-bottom: 0;
}

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

.feature-card,
.lab-card,
.fact-card,
.partner-card,
.metric-card,
.gallery-card,
.video-card,
.story-card,
.quote-card,
.text-card,
.info-card,
.timeline-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 24px;
}

.feature-card,
.lab-card,
.fact-card,
.partner-card,
.metric-card,
.gallery-card,
.video-card,
.story-card,
.quote-card,
.text-card,
.info-card,
.timeline-card,
.wide-panel,
.split-panel {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 15px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.feature-card {
  min-height: 270px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
}

.card-kicker,
.lab-tag,
.fact-index,
.partner-role,
.gallery-type,
.video-type,
.story-tag,
.info-tag {
  color: var(--gold-soft);
  font: 600 11px/1.4 "Poppins", Arial, sans-serif;
  letter-spacing: 0.1em;
}

.eyebrow.is-plain .pulse {
  display: none;
}

.card-icon,
.lab-icon,
.fact-icon,
.partner-icon,
.metric-value {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-size: 22px;
  box-shadow: 0 14px 32px rgba(201, 162, 39, 0.22);
}

.feature-card p,
.lab-card p,
.fact-card p,
.partner-card p,
.text-card p,
.story-card p,
.info-card p,
.timeline-card p,
.quote-card p,
.wide-panel p,
.split-panel p,
.gallery-card p,
.video-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.card-arrow {
  margin-top: auto;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.wide-panel {
  border-radius: 24px;
  padding: 30px;
}

.project-panel {
  display: grid;
  gap: 22px;
  align-items: start;
}

.project-panel h2,
.project-panel .body-copy {
  margin-bottom: 0;
}

.project-panel .body-copy {
  max-width: 72ch;
}

.project-panel .partner-strip,
.project-panel .micro-grid {
  margin-top: 0;
}

.wide-panel.is-tall {
  padding-top: 34px;
  padding-bottom: 34px;
}

.split-panel {
  border-radius: 24px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.split-panel.is-life-skills {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.list-clean {
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-clean li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.list-clean li:last-child {
  margin-bottom: 0;
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
}

.stats-grid,
.partners-grid,
.facts-grid,
.lab-grid,
.media-grid,
.video-grid,
.story-grid,
.timeline-grid,
.info-grid {
  display: grid;
  gap: 14px;
}

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

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

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

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

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

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

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

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

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

.metric-card {
  min-height: 160px;
}

.metric-value {
  width: auto;
  height: auto;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 800;
}

.metric-card strong,
.partner-card strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

.placeholder-visual,
.gallery-visual,
.video-visual,
.hero-photo {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 22%, rgba(226, 196, 95, 0.22), transparent 28%),
    linear-gradient(140deg, rgba(74, 20, 140, 0.78), rgba(12, 11, 16, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.placeholder-visual::before,
.gallery-visual::before,
.video-visual::before,
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.08));
}

.placeholder-visual {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 24px;
}

.placeholder-visual span,
.gallery-visual span,
.video-visual span,
.hero-photo span {
  position: relative;
  z-index: 1;
  color: var(--ink);
  text-align: center;
  font: 600 12px/1.6 "Poppins", Arial, sans-serif;
  letter-spacing: 0.08em;
  max-width: 220px;
}

.gallery-visual.is-landscape {
  aspect-ratio: 16 / 9;
}

.gallery-visual.is-portrait {
  aspect-ratio: 4 / 5;
}

.hero-photo.is-portrait {
  aspect-ratio: 4 / 5;
}

.hero-photo.is-landscape {
  aspect-ratio: 16 / 9;
}

.hero-photo.is-square {
  aspect-ratio: 1 / 1;
}

.hero-photo {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
}

.group-placeholder {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 25% 22%, rgba(226, 196, 95, 0.18), transparent 28%),
    linear-gradient(140deg, rgba(74, 20, 140, 0.78), rgba(12, 11, 16, 0.92));
  align-self: start;
}

.group-placeholder span {
  max-width: 28ch;
  padding: 28px;
}

.et-hero-photo {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.et-hero-photo img {
  object-position: 32% center;
}

.hero-grid-centered {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.hero-copy-centered {
  max-width: 820px;
  text-align: center;
}

.hero-copy-centered .eyebrow {
  justify-content: center;
}

.hero-copy-centered .intro {
  margin-inline: auto;
}

.hero-photo.is-portrait {
  min-height: 100%;
}

.gallery-card {
  min-height: 320px;
  padding: 14px;
}

.gallery-visual {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  height: 100%;
}

.video-card {
  min-height: 360px;
  padding: 14px;
}

.video-visual {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  height: 100%;
}

.story-card {
  min-height: 210px;
}

.lab-card {
  min-height: 250px;
}

.lab-top,
.partner-top,
.fact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.lab-top .lab-tag,
.fact-top .fact-index,
.partner-top .partner-role {
  flex: 1;
}

.lab-skills {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lab-skills span,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  font: 600 11px/1.4 "Poppins", Arial, sans-serif;
  letter-spacing: 0.04em;
}

.quote-card {
  padding: 28px;
}

.quote-card blockquote {
  margin: 0;
  font-size: clamp(21px, 2.8vw, 31px);
  line-height: 1.28;
  letter-spacing: -0.05em;
}

.quote-card cite {
  display: block;
  margin-top: 18px;
  color: var(--gold-soft);
  font-style: normal;
  font: 600 11px/1.4 "Poppins", Arial, sans-serif;
  letter-spacing: 0.1em;
}

.partner-strip {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section[aria-labelledby="support-title"] .wide-panel {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section[aria-labelledby="support-title"] .wide-panel h2,
.section[aria-labelledby="support-title"] .wide-panel .section-label {
  width: 100%;
}

.section[aria-labelledby="support-title"] .partner-strip {
  width: min(100%, 920px);
  justify-content: center;
  align-items: stretch;
  gap: 12px;
}

.section[aria-labelledby="support-title"] .partner-chip {
  justify-content: center;
  text-align: center;
  padding-inline: 16px;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.mosaic-item {
  position: relative;
  min-height: 220px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 25% 22%, rgba(226, 196, 95, 0.22), transparent 28%),
    linear-gradient(140deg, rgba(74, 20, 140, 0.78), rgba(12, 11, 16, 0.92));
}

.mosaic-item img,
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mosaic-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.08));
}

.mosaic-item span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: var(--ink);
  font: 600 11px/1.5 "Poppins", Arial, sans-serif;
  letter-spacing: 0.08em;
}

.sources-box {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 15px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 24px;
}

.sources-box h3 {
  margin-bottom: 10px;
}

.sources-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.sources-list a {
  color: var(--ink);
  text-decoration: none;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  word-break: break-word;
}

.sources-list a:hover,
.sources-list a:focus-visible {
  color: var(--gold-soft);
}

.slide-sequence {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 360px));
  justify-content: center;
  gap: 18px;
  align-items: start;
}

.slide-card {
  margin: 0;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.16);
}

.slide-card:last-child {
  grid-column: 1 / -1;
  width: min(100%, 360px);
  justify-self: center;
}

.slide-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.social-link-row {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.ig-link:hover,
.ig-link:focus-visible {
  color: var(--gold-soft);
  border-color: rgba(201, 162, 39, 0.35);
}

.ig-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
}

.ig-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-social {
  margin-top: 18px;
}

.mosaic-item.is-wide {
  grid-column: span 7;
  min-height: 360px;
}

.mosaic-item.is-tall {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 360px;
}

.mosaic-item.is-medium {
  grid-column: span 4;
  min-height: 240px;
}

.mosaic-item.is-large {
  grid-column: span 8;
  min-height: 280px;
}

.mosaic-item.is-small {
  grid-column: span 4;
  min-height: 280px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.chi-gallery-grid {
  grid-auto-flow: dense;
}

.gallery-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.16);
  cursor: zoom-in;
}

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

.gallery-shot video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #120f18;
}

.gallery-shot.is-video {
  grid-column: span 12;
  aspect-ratio: 16 / 9;
  cursor: default;
}

.gallery-shot.is-tall {
  grid-column: span 4;
  aspect-ratio: 3 / 4;
}

.gallery-shot.is-wide {
  grid-column: span 8;
  aspect-ratio: 4 / 3;
}

.gallery-shot.is-square {
  grid-column: span 4;
  aspect-ratio: 1 / 1;
}

.gallery-shot.is-brand-panel {
  grid-column: span 4;
  aspect-ratio: 1 / 1;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background:
    radial-gradient(circle at 30% 20%, rgba(226, 196, 95, 0.18), transparent 26%),
    linear-gradient(150deg, rgba(74, 20, 140, 0.42), rgba(12, 11, 16, 0.94));
}

.gallery-brand-card {
  width: 100%;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.gallery-brand-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  flex-wrap: nowrap;
}

.gallery-brand-text {
  display: grid;
  gap: 2px;
  justify-items: center;
}

.gallery-brand-text .brand-label,
.gallery-brand-text .brand-title {
  text-align: center;
}

.gallery-shot.is-full {
  grid-column: span 6;
  aspect-ratio: 3 / 4;
}

.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;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 7, 11, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
}

.lightbox__content {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1200px);
  max-height: 90vh;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 70px);
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.lightbox__close {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 11, 16, 0.75);
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  color: var(--gold-soft);
}

.visual-stack {
  display: grid;
  gap: 16px;
}

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

.micro-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 15px 60px rgba(0, 0, 0, 0.16);
  padding: 18px;
}

.micro-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.2;
}

.micro-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
  padding: 30px 0 34px;
  color: #a89ba5;
}

.footer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.footer small {
  display: block;
  margin-top: 8px;
  color: var(--gold-soft);
  font: 600 11px/1.5 "Poppins", Arial, sans-serif;
  letter-spacing: 0.08em;
}

.site-footer {
  margin-top: 28px;
  padding: 34px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .brand {
  width: fit-content;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 24px;
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 16px;
}

.footer-kicker {
  margin: 0;
  color: var(--gold-soft);
  font: 600 11px/1.5 "Poppins", Arial, sans-serif;
  letter-spacing: 0.1em;
}

.footer-box {
  width: 100%;
  max-width: 280px;
  justify-self: end;
  margin-inline: auto 0;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 15px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 18px 18px 20px;
}

.footer-title {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font: 600 11px/1.4 "Poppins", Arial, sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.footer-link {
  max-width: 100%;
  color: var(--ink);
  text-decoration: none;
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--gold-soft);
}

.footer-bottom {
  margin-top: 22px;
  margin-inline: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.footer-bottom p,
.footer-bottom small {
  margin: 0;
  color: #a89ba5;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.body-copy,
.intro,
.section-intro,
.feature-card p,
.lab-card p,
.fact-card p,
.partner-card p,
.text-card p,
.story-card p,
.info-card p,
.timeline-card p,
.quote-card p,
.wide-panel p,
.split-panel p,
.gallery-card p,
.video-card p,
.footer p,
.list-clean li,
.video-caption p {
  font-family: Inter, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
.brand-title,
.nav-link,
.button,
.button-secondary,
.metric-card strong,
.partner-card strong,
.video-caption strong {
  font-family: Poppins, Arial, sans-serif;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .split-panel,
  .footer {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .partners-grid,
  .story-grid,
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 560px);
  }

  .campus-label {
    padding-top: 18px;
    font-size: 9px;
  }

  .site-header {
    padding-top: 14px;
    z-index: 140;
  }

  .brand-badge {
    min-height: 60px;
    padding: 6px 9px;
  }

  .brand-badge img {
    height: 42px;
  }

  .brand-title {
    font-size: 13px;
  }

  .brand-name-art {
    min-height: 60px;
    padding: 6px 9px;
  }

  .brand-name-art img {
    height: 28px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 auto;
    position: relative;
    z-index: 140;
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    display: none;
    border: 0;
    padding: 0;
    background: rgba(7, 7, 11, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 119;
  }

  .nav-links {
    position: fixed;
    top: var(--mobile-menu-top, 112px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid var(--line-strong);
    background: rgba(12, 11, 16, 0.96);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
    z-index: 120;
    max-height: calc(100dvh - var(--mobile-menu-top, 112px) - 16px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav-frame {
    position: relative;
    align-items: flex-start;
  }

  .nav-frame.is-open .menu-backdrop,
  .nav-frame.is-open .nav-links {
    display: flex;
  }

  .nav-link {
    justify-content: center;
    min-height: 54px;
    width: 100%;
    text-align: center;
    font-size: 18px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 28px;
  }

  .hero-video {
    aspect-ratio: 16 / 9;
  }

  .home-hero-media {
    width: min(100%, 560px);
  }

  .home-hero-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-panel {
    gap: 18px;
  }

  .project-panel h2 {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 1.02;
  }

  .project-panel .body-copy {
    max-width: none;
    font-size: 17px;
    line-height: 1.6;
  }

  .project-panel .partner-strip {
    gap: 10px;
  }

  .project-panel .partner-chip {
    max-width: 100%;
  }

  .project-photo-desktop-only {
    display: none;
  }

  .video-caption {
    margin: 18px;
    padding: 14px;
    gap: 12px;
  }

  .video-play {
    width: 46px;
    height: 46px;
  }

  .section {
    padding-bottom: 70px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .section[aria-labelledby="support-title"] .wide-panel {
    justify-items: center;
    text-align: center;
  }

  .section[aria-labelledby="support-title"] .partner-strip {
    justify-content: center;
  }

  .section[aria-labelledby="support-title"] .partner-chip {
    width: 100%;
    max-width: 100%;
    min-height: 44px;
    justify-content: center;
    text-align: center;
  }

  .card-grid,
  .stats-grid,
  .partners-grid,
  .facts-grid,
  .lab-grid,
  .media-grid,
  .video-grid,
  .story-grid,
  .timeline-grid,
  .text-columns,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .lab-card,
  .fact-card,
  .partner-card,
  .metric-card,
  .gallery-card,
  .video-card,
  .story-card,
  .quote-card,
  .text-card,
  .info-card,
  .timeline-card,
  .wide-panel,
  .split-panel {
    padding: 20px;
  }

  .placeholder-visual {
    min-height: 220px;
  }

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

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

  .gallery-shot.is-tall,
  .gallery-shot.is-wide,
  .gallery-shot.is-square,
  .gallery-shot.is-full {
    grid-column: span 1;
  }

  .gallery-shot.is-video {
    grid-column: 1 / -1;
  }

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

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

  .mosaic-item,
  .mosaic-item.is-wide,
  .mosaic-item.is-tall,
  .mosaic-item.is-medium,
  .mosaic-item.is-large,
  .mosaic-item.is-small {
    grid-column: span 1;
    min-height: 220px;
  }

  .footer {
    padding-top: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-brand-block {
    justify-items: center;
    text-align: center;
  }

  .site-footer .brand {
    margin-inline: auto;
  }

  .footer-social {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .ig-link {
    justify-content: center;
    text-align: center;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .footer-box {
    width: min(100%, 320px);
    max-width: min(100%, 320px);
    margin-inline: auto;
    justify-self: center;
  }

  .group-placeholder {
    aspect-ratio: 16 / 9;
  }

  .group-placeholder span {
    padding: 24px;
  }
}

@media (max-width: 390px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .site-header {
    gap: 12px;
  }

  .nav-frame {
    gap: 12px;
    align-items: flex-start;
  }

  .brand {
    gap: 6px;
    max-width: calc(100% - 60px);
  }

  .brand-badge,
  .brand-name-art {
    min-height: 52px;
    padding: 5px 7px;
  }

  .brand-badge img {
    height: 34px;
  }

  .brand-name-art img {
    height: 22px;
  }

  .brand-label {
    font-size: 10px;
  }

  .brand-title {
    font-size: 12px;
  }

  .gallery-brand-row {
    flex-wrap: wrap;
  }

  .gallery-brand-card .brand-badge,
  .gallery-brand-card .brand-name-art {
    min-height: 54px;
    padding: 6px 8px;
  }

  .gallery-brand-card .brand-badge img {
    height: 38px;
  }

  .gallery-brand-card .brand-name-art img {
    height: 24px;
  }

  .gallery-brand-text .brand-title {
    font-size: 12px;
  }

  .slide-sequence {
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 16px;
  }
}

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

  .hero-video-media {
    animation: none !important;
  }
}