/* ==============================
   NEXVOID ABOUT — REALISTIC SPACE
   ============================== */

/* === NEBULA BACKGROUND LAYERS === */
.nebula-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.nebula-layer-1 {
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255,45,155,0.08), transparent),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(160,100,40,0.06), transparent);
}

.nebula-layer-2 {
  background:
    radial-gradient(ellipse 50% 40% at 60% 20%, rgba(90,140,184,0.05), transparent),
    radial-gradient(ellipse 70% 50% at 30% 80%, rgba(255,45,155,0.04), transparent);
}

.nebula-layer-3 {
  background:
    radial-gradient(ellipse 40% 30% at 75% 40%, rgba(180,77,255,0.04), transparent),
    radial-gradient(ellipse 90% 40% at 50% 90%, rgba(255,45,155,0.03), transparent);
}

.cosmic-dust {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.dust-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: dust-float var(--dur) ease-in-out infinite alternate;
  opacity: 0;
}

@keyframes dust-float {
  0% { transform: translate(0, 0) scale(1); opacity: 0; }
  25% { opacity: var(--max-op); }
  75% { opacity: var(--max-op); }
  100% { transform: translate(var(--dx), var(--dy)) scale(0.6); opacity: 0; }
}

/* === JOURNEY PROGRESS === */
.journey-progress {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.journey-track {
  width: 2px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  position: relative;
  margin-bottom: 8px;
}

.journey-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--gradient-pink);
  border-radius: 2px;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(255,45,155,0.6);
}

.journey-stops {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  top: -10px;
  right: -8px;
  height: 220px;
  justify-content: space-between;
}

.journey-stop {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: row-reverse;
  cursor: default;
}

.stop-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  background: var(--bg-primary);
  transition: var(--transition);
}

.journey-stop.active .stop-dot {
  border-color: var(--accent-pink);
  background: var(--accent-pink);
  box-shadow: 0 0 14px rgba(255,45,155,0.7);
}

.journey-stop span {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0;
  transition: var(--transition);
  white-space: nowrap;
}

.journey-stop.active span {
  opacity: 1;
  color: var(--accent-pink);
}

/* === WARP SPEED HERO === */
.warp-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.warp-tunnel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 400px;
}

.warp-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,45,155,0.15);
  animation: warp-ring-expand var(--dur) linear infinite;
  opacity: 0;
}

.warp-ring-1 { --dur: 4s; width: 80px; height: 80px; animation-delay: 0s; }
.warp-ring-2 { --dur: 5s; width: 140px; height: 140px; animation-delay: 0.8s; }
.warp-ring-3 { --dur: 6s; width: 200px; height: 200px; animation-delay: 1.6s; }
.warp-ring-4 { --dur: 7s; width: 280px; height: 280px; animation-delay: 2.4s; }
.warp-ring-5 { --dur: 8s; width: 360px; height: 360px; animation-delay: 3.2s; }

@keyframes warp-ring-expand {
  0% { transform: scale(0.3); opacity: 0; border-color: rgba(180,77,255,0.4); }
  15% { opacity: 0.7; }
  50% { border-color: rgba(255,45,155,0.2); }
  85% { opacity: 0.3; }
  100% { transform: scale(3); opacity: 0; border-color: rgba(255,45,155,0); }
}

.warp-streak {
  position: absolute;
  width: 1.5px;
  left: var(--x);
  height: var(--h);
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5), rgba(255,45,155,0.6), rgba(255,255,255,0.5), transparent);
  animation: warp-streak-fly var(--dur) linear infinite;
  animation-delay: var(--delay);
  opacity: 0;
  border-radius: 1px;
}

@keyframes warp-streak-fly {
  0% { transform: translateY(-120vh) scaleY(0.2); opacity: 0; }
  10% { opacity: 0.8; }
  50% { opacity: 0.5; }
  90% { opacity: 0.7; }
  100% { transform: translateY(120vh) scaleY(1.5); opacity: 0; }
}

.warp-content {
  position: relative;
  z-index: 2;
}

