@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=IBM+Plex+Mono:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #000;
  --ink: #f8fbff;
  --muted: rgba(248, 251, 255, 0.66);
  --line: rgba(248, 251, 255, 0.13);
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --orange: #ff8a24;
  --blue: #8fc7ff;
  --max: 1180px;
  --nav-height: 82px;
  --font-sans: "Inter", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(143, 199, 255, 0.75) rgba(255, 255, 255, 0.08);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-sans);
}

/* Custom scrollbar polish */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.95), rgba(16, 12, 10, 0.95));
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid rgba(8, 10, 18, 0.95);
  background: linear-gradient(180deg, rgba(143, 199, 255, 0.9), rgba(255, 138, 36, 0.75));
  box-shadow: 0 0 18px rgba(143, 199, 255, 0.35);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(164, 214, 255, 0.96), rgba(255, 161, 74, 0.86));
}

/* Download card styling (shadcn-inspired) */
.download-card {
  background: linear-gradient(135deg, rgba(143, 199, 255, 0.12), rgba(255, 138, 36, 0.08));
  border: 1px solid rgba(143, 199, 255, 0.25);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.download-card:hover {
  background: linear-gradient(135deg, rgba(143, 199, 255, 0.18), rgba(255, 138, 36, 0.12));
  border-color: rgba(143, 199, 255, 0.4);
  box-shadow: 0 8px 24px rgba(143, 199, 255, 0.15);
  transform: translateY(-2px);
}

.download-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.download-button:hover {
  color: var(--blue);
}

/* Launch details card styling */
.launch-details-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(248, 251, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  backdrop-filter: blur(8px);
}

/* Project modal styling */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.project-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
  z-index: 9998;
}

.project-modal-sheet {
  position: relative;
  z-index: 9999;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  animation: slideUp 0.3s ease;
  max-width: 90vw;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.project-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 51;
}

.project-modal-close:hover {
  background: rgba(248, 251, 255, 0.08);
  color: var(--ink);
}

/* Fixed project return button */
.project-return-link {
  position: fixed;
  top: 92px;
  left: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #8fc7ff;
  background: rgba(10, 12, 18, 0.72);
  border: 1px solid rgba(143, 199, 255, 0.22);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.project-return-link:hover {
  transform: translateY(-1px);
  border-color: rgba(143, 199, 255, 0.4);
  background: rgba(10, 12, 18, 0.88);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

@media (max-width: 860px) {
  .project-return-link {
    top: 78px;
    left: 12px;
    font-size: 12px;
    padding: 9px 12px;
  }
}

/* Newsroom modal width increase */
.newsroom-hero-stats {
  max-width: 100% !important;
  width: 100% !important;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
}

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

img {
  display: block;
}

.space-scene {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--blue-glow-x, 68%) var(--blue-glow-y, 30%), rgba(104, 135, 255, var(--blue-glow-a, 0.16)), transparent 26%),
    radial-gradient(circle at var(--blue-glow-2x, 26%) var(--blue-glow-2y, 70%), rgba(78, 129, 255, var(--blue-glow-b, 0.08)), transparent 23%),
    radial-gradient(circle at 28% 68%, rgba(255, 138, 36, 0.09), transparent 22%),
    #000;
  pointer-events: none;
}

.space-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.72));
}

.noise-layer {
  position: absolute;
  inset: -40%;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 10% 20%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, #fff 0 1px, transparent 1px);
  background-size: 23px 23px, 31px 31px, 43px 43px;
}

.starfield {
  position: absolute;
  inset: -12vh 0;
  transform: translate3d(0, var(--star-drift, 0), 0);
  will-change: transform;
}

.star {
  position: absolute;
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  opacity: var(--o);
  background: #fff;
  box-shadow: 0 0 calc(var(--s) * 8) rgba(255, 255, 255, 0.55);
  transition: opacity 90ms linear, box-shadow 90ms linear, transform 90ms linear;
}

