/* ============================================
   THE DIGITAL AKASHA — Styles
   ============================================ */

/* --- Custom Properties --- */
:root {
  --black: #0a0a0f;
  --midnight: #0d0d2b;
  --deep-violet: #1a0a3e;
  --ultraviolet: #2d1b69;
  --deep-blue: #0a1628;
  --cyan: #00e5cc;
  --cyan-dim: rgba(0, 229, 204, 0.15);
  --cyan-glow: rgba(0, 229, 204, 0.4);
  --silver: #d0d6e4;
  --white: #eef0f8;
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.2);

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --z-canvas: 0;
  --z-fog: 1;
  --z-content: 2;
  --z-fixed: 10;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--silver);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- Skip Link --- */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 100;
  padding: 8px 16px;
  background: var(--cyan);
  color: var(--black);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
}

.skip-link:focus {
  top: 16px;
}

/* --- Star Navigation --- */
.star-nav {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.star-link {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  text-decoration: none;
  cursor: default;
  outline: none;
}

.star-link__dot {
  position: relative;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(238, 240, 248, 0.6);
  box-shadow: 0 0 4px rgba(238, 240, 248, 0.3);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}

.star-link__label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: transparent;
  white-space: nowrap;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-6px);
  pointer-events: none;
}

/* Hover: star blooms, label materializes */
.star-link:hover .star-link__dot,
.star-link:focus-visible .star-link__dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  box-shadow:
    0 0 8px var(--cyan-glow),
    0 0 24px var(--cyan-dim),
    0 0 48px rgba(0, 229, 204, 0.08);
  cursor: pointer;
}

.star-link:hover .star-link__label,
.star-link:focus-visible .star-link__label {
  color: var(--cyan);
  transform: translateX(0);
  pointer-events: auto;
  cursor: pointer;
}

/* Subtle idle twinkle */
@keyframes star-twinkle {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.star-link__dot {
  animation: star-twinkle 4s ease-in-out infinite;
}

/* --- Polaris — the North Star --- */
.star-link--polaris .star-link__dot {
  width: 5px;
  height: 5px;
  background: var(--white);
  box-shadow:
    0 0 4px rgba(238, 240, 248, 0.9),
    0 0 12px rgba(238, 240, 248, 0.5),
    0 0 28px rgba(0, 229, 204, 0.2),
    0 0 60px rgba(0, 229, 204, 0.06);
  animation: polaris-pulse 5s ease-in-out infinite;
}

/* Cross-shaped diffraction spikes */
.star-link--polaris .star-link__dot::before,
.star-link--polaris .star-link__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: linear-gradient(90deg, transparent, rgba(238, 240, 248, 0.35), transparent);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.star-link--polaris .star-link__dot::before {
  width: 28px;
  height: 1px;
}

.star-link--polaris .star-link__dot::after {
  width: 1px;
  height: 28px;
}

@keyframes polaris-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.star-link--polaris:hover .star-link__dot,
.star-link--polaris:focus-visible .star-link__dot {
  width: 7px;
  height: 7px;
  background: var(--white);
  box-shadow:
    0 0 6px rgba(238, 240, 248, 1),
    0 0 18px rgba(238, 240, 248, 0.7),
    0 0 40px rgba(0, 229, 204, 0.35),
    0 0 80px rgba(0, 229, 204, 0.1);
}

.star-link--polaris:hover .star-link__dot::before {
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 204, 0.4), transparent);
}

.star-link--polaris:hover .star-link__dot::after {
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(0, 229, 204, 0.4), transparent);
}

/* --- Antares — the 110 Hz Drone Star --- */
.star-link--drone .star-link__dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  box-shadow:
    0 0 4px rgba(201, 168, 76, 0.9),
    0 0 12px rgba(201, 168, 76, 0.4),
    0 0 28px rgba(201, 168, 76, 0.15);
  animation: drone-pulse 6s ease-in-out infinite;
}