.warp-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(255,45,155,0.3);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: 24px;
  background: rgba(255,45,155,0.06);
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,45,155,0.1); }
  50% { box-shadow: 0 0 30px rgba(255,45,155,0.25); }
}

.warp-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, #d4955a, #6b8c5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(255,45,155,0.3)); }
  50% { filter: drop-shadow(0 0 40px rgba(255,45,155,0.6)); }
}

.warp-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--text-dim);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.scroll-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,45,155,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scroll-ring-pulse 2s ease-in-out infinite;
}

.scroll-ring-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-pink);
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-ring-pulse {
  0%, 100% { border-color: rgba(255,45,155,0.2); transform: scale(1); }
  50% { border-color: rgba(255,45,155,0.5); transform: scale(1.05); }
}

@keyframes scroll-dot {
  0%, 100% { transform: translateY(-4px); opacity: 1; }
  50% { transform: translateY(4px); opacity: 0.5; }
}

/* === SPACE SECTIONS (common) === */
.space-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0;
}

.section-nebula {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 40% 40%, rgba(255,45,155,0.06), transparent),
    radial-gradient(ellipse 50% 60% at 60% 60%, rgba(180,77,255,0.04), transparent);
  pointer-events: none;
}

.planet-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255,45,155,0.3);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: 16px;
  background: rgba(255,45,155,0.05);
}

.planet-header {
  text-align: center;
  margin-bottom: 80px;
}

/* === ANIM ELEMENTS (scroll reveal) === */
.anim-el {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* stagger children */
.anim-el:nth-child(2) { transition-delay: 0.12s; }
.anim-el:nth-child(3) { transition-delay: 0.24s; }

/* === ORIGIN SECTION === */
.origin-section .section-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(255,45,155,0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring-1 { width: 500px; height: 500px; animation: orbit-spin 50s linear infinite; border-style: dashed; }
.orbit-ring-2 { width: 700px; height: 700px; animation: orbit-spin 70s linear infinite reverse; }
.orbit-ring-3 { width: 950px; height: 950px; animation: orbit-spin 90s linear infinite; border-style: dashed; }

@keyframes orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-pink);
  box-shadow: 0 0 12px rgba(255,45,155,0.7);
}

.orbit-dot-1 { top: -3px; left: 50%; animation: orbit-spin 50s linear infinite; }
.orbit-dot-2 { top: 50%; right: -3px; animation: orbit-spin 70s linear infinite reverse; }
.orbit-dot-3 { bottom: -3px; left: 30%; animation: orbit-spin 90s linear infinite; }

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.origin-planet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* === EARTH PLANET === */
.planet-system {
  position: relative;
  width: 280px;
  height: 280px;
}

.planet-sphere {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(120,200,255,0.15), transparent 45%),
    radial-gradient(circle at 55% 65%, rgba(40,100,40,0.3), transparent 30%),
    radial-gradient(circle at 70% 30%, rgba(30,80,160,0.4), transparent 35%),
    radial-gradient(circle at 40% 50%, rgba(30,120,60,0.35), transparent 25%),
    radial-gradient(circle at 65% 55%, rgba(40,80,40,0.3), transparent 20%),
    radial-gradient(circle at 50% 50%, #1a3a6e, #0a1a3e);
  box-shadow:
    inset -40px -20px 60px rgba(0,0,0,0.7),
    inset 20px 10px 40px rgba(80,160,255,0.1),
    0 0 60px rgba(90,140,184,0.25),
    0 0 120px rgba(90,140,184,0.1);
}

/* Continent patches */
.planet-sphere::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 35% 25% at 42% 42%, rgba(60,130,50,0.5), transparent),
    radial-gradient(ellipse 20% 15% at 55% 35%, rgba(70,140,55,0.4), transparent),
    radial-gradient(ellipse 25% 30% at 35% 55%, rgba(55,120,45,0.4), transparent),
    radial-gradient(ellipse 15% 12% at 60% 50%, rgba(65,130,50,0.35), transparent),
    radial-gradient(ellipse 40% 20% at 70% 60%, rgba(30,100,180,0.3), transparent),
    radial-gradient(ellipse 30% 35% at 25% 30%, rgba(30,100,180,0.25), transparent);
  z-index: 1;
}

