/* ========== SYNKPILOT — Cinematic Cosmos ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  background: #02030A;
  color: #fff;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  cursor: none
}

body {
  min-height: 100vh;
  line-height: 1.55;
  background: radial-gradient(ellipse at 20% 10%, #0b1740 0%, transparent 55%), radial-gradient(ellipse at 80% 90%, #2a0b54 0%, transparent 50%), linear-gradient(180deg, #02030A, #04081a 50%, #02030A)
}

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

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

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

::selection {
  background: #3B82F6;
  color: #fff
}

/* Background canvas */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none
}

/* Custom Cursor */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3B82F6;
  box-shadow: 0 0 18px #3B82F6, 0 0 38px #7C3AED;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: width .25s, height .25s, background .25s
}

#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(123, 130, 255, .7);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .18s ease, border-color .25s, opacity .25s
}

.cursor-hover #cursor {
  width: 18px;
  height: 18px;
  background: #7C3AED
}

.cursor-hover #cursor-ring {
  transform: translate(-50%, -50%) scale(1.6);
  border-color: #7C3AED
}

.ripple {
  position: fixed;
  border: 2px solid #3B82F6;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  animation: ripple 700ms ease-out forwards;
  box-shadow: 0 0 30px #3B82F6
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1
  }

  100% {
    width: 240px;
    height: 240px;
    opacity: 0
  }
}

@media(hover:none), (pointer:coarse) {

  html,
  body,
  button,
  a {
    cursor: auto
  }

  #cursor,
  #cursor-ring {
    display: none
  }
}

/* Loader */
#loader {
  position: fixed;
  inset: 0;
  background: #02030A;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column
}

#loader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.loader-content {
  position: relative;
  z-index: 2;
  text-align: center
}

.loader-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 5vw, 52px);
  letter-spacing: .4em;
  background: linear-gradient(90deg, #fff, #7C3AED 60%, #3B82F6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(59, 130, 246, .4);
  margin-bottom: 28px
}

.loader-bar {
  width: min(320px, 60vw);
  height: 2px;
  background: rgba(255, 255, 255, .1);
  margin: 0 auto 14px;
  border-radius: 2px;
  overflow: hidden
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #3B82F6, #7C3AED);
  box-shadow: 0 0 12px #3B82F6
}

.loader-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  letter-spacing: .4em;
  color: #8a94b8;
  text-transform: uppercase
}

/* Navbar */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(2, 3, 10, .45);
  border-bottom: 1px solid rgba(123, 130, 255, .08);
  transition: padding .3s, background .3s
}

#navbar.scrolled {
  padding: 12px 5vw;
  background: rgba(2, 3, 10, .7)
}

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  letter-spacing: .25em;
  font-size: 18px
}