.nebula {
  position: absolute;
  width: 70vw;
  height: 70vw;
  max-width: 980px;
  max-height: 980px;
  border-radius: 50%;
  opacity: 0.09;
  filter: blur(90px);
  transform: translate3d(var(--nebula-x, 0), var(--nebula-y, 0), 0) scale(var(--nebula-scale, 1));
}

.nebula-a {
  top: -28%;
  right: -18%;
  background: radial-gradient(circle, rgba(88, 143, 255, 0.7), rgba(90, 56, 170, 0.22) 48%, transparent 72%);
  opacity: var(--nebula-a, 0.09);
}

.nebula-b {
  bottom: -36%;
  left: -24%;
  background: radial-gradient(circle, rgba(255, 138, 36, 0.32), rgba(42, 104, 190, 0.16) 44%, transparent 72%);
  opacity: var(--nebula-b, 0.09);
}

.cursor-field {
  display: none;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  padding: 22px clamp(16px, 4vw, 54px);
  background: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  transition: transform 300ms ease, padding 220ms ease, background 220ms ease;
}

/* Hidden header (scroll down) */
.site-header.nav-hidden {
  transform: translateY(-120%);
}

/* Compact header (slightly collapsed when scrolling a bit) */
.site-header.compact {
  padding: 10px clamp(10px, 3vw, 30px);
  background: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0));
}

/* Adjust brand sizing when compact */
.site-header.compact .logo {
  width: 54px;
  height: 54px;
}
.site-header.compact .brand {
  font-size: clamp(13px, 1.8vw, 18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  white-space: nowrap;
  font-size: clamp(16px, 2.2vw, 22px);
}

.logo {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  padding: 6px;
  opacity: 1;
  background: transparent;
  box-shadow: none;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.2vw, 32px);
  flex: 1;
}

.nav-links a {
  position: relative;
  opacity: 0.68;
  white-space: nowrap;
  transition: opacity 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active,
.apply-link {
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

main {
  position: relative;
  z-index: 1;
}

.section,
.cinematic-section {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(92px, 14vh, 170px) 0;
}

.cinematic-section {
  min-height: 92vh;
  display: grid;
  align-items: center;
}

.home-hero {
  width: 100%;
  min-height: 100vh;
  padding: 0 max(36px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.82;
  transform: translateY(var(--hero-drift, 0)) scale(1.04);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.2), transparent 36%),
    /* new hero background image (unsplash, launch/sky) */
    url("https://images.unsplash.com/photo-1454789548928-9efd52dc4031?q=80&w=1600&auto=format&fit=crop&ixlib=rb-4.0.3&s=8b3d0de6c7f6b8b6f3b1e0c0b4b2f7f6") center / cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0.52;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.68)),
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.84));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.1) brightness(0.82);
}

.section-copy {
  max-width: 820px;
}

/* Team3749-like header formatting: left-aligned, bold, and not always pushed to the right */
.section-copy h1,
.section-copy h2 {
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2 {
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(40px, 8.5vw, 120px);
  font-weight: 930;
  line-height: 0.92;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 4.8vw, 64px);
  font-weight: 900;
  line-height: 0.98;
}

p {
  color: var(--muted);
  font-size: clamp(16px, 1.65vw, 20px);
  line-height: 1.65;
}

.lede,
.page-lede {
  max-width: 660px;
  font-size: clamp(18px, 2vw, 23px);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.primary-button {
  color: #000;
  background: #fff;
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.15);
}

.mission-section {
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 86px);
}

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

.mission-grid article,
.news-strip article,
.crew-card,
.newsroom-list article {
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.mission-grid article {
  padding: 24px;
}

.mission-grid span,
.news-strip span,
.split-links span,
.crew-card p,
.newsroom-list time,
dt {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.55);
  font: 800 11px/1.3 "Consolas", "Courier New", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mission-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
}

.launch-scroll {
  position: relative;
  height: 240vh;
  width: 100%;
}

