:root {
  color-scheme: dark;
  --ink: #101010;
  --ivory: #f6ede0;
  --pink: #f0009e;
  --violet: #5b16ed;
  --orange: #ff6b00;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: "League Gothic", Impact, sans-serif;
}

.landing-page {
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(1.5rem, 5vw, 4rem);
  position: relative;
}

.hero {
  display: grid;
  justify-items: center;
  max-width: 48rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

.logo {
  display: block;
  filter: drop-shadow(0 1.25rem 2.5rem rgb(0 0 0 / 35%));
  height: auto;
  max-height: 62vh;
  max-width: min(76vw, 34rem);
  object-fit: contain;
  width: 100%;
}

.eyebrow {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  letter-spacing: 0.055em;
  line-height: 0.9;
  margin: clamp(1.5rem, 4vw, 2.75rem) 0 0;
  text-transform: uppercase;
}

.message {
  color: color-mix(in srgb, var(--ivory) 82%, transparent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.12em;
  margin: 0.8rem 0 0;
  text-transform: uppercase;
}

.color-orbit {
  background: conic-gradient(from 20deg, var(--pink), var(--violet), #0b36ee, var(--orange), #ff2535, var(--pink));
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.5;
  position: absolute;
  width: clamp(16rem, 34vw, 32rem);
  aspect-ratio: 1;
  z-index: -1;
}

.color-orbit--one {
  left: -12rem;
  top: -13rem;
}

.color-orbit--two {
  bottom: -15rem;
  right: -12rem;
}

@media (max-width: 34rem) {
  .logo {
    max-width: min(88vw, 28rem);
  }

  .message {
    line-height: 1.4;
    max-width: 16rem;
  }
}
