:root {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #f5f5f5;
  background-color: #040404;
  --accent: #ffffff;
}

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

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, #0f2027, #020305 60%);
  overflow: hidden;
}

main.hero {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 1.5rem;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.logo-wrap img {
  width: min(45vw, 300px);
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.8));
  transition: transform 0.35s ease;
}

.script {
  font-family: "Oooh Baby", cursive;
  font-size: clamp(2rem, 4vw, 3.8rem);
  color: var(--accent);
}

.tagline {
  margin-top: 2.5rem;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.6;
  min-height: 1.8em;
  color: rgba(245, 245, 245, 0.75);
  letter-spacing: 0.05em;
}

.noise {
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.6' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}

canvas#orbital {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.4;
  }
}

@media (max-width: 640px) {
  main.hero {
    padding: 2.5rem 1rem;
  }
}
