:root {
  --ink: #303761;
  --ink-soft: #5a618a;
  --ink-faint: #8b91b0;
  --accent: #e11d48;
  --accent-soft: rgba(225, 29, 72, 0.12);
  --paper: #dedede;
  --paper-2: #cccccc;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.48);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-deep: rgba(160, 160, 170, 0.32);
  --shadow: 0 20px 60px rgba(48, 55, 97, 0.08);
  --font: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* —— FIXED STAGE (Iris light field + 3D) —— */
.stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, #e8e8e8 0%, #dedede 40%, var(--paper) 72%, var(--paper-2) 100%);
}

.stage__glow {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(90vw, 920px);
  height: min(70vh, 620px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, #f0f0f0 0%, rgba(222, 222, 222, 0.7) 35%, rgba(204, 204, 204, 0) 72%);
  filter: blur(8px);
  animation: breathe 10s ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.95;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 1;
  }
}

.stage__3d {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  /* keep transform-origin centered so scale/parallax never drags it off-frame */
  transform-origin: 50% 45%;
  will-change: transform;
}

.stage__3d iframe,
.stage__3d canvas,
.stage__3d model-viewer,
.stage__3d video {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: auto;
  background: transparent;
}

.stage__3d-wrap {
  /* nearly full-bleed — model is the stage */
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  margin: 0;
  will-change: transform;
  transform-style: preserve-3d;
  perspective: 1100px;
  pointer-events: auto;
  transform-origin: 50% 50%;
}

.stage__3d model-viewer {
  width: 100%;
  height: 100%;
  --poster-color: transparent;
  outline: none;
}

@media (max-width: 700px) {
  .stage__3d-wrap {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    opacity: 0.98;
  }
}

/* floating SVG graphics layer behind type */
.stage__gfx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.stage__gfx .g-float {
  position: absolute;
  opacity: 0.55;
  /* top/left/right/bottom from modifier classes are the home position;
     GSAP only adds a small ambient offset — never scroll-scrub these */
  will-change: transform;
  color: var(--ink);
  backface-visibility: hidden;
}

.stage__gfx .g-float svg {
  display: block;
  width: 100%;
  height: 100%;
}

.g-float--ring {
  width: 180px;
  height: 180px;
  top: 18%;
  left: 8%;
  opacity: 0.28;
}
.g-float--chip {
  width: 72px;
  height: 72px;
  top: 28%;
  right: 10%;
  opacity: 0.4;
  color: var(--accent);
}
.g-float--hex {
  width: 96px;
  height: 96px;
  bottom: 22%;
  left: 14%;
  opacity: 0.3;
}
.g-float--node {
  width: 56px;
  height: 56px;
  top: 55%;
  right: 18%;
  opacity: 0.35;
  color: var(--accent);
}
.g-float--grid {
  width: 140px;
  height: 140px;
  bottom: 16%;
  right: 8%;
  opacity: 0.22;
}
.g-float--pulse {
  width: 48px;
  height: 48px;
  top: 20%;
  left: 42%;
  opacity: 0.4;
  color: var(--accent);
}

/* glyph marquee between sections */
.glyph-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(48, 55, 97, 0.06);
  border-bottom: 1px solid rgba(48, 55, 97, 0.06);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.glyph-marquee__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  will-change: transform;
}

.glyph-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.glyph-item svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex: 0 0 auto;
}

.glyph-item .g-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

/* about portrait + badge */
.about-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  width: min(560px, 100%);
  margin: 0 auto;
}

.about__names {
  margin: 0;
  text-align: center;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.about__names a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(225, 29, 72, 0.35);
  text-underline-offset: 0.15em;
}

.about__names a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.glass--letter {
  width: min(560px, 100%);
  padding: 1.35rem 1.5rem 1.45rem;
  text-align: left;
}

.glass--letter p {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}

.glass--letter p:last-child {
  margin-bottom: 0;
}

.glass--letter strong {
  color: var(--ink);
  font-weight: 600;
}

.glass--letter em {
  color: var(--ink);
  font-style: italic;
}

.glass--letter__muted {
  font-size: 0.88rem !important;
  color: var(--ink-faint) !important;
  letter-spacing: 0.02em;
}

.glass--letter a,
.panel__lede a,
.contact__media a,
.foot__brands a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(225, 29, 72, 0.35);
  text-underline-offset: 0.15em;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}

