* {
  box-sizing: border-box;
}

:root {
  --bg: #070707;
  --panel: #0e0e0f;
  --panel-2: #151516;
  --line: rgba(255,255,255,.11);
  --text: #f4f4f4;
  --muted: #8d8d91;
  --red: #79ffab;
  --red-soft: rgba(121,255,171,.14);
  --max: 1240px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(7,7,7,.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(121,255,171,.16), rgba(255,255,255,.04));
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  padding: 0;
  overflow: hidden;
  background: #000;
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 0 0 1px rgba(121,255,171,.08) inset, 0 0 18px rgba(121,255,171,.05);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.04) brightness(1.02);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-family: Rajdhani, sans-serif;
  font-size: 20px;
  letter-spacing: 2.8px;
}

.brand-copy span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1.8px;
}

.nav {
  display: flex;
  gap: 30px;
  color: #c7c7ca;
  font-size: 13px;
}

.nav a {
  transition: .2s ease;
}

.nav a:hover {
  color: #fff;
}

.menu-btn {
  display: none;
  color: #fff;
  background: transparent;
  border: 1px solid var(--line);
  font-size: 20px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black 10%, transparent 95%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -120px;
  top: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121,255,171,.14), rgba(121,255,171,0) 66%);
  filter: blur(8px);
}

.hero-content {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.eyebrow,
.section-kicker {
  font-family: Rajdhani, sans-serif;
  color: #b9b9bd;
  font-size: 12px;
  letter-spacing: 2.6px;
  font-weight: 600;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(121,255,171,.72);
}

.hero h1 {
  margin: 0;
  max-width: 950px;
  font-family: Rajdhani, sans-serif;
  font-size: clamp(76px, 11vw, 168px);
  line-height: .76;
  letter-spacing: -5px;
  font-weight: 700;
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.72);
  margin-left: 8vw;
}

.hero-subtitle {
  max-width: 720px;
  color: #a8a8ad;
  font-size: 17px;
  line-height: 1.7;
  margin: 42px 0 28px;
}

.hero-actions,
.link-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
  letter-spacing: 1.1px;
  font-size: 13px;
  border: 1px solid var(--line);
  transition: .2s ease;
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(121,255,171,.22);
}

.btn-secondary {
  background: rgba(255,255,255,.03);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
}

.disabled {
  opacity: .55;
  cursor: default;
}

.status-panel {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(9,9,10,.66);
  backdrop-filter: blur(8px);
}

.status-item {
  padding: 19px 20px;
  border-right: 1px solid var(--line);
}

.status-item:last-child {
  border-right: 0;
}

.status-item span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1.7px;
  margin-bottom: 8px;
}

.status-item strong {
  font-family: Rajdhani, sans-serif;
  font-size: 15px;
  letter-spacing: .7px;
}

.online {
  color: #fff;
}

.online i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #50e36f;
  border-radius: 50%;
  margin-right: 7px;
}

.online.is-loading i {
  background: #d4bb47;
  box-shadow: 0 0 12px rgba(212,187,71,.72);
}

.online.is-online i {
  background: #53f08f;
  box-shadow: 0 0 15px rgba(83,240,143,.85);
}

.online.is-offline {
  color: #d7c9c9;
}

.online.is-offline i {
  background: #ef6464;
  box-shadow: 0 0 15px rgba(239,100,100,.65);
  animation: none;
}

.scroll-hint {
  position: absolute;
  right: 38px;
  bottom: 38px;
  color: #77777c;
  font-size: 9px;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}

.section {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-dark {
  width: 100%;
  max-width: none;
  background: #0a0a0b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-left: max(40px, calc((100% - var(--max))/2));
  padding-right: max(40px, calc((100% - var(--max))/2));
}

.section-kicker {
  color: var(--red);
  margin-bottom: 32px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
}

h2 {
  margin: 0;
  font-family: Rajdhani, sans-serif;
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: 1;
  letter-spacing: -1.5px;
}

.section-copy {
  color: #aaaab0;
  line-height: 1.8;
  font-size: 15px;
}

.section-copy b {
  color: #fff;
}

.feature-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-card {
  background: #0d0d0e;
  padding: 34px;
  min-height: 225px;
  position: relative;
  transition: .22s ease;
}

.feature-card:hover {
  background: #121214;
}

.feature-index {
  color: var(--red);
  font-family: Rajdhani, sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
}

.feature-card h3,
.news-card h3 {
  font-family: Rajdhani, sans-serif;
  font-size: 26px;
  margin: 46px 0 12px;
}

.feature-card p,
.news-card p {
  color: #95959a;
  line-height: 1.65;
  font-size: 14px;
  margin: 0;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.muted {
  color: #68686d;
  font-family: Rajdhani, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
  margin-top: 46px;
}

.news-card {
  border: 1px solid var(--line);
  background: #0c0c0d;
  padding: 26px;
  min-height: 280px;
}

.news-card.featured {
  background:
    linear-gradient(135deg, rgba(121,255,171,.10), rgba(121,255,171,0) 60%),
    #0c0c0d;
}

.news-meta {
  color: var(--red);
  font-size: 9px;
  letter-spacing: 1.6px;
}

.news-card h3 {
  margin-top: 66px;
}

.news-card a {
  display: inline-block;
  margin-top: 26px;
  color: #fff;
  font-size: 12px;
}

.final-section {
  text-align: center;
  padding-bottom: 90px;
}

.final-section .section-kicker {
  text-align: center;
}

.final-section p {
  max-width: 650px;
  margin: 22px auto 30px;
  color: #96969b;
  line-height: 1.7;
}

.final-section .link-actions {
  justify-content: center;
}

.terminal {
  max-width: 760px;
  margin: 58px auto 0;
  text-align: left;
  border: 1px solid var(--line);
  background: #09090a;
}

.terminal-top {
  height: 58px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: #77777b;
  font-size: 9px;
  letter-spacing: 1.7px;
}

.terminal-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #343438;
}

.terminal-top b {
  margin-left: 8px;
  font-weight: 500;
}

.terminal pre {
  margin: 0;
  padding: 24px;
  overflow-x: auto;
  color: #b4b4b8;
  line-height: 1.85;
  font-size: 12px;
}

footer {
  min-height: 90px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 max(40px, calc((100% - var(--max))/2));
  color: #66666b;
  font-size: 9px;
  letter-spacing: 1.2px;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 20px;
  }

  .menu-btn {
    display: block;
    width: 40px;
    height: 40px;
  }

  .nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    padding: 18px 20px;
    background: #09090a;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .hero-content,
  .section {
    width: min(100% - 36px, var(--max));
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero h1 span {
    margin-left: 0;
  }

  .status-panel {
    grid-template-columns: 1fr 1fr;
  }

  .status-item:nth-child(2) {
    border-right: 0;
  }

  .status-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .section-dark {
    padding-left: 18px;
    padding-right: 18px;
  }

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-copy span {
    display: none;
  }

  .hero {
    min-height: 900px;
  }

  .hero-content {
    padding-top: 125px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .status-panel {
    grid-template-columns: 1fr;
  }

  .status-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 80px 0;
  }

  .section-title-row {
    align-items: start;
    flex-direction: column;
  }

  footer {
    padding: 22px;
    min-height: 110px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255,255,255,.00) 42%, rgba(121,255,171,.035) 72%, rgba(255,255,255,.00) 100%),
    repeating-linear-gradient(180deg, rgba(255,255,255,.02) 0 1px, transparent 1px 4px);
  opacity: .8;
}

.hero-side-art {
  position: absolute;
  right: max(34px, calc((100% - var(--max)) / 2));
  top: 160px;
  width: min(34vw, 460px);
  display: grid;
  gap: 18px;
  z-index: 1;
  pointer-events: none;
}

.hud-panel {
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(135deg, rgba(121,255,171,.08), rgba(255,255,255,.02) 45%, rgba(255,255,255,.01) 100%),
    rgba(8, 10, 9, .72);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.hud-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(121,255,171,.12);
  pointer-events: none;
}

.panel-a {
  min-height: 260px;
  padding: 22px;
}

.hud-label,
.panel-b-top span {
  color: var(--red);
  font-family: Rajdhani, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
}