.nav-logo span {
  background: linear-gradient(90deg, #3B82F6, #7C3AED);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none
}

.nav-link {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  position: relative;
  padding: 6px 0
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #3B82F6, #7C3AED);
  transition: width .35s
}

.nav-link:hover {
  color: #fff
}

.nav-link:hover::after {
  width: 100%
}

.nav-cta {
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #3B82F6, #7C3AED);
  box-shadow: 0 0 30px rgba(59, 130, 246, .45);
  transition: transform .25s, box-shadow .25s
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(124, 58, 237, .7)
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px
}

.nav-burger span {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: .3s
}

@media(max-width:880px) {
  .nav-links {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: rgba(2, 3, 10, .95);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 18px;
    transform: translateY(-150%);
    transition: transform .4s
  }

  .nav-links.open {
    transform: translateY(0)
  }

  .nav-cta {
    display: none
  }

  .nav-burger {
    display: flex
  }
}

/* Sections */
.section {
  position: relative;
  z-index: 2;
  padding: 140px 6vw;
  max-width: 1400px;
  margin: 0 auto
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px
}

.eyebrow {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: .5em;
  color: #7C3AED;
  text-transform: uppercase;
  margin-bottom: 18px
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.01em
}

.section-title em {
  font-style: normal;
  background: linear-gradient(90deg, #3B82F6, #7C3AED);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.section-sub {
  margin-top: 18px;
  color: #aab1c8;
  font-size: 17px
}

/* Hero */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px
}

.hero-tag {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: .6em;
  color: #7C3AED;
  margin-bottom: 24px
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 16vw, 240px); /* Massive God-Level scale */
  letter-spacing: -0.02em;
  line-height: 0.85;
  padding: 0 .05em;
  background: linear-gradient(180deg, #fff 40%, #cdd3ea 75%, #7C3AED);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 60px rgba(59, 130, 246, .7)) drop-shadow(0 0 120px rgba(124, 58, 237, .5));
  white-space: nowrap;
  width: 100vw; /* Ensure full width visibility */
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: visible;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.hero-subtitle {
  font-family: 'Orbitron', sans-serif;
  margin-top: 22px;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: .35em;
  color: #cdd3ea;
  text-transform: uppercase
}

.hero-paragraph {
  margin: 24px auto 36px;
  max-width: 640px;
  color: #aab1c8;
  font-size: 17px
}

.hero-astronaut {
  position: absolute;
  top: 50%;
  right: -2%; /* Slightly adjusted position for better composition */
  width: min(580px, 42vw); /* Made smaller as requested */
  transform: translateY(-50%);
  z-index: 2; 
  opacity: 0.9;
  pointer-events: none;
  background: transparent;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 80px rgba(124, 58, 237, 0.4)) contrast(1.1) brightness(1.1);
  animation: astroGodMode 20s ease-in-out infinite;
}

@keyframes astroGodMode {
  0%, 100% { 
    transform: translateY(-50%) rotate(0deg) scale(1);
    filter: drop-shadow(0 0 80px rgba(124, 58, 237, 0.4));
  }
  33% {
    transform: translateY(-54%) rotate(3deg) scale(1.02);
    filter: drop-shadow(0 0 100px rgba(59, 130, 246, 0.5));
  }
  66% {
    transform: translateY(-47%) rotate(-2deg) scale(0.98);
    filter: drop-shadow(0 0 120px rgba(124, 58, 237, 0.6));
  }
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  border-radius: 999px;
  overflow: hidden;
  transition: transform .25s, box-shadow .3s
}

.btn span {
  position: relative;
  z-index: 2
}

.btn-primary {
  background: linear-gradient(135deg, #3B82F6, #7C3AED);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08), 0 0 40px rgba(59, 130, 246, .45)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .18), 0 0 70px rgba(124, 58, 237, .7)
}

.btn-ghost {
  border: 1px solid rgba(123, 130, 255, .4);
  color: #cdd3ea;
  background: rgba(255, 255, 255, .02)
}

.btn-ghost:hover {
  border-color: #7C3AED;
  color: #fff;
  box-shadow: 0 0 30px rgba(124, 58, 237, .45)
}

.hero-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1
}

.ring {
  position: absolute;
  border: 1px solid rgba(123, 130, 255, .08);
  border-radius: 50%;
  animation: spin 100s linear infinite
}

.ring-1 {
  width: 55vmin;
  height: 55vmin
}

.ring-2 {
  width: 75vmin;
  height: 75vmin;
  border-color: rgba(124, 58, 237, .18);
  animation-duration: 90s;
  animation-direction: reverse
}

.ring-3 {
  width: 95vmin;
  height: 95vmin;
  border-color: rgba(59, 130, 246, .12);
  animation-duration: 120s
}

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

.planet {
  position: absolute;
  border-radius: 50%;
  filter: blur(.5px);
  box-shadow: inset -20px -30px 60px rgba(0, 0, 0, .7), 0 0 80px rgba(59, 130, 246, .35);
  z-index: 1;
  pointer-events: none
}

.planet-1 {
  width: 120px;
  height: 120px;
  top: 18%;
  left: 8%;
  background: radial-gradient(circle at 30% 30%, #7C3AED, #1a0a40 70%);
  animation: float 14s ease-in-out infinite
}

.planet-2 {
  width: 70px;
  height: 70px;
  bottom: 18%;
  right: 10%;
  background: radial-gradient(circle at 35% 30%, #3B82F6, #0a1530 70%);
  animation: float 10s ease-in-out infinite reverse
}

.planet-3 {
  width: 46px;
  height: 46px;
  top: 62%;
  left: 14%;
  background: radial-gradient(circle at 35% 30%, #a78bfa, #1a0a40 70%);
  box-shadow: 0 0 60px rgba(167, 139, 250, .4);
  animation: float 9s ease-in-out infinite
}

.saturn {
  position: absolute;
  top: 14%;
  right: 12%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #3B82F6, #0a1530 75%);
  box-shadow: inset -10px -16px 30px rgba(0, 0, 0, .7), 0 0 60px rgba(59, 130, 246, .4);
  animation: float 12s ease-in-out infinite reverse;
  z-index: 1;
  pointer-events: none
}

.saturn-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 30px;
  border: 2px solid rgba(167, 139, 250, .55);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-22deg);
  box-shadow: 0 0 20px rgba(124, 58, 237, .4)
}

.asteroid {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px #3B82F6;
  z-index: 1;
  pointer-events: none
}

.asteroid-1 {
  top: 30%;
  right: 15%;
  animation: float 8s ease-in-out infinite
}

.asteroid-2 {
  bottom: 35%;
  left: 18%;
  animation: float 12s ease-in-out infinite reverse
}

.asteroid-3 {
  top: 48%;
  right: 22%;
  width: 5px;
  height: 5px;
  box-shadow: 0 0 10px #7C3AED;
  animation: float 7s ease-in-out infinite
}

.comet {
  position: absolute;
  top: 22%;
  left: 32%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px #fff, 0 0 30px #3B82F6;
  z-index: 1;
  pointer-events: none;
  animation: comet 11s linear infinite
}

.comet::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3B82F6, #fff);
  transform: translateY(-50%);
  filter: blur(.5px)
}

@keyframes comet {
  0% {
    transform: translate(-30vw, -10vh)
  }

  100% {
    transform: translate(120vw, 40vh)
  }
}

.satellite {
  position: absolute;
  bottom: 24%;
  right: 28%;
  font-size: 18px;
  color: #7C3AED;
  text-shadow: 0 0 14px #7C3AED;
  z-index: 1;
  pointer-events: none;
  animation: spin 20s linear infinite, float 6s ease-in-out infinite
}

.shooting-star {
  position: absolute;
  top: 12%;
  right: -10%;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px #fff;
  z-index: 1;
  pointer-events: none;
  animation: shoot 6s ease-in infinite;
  animation-delay: 2s
}

.shooting-star::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff);
  transform-origin: right center
}

