:root {
  --void: #05060a;
  --space: #0a0d14;
  --navy: #12182a;
  --gold: #d4af37;
  --gold-bright: #f3d56a;
  --gold-deep: #8a6d1d;
  --ivory: #f3ead6;
  --muted: #9a9384;
  --flame: #ff7a28;
  --lunar: #8ea3bd;
  --hud: #7dffc0;
  --line: rgba(212, 175, 55, 0.28);
  --glass: rgba(10, 12, 18, 0.62);
  --font-display: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --font-mono: "Share Tech Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

html,
body {
  background: var(--void);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.mono {
  font-family: var(--font-mono);
}

#stars,
.noise,
.scanlines,
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#stars {
  z-index: 0;
}

.noise {
  z-index: 40;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.scanlines {
  z-index: 41;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 3px
  );
  opacity: 0.35;
}

.vignette {
  z-index: 39;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.72) 100%);
}

.boot {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 40%, #1a160c 0%, #05060a 62%);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.boot.hide {
  opacity: 0;
  visibility: hidden;
}

.boot-ring {
  position: absolute;
  width: min(42vw, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.18), inset 0 0 40px rgba(212, 175, 55, 0.08);
  animation: spin 8s linear infinite;
}

.boot-ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed rgba(243, 213, 106, 0.45);
  animation: spin 14s linear infinite reverse;
}

.boot-logo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 1;
  animation: pulseGlow 2s ease-in-out infinite;
}

.boot-mark,
.boot-line {
  position: absolute;
  font-family: var(--font-display);
  letter-spacing: 0.42em;
}

.boot-mark {
  top: calc(50% + 118px);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.boot-line {
  top: calc(50% + 150px);
  font-size: 0.68rem;
  color: var(--muted);
}

.boot-bar {
  position: absolute;
  top: calc(50% + 186px);
  width: min(280px, 70vw);
  height: 2px;
  background: rgba(212, 175, 55, 0.15);
  overflow: hidden;
}

.boot-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  animation: load 1.8s ease forwards;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.6rem;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.86), rgba(5, 6, 10, 0.28));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transform: translateY(0);
  transition: transform 0.35s ease, background 0.35s ease;
}

.nav.hide {
  transform: translateY(-110%);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 0.92rem;
}

.nav-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold), 0 0 18px rgba(212, 175, 55, 0.35);
}

.nav-links {
  display: flex;
  gap: 1.6rem;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ivory);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.icon-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(1.15);
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.28);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta,
.btn-gold {
  background: linear-gradient(180deg, #f0d060 0%, #c49a2a 55%, #8a6d1d 100%);
  color: #1a1406;
  box-shadow: 0 0 0 1px rgba(255, 230, 150, 0.25) inset, 0 8px 24px rgba(212, 175, 55, 0.22);
}

.btn-ghost {
  background: rgba(10, 12, 18, 0.5);
  color: var(--ivory);
}

.nav-cta img,
.btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255, 122, 40, 0.28), 0 0 18px rgba(212, 175, 55, 0.35);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-bright);
}

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

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr minmax(180px, 240px);
  align-items: center;
  gap: 1.5rem;
  padding: 7.5rem 1.6rem 5rem;
  position: relative;
}

.hero-horizon {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -8%;
  height: 42%;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(212, 175, 55, 0.22), transparent 55%),
    radial-gradient(ellipse at 50% 130%, #1b2740 0%, transparent 58%);
  filter: blur(2px);
  pointer-events: none;
}

.hero-horizon::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 213, 106, 0.7), transparent);
  box-shadow: 0 0 24px rgba(243, 213, 106, 0.55);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 72%);
  pointer-events: none;
  animation: gridDrift 28s linear infinite;
}

.hero-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.patch {
  position: relative;
  width: min(340px, 72vw);
  aspect-ratio: 1;
  margin-bottom: 1.4rem;
}

.patch-logo {
  position: absolute;
  inset: 16%;
  width: 68%;
  height: 68%;
  margin: auto;
  border-radius: 50%;
  object-fit: cover;
  animation: float 5.5s ease-in-out infinite;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
}

.patch-glow {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 213, 106, 0.28), transparent 68%);
  animation: pulseGlow 3.2s ease-in-out infinite;
}

.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.orbit-a {
  animation: spin 18s linear infinite;
  border-style: dashed;
}

.orbit-b {
  inset: 6%;
  border-color: rgba(243, 213, 106, 0.45);
  animation: spin 11s linear infinite reverse;
}

.orbit-c {
  inset: -8%;
  border-color: rgba(212, 175, 55, 0.12);
  animation: spin 26s linear infinite;
}

.orbit-a::before,
.orbit-b::before,
.orbit-c::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold-bright);
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-sat {
  position: absolute;
  inset: -8%;
  animation: spin 16s linear infinite;
}