.dropship {
  width: 78%;
  height: 84px;
  margin: 34px auto 26px;
  position: relative;
  border: 1px solid rgba(255,255,255,.22);
  clip-path: polygon(7% 62%, 22% 46%, 39% 35%, 63% 35%, 87% 50%, 100% 58%, 85% 64%, 70% 73%, 43% 75%, 24% 71%);
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(121,255,171,.24) 45%, rgba(255,255,255,.08)),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
  box-shadow: 0 0 35px rgba(121,255,171,.08);
}

.dropship::before {
  content: "";
  position: absolute;
  inset: 18px 34px 22px 42px;
  border-top: 1px solid rgba(255,255,255,.42);
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.dropship::after {
  content: "";
  position: absolute;
  right: 14%;
  bottom: -10px;
  width: 84px;
  height: 12px;
  border-radius: 10px;
  background: radial-gradient(circle, rgba(121,255,171,.7), rgba(121,255,171,0) 70%);
  filter: blur(2px);
}

.hud-lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.hud-lines span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(121,255,171,.8), rgba(255,255,255,.08));
}

.panel-b {
  min-height: 210px;
  padding: 20px 22px 24px;
}

.panel-b-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.panel-b-top b {
  font-family: Rajdhani, sans-serif;
  font-size: 15px;
  letter-spacing: 1.7px;
  color: #e9e9ea;
}

.radar {
  position: relative;
  width: 182px;
  height: 182px;
  margin: 8px auto 18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle, transparent 31%, rgba(255,255,255,.08) 31.5%, transparent 32%),
    radial-gradient(circle, transparent 58%, rgba(255,255,255,.08) 58.5%, transparent 59%),
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,.12) 50%, transparent 50.5%),
    linear-gradient(180deg, transparent 49.5%, rgba(255,255,255,.12) 50%, transparent 50.5%),
    conic-gradient(from 322deg, rgba(121,255,171,.36), rgba(121,255,171,0) 14%, rgba(121,255,171,0) 100%);
  box-shadow: inset 0 0 35px rgba(121,255,171,.05);
}

.radar i {
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(121,255,171,.7);
}

.radar i:nth-child(1) { top: 31%; left: 63%; }
.radar i:nth-child(2) { top: 57%; left: 26%; }
.radar i:nth-child(3) { top: 68%; left: 58%; }

.signal-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  align-items: end;
  height: 38px;
}

.signal-bars span {
  display: block;
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(121,255,171,.45));
  border-radius: 2px 2px 0 0;
}

.signal-bars span:nth-child(1) { height: 11px; }
.signal-bars span:nth-child(2) { height: 20px; }
.signal-bars span:nth-child(3) { height: 28px; }
.signal-bars span:nth-child(4) { height: 17px; }
.signal-bars span:nth-child(5) { height: 31px; }
.signal-bars span:nth-child(6) { height: 14px; }


.btn-primary {
  color: #04110a;
}

.news-meta,
.section-kicker,
.feature-index {
  text-shadow: 0 0 14px rgba(121,255,171,.10);
}

.status-panel,
.news-card,
.feature-card,
.terminal,
.hud-panel {
  box-shadow: 0 0 0 1px rgba(255,255,255,.02) inset;
}

@media (max-width: 1100px) {
  .hero-side-art {
    width: min(38vw, 380px);
    top: 180px;
    right: 24px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 84px;
  }

  .brand-mark,
  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .nav {
    top: 84px;
  }

  .hero-side-art {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    margin: 30px auto 0;
    z-index: 2;
    pointer-events: none;
  }

  .panel-a,
  .panel-b {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .brand-mark,
  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .hero-side-art {
    gap: 14px;
  }

  .radar {
    width: 150px;
    height: 150px;
  }

  .dropship {
    height: 70px;
    width: 88%;
  }
}


@media (max-width: 900px) {
  .brand-mark,
  .brand-logo {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 560px) {
  .brand-mark,
  .brand-logo {
    width: 44px;
    height: 44px;
  }
}


/* ===============================
   VOIDFALL V5 — CINEMATIC HERO
   =============================== */

.hero-side-art,
.hud-panel,
.panel-a,
.panel-b {
  display: none !important;
}

.hero {
  isolation: isolate;
}

.hero-grid {
  animation: gridDrift 22s linear infinite;
}

.hero-glow {
  right: 4%;
  top: 18%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(114,255,163,.11), rgba(114,255,163,.025) 38%, transparent 70%);
  animation: glowBreathe 7s ease-in-out infinite;
}

.colonial-visual {
  position: absolute;
  z-index: 1;
  top: 112px;
  right: max(28px, calc((100vw - var(--max)) / 2));
  width: min(46vw, 690px);
  height: min(72vh, 680px);
  overflow: hidden;
  pointer-events: none;
  opacity: .98;
  mask-image: linear-gradient(to bottom, #000 0 83%, transparent 100%);
}

.colonial-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  background:
    linear-gradient(90deg, rgba(7,7,7,.95) 0%, transparent 18%, transparent 88%, rgba(7,7,7,.2) 100%),
    repeating-linear-gradient(180deg, transparent 0 3px, rgba(255,255,255,.018) 3px 4px);
  pointer-events: none;
}

.planet {
  position: absolute;
  width: 610px;
  height: 610px;
  right: -190px;
  top: 8px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 32% 27%, rgba(235,255,241,.18), transparent 16%),
    radial-gradient(circle at 43% 38%, rgba(100,145,115,.17), transparent 32%),
    radial-gradient(circle at 42% 42%, #17231b 0%, #0d1510 42%, #060806 71%);
  box-shadow:
    inset 58px -25px 80px rgba(0,0,0,.72),
    inset -18px 2px 42px rgba(122,255,168,.08),
    0 0 90px rgba(89,205,128,.05);
  animation: planetFloat 11s ease-in-out infinite;
}

.planet::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 47%, transparent 0 18%, rgba(255,255,255,.04) 18.3% 18.7%, transparent 19%),
    radial-gradient(ellipse at 56% 27%, transparent 0 12%, rgba(255,255,255,.035) 12.3% 12.8%, transparent 13%),
    repeating-linear-gradient(12deg, rgba(255,255,255,.018) 0 1px, transparent 1px 11px);
  opacity: .8;
  animation: planetTexture 24s linear infinite;
}

.planet-grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(121,255,171,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121,255,171,.16) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(700px) rotateX(66deg) scale(1.55);
  transform-origin: 50% 68%;
}

.planet-scan {
  position: absolute;
  left: -8%;
  right: -8%;
  height: 2px;
  top: 12%;
  background: linear-gradient(90deg, transparent, rgba(120,255,168,.9), transparent);
  box-shadow: 0 0 16px rgba(120,255,168,.42);
  opacity: .42;
  animation: scanPlanet 5.8s ease-in-out infinite;
}

.dropship-scene {
  position: absolute;
  z-index: 4;
  width: 390px;
  height: 190px;
  right: 95px;
  top: 225px;
  filter: drop-shadow(0 22px 24px rgba(0,0,0,.55));
  animation: shipFloat 6.5s ease-in-out infinite;
}

.dropship-body {
  position: absolute;
  width: 300px;
  height: 74px;
  left: 45px;
  top: 55px;
  clip-path: polygon(0 58%, 9% 42%, 26% 27%, 54% 18%, 81% 27%, 100% 48%, 92% 63%, 69% 70%, 44% 78%, 20% 73%);
  background:
    linear-gradient(180deg, rgba(221,230,224,.88), rgba(92,104,96,.88) 40%, rgba(33,38,35,.98) 70%),
    #303733;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.7);
}

.dropship-body::before {
  content: "";
  position: absolute;
  left: 56px;
  right: 43px;
  top: 25px;
  height: 11px;
  background:
    repeating-linear-gradient(90deg, rgba(5,8,6,.9) 0 20px, rgba(144,255,181,.16) 20px 23px);
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(0,0,0,.8);
}

.dropship-body::after {
  content: "USCM";
  position: absolute;
  left: 118px;
  top: 42px;
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 9px;
  color: rgba(214,225,217,.7);
}