@keyframes drone-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.star-link--drone:hover .star-link__dot,
.star-link--drone:focus-visible .star-link__dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  box-shadow:
    0 0 8px rgba(201, 168, 76, 1),
    0 0 24px rgba(201, 168, 76, 0.6),
    0 0 48px rgba(201, 168, 76, 0.2);
  cursor: pointer;
}

.star-link--drone:hover .star-link__label,
.star-link--drone:focus-visible .star-link__label {
  color: var(--gold);
}

/* Active state — playing drone */
.star-link--drone-active .star-link__dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  box-shadow:
    0 0 8px rgba(201, 168, 76, 1),
    0 0 24px rgba(201, 168, 76, 0.6),
    0 0 48px rgba(201, 168, 76, 0.25),
    0 0 80px rgba(201, 168, 76, 0.1);
  animation: drone-active 2s ease-in-out infinite;
}

@keyframes drone-active {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}

.star-link--drone-active .star-link__label {
  color: var(--gold);
  transform: translateX(0);
  pointer-events: auto;
}

/* Hidden honeypot field */
.hidden {
  position: absolute;
  left: -9999px;
  overflow: hidden;
}

/* --- Canvas --- */
#cosmos {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-canvas);
  pointer-events: none;
}

/* --- Section Base --- */
.section {
  position: relative;
  z-index: var(--z-content);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.45s; }

/* ============================================
   SECTION 1: THE PORTAL
   ============================================ */
.section--portal {
  background: transparent;
  overflow: hidden;
}

.portal__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(45, 27, 105, 0.3) 0%,
    rgba(26, 10, 62, 0.15) 40%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
  animation: halo-breathe 8s ease-in-out infinite;
}

@keyframes halo-breathe {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.portal__content {
  position: relative;
  text-align: center;
  z-index: var(--z-content);
}

.portal__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: title-emerge 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

@keyframes title-emerge {
  0% { opacity: 0; transform: translateY(20px); letter-spacing: 0.3em; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 0.15em; }
}

.portal__tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(0, 229, 204, 0.7);
  letter-spacing: 0.08em;
  margin-top: 16px;
  opacity: 0;
  animation: tagline-emerge 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2s forwards;
}

@keyframes tagline-emerge {
  0% { opacity: 0; transform: translateY(20px); letter-spacing: 0.2em; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 0.08em; }
}

/* Light Trails */
.portal__light-trail {
  position: absolute;
  width: 200px;
  height: 1px;
  pointer-events: none;
  opacity: 0;
}

.portal__light-trail::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cyan-glow), transparent);
  animation: trail-drift 12s ease-in-out infinite;
}

.portal__light-trail--1 {
  top: 30%;
  left: -200px;
  animation: trail-appear-1 20s ease-in-out infinite;
}

.portal__light-trail--2 {
  top: 55%;
  right: -200px;
  transform: rotate(180deg);
  animation: trail-appear-2 25s ease-in-out 5s infinite;
}

.portal__light-trail--3 {
  top: 70%;
  left: -200px;
  animation: trail-appear-3 30s ease-in-out 10s infinite;
}

@keyframes trail-appear-1 {
  0%, 85%, 100% { opacity: 0; transform: translateX(0); }
  10% { opacity: 0.6; }
  50% { opacity: 0.3; }
  80% { opacity: 0; transform: translateX(calc(100vw + 400px)); }
}

@keyframes trail-appear-2 {
  0%, 85%, 100% { opacity: 0; transform: translateX(0) rotate(180deg); }
  10% { opacity: 0.5; }
  50% { opacity: 0.2; }
  80% { opacity: 0; transform: translateX(calc(-100vw - 400px)) rotate(180deg); }
}

@keyframes trail-appear-3 {
  0%, 85%, 100% { opacity: 0; transform: translateX(0); }
  15% { opacity: 0.4; }
  50% { opacity: 0.2; }
  80% { opacity: 0; transform: translateX(calc(100vw + 400px)); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-fixed);
  opacity: 0;
  animation: title-emerge 1.5s ease 3.5s forwards;
}