.shooting-star-2 {
  top: 42%;
  right: -10%;
  animation-delay: 5s;
  animation-duration: 8s
}

@keyframes shoot {
  0% {
    transform: translate(0, 0);
    opacity: 0
  }

  10% {
    opacity: 1
  }

  80% {
    opacity: 1
  }

  100% {
    transform: translate(-130vw, 60vh);
    opacity: 0
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-30px)
  }
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: .4em;
  color: #8a94b8;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px
}

.scroll-hint span {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, #7C3AED, transparent);
  animation: scrollhint 1.8s ease-in-out infinite
}

@keyframes scrollhint {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

/* Stage / Universe */
.section-stage {
  display: flex;
  flex-direction: column;
  gap: 120px
}

.stage-step {
  max-width: 720px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(59, 130, 246, .05), rgba(124, 58, 237, .03));
  border: 1px solid rgba(123, 130, 255, .15);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden
}

.stage-step:nth-child(odd) {
  align-self: flex-start
}

.stage-step:nth-child(even) {
  align-self: flex-end;
  text-align: right
}

.stage-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(124, 58, 237, .18), transparent 60%);
  opacity: .6;
  pointer-events: none
}

.stage-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  letter-spacing: .4em;
  color: #7C3AED;
  margin-bottom: 14px
}

.stage-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 14px;
  background: linear-gradient(90deg, #fff, #cdd3ea);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.stage-text {
  color: #aab1c8;
  font-size: 16px
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px
}

.service-card {
  position: relative;
  padding: 34px 28px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
  border: 1px solid rgba(123, 130, 255, .12);
  backdrop-filter: blur(14px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  will-change: transform;
  overflow: hidden
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(59, 130, 246, .4), transparent 50%, rgba(124, 58, 237, .4));
  opacity: 0;
  transition: opacity .35s;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none
}

.service-card:hover::before {
  opacity: 1
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px -30px rgba(59, 130, 246, .5), 0 0 0 1px rgba(124, 58, 237, .4);
  border-color: transparent
}