.cockpit {
  position: absolute;
  right: 43px;
  top: 11px;
  width: 70px;
  height: 24px;
  clip-path: polygon(8% 100%, 25% 20%, 100% 0, 93% 100%);
  background: linear-gradient(135deg, #15221b, #284336 50%, #101612);
  border: 1px solid rgba(124,255,169,.2);
}

.wing {
  position: absolute;
  display: block;
  width: 130px;
  height: 46px;
  background: linear-gradient(180deg, #767f79, #252b27);
  border: 1px solid rgba(255,255,255,.14);
}

.wing-left {
  left: 40px;
  top: 37px;
  clip-path: polygon(0 55%, 100% 0, 82% 84%, 16% 100%);
  transform: rotate(-2deg);
}

.wing-right {
  right: 27px;
  top: 34px;
  clip-path: polygon(0 0, 100% 46%, 86% 100%, 20% 75%);
  transform: rotate(1deg);
}

.engine {
  position: absolute;
  width: 42px;
  height: 20px;
  bottom: 11px;
  background: #111613;
  border: 1px solid rgba(255,255,255,.17);
}

.engine-left { left: 64px; }
.engine-right { left: 112px; }

.engine-glow {
  position: absolute;
  z-index: -1;
  width: 92px;
  height: 28px;
  left: 94px;
  top: 119px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(125,255,170,.55), rgba(125,255,170,.08) 38%, transparent 72%);
  filter: blur(6px);
  animation: enginePulse 1.5s ease-in-out infinite alternate;
}

.glow-right {
  left: 143px;
  animation-delay: .25s;
}

.visual-caption {
  position: absolute;
  left: 72px;
  bottom: 112px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 14px;
  border-left: 1px solid rgba(121,255,171,.5);
  animation: captionFade 5s ease-in-out infinite;
}

.visual-caption span {
  color: #74f0a2;
  font-family: Rajdhani, sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
}

.visual-caption b {
  color: rgba(255,255,255,.64);
  font-family: Rajdhani, sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
}

.space-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.space-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(210,255,224,.72);
  box-shadow: 0 0 7px rgba(121,255,171,.35);
  animation: particleDrift var(--duration, 8s) linear infinite;
  animation-delay: var(--delay, 0s);
}

.brand-logo {
  position: relative;
}

.brand-logo::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  width: 17px;
  left: -45px;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  filter: blur(1px);
  animation: logoShine 6.5s ease-in-out infinite;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-115%);
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.18), transparent 65%);
  transition: transform .55s ease;
}

.btn:hover::after {
  transform: translateX(115%);
}

.pulse-dot,
.online i {
  animation: statusPulse 2s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}

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

.feature-card,
.news-card {
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.feature-card:hover,
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(121,255,171,.24);
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 58px, 58px 0; }
}

@keyframes glowBreathe {
  0%,100% { opacity: .68; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.035); }
}

@keyframes planetFloat {
  0%,100% { transform: translate3d(0,0,0) rotate(-2deg); }
  50% { transform: translate3d(-8px,10px,0) rotate(-1deg); }
}

@keyframes planetTexture {
  from { transform: rotate(0deg) scale(1.02); }
  to { transform: rotate(360deg) scale(1.02); }
}

@keyframes scanPlanet {
  0%, 12% { transform: translateY(0); opacity: 0; }
  18% { opacity: .48; }
  72% { opacity: .48; }
  85%,100% { transform: translateY(430px); opacity: 0; }
}

@keyframes shipFloat {
  0%,100% { transform: translate3d(0,0,0) rotate(-2deg); }
  50% { transform: translate3d(-12px,-8px,0) rotate(-1deg); }
}

@keyframes enginePulse {
  from { opacity: .45; transform: translateX(-50%) scaleX(.88); }
  to { opacity: .85; transform: translateX(-50%) scaleX(1.12); }
}

@keyframes captionFade {
  0%,100% { opacity: .42; }
  50% { opacity: .85; }
}

@keyframes particleDrift {
  from { transform: translate3d(0, 18px, 0); opacity: 0; }
  18% { opacity: .7; }
  to { transform: translate3d(-45px, -60px, 0); opacity: 0; }
}

@keyframes logoShine {
  0%, 68% { left: -45px; opacity: 0; }
  74% { opacity: .65; }
  88% { left: 85px; opacity: 0; }
  100% { left: 85px; opacity: 0; }
}

@keyframes statusPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(80,227,111,.0), 0 0 10px rgba(80,227,111,.16); }
  50% { box-shadow: 0 0 0 5px rgba(80,227,111,.06), 0 0 16px rgba(80,227,111,.34); }
}

@media (max-width: 1120px) {
  .colonial-visual {
    width: 42vw;
    opacity: .72;
  }

  .dropship-scene {
    right: 15px;
    transform: scale(.86);
    transform-origin: center;
  }
}

@media (max-width: 900px) {
  .colonial-visual {
    position: absolute;
    width: 100%;
    height: 530px;
    right: -30%;
    top: 165px;
    opacity: .28;
  }

  .planet {
    right: -145px;
  }

  .visual-caption {
    display: none;
  }

  .hero-content {
    z-index: 5;
  }
}

@media (max-width: 560px) {
  .colonial-visual {
    right: -48%;
    top: 150px;
    opacity: .2;
  }

  .dropship-scene {
    display: none;
  }

  .planet {
    width: 520px;
    height: 520px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ===============================
   VOIDFALL V7 — MARINE HERO
   Planet moved to the far right + animated marine overlay
   =============================== */

.colonial-visual {
  right: 0;
  width: min(52vw, 790px);
  height: min(78vh, 720px);
  overflow: visible;
  mask-image: linear-gradient(to bottom, #000 0 89%, transparent 100%);
}

.colonial-visual::before {
  /* Keep the HUD scanlines, but do not darken the marine itself too much. */
  background:
    linear-gradient(90deg, rgba(7,7,7,.62) 0%, transparent 15%, transparent 93%, rgba(7,7,7,.08) 100%),
    repeating-linear-gradient(180deg, transparent 0 3px, rgba(255,255,255,.012) 3px 4px);
}

.planet {
  width: 650px;
  height: 650px;
  right: -305px;
  top: -8px;
  opacity: .93;
}

.dropship-scene {
  display: none !important;
}

.marine-stage {
  position: absolute;
  z-index: 5;
  right: 40px;
  top: 28px;
  width: clamp(350px, 31vw, 485px);
  height: calc(100% - 18px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-marine {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,.68));
  transform: translateZ(0);
  backface-visibility: hidden;
}

.visual-caption {
  left: auto;
  right: 365px;
  bottom: 76px;
  z-index: 7;
}

@media (max-width: 1280px) {
  .colonial-visual {
    width: 49vw;
  }

  .planet {
    right: -330px;
  }

  .marine-stage {
    right: 18px;
    width: clamp(330px, 32vw, 445px);
  }

  .visual-caption {
    right: 315px;
  }
}

@media (max-width: 1120px) {
  .colonial-visual {
    width: 46vw;
    opacity: .88;
  }

  .planet {
    right: -365px;
  }

  .marine-stage {
    right: -8px;
    width: clamp(310px, 35vw, 410px);
  }

  .visual-caption {
    display: none;
  }
}

@media (max-width: 900px) {
  .colonial-visual {
    width: 58vw;
    height: 560px;
    right: -10%;
    top: 130px;
    opacity: .34;
    overflow: visible;
  }

  .planet {
    width: 560px;
    height: 560px;
    right: -350px;
    top: 0;
  }

  .marine-stage {
    right: -18px;
    top: 25px;
    width: 360px;
    height: 520px;
  }
}

@media (max-width: 560px) {
  .colonial-visual {
    width: 74vw;
    right: -28%;
    top: 138px;
    opacity: .24;
  }

  .planet {
    width: 500px;
    height: 500px;
    right: -340px;
  }

  .marine-stage {
    right: -28px;
    width: 320px;
  }
}


/* ===============================
   VOIDFALL V8 — marine moved left + clean cutout
   =============================== */

.colonial-visual {
  right: max(10px, calc((100vw - var(--max)) / 2 - 8px));
  width: min(54vw, 820px);
  height: min(80vh, 760px);
  overflow: visible;
  opacity: 1;
}

.colonial-visual::before {
  background:
    linear-gradient(90deg, rgba(7,7,7,.52) 0%, rgba(7,7,7,.12) 15%, transparent 26%, transparent 90%, rgba(7,7,7,.06) 100%),
    repeating-linear-gradient(180deg, transparent 0 3px, rgba(255,255,255,.012) 3px 4px);
}

.planet {
  width: 675px;
  height: 675px;
  right: -350px;
  top: -18px;
  opacity: .94;
}

.marine-stage {
  position: absolute;
  z-index: 6;
  top: 28px;
  right: 190px;
  width: clamp(340px, 29vw, 470px);
  height: calc(100% - 20px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  overflow: visible;
  animation: marineFloat 7.8s ease-in-out infinite;
}

.marine-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 11%;
  top: 6%;
  width: 78%;
  height: 88%;
  border-radius: 48% 52% 40% 44% / 38% 40% 56% 58%;
  background:
    radial-gradient(circle at 58% 28%, rgba(121,255,171,.22), rgba(121,255,171,.08) 26%, rgba(121,255,171,0) 58%),
    radial-gradient(circle at 56% 52%, rgba(121,255,171,.18), rgba(121,255,171,.07) 28%, rgba(121,255,171,0) 60%),
    radial-gradient(circle at 48% 80%, rgba(121,255,171,.14), rgba(121,255,171,0) 52%);
  filter: blur(28px);
  opacity: .92;
  transform: translateZ(0);
  animation: auraPulse 5.6s ease-in-out infinite;
}

.marine-stage::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 55.5%;
  top: 13.7%;
  width: 17%;
  height: 2.3%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.06) 20%, rgba(255,255,255,.92) 50%, rgba(255,255,255,.12) 82%, rgba(255,255,255,0));
  filter: blur(.5px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: rotate(-12deg) translateX(-180%);
  transform-origin: center center;
  animation: visorSweep 4s linear infinite;
  pointer-events: none;
}

.hero-marine {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 36px rgba(0,0,0,.68));
  transform: translateZ(0);
  backface-visibility: hidden;
}