.glass--letter a:hover,
.panel__lede a:hover,
.contact__media a:hover,
.foot__brands a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.ship__go,
.ship-featured .ship__go {
  display: inline-flex;
  align-items: center;
  margin-top: 0.85rem;
  margin-right: 0.75rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(48, 55, 97, 0.12);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
  position: relative;
  z-index: 2;
}

.ship__go:hover,
.ship-featured .ship__go:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.ship .ship__hint,
.ship-featured .ship__hint {
  display: inline-block;
  margin-top: 0.65rem;
}

/* core icons */
.core {
  position: relative;
  overflow: hidden;
}

.core__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.85rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--accent);
}

.core__icon svg {
  width: 26px;
  height: 26px;
}

.core__deco {
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: 100px;
  height: 100px;
  opacity: 0.08;
  color: var(--ink);
  pointer-events: none;
}

.core__deco svg {
  width: 100%;
  height: 100%;
}

/* ship monogram marks */
.ship {
  position: relative;
  overflow: hidden;
}

.ship__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  margin-bottom: 0.75rem;
  box-shadow: 0 8px 18px rgba(225, 29, 72, 0.2);
}

.ship__bg {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 72px;
  height: 72px;
  opacity: 0.07;
  color: var(--ink);
  pointer-events: none;
}

.ship__bg svg {
  width: 100%;
  height: 100%;
}

/* person glyph faces more graphic */
.person__orb {
  position: relative;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* stat icons */
.stat {
  position: relative;
  overflow: hidden;
}

.stat__icon {
  position: absolute;
  right: 0.65rem;
  top: 0.55rem;
  width: 28px;
  height: 28px;
  opacity: 0.18;
  color: var(--accent);
}

.stat__icon svg {
  width: 100%;
  height: 100%;
}

.stage__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 2rem 2.5rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(48, 55, 97, 0.08);
  color: var(--ink-faint);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage__placeholder span {
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
}

.stage__placeholder em {
  font-style: normal;
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: 0.02em;
  opacity: 0.7;
}

.stage__loader {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 0.55rem;
}

.stage__loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(48, 55, 97, 0.14);
  border-top-color: var(--accent);
  animation: stage-spin 1.1s linear infinite;
}

.stage__loader-ring--b {
  inset: 10px;
  border-top-color: var(--ink);
  border-right-color: transparent;
  animation-duration: 1.7s;
  animation-direction: reverse;
}

.stage__loader-core {
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0%, var(--accent) 55%, #9f1239 100%);
  box-shadow: 0 0 18px rgba(225, 29, 72, 0.45);
  animation: stage-core 1.4s ease-in-out infinite;
}

@keyframes stage-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes stage-core {
  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

body.model-ready .stage__placeholder {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}

body.has-3d .stage__glow {
  opacity: 0.35;
}

/* —— BOOT SEQUENCE —— */
.boot {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
  transition:
    opacity 0.7s var(--ease),
    visibility 0.7s;
}

.boot__field {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 48%, #e8e8e8 0%, #dedede 34%, var(--paper) 68%, var(--paper-2) 100%);
}

.boot__bloom {
  position: absolute;
  left: 50%;
  top: 44%;
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 240, 240, 0.9) 0%, rgba(222, 222, 222, 0.35) 40%, transparent 70%);
  filter: blur(6px);
  animation: boot-bloom 2.4s ease-in-out infinite;
}

.boot__scene {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
  padding: 2rem;
}

.boot__orbit {
  position: relative;
  width: min(58vw, 280px);
  height: min(58vw, 280px);
}

.boot__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(48, 55, 97, 0.12);
}

.boot__ring--a {
  inset: 0;
  border-style: dashed;
  border-color: rgba(48, 55, 97, 0.2);
  animation: boot-spin 14s linear infinite;
}

.boot__ring--b {
  inset: 12%;
  border-color: rgba(225, 29, 72, 0.22);
  animation: boot-spin 9s linear infinite reverse;
}

.boot__ring--c {
  inset: 26%;
  border: 1.5px solid rgba(48, 55, 97, 0.16);
  border-top-color: var(--accent);
  border-bottom-color: transparent;
  animation: boot-spin 3.6s linear infinite;
}