.svc-icon {
  font-size: 28px;
  color: #3B82F6;
  margin-bottom: 18px;
  text-shadow: 0 0 20px #3B82F6
}

.service-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: .05em
}

.service-card p {
  color: #aab1c8;
  font-size: 15px
}

/* Orbits / Projects */
.orbits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center
}

.orb {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  cursor: none;
  transition: transform .4s;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, .5), rgba(2, 3, 10, .95) 70%);
  box-shadow: inset -20px -30px 60px rgba(0, 0, 0, .8), 0 0 60px rgba(59, 130, 246, .4);
  animation: orbspin 30s linear infinite
}

.orb span {
  position: relative;
  z-index: 2;
  padding: 0 14px;
  text-shadow: 0 2px 12px #000
}

.orb-img {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8) contrast(1.1);
  transition: filter .4s, transform .4s;
  z-index: 1;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
}

.orb:hover .orb-img {
  filter: brightness(1.1) contrast(1.2);
  transform: scale(1.05);
}

.orb-soon {
  background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, .3), rgba(2, 3, 10, .98) 80%);
  border: 1px dashed rgba(124, 58, 237, 0.4);
}

.orb-soon .orb-img {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
  filter: blur(10px);
}

.orb-soon span {
  color: #7C3AED;
  opacity: 0.8;
}

.orb-soon:hover {
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}

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

.orb:hover {
  animation-play-state: paused
}

/* Timeline */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 30px;
  margin: 40px 0 80px;
  padding: 0 10px
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3B82F6, #7C3AED, transparent)
}

.tl-item {
  text-align: center;
  position: relative
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #7C3AED;
  box-shadow: 0 0 18px #7C3AED;
  margin: 11px auto 18px;
  position: relative;
  z-index: 2
}

.tl-item h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 8px
}

.tl-item p {
  color: #aab1c8;
  font-size: 14px
}

/* HUD stats */
.hud {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 30px
}

.hud-stat {
  padding: 34px 22px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(123, 130, 255, .18);
  background: linear-gradient(180deg, rgba(59, 130, 246, .06), rgba(124, 58, 237, .02));
  position: relative;
  overflow: hidden
}

.hud-stat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(59, 130, 246, .18), transparent 70%);
  pointer-events: none
}

.hud-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(180deg, #fff, #7C3AED);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1
}

.hud-label {
  margin-top: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #8a94b8
}

/* Holo testimonials */
.holo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px
}

.holo-card {
  padding: 34px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, .08), rgba(124, 58, 237, .04));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(123, 130, 255, .18);
  position: relative;
  overflow: hidden
}

.holo-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, .18), transparent 30%);
  animation: holo 6s linear infinite;
  pointer-events: none
}

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

.holo-card p {
  position: relative;
  font-size: 16px;
  color: #dde2f3;
  margin-bottom: 18px
}

.holo-name {
  position: relative;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: .25em;
  color: #7C3AED;
  text-transform: uppercase
}

/* Contact / Portal */
#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.portal {
  position: relative;
  width: min(420px, 80vw);
  height: min(420px, 80vw);
  margin-bottom: -120px;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1
}

.portal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, .5);
  box-shadow: 0 0 80px rgba(59, 130, 246, .45), inset 0 0 80px rgba(124, 58, 237, .3);
  animation: spin 18s linear infinite
}

.portal-ring-2 {
  inset: 14%;
  border-color: rgba(124, 58, 237, .5);
  animation-duration: 12s;
  animation-direction: reverse
}

.portal-ring-3 {
  inset: 28%;
  border-color: rgba(59, 130, 246, .6);
  animation-duration: 8s
}

.portal-glow {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: radial-gradient(circle, #7C3AED, #3B82F6 50%, transparent 70%);
  filter: blur(25px);
  animation: pulse 4s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .7
  }

  50% {
    transform: scale(1.2);
    opacity: 1
  }
}

.contact-card {
  position: relative;
  z-index: 3;
  width: min(640px, 92vw);
  padding: 48px 36px;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(2, 3, 10, .85), rgba(7, 17, 31, .85));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(123, 130, 255, .25);
  box-shadow: 0 40px 120px -40px rgba(124, 58, 237, .5)
}

.contact-card .eyebrow {
  margin-bottom: 14px
}