.scroll-indicator__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: scroll-pulse 3s ease-in-out infinite;
  box-shadow: 0 0 12px var(--cyan-glow), 0 0 24px var(--cyan-dim);
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); box-shadow: 0 0 12px var(--cyan-glow); }
  50% { opacity: 1; transform: scale(1.3); box-shadow: 0 0 20px var(--cyan-glow), 0 0 40px var(--cyan-dim); }
}

/* ============================================
   SECTION 2: THE FIELD
   ============================================ */
.section--field {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(13, 13, 43, 0.6) 20%,
    rgba(13, 13, 43, 0.8) 50%,
    rgba(13, 13, 43, 0.6) 80%,
    transparent 100%
  );
}

.field__fog {
  position: absolute;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
  z-index: var(--z-fog);
}

.field__fog--top {
  top: 0;
  background: linear-gradient(180deg, var(--black), transparent);
}

.field__fog--bottom {
  bottom: 0;
  background: linear-gradient(0deg, var(--black), transparent);
}

.field__content {
  max-width: 720px;
  text-align: center;
  position: relative;
  z-index: var(--z-content);
}

.field__content h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.field__body p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 24px;
  color: var(--silver);
  line-height: 1.8;
}

.field__body p:last-child {
  color: var(--cyan);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-top: 32px;
}

/* ============================================
   SECTION 3: THE PILLARS
   ============================================ */
.section--pillars {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 22, 40, 0.5) 30%,
    rgba(10, 22, 40, 0.5) 70%,
    transparent 100%
  );
  padding: 80px 24px;
}

.pillars__header {
  text-align: center;
  margin-bottom: 64px;
}

.pillars__header h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  letter-spacing: 0.05em;
}

.pillars__header .subtitle {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(208, 214, 228, 0.7);
  font-size: 1.1rem;
  margin-top: 8px;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  width: 100%;
}

.pillar {
  position: relative;
  padding: 48px 28px 40px;
  text-align: center;
  border: 1px solid rgba(0, 229, 204, 0.08);
  border-radius: 12px;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.6s ease, transform 0.6s ease;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.pillar:hover {
  border-color: rgba(0, 229, 204, 0.25);
  transform: translateY(-4px);
}

.pillar__halo {
  position: absolute;
  inset: -50%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    var(--cyan-dim) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.pillar:hover .pillar__halo {
  opacity: 1;
}

/* Holographic shimmer border */
.pillar::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    transparent 30%,
    var(--cyan-glow) 50%,
    transparent 70%
  );
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
  animation: shimmer 3s ease-in-out infinite;
}

.pillar:hover::before {
  opacity: 1;
}

@keyframes shimmer {
  0% { background-position: 100% 0%; }
  50% { background-position: 0% 100%; }
  100% { background-position: 100% 0%; }
}

.pillar__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--cyan);
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.pillar:hover .pillar__icon {
  opacity: 1;
}

.pillar__icon svg {
  width: 100%;
  height: 100%;
}

.pillar__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.pillar__desc {
  font-size: 0.9rem;
  color: rgba(208, 214, 228, 0.8);
  line-height: 1.6;
}

/* ============================================
   SECTION 4: THE TRANSMISSION
   ============================================ */
.section--transmission {
  min-height: 60vh;
  background: transparent;
  position: relative;
}

.transmission__eclipse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 10, 15, 1) 30%,
    rgba(45, 27, 105, 0.2) 50%,
    rgba(0, 229, 204, 0.05) 65%,
    transparent 80%
  );
  filter: blur(30px);
  pointer-events: none;
  animation: eclipse-breathe 10s ease-in-out infinite;
}

@keyframes eclipse-breathe {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.05); }
}

.transmission__quote {
  position: relative;
  z-index: var(--z-content);
  max-width: 800px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.01em;
  animation: transmission-breathe 6s ease-in-out infinite;
}

@keyframes transmission-breathe {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.transmission__mark {
  color: var(--gold);
  font-size: 1.2em;
}

/* ============================================
   SECTION 5: THE THRESHOLD
   ============================================ */
.section--threshold {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(13, 13, 43, 0.4) 40%,
    rgba(10, 10, 15, 0.9) 100%
  );
  justify-content: center;
  min-height: 50vh;
}