.boot__tick,
.boot__tick--2 {
  position: absolute;
  inset: 0;
  animation: boot-spin 11s linear infinite;
}

.boot__tick::before,
.boot__tick--2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 3px rgba(48, 55, 97, 0.08);
}

.boot__tick--2 {
  animation-duration: 7s;
  animation-direction: reverse;
}

.boot__tick--2::before {
  background: var(--accent);
  width: 8px;
  height: 8px;
  margin-left: -4px;
  box-shadow: 0 0 12px rgba(225, 29, 72, 0.55);
}

.boot__sat,
.boot__sat--b {
  position: absolute;
  inset: 0;
  animation: boot-spin 6.5s linear infinite;
}

.boot__sat::before,
.boot__sat--b::before {
  content: "";
  position: absolute;
  top: 14%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(225, 29, 72, 0.5);
  transform: rotate(45deg);
}

.boot__sat--b {
  animation-duration: 10s;
  animation-direction: reverse;
}

.boot__sat--b::before {
  top: auto;
  bottom: 18%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  background: var(--ink);
  box-shadow: none;
  border-radius: 50%;
  transform: none;
}

.boot__core {
  position: absolute;
  inset: 30%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, #f2f2f2 0%, rgba(240, 240, 240, 0.75) 40%, rgba(222, 222, 222, 0.3) 70%, transparent 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7),
    0 20px 50px rgba(48, 55, 97, 0.08);
  animation: boot-core 2.2s ease-in-out infinite;
}

.boot__sigil {
  width: 72%;
  height: 72%;
  color: var(--ink);
}

.boot__hex {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: boot-draw 1.6s var(--ease) 0.15s forwards;
}

.boot__halo {
  stroke: rgba(48, 55, 97, 0.28);
  stroke-dasharray: 4 6;
  animation: boot-spin 12s linear infinite;
  transform-origin: 60px 60px;
}

.boot__pulse {
  fill: var(--accent);
  transform-origin: 60px 60px;
  animation: boot-pulse 1.5s ease-in-out infinite;
}

.boot__slash {
  stroke: var(--accent);
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: boot-draw 0.9s var(--ease) 0.7s forwards;
}

.boot__chip {
  stroke: var(--ink-soft);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: boot-draw 0.8s var(--ease) 0.55s forwards;
}

.boot__meta {
  width: min(72vw, 280px);
  text-align: center;
}

.boot__brand {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--ink);
  opacity: 0;
  animation: boot-fade-up 0.7s var(--ease) 0.35s forwards;
}

.boot__track {
  position: relative;
  height: 2px;
  border-radius: 999px;
  background: rgba(48, 55, 97, 0.1);
  overflow: hidden;
  opacity: 0;
  animation: boot-fade-up 0.7s var(--ease) 0.5s forwards;
}

.boot__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ink) 0%, var(--accent) 100%);
  transition: width 0.18s linear;
}

.boot__glow {
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: 28px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.55) 0%, transparent 70%);
  left: 0;
  transform: translateX(-50%);
  opacity: 0.85;
  pointer-events: none;
  transition: left 0.18s linear;
}

.boot__line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  opacity: 0;
  animation: boot-fade-up 0.7s var(--ease) 0.6s forwards;
}

.boot__status {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: var(--ink);
}

