/* Morontia Music landing — cosmic, brand-forward, mobile-first */
:root {
  --void: #050510;
  --nebula: #1a0a32;
  --violet: #6b3fa0;
  --mist: rgba(255, 255, 255, 0.88);
  --mist-soft: rgba(255, 255, 255, 0.72);
  --edge: rgba(255, 255, 255, 0.18);
  --accent: #c9a4ff;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --max: 42rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--mist);
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  background: var(--void);
  -webkit-font-smoothing: antialiased;
}

/* Ambient field — cover bleed + nebula layers */
.sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 60% at 70% 20%, rgba(120, 50, 180, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 80%, rgba(40, 80, 160, 0.28), transparent 50%),
    radial-gradient(circle at 50% 40%, rgba(30, 10, 50, 0.4), transparent 60%),
    url("/assets/cover.jpg") center 30% / cover no-repeat,
    linear-gradient(165deg, #0a0618 0%, #120824 40%, #050510 100%);
  transform: scale(1.04);
  filter: saturate(1.15) brightness(0.55);
  animation: drift 48s ease-in-out infinite alternate;
}

.veil {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 16, 0.55) 0%, rgba(5, 5, 16, 0.72) 45%, rgba(5, 5, 16, 0.9) 100%);
  pointer-events: none;
}

@keyframes drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, 1%, 0);
  }
}

.shell {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 40rem);
  margin: 0 auto;
  padding: 2.5rem 0 3.5rem;
  text-align: center;
  animation: rise 1s ease-out both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.brand {
  margin: 0 0 1.75rem;
}

.logo {
  display: block;
  width: min(100%, 28rem);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.45));
}

.cover-wrap {
  margin: 0 auto 2rem;
  width: min(100%, 22rem);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--edge),
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(140, 80, 200, 0.15);
  animation: rise 1.1s 0.12s ease-out both;
}

.cover {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.copy {
  margin: 0 auto 2.25rem;
  max-width: var(--max);
  text-align: center;
  color: var(--mist-soft);
  animation: rise 1.1s 0.2s ease-out both;
}

.copy p {
  margin: 0 0 1.35rem;
  font-size: clamp(0.98rem, 2.4vw, 1.08rem);
}

.signoff {
  margin-top: 1.75rem !important;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--mist);
  line-height: 1.55;
}

.cta {
  margin-bottom: 2rem;
  animation: rise 1.1s 0.28s ease-out both;
}

.cta h2 {
  margin: 0 0 1rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid var(--edge);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  outline: none;
  transform: translateY(-1px);
}

.btn-accent {
  border-color: rgba(201, 164, 255, 0.45);
  background: rgba(107, 63, 160, 0.35);
  color: #f4ecff;
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: rgba(107, 63, 160, 0.55);
  border-color: var(--accent);
}

.social {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  align-items: center;
  animation: rise 1.1s 0.34s ease-out both;
}

.social a {
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  padding: 0.35rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social a:hover,
.social a:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .sky,
  .shell,
  .cover-wrap,
  .copy,
  .cta,
  .social {
    animation: none !important;
  }
}

@media (min-width: 720px) {
  .shell {
    padding-top: 3.25rem;
  }

  .cover-wrap {
    width: min(100%, 24rem);
  }
}