.launch-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: clamp(108px, 16vh, 170px) max(36px, calc((100vw - var(--max)) / 2)) clamp(24px, 4vh, 44px);
  isolation: isolate;
}

.launch-sticky .section-copy {
  align-self: start;
  justify-self: start;
  max-width: min(620px, 84vw);
}

.launch-film-frame,
.launch-video,
.launch-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.launch-film-frame {
  z-index: -2;
}

.launch-video {
  z-index: -3;
  display: none;
}

.launch-poster {
  z-index: -4;
}

.launch-video {
  opacity: var(--video-opacity, 0.86);
  object-position: 68% center;
  filter: saturate(0.82) contrast(1.12) brightness(0.72);
  will-change: opacity, transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.launch-poster {
  display: none;
  background:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78)),
    url("images/team-2.png") center / cover no-repeat;
  transform: scale(var(--film-scale, 1.04));
  filter: saturate(0.75) contrast(1.1) brightness(0.68);
}

.launch-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Top and bottom vignettes only so the center copy remains unobscured */
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0) 20%),
    linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 18%);
  pointer-events: none;
}

.launch-sticky span {
  color: #fff;
  font-family: "Consolas", "Courier New", monospace;
}

.systems-section {
  min-height: 78vh;
}

.project-cad-lab {
  display: grid;
  gap: 18px;
  padding-top: 10px;
}

.project-cad-topline h2 {
  font-size: clamp(34px, 5.1vw, 62px);
}

.project-cad-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.project-cad-controls {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.project-cad-btn {
  border: 0;
  background: rgba(7, 7, 7, 0.95);
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
  padding: 18px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font: 800 12px/1.2 "Consolas", "Courier New", monospace;
  transition: background 220ms ease, color 220ms ease;
}

.project-cad-btn:hover,
.project-cad-btn.active {
  background: rgba(143, 199, 255, 0.14);
  color: #fff;
}

.project-cad-viewer {
  position: relative;
  min-height: 460px;
  background:
    radial-gradient(circle at 50% 36%, rgba(143, 199, 255, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.045);
}

.project-cad-viewer canvas {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
}

.split-links a {
  min-width: min(320px, 100%);
  padding: 24px;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px var(--line);
  border-radius: 18px;
  font-size: 24px;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.split-links a:hover {
  transform: translateY(-5px);
  background: var(--panel-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26), 0 24px 70px rgba(143, 199, 255, 0.08);
}

.newsroom-preview {
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 86px);
}

.cad-section,
.sponsors-section {
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 86px);
}

.sponsors-section,
.contact-section {
  min-height: auto;
  padding-top: clamp(56px, 8vh, 104px);
  padding-bottom: clamp(56px, 8vh, 104px);
}

.cad-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #fff;
  font: 800 12px/1 "Consolas", "Courier New", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.cad-upload:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.cad-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cad-viewer {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(143, 199, 255, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 0 1px var(--line), 0 28px 90px rgba(0, 0, 0, 0.28);
}

.cad-viewer canvas {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
}

.cad-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 11px;
  background: rgba(0, 0, 0, 0.58);
  color: rgba(255, 255, 255, 0.72);
  font: 700 11px/1.2 "Consolas", "Courier New", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-strip {
  display: grid;
  gap: 12px;
}

.page-comet-layer {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.page-comet {
  --size: 16px;
  position: absolute;
  left: -24vw;
  top: calc(var(--lane, 50) * 1vh);
  width: var(--size);
  aspect-ratio: 1;
  opacity: 0;
  will-change: transform, opacity;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.56)) drop-shadow(0 0 20px rgba(143, 199, 255, 0.3));
}

.page-comet::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 60% 34%, 100% 50%, 60% 66%, 50% 100%, 40% 66%, 0% 50%, 40% 34%);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 1), rgba(255, 250, 236, 0.86) 38%, rgba(186, 225, 255, 0.66) 64%, transparent 100%);
}