.contact-form {
  margin-top: 30px;
  display: grid;
  gap: 18px;
  text-align: left
}

.field label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #8a94b8;
  margin-bottom: 8px
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(123, 130, 255, .2);
  border-radius: 12px;
  color: #fff;
  font: inherit;
  transition: border-color .25s, box-shadow .25s;
  cursor: none;
  resize: vertical
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #7C3AED;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, .18)
}

.contact-form .btn {
  justify-self: center;
  margin-top: 8px
}

.form-status {
  font-size: 13px;
  text-align: center;
  color: #3B82F6;
  min-height: 20px;
  letter-spacing: .1em
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  padding: 40px 6vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #8a94b8;
  border-top: 1px solid rgba(123, 130, 255, .1)
}

.footer-links {
  display: flex;
  gap: 18px
}

.footer-links a:hover {
  color: #fff
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 3, 10, .85);
  backdrop-filter: blur(18px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px
}

.modal.open {
  display: flex;
  animation: fadein .3s ease
}

@keyframes fadein {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.modal-card {
  position: relative;
  width: min(520px, 92vw);
  padding: 42px 32px;
  border-radius: 24px;
  background: linear-gradient(160deg, #0a1228, #070b1c);
  border: 1px solid rgba(124, 58, 237, .35);
  box-shadow: 0 40px 120px rgba(124, 58, 237, .4);
  text-align: center
}

.modal-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 26px;
  margin-bottom: 14px
}

.modal-card p {
  color: #aab1c8;
  margin-bottom: 24px
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 28px;
  color: #aab1c8;
  line-height: 1
}

.modal-close:hover {
  color: #fff
}

/* Reveal helpers */
.reveal {
  opacity: 0;
  transform: translateY(40px)
}

@media(max-width:640px) {
  .section {
    padding: 100px 6vw
  }

  .hud-num {
    font-size: 38px
  }

  .stage-step {
    padding: 28px
  }
}

/* ENERGY CORE GUIDANCE SYSTEM */
#energy-path-container{position:fixed;top:0;left:0;width:100%;height:100%;pointer-events:none;z-index:99;overflow:hidden}
#energy-core{position:absolute;width:40px;height:40px;transform:translate(-50%,-50%);pointer-events:auto;cursor:none;will-change:transform}

.core-inner{position:absolute;inset:12px;background:#fff;border-radius:50%;box-shadow:0 0 15px #fff, 0 0 30px #7C3AED;z-index:5;animation:corePulse 2s ease-in-out infinite}
.core-glow{position:absolute;inset:-10px;background:radial-gradient(circle,rgba(124,58,237,0.6) 0%,transparent 70%);border-radius:50%;z-index:1;animation:coreFlicker 0.15s infinite alternate}
.core-ripple{position:absolute;inset:-30px;border:1px solid rgba(124,58,237,0.3);border-radius:50%;opacity:0;z-index:0}

.core-rings .ring{position:absolute;inset:0;border:1.5px solid rgba(124,58,237,0.4);border-radius:50%;z-index:2}
.ring-1{transform:rotateX(60deg) rotateY(10deg);animation:ringRot 3s linear infinite}
.ring-2{transform:rotateX(-60deg) rotateY(-20deg);animation:ringRot 4s linear infinite reverse}
.ring-3{transform:rotateX(0deg) rotateY(70deg);animation:ringRot 5s linear infinite}

.core-particles{position:absolute;inset:-40px;z-index:3}
.core-p{position:absolute;width:2px;height:2px;background:#3B82F6;border-radius:50%;box-shadow:0 0 5px #3B82F6}

@keyframes corePulse{0%,100%{transform:scale(1);opacity:0.9}50%{transform:scale(1.2);opacity:1}}
@keyframes coreFlicker{0%{opacity:0.6}100%{opacity:1}}
@keyframes ringRot{0%{transform:rotateZ(0) rotateX(60deg)}100%{transform:rotateZ(360deg) rotateX(60deg)}}

.core-active .core-ripple{animation:coreRipple 1s ease-out forwards}
@keyframes coreRipple{0%{transform:scale(0.5);opacity:1}100%{transform:scale(3);opacity:0}}

@media(max-width:768px){
  #energy-path-container{display:none}
}