:root {
  --black: #030104;
  --black-soft: #0a0610;
  --white: #ffffff;
  --white-muted: rgba(255, 255, 255, 0.72);
  --aurora-violet: #8f4cff;
  --aurora-magenta: #c65cff;
  --aurora-deep: #3e1a78;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  background: var(--black);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 1, 4, 0.18), rgba(3, 1, 4, 0.84)),
    url("assets/aurora-placeholder.png") center / cover no-repeat;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 50% 48%, rgba(143, 76, 255, 0.2), transparent 30rem),
    linear-gradient(90deg, rgba(3, 1, 4, 0.88), transparent 26%, transparent 74%, rgba(3, 1, 4, 0.88));
  pointer-events: none;
}

.site-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(1.25rem, 3vw, 3rem);
  grid-template-rows: 1fr auto;
}

.hero {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: calc(100vh - 7rem);
  text-align: center;
}

.kicker {
  margin: 0 0 clamp(1.2rem, 3vw, 2rem);
  color: var(--white-muted);
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.logo {
  position: relative;
  margin: 0;
  font-size: clamp(3.25rem, 12vw, 10rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow:
    0 0 1.2rem rgba(198, 92, 255, 0.58),
    0 0 4rem rgba(143, 76, 255, 0.42),
    0 0 8rem rgba(62, 26, 120, 0.54);
}

.logo::after {
  position: absolute;
  left: 50%;
  bottom: -1.25rem;
  width: min(18rem, 62vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--aurora-magenta), var(--white), var(--aurora-violet), transparent);
  transform: translateX(-50%);
  opacity: 0.72;
}

.footer {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 520px) {
  .site-shell {
    padding: 1.1rem;
  }

  .hero {
    min-height: calc(100vh - 5.5rem);
  }

  .kicker {
    max-width: 18rem;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }
}