/* Atmospheric haze */
.planet-atmo {
  position: absolute;
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,160,255,0.12), rgba(80,160,255,0.03) 50%, transparent 65%);
  pointer-events: none;
  z-index: 3;
}

/* Terminator (day/night line) */
.planet-terminator {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(110deg, transparent 35%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.75) 70%);
  z-index: 2;
}

/* Specular highlight */
.planet-highlight {
  position: absolute;
  top: 12%;
  left: 18%;
  width: 50px;
  height: 35px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.18), transparent 70%);
  transform: rotate(-30deg);
  z-index: 4;
}

/* Craters */
.planet-crater {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.planet-crater-1 { width: 30px; height: 28px; top: 35%; left: 55%; background: radial-gradient(circle, rgba(0,0,0,0.15), rgba(0,0,0,0.05) 60%, transparent); }
.planet-crater-2 { width: 18px; height: 16px; top: 50%; left: 25%; background: radial-gradient(circle, rgba(0,0,0,0.12), transparent 70%); }
.planet-crater-3 { width: 14px; height: 14px; top: 25%; left: 40%; background: radial-gradient(circle, rgba(0,0,0,0.1), transparent 70%); }
.planet-crater-4 { width: 22px; height: 20px; top: 60%; left: 45%; background: radial-gradient(circle, rgba(0,0,0,0.08), transparent 70%); }
.planet-crater-5 { width: 10px; height: 10px; top: 42%; left: 65%; background: radial-gradient(circle, rgba(0,0,0,0.12), transparent 70%); }

.planet-label {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  text-shadow: 0 0 10px rgba(90,140,184,0.5);
  z-index: 5;
}

/* Accra marker */
.planet-sphere::after {
  content: '';
  position: absolute;
  top: 46%;
  left: 38%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-pink);
  box-shadow:
    0 0 8px rgba(255,45,155,0.9),
    0 0 20px rgba(255,45,155,0.5),
    0 0 40px rgba(255,45,155,0.2);
  z-index: 6;
  animation: accra-pulse 2s ease-in-out infinite;
}

/* Accra label line */
.planet-label-accra {
  position: absolute;
  top: 38%;
  left: 22%;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.planet-label-accra::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--accent-pink), transparent);
}

.planet-label-accra span {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 2px;
  color: var(--accent-pink);
  text-shadow: 0 0 8px rgba(255,45,155,0.5);
  white-space: nowrap;
}

@keyframes accra-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(255,45,155,0.9), 0 0 20px rgba(255,45,155,0.5), 0 0 40px rgba(255,45,155,0.2); transform: scale(1); }
  50% { box-shadow: 0 0 12px rgba(255,45,155,1), 0 0 30px rgba(255,45,155,0.6), 0 0 60px rgba(255,45,155,0.3); transform: scale(1.3); }
}

.planet-shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.4), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.planet-info-card {
  background: rgba(12,12,20,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,45,155,0.15);
  border-radius: var(--radius);
  padding: 22px 32px;
  text-align: center;
  animation: float 5s ease-in-out infinite;
}

.planet-year {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.planet-info-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 6px;
  letter-spacing: 1px;
}

/* Discovery Log */
.discovery-log {
  background: rgba(12,12,20,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,45,155,0.12);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.discovery-log::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-pink);
}

.discovery-log::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255,45,155,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.log-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.log-status {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: #00cc66;
  animation: status-blink 2s ease-in-out infinite;
}