.page-comet::after {
  content: "";
  position: absolute;
  right: calc(100% - 2px);
  top: 50%;
  width: clamp(84px, 13vw, 170px);
  height: clamp(10px, 1.25vw, 16px);
  transform: translateY(-50%);
  transform-origin: right center;
  rotate: var(--tilt, -10deg);
  border-radius: 999px;
  background:
    radial-gradient(circle at 92% 50%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(270deg, rgba(255, 255, 255, 0.5), rgba(186, 225, 255, 0.24) 32%, rgba(111, 179, 255, 0.08) 60%, transparent 90%);
}

.page-comet[data-tail="left"]::after {
  left: calc(100% - 2px);
  right: auto;
  transform-origin: left center;
  rotate: var(--tilt, 10deg);
  background:
    radial-gradient(circle at 8% 50%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(186, 225, 255, 0.24) 32%, rgba(111, 179, 255, 0.08) 60%, transparent 90%);
}

.page-comet[data-tail="right"]::after {
  right: calc(100% - 2px);
  left: auto;
  transform-origin: right center;
}

.news-strip article {
  padding: 22px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.news-strip strong {
  color: #fff;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}

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

.sponsor-scroll {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 0 0 1px rgba(143, 199, 255, 0.12);
}

.sponsor-track {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 104px;
  width: max-content;
  padding: 0 20px;
  animation: sponsorRail 26s linear infinite;
}

.sponsor-track img {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.1);
  opacity: 0.88;
}

@keyframes sponsorRail {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-46%);
  }
}

.sponsor-wall article {
  min-height: 138px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.sponsor-wall article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.085);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), 0 24px 72px rgba(255, 255, 255, 0.06);
}

.sponsor-wall img {
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.1);
  opacity: 0.82;
  transition: filter 220ms ease, opacity 220ms ease;
}

.sponsor-wall article:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: #fff;
  font: 800 12px/1 "Consolas", "Courier New", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 8px;
  background: currentColor;
}

.page-main {
  padding-top: var(--nav-height);
}

.page-hero {
  max-width: 920px;
  padding-bottom: 64px;
}

.contact-page-main .section {
  padding-top: clamp(72px, 10vh, 118px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(18px, 2.5vw, 28px);
}

.contact-sidecard {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.contact-sidecard h2 {
  font-size: clamp(30px, 4.3vw, 58px);
}

.location-card {
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(143, 199, 255, 0.35);
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(143, 199, 255, 0.12), rgba(255, 138, 36, 0.07));
}

.location-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  color: #fff;
}

.location-card p {
  margin-bottom: 6px;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(7, 7, 7, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 26px 80px rgba(0, 0, 0, 0.22);
}

.contact-form label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font: 800 11px/1.2 "Consolas", "Courier New", monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: 500 15px/1.45 var(--font-sans);
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form select {
  background: #000;
}

.contact-form select option {
  background: #000;
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(143, 199, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(143, 199, 255, 0.2);
  background: rgba(143, 199, 255, 0.08);
}

.contact-form textarea {
  min-height: 152px;
  resize: vertical;
}

.contact-form .primary-button {
  margin-top: 10px;
  width: fit-content;
  min-width: 180px;
}

.contact-note {
  margin: 2px 0 0;
  font-size: 13px;
}

.contact-honey {
  display: none !important;
}

.technical-list,
.roster-table {
  display: grid;
  gap: 14px;
  background: transparent;
  padding: 0;
}

.technical-entry {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 24px;
  background: rgba(5, 5, 5, 0.94);
  border-radius: 16px;
  cursor: pointer;
}

.model-render-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.model-controls,
.model-canvas {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.3);
}

/* Shadcn-inspired control sections */
.scrub-controls,
.axis-controls,
.part-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 12px;
}

.scrub-controls label,
.axis-controls label,
.part-controls label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  display: block;
  margin-bottom: 4px;
}

