/* Celestial Textures — Coming Soon */

:root {
  --color-bg: #030014;
  --color-text: #f4f0ff;
  --color-muted: rgba(244, 240, 255, 0.65);
  --color-accent: #9b7dff;
  --color-accent-soft: rgba(155, 125, 255, 0.35);
  --color-glow: rgba(180, 150, 255, 0.45);
  --font-display: "Cormorant Garamond", "Palatino Linotype", "Book Antiqua", serif;
  --font-body: "Outfit", "Segoe UI", system-ui, sans-serif;
  --radius-lg: 16px;
  --radius-full: 999px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Starfield layers */
.space-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.space-bg__twinkle {
  position: absolute;
  inset: 0;
  background: transparent url("../twinkling.jpg") repeat top center;
  animation: drift-twinkle 200s linear infinite;
}

.space-bg__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(120, 80, 220, 0.18), transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(0, 0, 0, 0.65), transparent 50%);
}

@keyframes drift-twinkle {
  from { background-position: 0 0; }
  to { background-position: -10000px 5000px; }
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero {
  width: min(100%, 880px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  animation: fade-up 900ms ease both;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.brand__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.brand__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-shadow: 0 0 28px var(--color-glow);
}

.brand__tagline {
  max-width: 34ch;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.6;
  color: var(--color-muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--color-accent-soft);
  border-radius: var(--radius-full);
  background: rgba(12, 8, 30, 0.55);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  box-shadow: 0 0 24px rgba(120, 80, 220, 0.15);
}

.status-pill__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.video-frame {
  position: relative;
  width: min(100%, 854px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(130, 90, 230, 0.12);
  animation: fade-up 900ms 120ms ease both;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
}

.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  animation: fade-up 900ms 220ms ease both;
}

.social__link {
  display: grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.social__link:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: var(--color-accent-soft);
  background: rgba(155, 125, 255, 0.12);
  box-shadow: 0 10px 28px rgba(90, 50, 180, 0.25);
}

.social__link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.social__link img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.site-footer {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  animation: fade-up 900ms 320ms ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .social__link {
    width: 3.25rem;
    height: 3.25rem;
  }

  .social__link img {
    width: 2rem;
    height: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .space-bg__twinkle,
  .status-pill__dot,
  .hero,
  .video-frame,
  .social,
  .site-footer {
    animation: none;
  }
}