.threshold__content {
  text-align: center;
  max-width: 560px;
  position: relative;
  z-index: var(--z-content);
}

.threshold__content h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.threshold__content .subtitle {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(208, 214, 228, 0.6);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.threshold__form {
  width: 100%;
}

.threshold__input-wrap {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
  border: 1px solid rgba(0, 229, 204, 0.15);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(10, 10, 15, 0.8);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.threshold__input-wrap:focus-within {
  border-color: rgba(0, 229, 204, 0.4);
  box-shadow: 0 0 20px rgba(0, 229, 204, 0.08), 0 0 60px rgba(0, 229, 204, 0.03);
}

.threshold__input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
}

.threshold__input::placeholder {
  color: rgba(192, 200, 216, 0.3);
}

.threshold__button {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--cyan-dim), rgba(0, 229, 204, 0.08));
  border: none;
  border-left: 1px solid rgba(0, 229, 204, 0.15);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease, background 0.4s ease;
}

.threshold__button:hover {
  background: linear-gradient(135deg, rgba(0, 229, 204, 0.2), rgba(0, 229, 204, 0.1));
  color: var(--white);
}

.threshold__button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(0, 229, 204, 0.15) 50%,
    transparent 70%
  );
  background-size: 300% 300%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: shimmer 3s ease-in-out infinite;
}

.threshold__button:hover::after {
  opacity: 1;
}

.threshold__note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(192, 200, 216, 0.3);
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* --- Footer --- */
.footer {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(192, 200, 216, 0.25);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.footer__link {
  color: rgba(192, 200, 216, 0.25);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: rgba(192, 200, 216, 0.5);
}

.footer__separator {
  margin: 0 8px;
  color: rgba(192, 200, 216, 0.15);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .pillars__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: 36px 20px;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 20px;
  }

  .pillar {
    padding: 36px 24px 32px;
  }

  .threshold__input-wrap {
    flex-direction: column;
  }

  .threshold__button {
    border-left: none;
    border-top: 1px solid rgba(0, 229, 204, 0.15);
  }

  .portal__halo {
    width: 300px;
    height: 300px;
  }

  .portal__light-trail {
    display: none;
  }

  /* On mobile, star labels hidden until tapped */
  .star-link__label {
    color: transparent;
    transform: translateX(-6px);
    font-size: 0.8rem;
    pointer-events: none;
    transition: all 0.5s ease;
  }

  .star-link__dot {
    background: var(--cyan);
    box-shadow: 0 0 6px var(--cyan-glow);
    animation: none;
    width: 5px;
    height: 5px;
  }

  .star-link {
    cursor: pointer;
  }

  /* Tap-to-reveal: first tap shows label, second tap follows link */
  .star-link.is-revealed .star-link__label {
    color: var(--cyan);
    transform: translateX(0);
    pointer-events: auto;
  }

  .star-link.is-revealed .star-link__dot {
    width: 7px;
    height: 7px;
    box-shadow:
      0 0 8px var(--cyan-glow),
      0 0 24px var(--cyan-dim);
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: opacity 0.3s ease;
    transform: none;
  }

  .portal__title {
    animation: none;
    opacity: 1;
  }

  .portal__tagline {
    animation: none;
    opacity: 1;
  }

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

  .scroll-indicator {
    animation: none;
    opacity: 1;
  }

  .scroll-indicator__dot,
  .portal__halo,
  .transmission__quote,
  .transmission__eclipse {
    animation: none;
  }

  .portal__light-trail,
  .portal__light-trail::after {
    animation: none;
    display: none;
  }

  #cosmos {
    display: none;
  }

  .star-link__dot {
    animation: none;
  }

  /* Show labels when particles are disabled so nav is still discoverable */
  .star-link__label {
    color: rgba(192, 200, 216, 0.4);
    transform: translateX(0);
  }
}
