@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #061321;
  --ink-2: #0a1b2c;
  --ink-3: #102b43;
  --paper: #f2f0eb;
  --paper-2: #e8e6e0;
  --white: #fbfbf8;
  --muted: #728090;
  --line: rgba(6, 19, 33, 0.15);
  --line-light: rgba(255,255,255,.16);
  --accent: #c7d2dc;
  --max: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--ink);
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; display: block; }
::selection { background: #b8c6d4; color: #061321; }

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

.grain {
  position: fixed; inset: 0; pointer-events: none; opacity: .04; z-index: 100;
  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='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed; z-index: 80; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px clamp(24px, 4vw, 64px);
  color: white;
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6, 19, 33, .9);
  backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.09);
  padding-top: 15px; padding-bottom: 15px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 700 9px/1 "Manrope";
  letter-spacing: .08em;
  padding-left: .08em;
}
.brand-copy { display: grid; gap: 3px; text-transform: uppercase; }
.brand-copy strong { font: 600 11px/1 "Manrope"; letter-spacing: .14em; }
.brand-copy small { font-size: 8px; letter-spacing: .18em; color: rgba(255,255,255,.58); }

.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.site-nav a {
  font-size: 11px; font-weight: 500; letter-spacing: .08em; color: rgba(255,255,255,.75);
  transition: color .2s ease;
}
.site-nav a:hover { color: #fff; }
.nav-pill { border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: 10px 16px; }

.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 1px; background: #fff; margin: 6px 0; }

.hero {
  min-height: 100svh; position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr);
  align-items: center; gap: clamp(30px, 5vw, 80px);
  padding: 150px clamp(28px, 5vw, 82px) 86px;
  background:
    radial-gradient(circle at 73% 48%, rgba(106,136,162,.23), transparent 33%),
    linear-gradient(145deg, #07131f 0%, #0a1b2d 46%, #081520 100%);
  color: white;
}
.hero-grid, .visit-grid {
  position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; pointer-events: none; }
.orbit-a { width: 56vw; height: 56vw; right: -11vw; top: -10vw; }
.orbit-b { width: 32vw; height: 32vw; right: 1vw; top: 12vw; border-style: dashed; }

.hero-copy { position: relative; z-index: 2; max-width: 660px; }
.eyebrow {
  margin: 0 0 28px; font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.56);
}
.hero h1 {
  margin: 0; max-width: 760px; font: 500 clamp(64px, 7.7vw, 124px)/.86 "Manrope", sans-serif;
  letter-spacing: -.064em;
}
.hero h1 span { color: #aebcc8; }
.hero-lede {
  max-width: 620px; margin: 34px 0 0; font-size: clamp(16px, 1.35vw, 20px); line-height: 1.7;
  color: rgba(255,255,255,.68);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  border-radius: 2px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: #e7ebee; color: var(--ink); }
.button-quiet { border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.8); }

.status-card {
  width: min(440px, 100%); margin-top: 52px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.035); backdrop-filter: blur(8px);
}
.status-card > div { display: flex; align-items: center; gap: 10px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #b9d7c6; box-shadow: 0 0 0 5px rgba(185,215,198,.08); }
.status-label { font-size: 9px; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.48); }
.status-card strong { display: block; margin-top: 9px; font: 500 20px/1.2 "Manrope"; }
.status-card small { display: block; margin-top: 5px; color: rgba(255,255,255,.43); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  justify-self: end;
}
.logo-stage {
  position: relative;
  width: min(680px, 100%);
  aspect-ratio: 1;
  margin-left: auto;
  display: grid;
  place-items: center;
}
.logo-stage img {
  position: relative;
  z-index: 2;
  width: 94%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  background: #f7f7f4;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 38px 90px rgba(0,0,0,.28);
  filter: contrast(1.02);
}
.logo-halo {
  position: absolute;
  inset: 3%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(145,170,191,.18), rgba(145,170,191,.035) 58%, transparent 74%);
  filter: blur(26px);
}
.hero-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(640px, 94%);
  margin: 16px 0 0 auto;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.37);
}
.scroll-cue {
  position: absolute; left: clamp(28px, 5vw, 82px); bottom: 28px;
  display: flex; align-items: center; gap: 14px; font-size: 8px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.scroll-cue i { display: block; width: 44px; height: 1px; background: currentColor; }

.marquee { overflow: hidden; background: #dfe4e6; color: var(--ink); border-bottom: 1px solid rgba(6,19,33,.12); }
.marquee-track {
  display: flex; align-items: center; width: max-content; gap: 26px; padding: 16px 0;
  animation: marquee 34s linear infinite;
}
.marquee span { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.marquee i { width: 4px; height: 4px; border: 1px solid var(--ink); transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { position: relative; padding: clamp(88px, 10vw, 160px) clamp(28px, 5vw, 82px); }
.section-light { background: var(--paper); }
.section-kicker {
  max-width: var(--max); margin: 0 auto 64px; padding-bottom: 16px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 18px;
}
.section-kicker span, .section-kicker p {
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(6,19,33,.48); margin: 0;
}
.section-kicker.dark { border-color: var(--line-light); }
.section-kicker.dark span, .section-kicker.dark p { color: rgba(255,255,255,.47); }

.split-heading {
  max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 9vw, 150px);
}
.split-heading h2, .research-intro h2, .facility-copy h2, .news-head h2, .visit-copy h2 {
  margin: 0; font: 500 clamp(44px, 6vw, 88px)/.96 "Manrope"; letter-spacing: -.055em;
}
.split-heading .lead, .partner-copy .lead {
  margin-top: 0; font: 500 clamp(23px, 2.4vw, 34px)/1.35 "Manrope"; letter-spacing: -.025em;
}
.split-heading p:not(.lead), .facility-copy > p, .partner-copy > p:not(.lead) {
  max-width: 650px; color: #586573; font-size: 15px; line-height: 1.8;
}

.metric-band {
  max-width: var(--max); margin: 92px auto 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.metric-band article { padding: 30px clamp(20px, 3vw, 42px); min-height: 220px; border-right: 1px solid var(--line); }
.metric-band article:first-child { padding-left: 0; }
.metric-band article:last-child { border-right: 0; }
.metric-num { display: block; font: 500 13px/1 "Manrope"; letter-spacing: .12em; color: #81909d; }
.metric-band h3 { margin: 58px 0 10px; font: 500 20px/1.1 "Manrope"; }
.metric-band p { margin: 0; max-width: 370px; color: #67737f; font-size: 12px; line-height: 1.65; }

.research-section { background: #071522; color: #f5f7f8; }
.research-intro {
  max-width: var(--max); margin: 0 auto 72px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end;
}
.research-intro h2 { max-width: 920px; }
.research-intro p { margin: 0 0 5px; color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.8; max-width: 470px; }
.research-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line-light); }
.research-card {
  position: relative; min-height: 450px; padding: 28px; overflow: hidden;
  border-right: 1px solid var(--line-light); background: rgba(255,255,255,.012);
  transition: background .25s ease;
}
.research-card:last-child { border-right: 0; }
.research-card:hover { background: rgba(255,255,255,.04); }
.card-index { font-size: 8px; letter-spacing: .18em; color: rgba(255,255,255,.38); }
.research-card h3 { position: absolute; left: 28px; bottom: 90px; margin: 0; font: 500 22px/1.1 "Manrope"; }
.research-card p { position: absolute; left: 28px; right: 28px; bottom: 24px; margin: 0; color: rgba(255,255,255,.47); font-size: 11px; line-height: 1.6; }
.glyph { position: absolute; inset: 72px 40px 145px; opacity: .8; }
.glyph::before, .glyph::after { content: ""; position: absolute; inset: 0; }
.glyph-genome::before {
  border-radius: 50%; border: 1px solid rgba(220,232,240,.45);
  box-shadow: inset 0 0 0 28px rgba(255,255,255,.015), inset 0 0 0 29px rgba(220,232,240,.18);
}
.glyph-genome::after {
  left: 50%; width: 1px; background: linear-gradient(transparent, rgba(220,232,240,.5), transparent);
  transform: rotate(28deg);
}
.glyph-cells {
  background:
    radial-gradient(circle at 25% 30%, transparent 0 13%, rgba(220,232,240,.35) 13.5% 14.5%, transparent 15%),
    radial-gradient(circle at 69% 58%, transparent 0 18%, rgba(220,232,240,.3) 18.5% 19.5%, transparent 20%),
    radial-gradient(circle at 40% 75%, transparent 0 10%, rgba(220,232,240,.25) 10.5% 11.5%, transparent 12%);
}
.glyph-wave::before {
  top: 50%; height: 1px; background: rgba(220,232,240,.35);
  box-shadow: 0 -32px 0 rgba(220,232,240,.15), 0 32px 0 rgba(220,232,240,.15);
  transform: skewY(-11deg);
}
.glyph-grid {
  background-image:
    linear-gradient(rgba(220,232,240,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220,232,240,.2) 1px, transparent 1px);
  background-size: 31px 31px;
  transform: perspective(300px) rotateX(57deg) rotateZ(-10deg);
}

.section-map { background: #dfe4e6; }
.facility-layout {
  max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px,6vw,90px); align-items: start;
}
.facility-copy h2 { max-width: 650px; font-size: clamp(48px, 5vw, 72px); }
.facility-copy > p { margin: 28px 0 48px; }
.facility-list { border-top: 1px solid rgba(6,19,33,.22); }
.facility-item {
  width: 100%; display: grid; grid-template-columns: 35px 1fr auto; gap: 12px; align-items: center;
  padding: 17px 0; border: 0; border-bottom: 1px solid rgba(6,19,33,.16); background: transparent;
  color: #50606e; text-align: left; cursor: pointer;
}
.facility-item span { font-size: 8px; letter-spacing: .15em; color: #87939e; }
.facility-item b { font-size: 11px; font-weight: 500; letter-spacing: .02em; }
.facility-item i { font-style: normal; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: #8d98a1; }
.facility-item.active, .facility-item:hover { color: var(--ink); }
.facility-item.active b::after { content: "  •"; color: #6f8797; }

.map-panel {
  background: var(--ink); color: white; min-height: 760px; box-shadow: 0 30px 90px rgba(6,19,33,.16);
  display: grid; grid-template-rows: auto 1fr auto;
}
.map-header, .map-footer {
  display: flex; justify-content: space-between; gap: 20px; padding: 18px 22px;
  font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.38);
}
.map-header { border-bottom: 1px solid var(--line-light); }
.map-footer { border-top: 1px solid var(--line-light); }
.campus-map { width: 100%; height: 100%; min-height: 630px; }
.map-grid-lines path { stroke: rgba(255,255,255,.04); stroke-width: 1; fill: none; }
.map-paths path { stroke: rgba(202,220,233,.42); stroke-width: 2; fill: none; }
.map-node { color: rgba(200,218,231,.38); transition: color .25s ease, filter .25s ease; }
.map-node circle, .map-node rect, .map-node path { stroke: currentColor; stroke-width: 1.5; fill: rgba(255,255,255,.02); }
.map-node text { fill: currentColor; font-size: 11px; letter-spacing: 1.5px; }
.map-node.active { color: #ecf7ff; filter: url(#glow); }
.map-center circle { fill: none; stroke: rgba(197,216,230,.24); }
.map-center text { fill: rgba(232,241,247,.62); font-size: 12px; letter-spacing: 1.6px; }

.partner-section { background: #0b1927; color: white; }
.partner-card {
  max-width: var(--max); margin: 0 auto; border: 1px solid var(--line-light); padding: clamp(34px,5vw,72px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px;
  background: linear-gradient(135deg, rgba(255,255,255,.025), transparent 60%);
}
.partner-title { display: flex; gap: 28px; align-items: flex-start; }
.partner-monogram {
  width: 86px; height: 86px; border: 1px solid rgba(255,255,255,.28); display: grid; place-items: center;
  font: 600 20px/1 "Manrope"; letter-spacing: .04em;
}
.partner-title p { margin: 3px 0 24px; font-size: 8px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.partner-title h2 { margin: 0; font: 600 clamp(36px,4vw,58px)/.95 "Manrope"; letter-spacing: -.045em; }
.partner-title div > span { display: block; margin-top: 10px; font-size: 10px; color: rgba(255,255,255,.46); letter-spacing: .08em; }
.partner-copy .lead { color: #d7e0e7; }
.partner-copy > p:not(.lead) { color: rgba(255,255,255,.5); }
.text-link { display: inline-flex; gap: 15px; align-items: center; margin-top: 24px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.partner-meta {
  grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-light);
  padding-top: 28px;
}
.partner-meta small { display: block; margin-bottom: 8px; color: rgba(255,255,255,.36); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.partner-meta strong { font-size: 11px; font-weight: 500; }
.future-partners {
  max-width: var(--max); margin: 20px auto 0; display: flex; justify-content: space-between; gap: 20px;
  color: rgba(255,255,255,.34); font-size: 9px; letter-spacing: .07em; text-transform: uppercase;
}

.news-head {
  max-width: var(--max);
  margin: 0 auto 54px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.dark-link { color: #53616d; }

.news-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.news-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 190px 1fr;
  border-right: 1px solid var(--line);
}
.news-card:last-child { border-right: 0; }

.news-art {
  position: relative;
  overflow: hidden;
  display: block;
  min-width: 0;
  height: 190px;
  padding: 24px;
  color: white;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(6,19,33,.88), rgba(16,43,67,.74)),
    radial-gradient(circle at 80% 30%, #8ca2b4, transparent 45%);
}
.news-art span {
  position: relative;
  z-index: 2;
  font: 600 10px/1 "Manrope";
  letter-spacing: .17em;
}
.news-art b {
  position: absolute;
  right: 24px;
  bottom: 18px;
  z-index: 2;
  font: 500 42px/1 "Manrope";
  letter-spacing: -.06em;
  color: rgba(255,255,255,.35);
}
.news-art i {
  position: absolute;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  right: -76px;
  top: -92px;
}
.news-art-xeno {
  background:
    linear-gradient(135deg, rgba(7,22,35,.96), rgba(29,55,72,.87)),
    radial-gradient(circle at 20% 85%, rgba(132,157,174,.42), transparent 45%);
}
.news-art-xeno::after {
  content: "";
  position: absolute;
  left: 36%;
  top: -30%;
  width: 1px;
  height: 170%;
  background: rgba(255,255,255,.16);
  transform: rotate(27deg);
}
.news-art-infra {
  background:
    linear-gradient(135deg, rgba(13,29,41,.96), rgba(61,72,77,.88)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255,255,255,.04) 42px 43px);
}
.news-art-infra::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 68%, rgba(255,255,255,.06) 68% 69%, transparent 69%),
    linear-gradient(90deg, transparent 68%, rgba(255,255,255,.06) 68% 69%, transparent 69%);
}
.news-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.news-body small {
  display: block;
  margin: 0 0 20px;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #85919c;
}
.news-body h3 {
  margin: 0 0 18px;
  min-width: 0;
  font: 500 clamp(20px, 1.8vw, 28px)/1.25 "Manrope";
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
}
.news-body h3 a { display: block; }
.news-body p {
  margin: 0;
  color: #687580;
  font-size: 12px;
  line-height: 1.7;
}
.news-body > a {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 28px;
  gap: 10px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.visit-section {
  overflow: hidden; background: #142b40; color: white; display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(50px,8vw,120px); align-items: end;
}
.visit-grid { mask-image: linear-gradient(to left, black, transparent 80%); opacity: .08; }
.visit-copy { position: relative; z-index: 2; }
.visit-copy h2 { max-width: 900px; }
.visit-copy > p:not(.eyebrow) { max-width: 700px; margin: 28px 0 0; color: rgba(255,255,255,.57); font-size: 14px; line-height: 1.8; }
.open-house {
  position: relative; z-index: 2; border: 1px solid rgba(255,255,255,.2); padding: 26px;
  background: rgba(255,255,255,.025);
}
.open-house-top { display: flex; justify-content: space-between; color: rgba(255,255,255,.38); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.open-house-main { padding: 100px 0 54px; }
.open-house-main small { font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: #9fb0bd; }
.open-house-main h3 { margin: 12px 0 8px; font: 500 33px/1.05 "Manrope"; letter-spacing: -.03em; }
.open-house-main p { margin: 0; color: rgba(255,255,255,.5); font-size: 11px; }
.button-light { width: 100%; background: #eff3f5; color: var(--ink); }

.site-footer { background: #050e17; color: white; padding: 72px clamp(28px,5vw,82px) 30px; }
.footer-brand { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line-light); padding-bottom: 34px; }
.footer-brand strong { font: 500 clamp(24px,3vw,38px)/1.05 "Manrope"; letter-spacing: -.035em; }
.footer-brand span { align-self: end; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.38); }
.footer-columns { display: grid; grid-template-columns: .7fr .7fr 1.6fr; gap: 40px; padding: 46px 0 64px; }
.footer-columns div { display: grid; align-content: start; gap: 11px; }
.footer-columns small { margin-bottom: 8px; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.33); }
.footer-columns a { width: fit-content; font-size: 10px; color: rgba(255,255,255,.62); }
.footer-bottom { border-top: 1px solid var(--line-light); padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.26); font-size: 8px; letter-spacing: .11em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .site-nav { display: none; }
  .menu-toggle { display: block; }
  .site-nav.open {
    display: grid; position: absolute; top: 74px; left: 18px; right: 18px; padding: 24px;
    background: rgba(6,19,33,.97); border: 1px solid rgba(255,255,255,.1);
  }
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-visual { max-width: 720px; justify-self: center; margin-top: 20px; }
  .hero h1 { font-size: clamp(66px, 12vw, 118px); }
  .scroll-cue { display: none; }
  .research-grid { grid-template-columns: repeat(2,1fr); }
  .research-card:nth-child(2) { border-right: 0; }
  .research-card:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .facility-layout { grid-template-columns: 1fr; }
  .map-panel { min-height: 680px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card {
    grid-template-columns: minmax(230px, .8fr) 1.2fr;
    grid-template-rows: 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .news-card:last-child { border-bottom: 0; }
  .news-art { height: 100%; min-height: 230px; border-bottom: 0; border-right: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .site-header { padding: 18px 20px; }
  .hero { padding: 120px 22px 64px; }
  .hero h1 { font-size: clamp(58px, 18vw, 94px); }
  .hero-lede { font-size: 15px; }
  .hero-visual { margin-top: 32px; }
  .hero-caption { margin-top: -4px; }
  .section { padding: 82px 22px; }
  .section-kicker { margin-bottom: 42px; }
  .split-heading, .research-intro, .partner-card, .visit-section { grid-template-columns: 1fr; }
  .split-heading { gap: 42px; }
  .metric-band { grid-template-columns: 1fr; }
  .metric-band article { border-right: 0; border-bottom: 1px solid var(--line); padding: 26px 0; min-height: 180px; }
  .metric-band article:last-child { border-bottom: 0; }
  .metric-band h3 { margin-top: 40px; }
  .research-intro { gap: 32px; }
  .research-grid { grid-template-columns: 1fr; }
  .research-card { min-height: 390px; border-right: 0; border-bottom: 1px solid var(--line-light) !important; }
  .research-card:last-child { border-bottom: 0 !important; }
  .map-panel { min-height: 520px; }
  .campus-map { min-height: 440px; }
  .partner-title { flex-direction: column; }
  .partner-meta { grid-template-columns: 1fr; gap: 24px; }
  .future-partners { flex-direction: column; }
  .news-head { align-items: flex-start; flex-direction: column; }
  .news-card { grid-template-columns: 1fr; grid-template-rows: 175px 1fr; }
  .news-art { height: 175px; min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .news-body { padding: 26px 0; }
  .visit-section { gap: 55px; }
  .open-house-main { padding-top: 70px; }
  .footer-brand, .footer-bottom { flex-direction: column; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .footer-columns div:last-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}


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

  .logo-stage {
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .hero-caption {
    width: 94%;
    margin-inline: auto;
  }
}


/* =========================
   V4 homepage + facilities
   ========================= */

.nav-current { color: #fff !important; }

.hero-facility {
  grid-template-columns: minmax(0, .76fr) minmax(520px, 1.24fr);
}

.facility-teaser {
  position: relative;
  display: block;
  width: min(840px, 100%);
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 44px 90px rgba(0,0,0,.28);
  overflow: hidden;
}

.facility-teaser img {
  width: 100%;
  height: min(72svh, 760px);
  object-fit: cover;
  object-position: center top;
  display: block;
}

.facility-teaser::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(to top, rgba(7,19,31,.92), transparent);
}

.facility-teaser-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: rgba(255,255,255,.76);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.facilities-preview-section { background: #edf0f0; }
.facilities-preview {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.facilities-preview-copy h2 {
  margin: 0 0 20px;
  font: 500 clamp(42px, 5vw, 70px)/.95 "Manrope";
  letter-spacing: -.05em;
}
.facilities-preview-copy p {
  max-width: 520px;
  margin: 0 0 28px;
  color: #60707c;
  font-size: 14px;
  line-height: 1.8;
}
.facilities-preview-card {
  display: block;
  background: #0b1825;
  color: white;
  padding: 16px;
  box-shadow: 0 30px 80px rgba(6,19,33,.13);
}
.facilities-preview-card img {
  width: 100%;
  display: block;
}
.facilities-preview-card span {
  display: block;
  padding: 14px 6px 2px;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 58svh;
  padding: 170px clamp(28px, 5vw, 82px) 90px;
  background:
    radial-gradient(circle at 85% 28%, rgba(101,132,157,.16), transparent 28%),
    linear-gradient(145deg, #07131f 0%, #0a1b2d 46%, #081520 100%);
  color: white;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 72px 72px;
}
.page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.page-hero-copy h1 {
  margin: 0;
  font: 500 clamp(62px, 7.2vw, 116px)/.88 "Manrope";
  letter-spacing: -.06em;
}
.page-hero-copy h1 span { color: #aebcc8; }
.page-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 17px;
  line-height: 1.8;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* full cutaway section */
.facilities-hero-section {
  padding-top: 70px;
}
.full-cutaway {
  max-width: calc(var(--max) + 120px);
  margin: 0 auto;
}
.full-cutaway-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}
.full-cutaway-top small {
  display: block;
  margin-bottom: 8px;
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #84919b;
}
.full-cutaway-top strong {
  font: 500 26px/1.05 "Manrope";
  letter-spacing: -.03em;
}
.button-lite {
  appearance: none;
  border: 1px solid rgba(6,19,33,.14);
  background: rgba(255,255,255,.72);
  color: var(--ink);
  padding: 10px 14px;
  font: 600 9px/1 "Manrope";
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.cutaway-stage {
  position: relative;
  background: #0a1621;
  padding: 18px;
  box-shadow: 0 30px 90px rgba(6,19,33,.16);
}
.cutaway-stage img {
  width: 100%;
  display: block;
}

.level-hotspot {
  position: absolute;
  left: 3.4%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(6,19,33,.75);
  color: white;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0,0,0,.25);
}
.level-hotspot::before {
  content: attr(data-level);
  font: 600 10px/1 "Manrope";
}
.level-hotspot.active {
  background: #e9eef1;
  color: var(--ink);
}
.hotspot-1 { top: 25%; }
.hotspot-2 { top: 37%; }
.hotspot-3 { top: 48%; }
.hotspot-4 { top: 58%; }
.hotspot-5 { top: 67.5%; }
.hotspot-6 { top: 77%; }
.hotspot-7 { top: 86%; }

.level-grid {
  max-width: calc(var(--max) + 120px);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 28px;
}
.level-list {
  border-top: 1px solid rgba(6,19,33,.12);
  background: rgba(255,255,255,.6);
}
.level-item {
  width: 100%;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  text-align: left;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(6,19,33,.1);
  background: transparent;
  cursor: pointer;
  color: #54626e;
}
.level-item span {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(6,19,33,.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 600 9px/1 "Manrope";
  letter-spacing: .1em;
}
.level-item strong {
  display: block;
  margin-bottom: 5px;
  font: 500 15px/1.1 "Manrope";
  color: var(--ink);
}
.level-item small {
  color: #6b7a85;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.level-item.active span {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.level-detail {
  background: white;
  border: 1px solid rgba(6,19,33,.08);
  min-height: 360px;
  padding: clamp(28px, 4vw, 50px);
  box-shadow: 0 20px 50px rgba(6,19,33,.07);
}
.level-panel { display: none; }
.level-panel.active { display: block; }
.level-panel small {
  display: inline-block;
  margin-bottom: 16px;
  color: #7c8a95;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.level-panel h2 {
  margin: 0 0 18px;
  font: 500 clamp(34px, 3.6vw, 54px)/.95 "Manrope";
  letter-spacing: -.045em;
}
.level-panel p {
  max-width: 720px;
  margin: 0;
  color: #61707b;
  font-size: 15px;
  line-height: 1.85;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  background: rgba(5,14,23,.88);
  backdrop-filter: blur(14px);
  padding: 28px;
}
.lightbox.open { display: block; }
.lightbox-shell {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
}
.lightbox-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  color: white;
}
.lightbox-bar small {
  display: block;
  margin-bottom: 8px;
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.44);
}
.lightbox-bar strong {
  font: 500 22px/1.05 "Manrope";
}
.lightbox-controls {
  display: flex;
  gap: 10px;
}
.lightbox-controls .button-lite {
  background: rgba(255,255,255,.08);
  color: white;
  border-color: rgba(255,255,255,.16);
}
.lightbox-view {
  overflow: auto;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  display: grid;
  place-items: start center;
  padding: 18px;
}

@media (max-width: 1100px) {
  .hero-facility {
    grid-template-columns: 1fr;
  }
  .facility-teaser {
    width: min(860px, 100%);
    margin: 16px auto 0;
  }
  .facilities-preview {
    grid-template-columns: 1fr;
  }
  .level-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-hero {
    padding: 126px 22px 70px;
  }
  .page-hero-copy p:not(.eyebrow) {
    font-size: 15px;
  }
  .full-cutaway-top {
    flex-direction: column;
    align-items: start;
  }
  .cutaway-stage {
    padding: 10px;
  }
  .level-hotspot {
    width: 22px;
    height: 22px;
  }
  .level-detail {
    min-height: auto;
    padding: 26px 22px;
  }
  .lightbox {
    padding: 14px;
  }
  .lightbox-bar {
    flex-direction: column;
    align-items: start;
  }
}


/* =========================
   V5 institutional polish
   ========================= */

.page-hero-statement {
  margin: 30px 0 4px !important;
  color: #eef3f6 !important;
  font: 500 clamp(22px, 2.5vw, 34px)/1.1 "Manrope" !important;
  letter-spacing: -.025em;
}

.cutaway-clickable {
  cursor: zoom-in;
}

.cutaway-clickable:focus-visible {
  outline: 2px solid rgba(6,19,33,.65);
  outline-offset: 5px;
}

.lightbox-view {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: default;
  touch-action: none;
  user-select: none;
}

.lightbox-view.is-zoomed {
  cursor: grab;
}

.lightbox-view.is-dragging {
  cursor: grabbing;
}

.lightbox-canvas {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: start center;
  transform: translate3d(var(--pan-x, 0px), var(--pan-y, 0px), 0);
  will-change: transform;
}

.lightbox-image {
  width: min(1600px, 100%);
  max-width: none;
  transform-origin: top center;
  transform: scale(var(--zoom, 1));
  transition: transform .16s ease;
  pointer-events: none;
  will-change: transform;
}

.lightbox-view.is-dragging .lightbox-image {
  transition: none;
}

.lightbox-hint {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 8px 10px;
  background: rgba(5,14,23,.72);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.56);
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
  pointer-events: none;
}

@media (max-width: 760px) {
  .lightbox-hint {
    left: 10px;
    bottom: 10px;
  }
}


/* =========================
   V6 newsroom + press pages
   ========================= */

.archive-section { padding-top: 82px; }

.archive-list {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.archive-item {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) 1.28fr;
  gap: clamp(30px, 5vw, 78px);
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: stretch;
}
.archive-media {
  height: auto;
  min-height: 270px;
  border: 0;
}
.archive-copy {
  align-self: center;
  max-width: 820px;
}
.archive-copy small {
  display: block;
  margin-bottom: 18px;
  color: #80909c;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.archive-copy h2 {
  margin: 0 0 18px;
  font: 500 clamp(30px, 3.4vw, 52px)/1.02 "Manrope";
  letter-spacing: -.045em;
}
.archive-copy p {
  max-width: 720px;
  margin: 0;
  color: #657480;
  font-size: 14px;
  line-height: 1.8;
}

.press-release {
  background: var(--paper);
  min-height: 100svh;
  padding-top: 118px;
}
.press-release-header {
  padding: clamp(70px, 8vw, 130px) clamp(28px, 8vw, 140px) clamp(50px, 6vw, 86px);
  background:
    radial-gradient(circle at 85% 18%, rgba(119,145,164,.11), transparent 28%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.press-release-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 28px;
  color: #74838f;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.press-release-meta a { color: var(--ink); }
.press-release-meta span + span::before {
  content: "·";
  margin-right: 20px;
  color: #a5adb3;
}
.press-release-header h1 {
  max-width: 1260px;
  margin: 0;
  font: 500 clamp(52px, 6.7vw, 104px)/.94 "Manrope";
  letter-spacing: -.058em;
}
.press-release-dek {
  max-width: 930px;
  margin: 32px 0 0;
  color: #5d6d79;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.65;
}
.press-release-id {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1260px;
  margin-top: 50px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #88949d;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.press-release-layout {
  max-width: 1260px;
  margin: 0 auto;
  padding: clamp(60px, 7vw, 110px) clamp(28px, 5vw, 70px) clamp(90px, 10vw, 150px);
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(50px, 8vw, 130px);
}
.press-release-aside {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding-top: 4px;
}
.press-release-aside small {
  margin-bottom: 3px;
  color: #81909b;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.press-release-aside p {
  margin: 0 0 20px;
  font-size: 13px;
  color: #5f6e78;
}
.press-release-aside a {
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(6,19,33,.18);
  font-size: 10px;
  color: #52616c;
}

.press-release-body {
  min-width: 0;
  font-family: "Inter", system-ui, sans-serif;
}
.press-release-body > p {
  margin: 0 0 24px;
  color: #3f4f5a;
  font-size: 16px;
  line-height: 1.9;
}
.press-release-body .article-location {
  color: #2e3c46;
}
.press-release-body h2 {
  margin: 58px 0 18px;
  font: 500 clamp(29px, 3vw, 42px)/1.08 "Manrope";
  letter-spacing: -.04em;
}
.article-linkout {
  margin-top: 36px !important;
}
.article-linkout a {
  display: inline-flex;
  border: 1px solid var(--line);
  padding: 13px 17px;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.article-boilerplate {
  margin-top: 68px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.article-boilerplate small {
  display: block;
  margin-bottom: 12px;
  color: #7f8d98;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.article-boilerplate p {
  margin: 0;
  color: #62717c;
  font-size: 13px;
  line-height: 1.75;
}
.article-end-links {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  font-size: 10px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-columns > div:last-child a:last-child {
  margin-top: 5px;
}

@media (max-width: 900px) {
  .archive-item {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .archive-media { min-height: 220px; }
  .press-release-layout {
    grid-template-columns: 1fr;
  }
  .press-release-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
    padding-bottom: 28px;
  }
}

@media (max-width: 600px) {
  .press-release {
    padding-top: 76px;
  }
  .press-release-header {
    padding-left: 22px;
    padding-right: 22px;
  }
  .press-release-meta span + span::before {
    margin-right: 10px;
  }
  .press-release-id,
  .article-end-links {
    flex-direction: column;
  }
  .press-release-layout {
    padding-left: 22px;
    padding-right: 22px;
  }
  .press-release-aside {
    grid-template-columns: 1fr;
  }
}


/* =========================
   V7 light-page header fix
   ========================= */

/* Newsroom and article pages use light content immediately below the fixed nav.
   Keep the navigation legible from the first paint, not only after scrolling. */
body:has(.newsroom-page-hero) .site-header,
body:has(.press-release) .site-header {
  background: rgba(6, 19, 33, .94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.09);
}

/* Preserve the compact scrolled state without a visible jump. */
body:has(.newsroom-page-hero) .site-header.scrolled,
body:has(.press-release) .site-header.scrolled {
  background: rgba(6, 19, 33, .97);
}

/* Fallback hook for browsers without :has(); applied by script.js. */
body.light-page-header .site-header {
  background: rgba(6, 19, 33, .94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.09);
}


/* =========================
   V8 legal disclosure
   ========================= */

.legal-page {
  min-height: 78svh;
  padding: 190px clamp(28px, 8vw, 140px) 110px;
  background:
    radial-gradient(circle at 82% 16%, rgba(119,145,164,.10), transparent 28%),
    var(--paper);
}

.legal-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.legal-kicker {
  margin: 0 0 28px;
  color: #768592;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.legal-wrap h1 {
  margin: 0;
  max-width: 920px;
  font: 500 clamp(52px, 6.2vw, 94px)/.95 "Manrope";
  letter-spacing: -.055em;
}

.legal-card {
  max-width: 940px;
  margin-top: 56px;
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-card p {
  max-width: 900px;
  margin: 0;
  color: #485965;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.85;
}

.legal-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 940px;
  margin-top: 18px;
  color: #87939c;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .legal-page {
    padding: 140px 22px 82px;
  }

  .legal-meta {
    flex-direction: column;
    gap: 8px;
  }
}


/* =========================
   V9 footer legal utility
   ========================= */

.footer-utility {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-utility a,
.footer-utility span {
  color: rgba(255,255,255,.26);
}

.footer-utility a {
  transition: color .2s ease;
}

.footer-utility a:hover {
  color: rgba(255,255,255,.65);
}

@media (max-width: 760px) {
  .footer-utility {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}


/* =========================
   V12 8K layered facilities schematic
   ========================= */

.layered-cutaway {
  position: relative;
  padding: 18px;
  overflow: hidden;
  cursor: default;
}

.facility-layer-stack {
  width: 100%;
  background: #f5f4ef;
  line-height: 0;
}

.facility-layer {
  position: relative;
  width: 100%;
  line-height: 0;
}

.facility-layer + .facility-layer {
  margin-top: 0;
}

.facility-layer img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.facility-layer-level {
  cursor: pointer;
}

.facility-layer-level::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-left: 0 solid rgba(231, 235, 238, 0);
  transition: border-color .2s ease, background .2s ease;
}

.facility-layer-level:hover::after {
  background: rgba(255,255,255,.025);
}

.facility-layer-level.active::after {
  border-left-width: 3px;
  border-left-color: rgba(235, 242, 247, .86);
}

.facility-layer .level-hotspot {
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  z-index: 4;
}

.cutaway-zoom-fab {
  position: absolute;
  z-index: 6;
  top: 30px;
  right: 30px;
  display: grid;
  grid-template-columns: 18px auto;
  gap: 9px;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(6,19,33,.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  cursor: zoom-in;
}

.cutaway-zoom-fab span {
  font: 400 20px/1 "Manrope";
}

.cutaway-zoom-fab small {
  font: 600 8px/1 "Manrope";
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cutaway-resolution-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 3px 0;
  color: #7f8d97;
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

/* The lightbox uses the same individual 8K source files rather than a
   flattened lower-resolution composite. */
.lightbox-stack {
  width: min(1600px, 100%, 104vh);
  max-width: none;
  transform-origin: top center;
  transform: scale(var(--zoom, 1));
  transition: transform .16s ease;
  line-height: 0;
  will-change: transform;
}

.lightbox-stack img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.lightbox-view.is-dragging .lightbox-stack {
  transition: none;
}

/* Retire the old single-image zoom target. */
.lightbox-image {
  display: none;
}

@media (max-width: 760px) {
  .layered-cutaway {
    padding: 10px;
  }

  .facility-layer .level-hotspot {
    left: 1.4%;
  }

  .cutaway-zoom-fab {
    top: 18px;
    right: 18px;
  }

  .cutaway-resolution-note {
    flex-direction: column;
    gap: 5px;
  }
}


/* =========================
   V14 homepage facility preview aspect-ratio fix
   ========================= */

.facilities-preview-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #081520;
}

.facilities-preview-media img {
  display: block;
  width: 100%;
  height: 100% !important;
  max-width: none;
  object-fit: contain;
  object-position: center center;
}

/* Override the older generic preview rule so intrinsic dimensions cannot
   be interpreted as an independent rendered height by the browser. */
.facilities-preview-card > img {
  height: auto !important;
  object-fit: contain;
}


/* =========================
   V15 progressive media / image performance
   ========================= */

.progressive-media {
  opacity: 0;
  transition: opacity .35s ease;
}
.progressive-media.is-loaded { opacity: 1; }

.facility-teaser,
.facilities-preview-media,
.facility-layer {
  position: relative;
  background:
    linear-gradient(100deg,
      rgba(255,255,255,.025) 18%,
      rgba(255,255,255,.08) 28%,
      rgba(255,255,255,.025) 38%),
    #0b1825;
  background-size: 200% 100%;
  animation: media-shimmer 1.25s linear infinite;
}

.facility-teaser:has(.progressive-media.is-loaded),
.facilities-preview-media:has(.progressive-media.is-loaded),
.facility-layer:has(.progressive-media.is-loaded) {
  animation: none;
  background: #0b1825;
}

@keyframes media-shimmer {
  to { background-position-x: -200%; }
}

.facility-preview-layer {
  display: block;
  width: 100%;
  height: auto;
}

.hires-loader {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  background: rgba(5,14,23,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  transition: opacity .25s ease, visibility .25s ease;
}

.hires-loader.is-complete {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hires-loader-inner {
  width: min(430px, calc(100% - 44px));
}

.hires-loader-label {
  display: block;
  margin-bottom: 14px;
  font: 500 13px/1.25 "Manrope";
}

.hires-loader-track {
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.14);
}

.hires-loader-bar {
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  background: rgba(235,242,247,.88);
  transition: width .18s ease;
}

.hires-loader-status {
  display: block;
  margin-top: 11px;
  color: rgba(255,255,255,.48);
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.lightbox-stack {
  opacity: 0;
  transition: opacity .25s ease, transform .16s ease;
}
.lightbox-stack.is-ready { opacity: 1; }

.hires-manifest { display: none !important; }