.log-title {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.log-entries {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.log-entry {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.log-entry:last-child { border-bottom: none; }

.log-timestamp {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 1px;
  color: var(--accent-pink);
  opacity: 0.6;
  white-space: nowrap;
  padding-top: 3px;
}

.log-entry p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* === MISSION STATIONS === */
.milky-way-band {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, transparent 20%, rgba(180,77,255,0.04) 35%, rgba(255,45,155,0.03) 50%, rgba(80,120,255,0.03) 65%, transparent 80%);
  pointer-events: none;
  filter: blur(40px);
}

.mission-stations {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.station {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 40px;
  background: rgba(12,12,20,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,45,155,0.1);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.station::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,45,155,0.3), transparent);
}

.station:hover {
  border-color: rgba(255,45,155,0.3);
  box-shadow: 0 0 60px rgba(255,45,155,0.06);
}

/* Station structure (space station look) */
.station-structure {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.station-solar {
  width: 30px;
  height: 50px;
  border: 1px solid rgba(90,140,184,0.25);
  background: linear-gradient(135deg, rgba(90,140,184,0.08), rgba(90,140,184,0.02));
  border-radius: 2px;
  position: relative;
}

.station-solar::after {
  content: '';
  position: absolute;
  top: 25%;
  left: 20%;
  right: 20%;
  height: 1px;
  background: rgba(90,140,184,0.15);
  box-shadow: 0 6px 0 rgba(90,140,184,0.15), 0 12px 0 rgba(90,140,184,0.15), 0 18px 0 rgba(90,140,184,0.15);
}

.station-ring-outer {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255,45,155,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: station-rotate 8s linear infinite;
}

.station-ring-inner {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255,45,155,0.15);
}

@keyframes station-rotate {
  from { border-color: rgba(255,45,155,0.3); }
  50% { border-color: rgba(255,45,155,0.6); box-shadow: 0 0 20px rgba(255,45,155,0.15); }
  to { border-color: rgba(255,45,155,0.3); }
}

.station-core {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.station-core svg {
  width: 100%;
  height: 100%;
}

.station-content {
  flex: 1;
}

.station-num {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: var(--accent-pink);
  margin-bottom: 8px;
  opacity: 0.7;
}

.station h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.station p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.station-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 1px;
  color: var(--text-dim);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
}

.status-dot.active {
  background: #00cc66;
  box-shadow: 0 0 8px rgba(0,204,102,0.6);
  animation: status-blink 2s ease-in-out infinite;
}

@keyframes status-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.station-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,45,155,0.4), rgba(255,45,155,0.05));
  margin: 0 auto;
  position: relative;
}

.connector-pulse {
  position: absolute;
  top: 0;
  left: -2px;
  width: 6px;
  height: 10px;
  border-radius: 3px;
  background: var(--accent-pink);
  box-shadow: 0 0 10px rgba(255,45,155,0.7);
  animation: connector-travel 2s ease-in-out infinite;
}

@keyframes connector-travel {
  0% { top: -4px; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* === VALUES - STREET IN SPACE === */
.values-section {
  overflow: visible;
}

.values-nebula {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 25% 35%, rgba(255,45,155,0.06), transparent),
    radial-gradient(ellipse 40% 50% at 75% 65%, rgba(180,77,255,0.05), transparent),
    radial-gradient(ellipse 60% 30% at 50% 80%, rgba(90,140,184,0.04), transparent);
  pointer-events: none;
}

.values-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1.5px 1.5px at 15% 85%, rgba(255,45,155,0.4), transparent),
    radial-gradient(1px 1px at 85% 15%, rgba(180,77,255,0.3), transparent),
    radial-gradient(1px 1px at 45% 75%, rgba(90,140,184,0.3), transparent),
    radial-gradient(1px 1px at 65% 25%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 25% 45%, rgba(255,255,255,0.2), transparent);
  pointer-events: none;
}

.street-badge {
  letter-spacing: 4px;
  font-weight: 700;
}

.street-space-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

/* Each card floats in space with orbit ring behind it */
.ss-card {
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ss-card:nth-child(1) { animation: card-float-1 7s ease-in-out infinite; }
.ss-card:nth-child(2) { animation: card-float-2 8s ease-in-out infinite; }
.ss-card:nth-child(3) { animation: card-float-3 7.5s ease-in-out infinite; }
.ss-card:nth-child(4) { animation: card-float-4 8.5s ease-in-out infinite; }

@keyframes card-float-1 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-10px) rotate(-0.5deg)} }
@keyframes card-float-2 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-12px) rotate(0.5deg)} }
@keyframes card-float-3 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-8px) rotate(-0.3deg)} }
@keyframes card-float-4 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-11px) rotate(0.4deg)} }