/* Sliders */
.scrub-controls input[type="range"],
.axis-controls input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, rgba(143, 199, 255, 0.3), rgba(143, 199, 255, 0.1));
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.scrub-controls input[type="range"]::-webkit-slider-thumb,
.axis-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8fc7ff 0%, #6ab0ff 100%);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(143, 199, 255, 0.4);
  transition: all 0.2s ease;
}

.scrub-controls input[type="range"]::-webkit-slider-thumb:hover,
.axis-controls input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 4px 12px rgba(143, 199, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

.scrub-controls input[type="range"]::-moz-range-thumb,
.axis-controls input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8fc7ff 0%, #6ab0ff 100%);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(143, 199, 255, 0.4);
  transition: all 0.2s ease;
}

.scrub-controls input[type="range"]::-moz-range-thumb:hover,
.axis-controls input[type="range"]::-moz-range-thumb:hover {
  box-shadow: 0 4px 12px rgba(143, 199, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Select dropdown */
.part-controls select {
  width: 100%;
  padding: 8px 12px;
  background: #000 !important;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.part-controls select option {
  background: #000;
  color: #fff;
}

.part-controls select:hover {
  background: #000 !important;
  border-color: rgba(255, 255, 255, 0.25);
}

.part-controls select:focus {
  outline: none;
  background: #000 !important;
  border-color: rgba(143, 199, 255, 0.5);
  box-shadow: 0 0 0 2px rgba(143, 199, 255, 0.1);
}

/* Buttons */
#focusPartBtn {
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(143, 199, 255, 0.2) 0%, rgba(143, 199, 255, 0.1) 100%);
  border: 1px solid rgba(143, 199, 255, 0.3);
  border-radius: 6px;
  color: #8fc7ff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

#focusPartBtn:hover {
  background: linear-gradient(135deg, rgba(143, 199, 255, 0.3) 0%, rgba(143, 199, 255, 0.2) 100%);
  border-color: rgba(143, 199, 255, 0.5);
  box-shadow: 0 4px 12px rgba(143, 199, 255, 0.2);
}

#focusPartBtn:active {
  transform: scale(0.98);
}

/* Shadcn Project Details Card */
.project-details-card {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.92fr);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(8px);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.project-details-card:hover {
  border-color: rgba(143, 199, 255, 0.2);
  box-shadow: 0 8px 32px rgba(143, 199, 255, 0.15);
}

.card-media-section {
  min-height: 240px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-media-section video {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 6px;
}

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

/* Launch Specs Grid */
.launch-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.spec-value {
  font-size: 15px;
  font-weight: 600;
  color: #8fc7ff;
}

/* Card Divider */
.card-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 16px 0;
}

/* Download Button */
.card-download-btn {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(143, 199, 255, 0.15) 0%, rgba(143, 199, 255, 0.08) 100%);
  border: 1px solid rgba(143, 199, 255, 0.25);
  border-radius: 8px;
  color: #8fc7ff;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  gap: 12px;
}

.card-download-btn:hover {
  background: linear-gradient(135deg, rgba(143, 199, 255, 0.25) 0%, rgba(143, 199, 255, 0.15) 100%);
  border-color: rgba(143, 199, 255, 0.4);
  box-shadow: 0 4px 16px rgba(143, 199, 255, 0.2);
}

.card-download-btn:active {
  transform: scale(0.98);
}

@media (max-width: 900px) {
  .project-details-card {
    grid-template-columns: 1fr;
  }

  .card-media-section,
  .card-media-section video {
    min-height: 200px;
  }
}

.model-canvas canvas {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}

.model-viewer-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  position: relative;
}

.model-viewer-frame canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  pointer-events: auto;
}

.model-viewer-frame canvas:active {
  cursor: grabbing;
}

.model-render-shell.dragover {
  border-color: rgba(143, 199, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(143, 199, 255, 0.35), 0 24px 70px rgba(143, 199, 255, 0.12);
}

.technical-entry:hover,
.technical-entry:focus-visible {
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
}

.technical-entry img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.entry-grid {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 24px;
}

.entry-grid h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 54px);
}