.visual-caption {
  right: 150px;
  bottom: 92px;
  z-index: 7;
}

@keyframes auraPulse {
  0%, 100% {
    opacity: .74;
    transform: scale(.98);
    filter: blur(26px);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
    filter: blur(30px);
  }
}

@keyframes marineFloat {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(-4px,-8px,0); }
}

@keyframes visorSweep {
  0%, 70%, 100% {
    opacity: 0;
    transform: rotate(-12deg) translateX(-180%);
  }
  74% {
    opacity: .1;
  }
  79% {
    opacity: .95;
    transform: rotate(-12deg) translateX(12%);
  }
  84% {
    opacity: 0;
    transform: rotate(-12deg) translateX(150%);
  }
}

@media (max-width: 1280px) {
  .colonial-visual {
    width: 52vw;
  }

  .planet {
    right: -390px;
  }

  .marine-stage {
    right: 135px;
    width: clamp(330px, 30vw, 430px);
  }

  .visual-caption {
    right: 110px;
  }
}

@media (max-width: 1120px) {
  .colonial-visual {
    width: 49vw;
    opacity: .96;
  }

  .planet {
    right: -420px;
  }

  .marine-stage {
    right: 90px;
    width: clamp(300px, 31vw, 390px);
  }

  .visual-caption {
    right: 72px;
    bottom: 76px;
  }
}

@media (max-width: 900px) {
  .colonial-visual {
    width: 62vw;
    height: 560px;
    right: -6%;
    top: 125px;
    opacity: .38;
  }

  .planet {
    width: 560px;
    height: 560px;
    right: -360px;
    top: 0;
  }

  .marine-stage {
    right: 120px;
    top: 28px;
    width: 305px;
    height: 500px;
  }
}

@media (max-width: 560px) {
  .colonial-visual {
    width: 80vw;
    right: -24%;
    top: 138px;
    opacity: .26;
  }

  .planet {
    width: 500px;
    height: 500px;
    right: -345px;
  }

  .marine-stage {
    right: 118px;
    width: 250px;
    height: 440px;
  }

  .marine-stage::after {
    top: 14.5%;
    left: 55%;
  }
}


/* ===============================
   VOIDFALL V9 — marine swapped, cutout, pushed fully right
   =============================== */

.colonial-visual {
  right: 0;
  width: min(48vw, 760px);
  height: min(78vh, 720px);
  overflow: visible;
  opacity: 1;
  mask-image: linear-gradient(to bottom, #000 0 90%, transparent 100%);
}

.colonial-visual::before {
  background:
    linear-gradient(90deg, rgba(7,7,7,.82) 0%, rgba(7,7,7,.38) 12%, transparent 26%, transparent 92%, rgba(7,7,7,.02) 100%),
    repeating-linear-gradient(180deg, transparent 0 3px, rgba(255,255,255,.012) 3px 4px);
}

.planet {
  width: 690px;
  height: 690px;
  right: -410px;
  top: -26px;
  opacity: .95;
}

.marine-stage {
  position: absolute;
  z-index: 6;
  right: 4px;
  top: 18px;
  width: clamp(355px, 28vw, 470px);
  height: calc(100% - 14px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  overflow: visible;
}

.marine-stage::before {
  content: none;
}

.hero-marine {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 28px 36px rgba(0,0,0,.68));
  transform: translateZ(0);
  backface-visibility: hidden;
}

.visual-caption {
  right: 315px;
  bottom: 88px;
  z-index: 7;
}

/* keep a small moving visor sweep on top of the static image */
.marine-stage::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 51.8%;
  top: 15.1%;
  width: 13.5%;
  height: 2.1%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.06) 18%, rgba(255,255,255,.92) 50%, rgba(255,255,255,.12) 82%, rgba(255,255,255,0));
  filter: blur(.45px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: rotate(-13deg) translateX(-180%);
  transform-origin: center center;
  animation: visorSweep 4s linear infinite;
  pointer-events: none;
}

@media (max-width: 1280px) {
  .colonial-visual {
    width: 46vw;
  }
  .planet {
    right: -445px;
  }
  .marine-stage {
    width: clamp(335px, 28vw, 430px);
    right: -6px;
  }
  .visual-caption {
    right: 265px;
  }
}

@media (max-width: 1120px) {
  .colonial-visual {
    width: 44vw;
    opacity: .98;
  }
  .planet {
    right: -470px;
  }
  .marine-stage {
    width: clamp(310px, 29vw, 385px);
    right: -16px;
    top: 26px;
  }
  .visual-caption {
    display: none;
  }
}

@media (max-width: 900px) {
  .colonial-visual {
    width: 55vw;
    height: 540px;
    right: -10%;
    top: 135px;
    opacity: .34;
  }
  .planet {
    width: 560px;
    height: 560px;
    right: -390px;
    top: 0;
  }
  .marine-stage {
    width: 300px;
    height: 500px;
    right: -6px;
    top: 28px;
  }
}

@media (max-width: 560px) {
  .colonial-visual {
    width: 72vw;
    right: -28%;
    top: 142px;
    opacity: .24;
  }
  .planet {
    width: 500px;
    height: 500px;
    right: -350px;
  }
  .marine-stage {
    width: 250px;
    height: 430px;
    right: -24px;
  }
  .marine-stage::after {
    left: 51%;
    top: 15.5%;
  }
}


/* ===============================
   VOIDFALL V10 — user marine, all visual elements far right
   =============================== */

.colonial-visual {
  right: -70px;
  width: min(47vw, 735px);
  height: min(80vh, 735px);
  overflow: visible;
  opacity: 1;
  mask-image: linear-gradient(to bottom, #000 0 91%, transparent 100%);
}

.colonial-visual::before {
  background:
    linear-gradient(90deg, rgba(7,7,7,.92) 0%, rgba(7,7,7,.55) 12%, rgba(7,7,7,.08) 24%, transparent 34%, transparent 96%),
    repeating-linear-gradient(180deg, transparent 0 3px, rgba(255,255,255,.012) 3px 4px);
}

.planet {
  width: 700px;
  height: 700px;
  right: -535px;
  top: -32px;
  opacity: .96;
}

.marine-stage {
  position: absolute;
  z-index: 6;
  right: -55px;
  top: 18px;
  width: clamp(350px, 28vw, 455px);
  height: calc(100% - 12px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
  pointer-events: none;
  animation: marineFloat 7.8s ease-in-out infinite;
}

.marine-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 14%;
  top: 7%;
  width: 74%;
  height: 86%;
  border-radius: 46% 54% 45% 48% / 40% 42% 58% 60%;
  background:
    radial-gradient(circle at 55% 28%, rgba(99,255,154,.30), rgba(99,255,154,.12) 30%, rgba(99,255,154,0) 63%),
    radial-gradient(circle at 56% 55%, rgba(99,255,154,.24), rgba(99,255,154,.09) 34%, rgba(99,255,154,0) 66%),
    radial-gradient(circle at 47% 82%, rgba(99,255,154,.16), rgba(99,255,154,0) 55%);
  filter: blur(34px);
  opacity: .95;
  transform: translateZ(0);
  animation: auraPulse 5.4s ease-in-out infinite;
}

.hero-marine {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 28px 36px rgba(0,0,0,.7));
  transform: translateZ(0);
  backface-visibility: hidden;
}