.orbit-sat::after {
  content: "";
  position: absolute;
  top: 8%;
  right: 10%;
  width: 10px;
  height: 10px;
  background: var(--ivory);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 8px var(--gold));
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 0.9;
  margin: 0.15em 0 0.2em;
  position: relative;
}

.hero-copy h1::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 46%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 236, 170, 0.85), transparent);
  filter: blur(1px);
  pointer-events: none;
  animation: flare 3.8s ease-in-out infinite;
}

.title-shine {
  background: linear-gradient(180deg, #fff6d2 0%, #f3d56a 28%, #d4af37 52%, #8a6d1d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(243, 213, 106, 0.18);
  position: relative;
}

.eyebrow,
.mod,
.hud-kicker,
.dossier-tag,
.ca-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.lede {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  max-width: 34rem;
  margin: 0.6rem auto 0.35rem;
}

.sub {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto 1.2rem;
}

.wing-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0.35rem auto 0.7rem;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.34em;
}

.wing-rule.small {
  font-size: 0.6rem;
}

.wing-rule i {
  width: 72px;
  height: 10px;
  background:
    linear-gradient(90deg, transparent, var(--gold)),
    repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 14px);
  background-blend-mode: lighten;
  clip-path: polygon(0 50%, 18% 0, 100% 40%, 100% 60%, 18% 100%);
  opacity: 0.85;
}

.wing-rule i:last-child {
  transform: scaleX(-1);
}

.wing-rule span {
  position: relative;
}

.wing-rule span::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin: 0.4rem auto 0;
  background: var(--gold-bright);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  box-shadow: 0 0 10px rgba(243, 213, 106, 0.7);
}

.ca-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 1.2rem;
  padding: 0.55rem 0.7rem 0.55rem 1rem;
  max-width: 520px;
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(10px);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 12px 100%, 0 50%);
}

.ca-bar code {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--ivory);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-btn {
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.copy-btn:hover {
  background: rgba(212, 175, 55, 0.15);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.hero-hud {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 24, 42, 0.55), rgba(5, 6, 10, 0.35));
  padding: 1rem 1.05rem;
  backdrop-filter: blur(8px);
  position: relative;
}

.hero-hud::before,
.hero-hud::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
}

.hero-hud::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.hero-hud::after {
  bottom: -1px;
  right: -1px;
  border-left: 0;
  border-top: 0;
}

.hud-value {
  font-size: 1.35rem;
  color: var(--hud);
  margin: 0.25rem 0 0.85rem;
  text-shadow: 0 0 12px rgba(125, 255, 192, 0.35);
}

.hud-list {
  list-style: none;
}

.hud-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  font-size: 0.92rem;
}

.hud-list span {
  color: var(--muted);
}

.hud-steps {
  list-style: none;
  margin-top: 0.7rem;
}

.hud-steps li {
  display: flex;
  gap: 0.6rem;
  padding: 0.42rem 0;
  color: var(--muted);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  padding-left: 0.75rem;
}

.hud-steps li.on {
  color: var(--ivory);
}

.hud-steps b {
  color: var(--gold);
  font-family: var(--font-mono);
}

.hud-pulse {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--lunar);
}

.hud-pulse span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hud);
  box-shadow: 0 0 10px var(--hud);
  animation: blink 1.4s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 999px;
}

.scroll-cue span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 6px auto 0;
  background: var(--gold-bright);
  border-radius: 99px;
  animation: drop 1.5s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 6.5rem 1.4rem;
}

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

.sec-head {
  text-align: center;
  margin-bottom: 2.6rem;
}

.sec-head h2,
.join-inner h2,
.dossier h3 {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sec-head h2,
.join-inner h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin: 0.35rem 0 0.2rem;
}

.sec-lead {
  color: var(--muted);
  max-width: 36rem;
  margin: 0.8rem auto 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.2rem;
}

.dossier,
.orbit-panel,
.checklist li,
.viewport {
  position: relative;
  background: linear-gradient(180deg, rgba(18, 24, 42, 0.5), rgba(8, 10, 16, 0.72));
  border: 1px solid var(--line);
  padding: 1.5rem 1.45rem;
}

.corners::before,
.corners::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold-bright);
}

.corners::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.corners::after {
  right: -1px;
  bottom: -1px;
  border-left: 0;
  border-top: 0;
}

.dossier h3 {
  font-size: 1.25rem;
  margin: 0.55rem 0 0.9rem;
  letter-spacing: 0.04em;
}

.dossier p + p {
  margin-top: 0.85rem;
  color: #d7d0c0;
}

.close-line {
  margin-top: 1.1rem !important;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--gold-bright) !important;
  font-weight: 600;
}

.orbit-viz {
  position: relative;
  height: 240px;
  margin: 0.8rem 0 1rem;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08), transparent 60%);
}