.entry-grid dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.entry-grid dl div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

dd {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

.crew-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.crew-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: end;
  padding: 22px 22px 28px 18px;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.crew-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 18%, rgba(0, 0, 0, 0.86));
}

.crew-card:hover {
  transform: translateY(-6px);
  background: var(--panel-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), 0 24px 72px rgba(143, 199, 255, 0.1);
}

.crew-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
  transition: transform 500ms ease;
}

.crew-card:hover img {
  transform: scale(1.04);
}

.crew-card div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  transform: translate(-10px, 10px);
}

.crew-card h2 {
  margin: 0;
  min-width: 0;
  font-size: clamp(15px, 1.05vw + 6px, 24px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: clip;
}

.crew-card span {
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}

.newsroom-list {
  display: grid;
  gap: 18px;
}

.newsroom-list article {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.newsroom-list h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1;
}

.newsroom-list p {
  max-width: 62ch;
  margin-bottom: 18px;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(143, 199, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font: 700 11px/1 "Consolas", "Courier New", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsroom-list article::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 199, 255, 0.14), transparent 66%);
  pointer-events: none;
}

.newsroom-gallery-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(18px, 2.5vw, 28px);
  align-items: start;
}

.newsroom-gallery-copy {
  display: grid;
  gap: 16px;
}

.newsroom-mini-grid {
  display: grid;
  gap: 12px;
}

.newsroom-mini-grid article {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.newsroom-mini-grid strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
}

.newsroom-hero-card {
  align-self: stretch;
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 760px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.newsroom-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.newsroom-hero-stats article {
  display: grid;
  gap: 10px;
  min-height: 144px;
  padding: 16px 14px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.newsroom-hero-stats strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 4.6vw, 54px);
  line-height: 1;
}

.newsroom-hero-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.4;
}

.newsroom-gallery-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
}

.newsroom-gallery-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.32);
}

.newsroom-gallery-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}

.newsroom-gallery-frame figcaption {
  display: grid;
  gap: 6px;
  padding: 16px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.newsroom-gallery-frame p {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.newsroom-gallery-frame span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.gallery-controls {
  display: flex;
  gap: 10px;
}

.gallery-nav {
  flex: 1;
  justify-content: center;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.gallery-nav:hover {
  box-shadow: 0 18px 40px rgba(143, 199, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
}

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

.gallery-thumb {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.active {
  transform: translateY(-2px);
  border-color: rgba(143, 199, 255, 0.36);
  background: rgba(143, 199, 255, 0.08);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-thumb span {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-thumb:not(.active) {
  opacity: 0.74;
}

.newsroom-gallery-feed-wrap {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.newsroom-gallery-feed-copy h3 {
  margin: 0;
  font-size: clamp(24px, 3.6vw, 44px);
  text-transform: uppercase;
}

.newsroom-gallery-feed-copy p:last-child {
  max-width: 56ch;
}

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

.gallery-feed-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  grid-column: span 4;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.gallery-feed-card figure {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}

.gallery-feed-card.is-wide {
  grid-column: span 8;
}

.gallery-feed-card.is-tall {
  min-height: 360px;
  grid-row: span 2;
}

.gallery-feed-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
  transform: scale(1.01);
}

.gallery-feed-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.84));
}

.gallery-feed-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 18px;
}

.gallery-feed-card strong {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-feed-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.5;
}

.gallery-sentinel {
  height: 1px;
}

.newsroom-gallery-panel,
.gallery-feed-card,
.newsroom-hero-card,
.newsroom-list article,
.crew-card,
.contact-sidecard,
.contact-form,
.model-render-shell,
.project-cad-shell {
  backdrop-filter: blur(16px);
}

.newsroom-gallery-shell .section-copy h2,
.newsroom-gallery-copy h2 {
  text-transform: uppercase;
}

.newsroom-gallery-shell .section-copy p:last-child {
  max-width: 52ch;
}

.asset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.asset-row a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technical-list > .section-copy {
  margin: 0 0 18px;
}

.sponsor-levels {
  display: grid;
  gap: 12px;
}

.sponsor-level {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.sponsor-level h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.6vw, 30px);
  text-transform: uppercase;
}

.sponsor-level-platinum {
  background: linear-gradient(120deg, rgba(180, 190, 220, 0.2), rgba(255, 255, 255, 0.04));
}

.sponsor-level-gold {
  background: linear-gradient(120deg, rgba(255, 168, 54, 0.2), rgba(255, 255, 255, 0.04));
}

.sponsor-level-silver {
  background: linear-gradient(120deg, rgba(140, 154, 170, 0.2), rgba(255, 255, 255, 0.04));
}

.level-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
}

.level-logos img {
  width: 100%;
  height: 66px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 10px;
  filter: grayscale(1) brightness(1.08);
  transition: filter 200ms ease, transform 200ms ease;
}

.level-logos img:hover {
  filter: grayscale(0.1) brightness(1.02);
  transform: translateY(-1px);
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(18px, 2.5vw, 28px);
  align-items: center;
}

.hero-side-image {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.hero-side-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.06);
}