.visual-caption {
  right: 300px;
  bottom: 90px;
  z-index: 7;
}

@media (max-width: 1280px) {
  .colonial-visual { right: -90px; width: 46vw; }
  .planet { right: -560px; }
  .marine-stage { right: -68px; width: clamp(330px, 28.5vw, 425px); }
  .visual-caption { right: 255px; }
}

@media (max-width: 1120px) {
  .colonial-visual { right: -105px; width: 45vw; opacity: .98; }
  .planet { right: -585px; }
  .marine-stage { right: -78px; width: clamp(305px, 29vw, 390px); top: 28px; }
  .visual-caption { display: none; }
}

@media (max-width: 900px) {
  .colonial-visual { width: 57vw; height: 540px; right: -18%; top: 132px; opacity: .34; }
  .planet { width: 560px; height: 560px; right: -420px; top: 0; }
  .marine-stage { width: 300px; height: 500px; right: -42px; top: 28px; }
}

@media (max-width: 560px) {
  .colonial-visual { width: 74vw; right: -34%; top: 140px; opacity: .24; }
  .planet { width: 500px; height: 500px; right: -390px; }
  .marine-stage { width: 250px; height: 430px; right: -48px; }
}


/* ======================================================
   VOIDFALL V12 — restore site structure, redesign hero only
   ====================================================== */

.hero.hero--mockup {
  position: relative;
  min-height: 100vh;
  height: max(780px, 100vh);
  padding-top: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 46%, rgba(22,110,60,.18), transparent 27%),
    radial-gradient(circle at 66% 74%, rgba(14,58,34,.16), transparent 28%),
    linear-gradient(180deg, #070909 0%, #060706 100%);
}

.hero.hero--mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.03) 36%, rgba(0,0,0,0) 56%, rgba(34,120,71,.06) 100%);
}

.hero--mockup .hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .74;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: .28;
  mix-blend-mode: screen;
  background: repeating-linear-gradient(180deg, transparent 0 3px, rgba(255,255,255,.017) 3px 4px);
}

.hero-orb {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 81% 54%, rgba(123,255,174,.12) 0, rgba(123,255,174,.08) 8%, rgba(123,255,174,0) 16%),
    radial-gradient(circle at 81% 54%, rgba(123,255,174,.08) 0, rgba(123,255,174,.04) 17%, rgba(123,255,174,0) 18%);
}

.hero-content--mockup {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100vw - 110px));
  margin-left: clamp(42px, 4.9vw, 84px);
  padding-top: clamp(126px, 18vh, 165px);
}

.hero--mockup .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c9cfcc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
}

.hero-title {
  margin: 18px 0 0;
  font-family: Rajdhani, Inter, sans-serif;
  line-height: .78;
  text-transform: uppercase;
}

.title-solid,
.title-outline { display: block; }

.title-solid {
  font-size: clamp(96px, 8vw, 154px);
  font-weight: 800;
  letter-spacing: -4px;
  color: #f4f5f5;
  text-shadow: 0 0 24px rgba(255,255,255,.07);
}

.title-outline {
  margin-top: 10px;
  margin-left: clamp(70px, 6vw, 120px);
  font-size: clamp(98px, 8vw, 150px);
  font-weight: 600;
  letter-spacing: -3px;
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(231,235,234,.7);
  text-stroke: 1.6px rgba(231,235,234,.7);
}

.hero-copy {
  margin: 42px 0 0;
  max-width: 740px;
  color: #a9afac;
  font-size: 18px;
  line-height: 1.55;
}

.hero-row {
  display: flex;
  align-items: center;
  gap: clamp(40px, 8vw, 170px);
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero--mockup .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero--mockup .btn {
  min-height: 52px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .35px;
}

.deployment-tag {
  min-width: 238px;
  padding-left: 20px;
  border-left: 2px solid rgba(121,255,171,.74);
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-transform: uppercase;
  font-family: Rajdhani, Inter, sans-serif;
}

.deployment-tag span {
  color: #79ffab;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.7px;
}

.deployment-tag b {
  color: #8c9490;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.hero--mockup .status-panel {
  width: min(1120px, calc(100vw - 110px));
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(5,9,7,.72);
  backdrop-filter: blur(6px);
}

.hero--mockup .status-item {
  min-height: 76px;
  padding: 16px 24px 14px;
  border-right: 1px solid rgba(255,255,255,.11);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.hero--mockup .status-item:last-child { border-right: 0; }

.hero--mockup .status-item span {
  color: #7e8481;
  font-size: 11px;
  letter-spacing: 2px;
}

.hero--mockup .status-item strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .2px;
}

.hero--mockup .online {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero--mockup .online i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #53f08f;
  box-shadow: 0 0 15px rgba(83,240,143,.85);
}

.colonial-visual {
  position: absolute;
  z-index: 2;
  top: 0;
  right: -24px;
  width: min(49vw, 800px);
  height: 100%;
  overflow: visible;
  opacity: 1;
  pointer-events: none;
}

.colonial-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 120px;
  background: linear-gradient(90deg, #060706 0%, rgba(6,7,6,.7) 28%, rgba(6,7,6,0) 100%);
  z-index: 2;
}

.space-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(255,255,255,.95) 0 1px, transparent 1.6px),
    radial-gradient(circle at 54% 10%, rgba(255,255,255,.85) 0 1.1px, transparent 1.7px),
    radial-gradient(circle at 73% 40%, rgba(255,255,255,.7) 0 1.2px, transparent 1.7px),
    radial-gradient(circle at 92% 10%, rgba(255,255,255,.9) 0 1px, transparent 1.7px),
    radial-gradient(circle at 85% 68%, rgba(255,255,255,.75) 0 1px, transparent 1.8px);
  opacity: .85;
  animation: particleDrift 18s linear infinite;
}

.planet {
  position: absolute;
  right: -560px;
  top: -32px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  overflow: hidden;
  opacity: .98;
  background:
    radial-gradient(circle at 33% 32%, rgba(184,193,187,.20), transparent 18%),
    radial-gradient(circle at 40% 43%, rgba(84,88,86,.18), transparent 21%),
    radial-gradient(circle at 65% 67%, rgba(255,255,255,.08), transparent 8%),
    radial-gradient(circle at 22% 68%, rgba(255,255,255,.05), transparent 9%),
    radial-gradient(circle at 38% 61%, rgba(255,255,255,.04), transparent 7%),
    radial-gradient(circle at 30% 30%, #536259 0%, #29332e 33%, #111613 72%, #060807 100%);
  box-shadow:
    -34px 0 85px rgba(121,255,171,.28),
    -16px 0 18px rgba(121,255,171,.7),
    inset -40px -20px 70px rgba(0,0,0,.5),
    inset 35px 10px 70px rgba(255,255,255,.07);
  animation: planetFloat 10s ease-in-out infinite;
}

.planet::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 33%, rgba(255,255,255,.14), transparent 9%),
    radial-gradient(circle at 27% 34%, rgba(0,0,0,.25), transparent 16%),
    radial-gradient(circle at 42% 59%, rgba(255,255,255,.11), transparent 8%),
    radial-gradient(circle at 46% 62%, rgba(0,0,0,.24), transparent 14%),
    radial-gradient(circle at 16% 75%, rgba(255,255,255,.08), transparent 6%),
    radial-gradient(circle at 18% 77%, rgba(0,0,0,.18), transparent 12%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.06), transparent 5%),
    radial-gradient(circle at 12% 90%, rgba(0,0,0,.14), transparent 10%);
  opacity: .95;
}

.planet-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(121,255,171,.10), transparent 48%),
    linear-gradient(90deg, transparent 0 49.7%, rgba(121,255,171,.14) 50%, transparent 50.3%),
    linear-gradient(transparent 0 49.7%, rgba(121,255,171,.14) 50%, transparent 50.3%);
  opacity: .55;
}

.planet-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(121,255,171,.16) 50%, transparent 100%);
  opacity: .4;
  animation: scanPlanet 5.6s ease-in-out infinite;
}

