/* ═══════════════════════════════════════════════════════
   Phase 2: Cinematic Elevation — Splash + Marquee + Dividers
   ═══════════════════════════════════════════════════════ */

/* ─── SPLASH SCREEN ─── */
.splash-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at 50% 50%, #130A2A 0%, #0A0618 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), visibility 0.8s;
}
.splash-screen.splash-done {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.splash-inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.splash-constellation {
  width: 160px; height: 160px;
}
.splash-ring-1 {
  animation: splashRing1 2s ease-out forwards;
  stroke-dasharray: 502; stroke-dashoffset: 502;
}
.splash-ring-2 {
  animation: splashRing2 2s 0.3s ease-out forwards;
  stroke-dasharray: 345; stroke-dashoffset: 345;
}
@keyframes splashRing1 { to { stroke-dashoffset: 0; opacity: 0.4; } }
@keyframes splashRing2 { to { stroke-dashoffset: 0; opacity: 0.3; } }

.splash-const-path {
  stroke-dasharray: 400; stroke-dashoffset: 400;
  animation: splashConstDraw 1.5s 0.5s ease-out forwards;
}
@keyframes splashConstDraw { to { stroke-dashoffset: 0; opacity: 0.6; } }

.splash-star { animation: splashStarIn 0.4s ease-out forwards; }
.splash-star:nth-child(4) { animation-delay: 0.6s; }
.splash-star:nth-child(5) { animation-delay: 0.7s; }
.splash-star:nth-child(6) { animation-delay: 0.8s; }
.splash-star:nth-child(7) { animation-delay: 0.9s; }
.splash-star:nth-child(8) { animation-delay: 1.0s; }
.splash-star:nth-child(9) { animation-delay: 1.1s; }
.splash-star:nth-child(10) { animation-delay: 1.2s; }
@keyframes splashStarIn { to { opacity: 1; transform: scale(1.2); } }

.splash-eye {
  animation: splashEyeIn 0.8s 1.2s ease-out forwards;
}
.splash-pupil {
  animation: splashPupilIn 0.6s 1.5s ease-out forwards;
}
.splash-center-star {
  animation: splashCenterStarIn 0.5s 1.7s ease-out forwards;
}
@keyframes splashEyeIn { to { opacity: 0.8; } }
@keyframes splashPupilIn { to { opacity: 0.9; } }
@keyframes splashCenterStarIn { to { opacity: 1; } }

.splash-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px; font-weight: 700; letter-spacing: -0.03em;
  opacity: 0; animation: splashTextIn 0.8s 1.4s ease-out forwards;
}
.splash-astro { color: #F0EAFF; }
.splash-kamya {
  background: linear-gradient(135deg, #FFB800, #FFCB45);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.splash-tm { font-size: 10px; color: #6E628A; vertical-align: super; font-weight: 400; }
.splash-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; color: #6E628A; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0; animation: splashTagIn 0.6s 1.8s ease-out forwards;
}
@keyframes splashTextIn { to { opacity: 1; transform: translateY(0); } from { transform: translateY(12px); } }
@keyframes splashTagIn { to { opacity: 0.7; } }

/* ─── PRESS / AS FEATURED IN ─── */
.press-section {
  position: relative; z-index: 2;
  padding: 48px 0 40px;
}
.press-section::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.25;
}
.press-label {
  text-align: center;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 40px;
  opacity: 0.7;
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px 52px;
  max-width: 1000px;
  margin: 0 auto;
}
.press-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  opacity: 0.3;
  transition: opacity 0.5s var(--ease), color 0.5s var(--ease);
  cursor: default;
  pointer-events: auto;
}
.press-logo svg {
  height: 28px;
  width: auto;
}
.press-logo:hover {
  opacity: 0.7;
  color: var(--text-1);
}

/* Responsive: press logos */
@media (max-width: 768px) {
  .press-section { padding: 36px 0 32px; }
  .press-label { margin-bottom: 28px; }
  .press-logos { gap: 24px 36px; }
  .press-logo svg { height: 22px; }
}
@media (max-width: 480px) {
  .press-section { padding: 28px 0 24px; }
  .press-label { font-size: 10px; margin-bottom: 24px; }
  .press-logos { gap: 20px 28px; }
  .press-logo svg { height: 18px; }
}

/* ─── SECTION DIVIDERS ─── */
.section-divider {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 24px 40px;
  gap: 16px;
}
.divider-line {
  flex: 1; height: 1px; max-width: 200px;
  background: linear-gradient(90deg, transparent, rgba(255,184,0,0.3), transparent);
}
.divider-star {
  color: #FFB800; font-size: 12px; opacity: 0.5;
  animation: dividerPulse 3s ease-in-out infinite;
}
@keyframes dividerPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}

/* Variant: Nebula divider */
.divider-nebula { padding: 32px 0; }
.divider-nebula .divider-line {
  max-width: 300px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.25), rgba(232,54,124,0.15), transparent);
}

/* Variant: Constellation divider */
.divider-constellation { gap: 8px; }
.divider-constellation .divider-star { font-size: 6px; }
.divider-constellation::before,
.divider-constellation::after {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: #9B6DFF; opacity: 0.3;
}