.hero-side-image figcaption {
  margin: 0;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.7);
  font: 700 11px/1.4 "Consolas", "Courier New", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.activity-card {
  position: relative;
  min-height: 240px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}

.activity-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.activity-card p {
  margin: 0;
  color: #fff;
  font: 800 14px/1.3 "Consolas", "Courier New", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activity-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.activity-card.placeholder {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.06) 12px,
    rgba(255, 255, 255, 0.02) 12px,
    rgba(255, 255, 255, 0.02) 24px
  );
}

.activity-card.placeholder div {
  position: static;
  background: none;
  text-align: center;
  padding: 20px;
}

.site-footer {
  position: relative;
  z-index: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  padding: 42px 18px;
}

.footer-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-sponsors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  background: transparent;
  border: 0;
}

.footer-sponsors img {
  width: 100%;
  height: 96px;
  padding: 20px;
  background: transparent;
  object-fit: contain;
  filter: grayscale(1) brightness(1.08);
}

.footer-meta {
  margin: 16px 0 0;
  color: rgba(0, 0, 0, 0.55);
  font: 700 11px/1.3 "Consolas", "Courier New", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 820ms ease, transform 1000ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .mission-section,
  .cad-section,
  .sponsors-section,
  .project-cad-shell,
  .entry-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-feed-card,
  .gallery-feed-card.is-wide {
    grid-column: span 4;
  }

  .hero-split {
    grid-template-columns: 1fr;
  }

  .newsroom-hero-card {
    max-width: none;
  }

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

  .newsroom-hero-stats article:last-child {
    grid-column: 1 / -1;
  }

  .model-render-shell {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .brand {
    max-width: 210px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 16px;
    display: none;
    width: min(300px, calc(100vw - 32px));
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 8px 0;
  }

  .technical-entry,
  .entry-grid dl div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section,
  .cinematic-section {
    width: min(var(--max), calc(100% - 28px));
    padding: 88px 0;
  }

  .home-hero,
  .launch-sticky {
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(54px, 18vw, 96px);
  }

  .mission-grid,
  .crew-showcase,
  .activity-grid,
  .sponsor-wall,
  .footer-sponsors,
  .gallery-feed {
    grid-template-columns: 1fr;
  }

  .sponsors-section,
  .contact-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .gallery-feed-card,
  .gallery-feed-card.is-wide,
  .gallery-feed-card.is-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .page-comet:nth-child(4) {
    display: none;
  }

  .crew-card {
    min-height: 400px;
  }

  .crew-card h2 {
    font-size: clamp(15px, 3.2vw, 22px);
  }

  .modal-media img {
    min-height: 280px;
  }
}

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