.marine-stage {
  position: absolute;
  z-index: 5;
  right: -36px;
  top: 24px;
  width: clamp(360px, 30vw, 500px);
  height: calc(100% - 12px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
  pointer-events: none;
  animation: marineFloat 7.6s ease-in-out infinite;
}

.marine-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 14%;
  top: 7%;
  width: 74%;
  height: 86%;
  border-radius: 46% 54% 45% 48% / 40% 42% 58% 60%;
  background:
    radial-gradient(circle at 55% 28%, rgba(99,255,154,.29), rgba(99,255,154,.11) 32%, rgba(99,255,154,0) 63%),
    radial-gradient(circle at 56% 55%, rgba(99,255,154,.23), rgba(99,255,154,.09) 34%, rgba(99,255,154,0) 66%),
    radial-gradient(circle at 47% 82%, rgba(99,255,154,.15), rgba(99,255,154,0) 55%);
  filter: blur(36px);
  opacity: .95;
  animation: auraPulse 5.4s ease-in-out infinite;
}

.marine-stage::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 49.3%;
  top: 15.3%;
  width: 13.2%;
  height: 2.1%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.08) 18%, rgba(255,255,255,.98) 50%, rgba(255,255,255,.14) 82%, rgba(255,255,255,0));
  filter: blur(.45px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: rotate(-12deg) translateX(-180%);
  transform-origin: center center;
  animation: visorSweep 4s linear infinite;
}

.hero-marine {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 28px 38px rgba(0,0,0,.72));
}

.hero--mockup .scroll-hint {
  position: absolute;
  right: 36px;
  bottom: 56px;
  z-index: 6;
  letter-spacing: 5px;
  writing-mode: vertical-rl;
  color: #818784;
  font-size: 11px;
  opacity: .9;
}

.hero--mockup .scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, rgba(121,255,171,.7), rgba(121,255,171,0));
  margin: 12px auto 0;
}

.desktop-break { display: inline; }

@media (max-width: 1280px) {
  .hero-content--mockup { width: min(1020px, calc(100vw - 82px)); }
  .title-solid { font-size: clamp(86px, 7.5vw, 136px); }
  .title-outline { font-size: clamp(84px, 7.2vw, 132px); }
  .colonial-visual { width: 47vw; right: -50px; }
  .planet { right: -590px; width: 700px; height: 700px; }
  .marine-stage { right: -62px; width: clamp(330px, 29vw, 430px); }
}

@media (max-width: 1120px) {
  .hero-content--mockup { width: min(960px, calc(100vw - 66px)); padding-top: 136px; }
  .hero-copy { max-width: 620px; font-size: 17px; }
  .hero-row { gap: 34px; }
  .hero--mockup .status-panel { width: min(960px, calc(100vw - 66px)); }
  .colonial-visual { width: 44vw; right: -85px; opacity: .98; }
  .planet { right: -620px; width: 680px; height: 680px; }
  .marine-stage { right: -80px; width: clamp(300px, 30vw, 390px); top: 28px; }
}

@media (max-width: 900px) {
  .desktop-break { display: none; }
  .hero-content--mockup { width: calc(100vw - 44px); margin-left: 22px; padding-top: 116px; }
  .title-solid { font-size: 82px; }
  .title-outline { font-size: 78px; margin-left: 42px; }
  .hero-copy { margin-top: 30px; font-size: 16px; max-width: 520px; }
  .hero-row { margin-top: 24px; gap: 24px; }
  .deployment-tag { min-width: unset; }
  .hero--mockup .status-panel {
    width: calc(100vw - 44px);
    margin-top: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero--mockup .status-item:nth-child(2) { border-right: 0; }
  .hero--mockup .status-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.11); }
  .colonial-visual { width: 56vw; height: 540px; right: -16%; top: 128px; opacity: .34; }
  .planet { width: 560px; height: 560px; right: -430px; top: 0; }
  .marine-stage { width: 300px; height: 500px; right: -32px; top: 30px; }
  .hero--mockup .scroll-hint { right: 16px; bottom: 32px; }
}

@media (max-width: 560px) {
  .hero-content--mockup { width: calc(100vw - 28px); margin-left: 14px; padding-top: 110px; }
  .hero--mockup .eyebrow { font-size: 10px; letter-spacing: 3px; }
  .title-solid { font-size: 66px; letter-spacing: -3px; }
  .title-outline { font-size: 62px; margin-left: 28px; -webkit-text-stroke: 1.2px rgba(231,235,234,.7); }
  .hero-copy { font-size: 15px; }
  .hero--mockup .btn { min-height: 48px; padding: 0 20px; font-size: 12px; }
  .deployment-tag span, .deployment-tag b { font-size: 12px; }
  .hero--mockup .status-panel { width: calc(100vw - 28px); }
  .hero--mockup .status-item { min-height: 66px; padding: 14px 14px 12px; }
  .hero--mockup .status-item strong { font-size: 15px; }
  .colonial-visual { width: 72vw; right: -33%; top: 158px; opacity: .24; }
  .planet { width: 500px; height: 500px; right: -392px; }
  .marine-stage { width: 252px; height: 430px; right: -46px; top: 40px; }
  .marine-stage::after { left: 49%; top: 15.7%; }
}


/* ======================================================
   VOIDFALL V13 — hero alignment fix (marine + planet)
   ====================================================== */

.hero--mockup .colonial-visual {
  right: 10px;
  width: min(45vw, 720px);
  height: 100%;
}

.hero--mockup .planet {
  right: -455px;
  top: -8px;
  width: 660px;
  height: 660px;
  opacity: .95;
}

.hero--mockup .marine-stage {
  right: 14px;
  top: 42px;
  width: clamp(320px, 26.5vw, 430px);
  height: calc(100% - 50px);
}

.hero--mockup .hero-marine {
  max-height: 96%;
  object-position: right bottom;
}

.hero--mockup .deployment-tag {
  margin-top: 2px;
}

@media (max-width: 1280px) {
  .hero--mockup .colonial-visual {
    width: 44vw;
    right: 0;
  }

  .hero--mockup .planet {
    right: -490px;
    width: 650px;
    height: 650px;
  }

  .hero--mockup .marine-stage {
    right: -2px;
    top: 46px;
    width: clamp(305px, 27vw, 400px);
  }
}

@media (max-width: 1120px) {
  .hero--mockup .colonial-visual {
    width: 42vw;
    right: -18px;
  }

  .hero--mockup .planet {
    right: -515px;
    width: 620px;
    height: 620px;
  }

  .hero--mockup .marine-stage {
    right: -22px;
    top: 58px;
    width: clamp(280px, 28vw, 365px);
  }
}

@media (max-width: 900px) {
  .hero--mockup .colonial-visual {
    width: 54vw;
    right: -10%;
    top: 144px;
    height: 510px;
  }

  .hero--mockup .planet {
    right: -400px;
    top: 10px;
    width: 540px;
    height: 540px;
  }

  .hero--mockup .marine-stage {
    right: -6px;
    top: 48px;
    width: 275px;
    height: 450px;
  }
}

@media (max-width: 560px) {
  .hero--mockup .colonial-visual {
    width: 70vw;
    right: -26%;
    top: 168px;
    height: 420px;
  }

  .hero--mockup .planet {
    right: -355px;
    width: 470px;
    height: 470px;
  }

  .hero--mockup .marine-stage {
    right: -18px;
    top: 44px;
    width: 228px;
    height: 370px;
  }
}


/* ======================================================
   VOIDFALL V14 — exact marine #2, slightly larger, cleaner fit
   ====================================================== */

.hero--mockup .colonial-visual {
  right: 2px;
  width: min(46vw, 740px);
  height: 100%;
}

.hero--mockup .planet {
  right: -485px;
  top: -12px;
  width: 675px;
  height: 675px;
  opacity: .96;
}

.hero--mockup .marine-stage {
  right: 6px;
  top: 26px;
  width: clamp(345px, 28vw, 455px);
  height: calc(100% - 32px);
}

.hero--mockup .marine-stage::before {
  left: 12%;
  top: 6%;
  width: 76%;
  height: 88%;
  filter: blur(34px);
}

.hero--mockup .marine-stage::after {
  left: 49.4%;
  top: 15.0%;
  width: 13.8%;
  height: 2.15%;
}

.hero--mockup .hero-marine {
  max-height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 28px 38px rgba(0,0,0,.74));
}

@media (max-width: 1280px) {
  .hero--mockup .colonial-visual {
    width: 45vw;
    right: -6px;
  }

  .hero--mockup .planet {
    right: -505px;
    width: 660px;
    height: 660px;
  }

  .hero--mockup .marine-stage {
    right: -2px;
    top: 30px;
    width: clamp(328px, 28vw, 425px);
  }
}