.boot__pct {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.boot__pct::after {
  content: "%";
  margin-left: 0.1em;
  font-size: 0.85em;
  opacity: 0.7;
}

/* boot exit */
.boot.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.boot.is-done .boot__orbit {
  transform: scale(1.35);
  opacity: 0;
  transition:
    transform 0.75s var(--ease),
    opacity 0.55s ease;
}

.boot.is-done .boot__meta {
  transform: translateY(12px);
  opacity: 0;
  transition:
    transform 0.45s var(--ease),
    opacity 0.4s ease;
}

body.is-booting main,
body.is-booting .nav,
body.is-booting .rail,
body.is-booting .foot {
  opacity: 0;
}

body.is-ready main,
body.is-ready .nav,
body.is-ready .rail,
body.is-ready .foot {
  opacity: 1;
  transition: opacity 0.65s var(--ease) 0.05s;
}

body.is-booting {
  overflow: hidden;
}

@keyframes boot-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes boot-bloom {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

@keyframes boot-core {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes boot-pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes boot-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes boot-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— NAV PILL —— */
.nav {
  position: fixed;
  top: 1.1rem;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav__pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem 0.45rem 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(48, 55, 97, 0.08);
}

.nav__pill a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav__pill a:hover {
  color: var(--ink);
  background: rgba(48, 55, 97, 0.05);
}

.nav__logo {
  font-weight: 700 !important;
  color: var(--accent) !important;
  letter-spacing: 0.02em !important;
  font-size: 0.95rem !important;
  padding-right: 0.5rem !important;
}

/* —— RIGHT RAIL —— */
.rail {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.rail::before {
  content: "";
  position: absolute;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: rgba(48, 55, 97, 0.15);
  z-index: -1;
}

.rail__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(48, 55, 97, 0.2);
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}

.rail__dot.is-on {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.15);
  transform: scale(1.25);
}

@media (max-width: 800px) {
  .rail {
    display: none;
  }
  .nav__pill a:not(.nav__logo) {
    display: none;
  }
  .nav__pill {
    padding: 0.4rem 0.9rem;
  }
}

/* —— PANELS —— */
main {
  position: relative;
  z-index: 2;
}

.panel {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 1.5rem) 1.5rem 4rem;
}

.panel--hero {
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  padding-top: calc(var(--nav-h) + 2rem);
}

.panel--center {
  justify-content: center;
}

.panel__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.panel__inner--narrow {
  width: min(720px, 100%);
}

.panel__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  color: var(--ink);
}

.panel__lede {
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 400;
  margin: -0.5rem 0 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  margin: 0 0 1rem;
}

.eyebrow i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

/* —— HERO —— */
.hero__meta {
  position: absolute;
  top: calc(var(--nav-h) + 1.5rem);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__meta--left {
  left: clamp(1.25rem, 4vw, 3rem);
}

.hero__meta--right {
  right: clamp(1.25rem, 4vw, 3rem);
  text-align: right;
}

.hero__frame {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding-bottom: 12vh;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 12ch;
}

.hero__line {
  display: block;
}

.hero__aside {
  margin: 0 0 0.5rem;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-soft);
  text-align: right;
  max-width: 14ch;
}

@media (max-width: 700px) {
  .hero__frame {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 8vh;
  }
  .hero__aside {
    text-align: left;
  }
  .hero__meta--right {
    display: none;
  }
}

/* —— GLASS —— */
.glass {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.glass--badge {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.85rem 2.1rem 2rem;
  text-align: center;
  /* solid enough to kill stage bleed; navy on near-white */
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(48, 55, 97, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.glass__kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
}

.glass--badge h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* —— CORE GRID —— */
.core-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .core-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.core {
  padding: 1.35rem 1.25rem 1.4rem;
  background: var(--glass-deep);
  min-height: 180px;
  transition: transform 0.35s var(--ease), background 0.35s;
}

.core:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.55);
}

.core h3 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.core p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* —— STATS —— */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  padding: 1.1rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.7);
  text-align: center;
}

.stat b {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* —— MINDS (model cards) —— */
.minds {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .minds {
    grid-template-columns: 1fr 1fr;
  }
}

.mind {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  padding: 1.25rem 1.3rem 1.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(48, 55, 97, 0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  align-items: start;
}

.mind:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(48, 55, 97, 0.11);
}

.mind__logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--mc, #303761);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(48, 55, 97, 0.15);
}

.mind__logo svg {
  width: 28px;
  height: 28px;
}

.mind {
  grid-template-columns: 88px 1fr;
}

.mind__photo {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(48, 55, 97, 0.12);
  background: #fff;
  position: relative;
}

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

.mind__badge {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--mc, #303761);
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(48, 55, 97, 0.2);
}

.mind__badge svg {
  width: 14px;
  height: 14px;
}

.drawer__portrait {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(48, 55, 97, 0.12);
  margin-bottom: 0.25rem;
}

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

.mind__head {
  min-width: 0;
}