.ss-card:hover { transform: translateY(-12px) scale(1.03) !important; }

/* Orbit ring behind card */
.ss-card-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.04);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ss-card:hover .ss-card-orbit { opacity: 1; }

.ss-card-inner {
  position: relative;
  background: rgba(10,10,18,0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 22px 24px;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Neon accent stripe at top */
.ss-card-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

[data-accent="pink"] .ss-card-stripe { background: linear-gradient(90deg, transparent, var(--accent-pink), transparent); }
[data-accent="green"] .ss-card-stripe { background: linear-gradient(90deg, transparent, #22c55e, transparent); }
[data-accent="purple"] .ss-card-stripe { background: linear-gradient(90deg, transparent, var(--accent-purple), transparent); }
[data-accent="blue"] .ss-card-stripe { background: linear-gradient(90deg, transparent, var(--accent-blue), transparent); }

.ss-card:hover .ss-card-stripe { opacity: 1; }

/* Neon glow on hover */
.ss-card:hover .ss-card-inner {
  border-color: rgba(255,255,255,0.1);
}

[data-accent="pink"] .ss-card:hover .ss-card-inner { box-shadow: 0 0 40px rgba(255,45,155,0.08), inset 0 0 30px rgba(255,45,155,0.03); border-color: rgba(255,45,155,0.2); }
[data-accent="green"] .ss-card:hover .ss-card-inner { box-shadow: 0 0 40px rgba(34,197,94,0.08), inset 0 0 30px rgba(34,197,94,0.03); border-color: rgba(34,197,94,0.2); }
[data-accent="purple"] .ss-card:hover .ss-card-inner { box-shadow: 0 0 40px rgba(180,77,255,0.08), inset 0 0 30px rgba(180,77,255,0.03); border-color: rgba(180,77,255,0.2); }
[data-accent="blue"] .ss-card:hover .ss-card-inner { box-shadow: 0 0 40px rgba(90,140,184,0.08), inset 0 0 30px rgba(90,140,184,0.03); border-color: rgba(90,140,184,0.2); }

/* Big faded number */
.ss-card-num {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  opacity: 0.06;
  transition: opacity 0.3s ease;
}

[data-accent="pink"] .ss-card-num { color: var(--accent-pink); }
[data-accent="green"] .ss-card-num { color: #22c55e; }
[data-accent="purple"] .ss-card-num { color: var(--accent-purple); }
[data-accent="blue"] .ss-card-num { color: var(--accent-blue); }

.ss-card:hover .ss-card-num { opacity: 0.15; }

/* Icon */
.ss-card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  color: var(--text-dim);
  transition: color 0.3s ease, filter 0.3s ease;
}

[data-accent="pink"] .ss-card:hover .ss-card-icon { color: var(--accent-pink); filter: drop-shadow(0 0 8px rgba(255,45,155,0.4)); }
[data-accent="green"] .ss-card:hover .ss-card-icon { color: #22c55e; filter: drop-shadow(0 0 8px rgba(34,197,94,0.4)); }
[data-accent="purple"] .ss-card:hover .ss-card-icon { color: var(--accent-purple); filter: drop-shadow(0 0 8px rgba(180,77,255,0.4)); }
[data-accent="blue"] .ss-card:hover .ss-card-icon { color: var(--accent-blue); filter: drop-shadow(0 0 8px rgba(90,140,184,0.4)); }

.ss-card-icon svg { width: 100%; height: 100%; }

/* Text */
.ss-card-inner h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.ss-card-inner p {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Tags */
.ss-card-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.ss-tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.4rem;
  letter-spacing: 2px;
  font-weight: 700;
}

[data-accent="pink"] .ss-tag { background: rgba(255,45,155,0.1); color: var(--accent-pink); border: 1px solid rgba(255,45,155,0.15); }
[data-accent="green"] .ss-tag { background: rgba(34,197,94,0.1); color: #22c55e; border: 1px solid rgba(34,197,94,0.15); }
[data-accent="purple"] .ss-tag { background: rgba(180,77,255,0.1); color: var(--accent-purple); border: 1px solid rgba(180,77,255,0.15); }
[data-accent="blue"] .ss-tag { background: rgba(90,140,184,0.1); color: var(--accent-blue); border: 1px solid rgba(90,140,184,0.15); }

/* Broadcasting status */
.ss-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.4rem;
  letter-spacing: 2px;
  color: var(--text-dim);
}

.ss-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00cc66;
  box-shadow: 0 0 6px rgba(0,204,102,0.5);
  animation: status-blink 2s ease-in-out infinite;
}

/* Skateboard floating in space */
.skate-space {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.skate-space-svg {
  width: 300px;
  height: 85px;
  animation: skate-drift 8s ease-in-out infinite;
}

@keyframes skate-drift {
  0%,100% { transform: translateY(0) translateX(0) rotate(0deg); }
  25% { transform: translateY(-6px) translateX(10px) rotate(1deg); }
  50% { transform: translateY(-2px) translateX(0) rotate(0deg); }
  75% { transform: translateY(-8px) translateX(-10px) rotate(-1deg); }
}

/* === DESTINATION WORMHOLE === */
.destination-section {
  justify-content: center;
  text-align: center;
}

.wormhole {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.wormhole-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wormhole-ring-1 {
  width: 120px; height: 120px;
  border: 2px solid rgba(255,45,155,0.4);
  animation: wormhole-spin 4s linear infinite;
  box-shadow: 0 0 30px rgba(255,45,155,0.15), inset 0 0 30px rgba(255,45,155,0.1);
}

.wormhole-ring-2 {
  width: 200px; height: 200px;
  border: 1.5px solid rgba(180,77,255,0.3);
  animation: wormhole-spin 6s linear infinite reverse;
  box-shadow: 0 0 20px rgba(180,77,255,0.1);
}

.wormhole-ring-3 {
  width: 300px; height: 300px;
  border: 1px solid rgba(255,45,155,0.2);
  animation: wormhole-spin 8s linear infinite;
  border-style: dashed;
}

.wormhole-ring-4 {
  width: 420px; height: 420px;
  border: 1px solid rgba(180,77,255,0.12);
  animation: wormhole-spin 12s linear infinite reverse;
}

.wormhole-ring-5 {
  width: 560px; height: 560px;
  border: 1px solid rgba(255,45,155,0.06);
  animation: wormhole-spin 16s linear infinite;
}

.wormhole-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), rgba(255,45,155,0.1) 40%, transparent 70%);
  box-shadow: 0 0 60px rgba(255,45,155,0.2);
}

.wormhole-lens {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,155,0.04), transparent 40%);
  pointer-events: none;
}

@keyframes wormhole-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.dest-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(255,45,155,0.3);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: 20px;
  background: rgba(255,45,155,0.06);
}

.destination-content {
  position: relative;
  z-index: 2;
}

/* === ANIMATIONS === */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--glow-pink); }
  50% { box-shadow: 0 0 30px rgba(255,45,155,0.5), 0 0 60px rgba(255,45,155,0.2); }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .origin-planet { order: -1; }

  .planet-system { width: 200px; height: 200px; }
  .planet-sphere { width: 200px; height: 200px; }
  .planet-sphere::after { top: 46%; left: 36%; width: 6px; height: 6px; }
  .planet-label-accra { display: none; }

  .station {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px;
  }

  .station-structure { transform: scale(0.9); }

  .street-space-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ss-card:nth-child(1), .ss-card:nth-child(2), .ss-card:nth-child(3), .ss-card:nth-child(4) {
    animation: none;
  }

  .journey-progress { display: none; }
}

@media (max-width: 480px) {
  .warp-title { font-size: 2rem; }
  .station { padding: 24px; }
  .station-structure { transform: scale(0.75); }

  .street-space-grid {
    grid-template-columns: 1fr;
  }
}