@media (max-width: 1120px) {
  .hero--mockup .colonial-visual {
    width: 43vw;
    right: -22px;
  }

  .hero--mockup .planet {
    right: -528px;
    width: 635px;
    height: 635px;
  }

  .hero--mockup .marine-stage {
    right: -18px;
    top: 44px;
    width: clamp(295px, 29vw, 380px);
  }
}

@media (max-width: 900px) {
  .hero--mockup .colonial-visual {
    width: 55vw;
    right: -12%;
    top: 140px;
    height: 520px;
  }

  .hero--mockup .planet {
    right: -410px;
    top: 6px;
    width: 550px;
    height: 550px;
  }

  .hero--mockup .marine-stage {
    right: -8px;
    top: 42px;
    width: 285px;
    height: 460px;
  }
}

@media (max-width: 560px) {
  .hero--mockup .colonial-visual {
    width: 70vw;
    right: -28%;
    top: 166px;
    height: 425px;
  }

  .hero--mockup .planet {
    right: -360px;
    width: 475px;
    height: 475px;
  }

  .hero--mockup .marine-stage {
    right: -20px;
    top: 42px;
    width: 236px;
    height: 380px;
  }

  .hero--mockup .marine-stage::after {
    left: 49%;
    top: 15.4%;
  }
}


/* ======================================================
   VOIDFALL V15 — fix black seam + solid marine cutout
   ====================================================== */

/* Remove the dark vertical curtain/gradient left of the marine. */
.hero--mockup .colonial-visual::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* Keep the right visual area seamless with the hero background. */
.hero--mockup .colonial-visual {
  right: 0;
  width: min(47vw, 760px);
  background: transparent;
  overflow: visible;
}

/* Planet remains behind the marine, without a hard edge. */
.hero--mockup .planet {
  right: -500px;
  top: -8px;
  width: 680px;
  height: 680px;
}

/* Slightly larger marine, but still fully visible inside the hero. */
.hero--mockup .marine-stage {
  right: 10px;
  top: 18px;
  width: clamp(360px, 29vw, 475px);
  height: calc(100% - 24px);
}

.hero--mockup .hero-marine {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.72));
}

/* Soft rear light only — no hard outline. */
.hero--mockup .marine-stage::before {
  left: 10%;
  top: 5%;
  width: 80%;
  height: 90%;
  opacity: .82;
  filter: blur(40px);
}

@media (max-width: 1280px) {
  .hero--mockup .colonial-visual { width: 46vw; right: 0; }
  .hero--mockup .planet { right: -520px; width: 660px; height: 660px; }
  .hero--mockup .marine-stage { right: 2px; top: 24px; width: clamp(340px, 29vw, 445px); }
}

@media (max-width: 1120px) {
  .hero--mockup .colonial-visual { width: 44vw; right: -10px; }
  .hero--mockup .planet { right: -535px; width: 635px; height: 635px; }
  .hero--mockup .marine-stage { right: -8px; top: 36px; width: clamp(310px, 30vw, 400px); }
}

@media (max-width: 900px) {
  .hero--mockup .colonial-visual { width: 55vw; right: -10%; top: 140px; height: 520px; }
  .hero--mockup .planet { right: -410px; top: 5px; width: 550px; height: 550px; }
  .hero--mockup .marine-stage { right: -4px; top: 36px; width: 292px; height: 470px; }
}

@media (max-width: 560px) {
  .hero--mockup .colonial-visual { width: 70vw; right: -28%; top: 164px; height: 425px; }
  .hero--mockup .planet { right: -360px; width: 475px; height: 475px; }
  .hero--mockup .marine-stage { right: -18px; top: 40px; width: 242px; height: 382px; }
}

/* ======================================================
   VOIDFALL V16 — hero matched to the supplied reference.
   Only the hero is overridden; the rest of the site stays V15.
   ====================================================== */

/* Match reference composition and remove every previous right-side cutout layer. */
.hero.hero--mockup {
  min-height: 100vh;
  height: max(848px, 100vh);
  background:
    radial-gradient(circle at 67% 47%, rgba(23,91,52,.12), transparent 29%),
    linear-gradient(180deg, #060807 0%, #050706 100%);
}

.hero--mockup .hero-grid {
  opacity: .68;
  background-size: 32px 32px;
}

.hero-content--mockup {
  z-index: 6;
  width: min(930px, calc(100vw - 110px));
  margin-left: clamp(56px, 4.7vw, 78px);
  padding-top: clamp(142px, 17.1vh, 158px);
}

.hero--mockup .eyebrow {
  font-size: 12px;
  letter-spacing: 4.2px;
  gap: 12px;
  color: #c9cecc;
}

/* Explicitly cancel the old global outline on the CM14 span. */
.hero--mockup .title-solid {
  color: #f5f6f5 !important;
  -webkit-text-stroke: 0 transparent !important;
  text-stroke: 0 transparent !important;
  font-size: clamp(112px, 9.05vw, 150px);
  font-weight: 800;
  letter-spacing: -5px;
  line-height: .8;
  text-shadow: 0 0 20px rgba(255,255,255,.06);
}

.hero--mockup .title-outline {
  margin-top: 11px;
  margin-left: clamp(46px, 3.4vw, 58px);
  font-size: clamp(108px, 8.55vw, 142px);
  font-weight: 500;
  letter-spacing: -3px;
  line-height: .8;
  color: transparent !important;
  -webkit-text-stroke: 1.45px rgba(224,230,227,.72) !important;
  text-stroke: 1.45px rgba(224,230,227,.72) !important;
}

.hero--mockup .hero-copy {
  max-width: 720px;
  margin-top: 48px;
  color: #a7ada9;
  font-size: 16px;
  line-height: 1.58;
}

.hero--mockup .hero-row {
  margin-top: 25px;
  gap: clamp(50px, 6.8vw, 110px);
  flex-wrap: nowrap;
}

.hero--mockup .btn {
  min-height: 50px;
  padding: 0 25px;
  font-size: 13px;
}

.hero--mockup .deployment-tag {
  min-width: 240px;
  padding-left: 18px;
  border-left-width: 2px;
  gap: 8px;
}

.hero--mockup .deployment-tag span,
.hero--mockup .deployment-tag b {
  font-size: 11px;
  letter-spacing: 1.45px;
}

/* Reference status bar is narrower than previous V15. */
.hero--mockup .status-panel {
  width: min(900px, calc(100vw - 120px));
  margin-top: 54px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(5,9,7,.92);
  border-color: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
}

.hero--mockup .status-item {
  min-height: 78px;
  padding: 16px 23px 14px;
  border-right-color: rgba(255,255,255,.14);
}

.hero--mockup .status-item span {
  font-size: 10px;
  letter-spacing: 1.75px;
}

.hero--mockup .status-item strong {
  font-size: 15px;
}

/* Exact visual treatment from the supplied target screenshot.
   This replaces the problematic cutout/planet assembly only inside the hero. */
.hero--mockup .colonial-visual {
  position: absolute;
  z-index: 2;
  top: 80px;
  right: 0;
  width: min(54vw, 900px);
  height: calc(100% - 80px);
  opacity: 1;
  overflow: hidden;
  pointer-events: none;
  background-image: url('assets/hero-right-reference.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 5%, #000 13%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 5%, #000 13%, #000 100%);
}

/* Hide all old procedural right-side layers; they caused the seam and broken marine. */
.hero--mockup .colonial-visual > .space-particles,
.hero--mockup .colonial-visual > .planet,
.hero--mockup .colonial-visual > .marine-stage,
.hero--mockup .colonial-visual > .dropship-scene,
.hero--mockup .colonial-visual > .visual-caption {
  display: none !important;
}

/* Soft animated green backlight, like the earlier versions but without touching the marine edges. */
.hero--mockup .colonial-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 60% 47%, rgba(72,255,139,.16), rgba(72,255,139,.06) 24%, transparent 52%),
    radial-gradient(circle at 84% 34%, rgba(72,255,139,.13), transparent 32%);
  mix-blend-mode: screen;
  animation: referenceAura 5.5s ease-in-out infinite;
}

/* A small visor sweep once per ~4 seconds. */
.hero--mockup .colonial-visual::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  z-index: 3;
  left: 60.5%;
  top: 20.7%;
  width: 58px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.94), rgba(255,255,255,.14), transparent) !important;
  filter: blur(.45px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: rotate(-10deg) translateX(-160%);
  animation: referenceVisor 4s linear infinite;
  pointer-events: none;
}