.mind__head h3 {
  margin: 0 0 0.2rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.mind__role {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.mind__blurb {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.mind__meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mind__meta li {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(48, 55, 97, 0.06);
  color: var(--ink);
  border: 1px solid rgba(48, 55, 97, 0.06);
}

.mind__meta li strong {
  color: var(--ink-faint);
  font-weight: 600;
  margin-right: 0.25rem;
}

/* —— SHIPS —— */
.ships-layout {
  display: grid;
  gap: 0.85rem;
}

.ship-featured {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 1.4rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.1), rgba(124, 58, 237, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 50px rgba(48, 55, 97, 0.08);
}

@media (min-width: 800px) {
  .ship-featured {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1.75rem 1.75rem;
  }
}

.ship-featured__mark {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.25);
}

.ship-featured__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ship-featured__body p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 36rem;
  line-height: 1.45;
}

.ship-featured__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.ship-featured__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.ship-featured__chips span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  border: 1px solid rgba(48, 55, 97, 0.06);
}

.ship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.ship {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.15rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.95);
  min-height: 170px;
  box-shadow: 0 12px 32px rgba(48, 55, 97, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.ship:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(48, 55, 97, 0.1);
}

.ship__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--sc, var(--accent)), #7c3aed);
  margin-bottom: 0.85rem;
  box-shadow: 0 8px 18px rgba(48, 55, 97, 0.15);
}

.ship__bg {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 80px;
  height: 80px;
  opacity: 0.06;
  color: var(--ink);
  pointer-events: none;
}

.ship__bg svg {
  width: 100%;
  height: 100%;
}

.ship__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.ship h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ship p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.4;
  flex: 1;
}

/* —— TIMELINE —— */
.panel__inner--wide {
  width: min(960px, 100%);
  margin: 0 auto;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 0 0 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(48, 55, 97, 0.12));
  border-radius: 2px;
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.85rem 1.1rem;
  padding: 0 0 1.35rem 0;
  align-items: start;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  z-index: 1;
}

.timeline__dot svg {
  width: 14px;
  height: 14px;
}

.timeline__card {
  padding: 1.05rem 1.2rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(48, 55, 97, 0.06);
}

.timeline__era {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.timeline__card p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.35;
}

/* —— CONTACT (Iris-style split) —— */
.panel--contact {
  min-height: auto;
  align-items: center;
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: 3rem;
  /* solid enough that the 3D stage does not ghost through links */
  background: linear-gradient(
    180deg,
    rgba(222, 222, 222, 0.55) 0%,
    rgba(222, 222, 222, 0.92) 28%,
    rgba(204, 204, 204, 0.98) 100%
  );
  backdrop-filter: blur(10px);
}

.contact {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .contact {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: center;
  }
}

.contact__media {
  margin: 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 30px 80px rgba(48, 55, 97, 0.12);
  background: rgba(255, 255, 255, 0.4);
  aspect-ratio: 4 / 5;
  max-height: min(72vh, 560px);
}

.contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.contact__media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(180deg, transparent, rgba(48, 55, 97, 0.72));
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact__media strong {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact__media span {
  font-size: 0.82rem;
  font-weight: 400;
  opacity: 0.88;
}

.contact__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.contact__body .panel__title {
  margin-bottom: 0.75rem;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.contact__body .panel__lede {
  margin: 0 0 1.75rem;
  max-width: 28rem;
}

.contact__links {
  display: grid;
  gap: 0.55rem;
}

.contact-link {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr) 1.75rem;
  align-items: center;
  column-gap: 0.85rem;
  row-gap: 0.15rem;
  padding: 0.95rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.7);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.contact-link--primary {
  grid-template-columns: 6.5rem minmax(0, 1fr) 2.5rem;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 36px rgba(48, 55, 97, 0.08);
  padding: 1.1rem 1.2rem;
}

.contact-link--primary .contact-link__k {
  color: var(--accent);
}

.contact-link--primary .contact-link__v {
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-link--primary .contact-link__go {
  justify-self: end;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 18px rgba(225, 29, 72, 0.25);
}

.contact-link--primary:hover .contact-link__go {
  color: #fff;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.78);
  transform: translateX(4px);
  box-shadow: 0 10px 30px rgba(48, 55, 97, 0.07);
}

.contact-link__k {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.contact-link__v {
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-link__go {
  color: var(--ink-faint);
  font-size: 1.05rem;
  transition: color 0.2s, transform 0.2s;
}

.contact-link:hover .contact-link__go {
  color: var(--accent);
  transform: translateX(3px);
}

.contact__note {
  margin: 1.5rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
}

@media (max-width: 560px) {
  .contact-link,
  .contact-link--primary {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
  }
  .contact-link__k {
    grid-column: 1;
    grid-row: 1;
  }
  .contact-link__v {
    grid-column: 1;
    grid-row: 2;
  }
  .contact-link__go {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .contact__media {
    max-height: 320px;
    aspect-ratio: 5 / 4;
  }
}

/* —— FOOT —— */
.foot {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.5rem 2.25rem;
  color: var(--ink-faint);
  font-size: 0.85rem;
  background: rgba(222, 222, 222, 0.94);
  border-top: 1px solid rgba(48, 55, 97, 0.08);
}

.foot__inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  text-align: center;
}

.foot p {
  margin: 0 0 0.4rem;
}

.foot__brands {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 42rem;
  margin: 0 auto !important;
  line-height: 1.6;
}

.foot__brands a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(48, 55, 97, 0.22);
}

.foot__brands a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.drawer__cta {
  margin: 1.25rem 0 0;
}

.drawer__link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
  text-decoration: none;
}

.drawer__link:hover {
  text-decoration: underline;
}

/* —— DETAIL DRAWER —— */
.drawer[hidden] {
  display: none !important;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: block;
}

.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(48, 55, 97, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.drawer.is-open .drawer__scrim {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.97);
  border-left: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: -24px 0 80px rgba(48, 55, 97, 0.14);
  padding: 1.25rem 1.4rem 2.5rem;
  overflow-y: auto;
  transform: translateX(104%);
  transition: transform 0.4s var(--ease);
}

.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.drawer__kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.drawer__close {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(48, 55, 97, 0.06);
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.drawer__close:hover {
  background: var(--accent);
  color: #fff;
}

.drawer__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
}

.drawer__lead {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.drawer__body {
  display: grid;
  gap: 1.1rem;
}

.drawer__section h3 {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.drawer__section p,
.drawer__section li {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.55;
}

.drawer__section ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  display: grid;
  gap: 0.4rem;
}

.drawer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.drawer__chips span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(48, 55, 97, 0.06);
  color: var(--ink);
  border: 1px solid rgba(48, 55, 97, 0.06);
}

.drawer__chips span em {
  font-style: normal;
  color: var(--ink-faint);
  margin-right: 0.25rem;
}

.drawer__quote {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(225, 29, 72, 0.06);
  border-left: 3px solid var(--accent);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}

.is-openable {
  cursor: pointer;
}

.is-openable:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.mind,
.ship,
.ship-featured,
.core,
.stat,
.timeline__card,
.glass--badge {
  cursor: pointer;
}

.mind__hint,
.ship__hint,
.core__hint {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
}

.mind:hover .mind__hint,
.ship:hover .ship__hint,
.core:hover .core__hint,
.ship-featured:hover .ship__hint {
  opacity: 1;
}

body.drawer-open {
  overflow: hidden;
}

/* parallax: transform only; never opacity-hide content (kills scroll flash) */
.panel,
.stage__3d,
.stage__glow,
.stage__gfx,
.hero__title,
.hero__aside,
.hero__meta,
.core,
.mind,
.ship,
.ship-featured,
.stat,
.timeline__item,
.about__names,
.glass--badge,
.contact__media,
.contact__body {
  will-change: transform;
}

.panel__title,
.panel__lede,
.eyebrow,
.core,
.mind,
.ship,
.ship-featured,
.timeline__item,
.stat,
.hero__line,
.hero__aside,
.hero__meta {
  opacity: 1 !important;
}

@media (prefers-reduced-motion: reduce) {
  .stage__glow {
    animation: none;
  }
  .drawer__scrim,
  .drawer__panel {
    transition: none;
  }
  .panel,
  .stage__3d,
  .stage__glow,
  .stage__gfx,
  .hero__title,
  .core,
  .mind,
  .ship {
    will-change: auto;
  }
  .boot__ring,
  .boot__tick,
  .boot__tick--2,
  .boot__sat,
  .boot__sat--b,
  .boot__halo,
  .boot__bloom,
  .boot__core,
  .boot__pulse,
  .stage__loader-ring,
  .stage__loader-core {
    animation: none !important;
  }
  .boot__hex,
  .boot__slash,
  .boot__chip,
  .boot__brand,
  .boot__track,
  .boot__line {
    animation: none !important;
    opacity: 1;
    stroke-dashoffset: 0;
  }
  .boot {
    transition: opacity 0.2s ease, visibility 0.2s;
  }
}