.moon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, #e8e2d4, #8d8a82 42%, #3d3c3a 78%);
  box-shadow: 0 0 30px rgba(243, 213, 106, 0.2), inset -12px -8px 20px rgba(0, 0, 0, 0.35);
}

.ellipse {
  position: absolute;
  inset: 18px 8px;
  border: 1px dashed rgba(212, 175, 55, 0.55);
  border-radius: 50%;
  animation: spin 14s linear infinite;
}

.ellipse .sat {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 8px;
  background: var(--ivory);
  box-shadow: 0 0 12px var(--gold-bright);
}

.crosshair {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--line), var(--line)) center/1px 100% no-repeat,
    linear-gradient(var(--line), var(--line)) center/100% 1px no-repeat;
  opacity: 0.45;
}

.spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1rem;
}

.spec dt {
  color: var(--muted);
  font-size: 0.85rem;
}

.spec dd {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
}

.stat-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.stat-row li {
  padding: 1.15rem 1rem;
  border: 1px solid var(--line);
  background: rgba(5, 6, 10, 0.45);
  min-height: 100%;
}

.stat-row span {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.78rem;
}

.stat-row b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  margin: 0.4rem 0 0.45rem;
}

.stat-row p {
  color: var(--muted);
  font-size: 0.95rem;
}

.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

.checklist::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.45;
}

.checklist li {
  text-align: center;
  overflow: hidden;
}

.step-num {
  font-family: var(--font-mono);
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.85rem;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), rgba(5, 6, 10, 0.8));
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.18);
}

.step-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.step-icon.mark img,
.step-icon.sol img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.step-icon.sol img {
  border-radius: 0;
}

.checklist h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.checklist p {
  color: var(--muted);
  font-size: 0.95rem;
}

.checklist a {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

.checklist a:hover {
  border-bottom-color: var(--gold);
}

.viewport {
  padding: 0;
  overflow: hidden;
}

.viewport-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

.viewport-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.viewport-bar img {
  width: 16px;
  height: 16px;
}

.viewport-frame {
  height: min(640px, 78vh);
  background: #0b0e12;
}

.viewport-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.join {
  padding-bottom: 0;
}

.join-banner {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.join-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  animation: ken 28s ease-in-out infinite alternate;
}

.join-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.42), rgba(5, 6, 10, 0.12) 38%, rgba(5, 6, 10, 0.58)),
    radial-gradient(ellipse at center, transparent 28%, rgba(5, 6, 10, 0.4) 100%);
}

.join-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 1.2rem;
  max-width: 820px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

.join-inner p {
  margin: 0.7rem auto 1.3rem;
  max-width: 36rem;
}

.join-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.foot {
  position: relative;
  z-index: 2;
  padding: 2.4rem 1.4rem 1.4rem;
  border-top: 1px solid var(--line);
  background: rgba(5, 6, 10, 0.8);
}

.foot-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: center;
}

.foot-grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

.foot-links {
  display: flex;
  gap: 1rem;
}

.foot-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.foot-links img {
  width: 14px;
  height: 14px;
}

.legal {
  text-align: center;
  color: #6f6a60;
  font-size: 0.82rem;
  margin-top: 1.4rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%) translateY(20px);
  z-index: 70;
  padding: 0.55rem 1rem;
  border: 1px solid var(--gold);
  background: rgba(10, 12, 18, 0.92);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

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

@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.25)); }
  50% { filter: drop-shadow(0 0 26px rgba(243, 213, 106, 0.55)); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes load {
  to { width: 100%; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

@keyframes drop {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

@keyframes gridDrift {
  to { background-position: 72px 72px; }
}

@keyframes ken {
  to { transform: scale(1.1) translateY(-2%); }
}

@keyframes flare {
  0%, 100% { opacity: 0.15; transform: scaleX(0.4); }
  50% { opacity: 1; transform: scaleX(1); }
}

@media (max-height: 860px) {
  .patch {
    width: min(250px, 58vw);
    margin-bottom: 0.7rem;
  }

  .hero {
    padding-top: 6.2rem;
    padding-bottom: 3.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 7vw, 5.2rem);
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 6.4rem;
  }

  .hero-hud {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-hud.left { order: 2; }
  .hero-core { order: 1; }
  .hero-hud.right { order: 3; }

  .about-grid,
  .stat-row,
  .checklist,
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .checklist::before {
    display: none;
  }
}

@media (max-width: 780px) {
  .nav-links {
    position: fixed;
    inset: 68px 1rem auto;
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: rgba(8, 10, 16, 0.96);
    border: 1px solid var(--line);
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-cta span {
    display: none;
  }

  .about-grid,
  .stat-row,
  .checklist,
  .foot-grid,
  .spec {
    grid-template-columns: 1fr;
  }

  .ca-bar {
    clip-path: none;
    border-radius: 10px;
    flex-wrap: wrap;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