.hero--mockup .scroll-hint {
  display: none !important; /* the target visual already includes it */
}

@keyframes referenceAura {
  0%, 100% { opacity: .48; transform: scale(.99); }
  50% { opacity: .9; transform: scale(1.025); }
}

@keyframes referenceVisor {
  0%, 70%, 100% { opacity: 0; transform: rotate(-10deg) translateX(-160%); }
  74% { opacity: .15; }
  78% { opacity: .85; transform: rotate(-10deg) translateX(0); }
  83% { opacity: 0; transform: rotate(-10deg) translateX(150%); }
}

@media (max-width: 1280px) {
  .hero-content--mockup {
    width: min(850px, calc(100vw - 82px));
    margin-left: 46px;
  }
  .hero--mockup .title-solid { font-size: clamp(100px, 8.7vw, 132px); }
  .hero--mockup .title-outline { font-size: clamp(96px, 8.1vw, 124px); margin-left: 46px; }
  .hero--mockup .status-panel { width: min(850px, calc(100vw - 92px)); }
  .hero--mockup .colonial-visual { width: 53vw; }
}

@media (max-width: 1120px) {
  .hero-content--mockup {
    width: min(760px, calc(100vw - 64px));
    margin-left: 36px;
    padding-top: 138px;
  }
  .hero--mockup .hero-copy { max-width: 590px; }
  .hero--mockup .hero-row { gap: 30px; }
  .hero--mockup .status-panel { width: min(760px, calc(100vw - 70px)); }
  .hero--mockup .colonial-visual { width: 50vw; }
}

@media (max-width: 900px) {
  .hero-content--mockup {
    width: calc(100vw - 44px);
    margin-left: 22px;
    padding-top: 116px;
  }
  .hero--mockup .title-solid { font-size: 82px; }
  .hero--mockup .title-outline { font-size: 76px; margin-left: 36px; }
  .hero--mockup .hero-copy { max-width: 520px; margin-top: 30px; }
  .hero--mockup .hero-row { flex-wrap: wrap; gap: 22px; }
  .hero--mockup .status-panel {
    width: calc(100vw - 44px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
  }
  .hero--mockup .status-item:nth-child(2) { border-right: 0; }
  .hero--mockup .status-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .hero--mockup .colonial-visual {
    top: 84px;
    width: 62vw;
    height: calc(100% - 84px);
    opacity: .28;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 28%);
    mask-image: linear-gradient(90deg, transparent, #000 28%);
  }
}

@media (max-width: 560px) {
  .hero-content--mockup { width: calc(100vw - 28px); margin-left: 14px; padding-top: 108px; }
  .hero--mockup .eyebrow { font-size: 10px; letter-spacing: 3px; }
  .hero--mockup .title-solid { font-size: 66px; }
  .hero--mockup .title-outline { font-size: 60px; margin-left: 24px; }
  .hero--mockup .hero-copy { font-size: 15px; }
  .hero--mockup .status-panel { width: calc(100vw - 28px); }
  .hero--mockup .colonial-visual { width: 78vw; right: -24%; opacity: .2; }
}


/* ======================================================
   VOIDFALL V18 — final hero cleanup per request
   1) removes remaining SCROLL artifacts,
   2) removes ripples/extra interference,
   3) disables visor shine animation.
   ====================================================== */

.hero--mockup .hero-grid {
  opacity: .24 !important;
}

.hero--mockup .hero-scanlines {
  display: none !important;
}

.hero--mockup .colonial-visual {
  top: 80px !important;
  right: 0 !important;
  width: min(54vw, 900px) !important;
  height: calc(100% - 80px) !important;
  overflow: hidden !important;
  background-image: url('assets/hero-right-visual-clean5.webp') !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: right top !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.48) 6%, #000 14%, #000 100%) !important;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.48) 6%, #000 14%, #000 100%) !important;
  image-rendering: auto;
}

.hero--mockup .colonial-visual > .space-particles,
.hero--mockup .colonial-visual > .planet,
.hero--mockup .colonial-visual > .marine-stage,
.hero--mockup .colonial-visual > .dropship-scene,
.hero--mockup .colonial-visual > .visual-caption {
  display: none !important;
}

/* keep only a very soft ambient glow, without affecting sharpness too much */
.hero--mockup .colonial-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 46%, rgba(72,255,139,.08), rgba(72,255,139,.025) 24%, transparent 52%),
    linear-gradient(90deg, transparent 0%, transparent 96%, rgba(3,8,7,.90) 99%, rgba(3,8,7,.98) 100%);
  mix-blend-mode: screen, normal;
  animation: referenceAuraMinimal 6s ease-in-out infinite;
}

/* remove visor shine animation completely */
.hero--mockup .colonial-visual::before {
  content: none !important;
  display: none !important;
  animation: none !important;
}

.hero--mockup .scroll-hint {
  display: none !important;
}

@keyframes referenceAuraMinimal {
  0%, 100% { opacity: .28; transform: scale(.997); }
  50% { opacity: .5; transform: scale(1.01); }
}

@media (max-width: 1280px) {
  .hero--mockup .colonial-visual {
    width: 53vw !important;
  }
}

@media (max-width: 1120px) {
  .hero--mockup .colonial-visual {
    width: 50vw !important;
  }
}

@media (max-width: 900px) {
  .hero--mockup .colonial-visual {
    top: 84px !important;
    width: 62vw !important;
    height: calc(100% - 84px) !important;
    opacity: .28 !important;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 28%) !important;
    mask-image: linear-gradient(90deg, transparent, #000 28%) !important;
  }
}

@media (max-width: 560px) {
  .hero--mockup .colonial-visual {
    width: 78vw !important;
    right: -24% !important;
    opacity: .2 !important;
  }
}


/* ======================================================
   VOIDFALL V19 — use user's final hero image on main screen
   and remove the bottom-left text/window artifact from the image.
   ====================================================== */

.hero--mockup .colonial-visual {
  background-image: url('assets/hero-user-final-clean.webp') !important;
  background-repeat: no-repeat !important;
  background-position: right top !important;
  background-size: auto 100% !important;
}

@media (max-width: 900px) {
  .hero--mockup .colonial-visual {
    background-position: right top !important;
    background-size: auto 100% !important;
  }
}

@media (max-width: 560px) {
  .hero--mockup .colonial-visual {
    background-position: right top !important;
    background-size: auto 100% !important;
  }
}


/* ======================================================
   VOIDFALL V20 — content refresh
   ====================================================== */

.section-copy p:last-child {
  margin-bottom: 0;
}

.feature-card h3 {
  max-width: 90%;
}

.final-section .join-heading {
  position: relative;
  display: inline-block;
  margin: 6px auto 8px;
  color: #f4f5f5;
  text-shadow:
    0 0 20px rgba(255,255,255,.10),
    0 0 42px rgba(121,255,171,.08);
  animation: joinHeadingFloat 4.8s ease-in-out infinite;
}

.final-section .join-heading::before {
  content: "";
  position: absolute;
  inset: -10px -18px;
  z-index: -1;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 50%, rgba(121,255,171,.10), rgba(121,255,171,0) 70%);
  filter: blur(10px);
  animation: joinHeadingGlow 4.8s ease-in-out infinite;
}

.final-section .join-heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  margin: 0 auto;
  width: 68%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(121,255,171,.95), transparent);
  box-shadow: 0 0 18px rgba(121,255,171,.35);
  transform: translateX(-12%);
  animation: joinHeadingSweep 3.6s ease-in-out infinite;
}

.final-section .link-actions {
  margin-top: 36px;
}

.final-section .terminal {
  margin-top: 48px;
}

@keyframes joinHeadingFloat {
  0%, 100% {
    transform: translateY(0px);
    letter-spacing: -1.5px;
  }
  50% {
    transform: translateY(-4px);
    letter-spacing: -1px;
  }
}

@keyframes joinHeadingGlow {
  0%, 100% {
    opacity: .45;
    transform: scale(.98);
  }
  50% {
    opacity: .9;
    transform: scale(1.03);
  }
}

@keyframes joinHeadingSweep {
  0%, 100% {
    opacity: .45;
    transform: translateX(-12%) scaleX(.84);
  }
  50% {
    opacity: 1;
    transform: translateX(12%) scaleX(1);
  }
}

@media (max-width: 900px) {
  .final-section .join-heading::after {
    width: 82%;
  }
}
