:root {
  color-scheme: dark;
  --black: #030407;
  --white: #f5f4fa;
  --muted: rgba(225, 225, 235, .62);
}

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

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

html {
  background: var(--black);
}

body {
  min-width: 280px;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.scene {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  background: var(--black);
}


.hero {
  position: relative;
  z-index: 5;
  isolation: isolate;
  width: 100%;
  padding-inline: max(1rem, 4vw);
  text-align: center;
  animation: appear 900ms cubic-bezier(.2, .8, .2, 1) both;
}

h1 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: .08em .16em .22em;
  overflow: visible;
  white-space: nowrap;
  line-height: 1.04;
  letter-spacing: -.05em;
  font-size: clamp(4.75rem, 13vw, 14rem);
  font-weight: 700;
}

.hero h1::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: clamp(16rem, 58vw, 68rem);
  height: clamp(7rem, 18vw, 20rem);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse at center,
      rgba(164, 92, 255, .22) 0%,
      rgba(82, 98, 255, .13) 34%,
      rgba(255, 39, 216, .08) 52%,
      transparent 74%
    );
  filter: blur(clamp(24px, 3vw, 58px));
  opacity: .92;
  pointer-events: none;
}

.brand {
  display: inline-block;
  flex: 0 0 auto;
  padding: .04em .10em .22em .02em;
  overflow: visible;
  line-height: 1.12;
  background: linear-gradient(90deg, #ff36d9 0%, #d75aff 12.5%, #8e70ff 25%, #39dfff 37.5%, #ff36d9 50%, #d75aff 62.5%, #8e70ff 75%, #39dfff 87.5%, #ff36d9 100%);
  background-size: 200% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 18px rgba(142, 112, 255, .10);
  animation: brand-gradient 7s linear infinite;
}

.tld {
  display: inline-block;
  flex: 0 0 auto;
  margin-left: .02em;
  color: rgba(240, 240, 247, .58);
  font: 400 .28em/1 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -.02em;
  vertical-align: .08em;
  text-shadow: 0 0 12px rgba(255, 255, 255, .04);
}

.tagline {
  margin: clamp(1.35rem, 2.4vw, 2.5rem) 0 0;
  color: var(--muted);
  font-size: clamp(.95rem, 1.35vw, 1.35rem);
  font-weight: 400;
  letter-spacing: .025em;
}

.signature {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 1.15rem;
  bottom: max(1.15rem, calc(.95rem + env(safe-area-inset-bottom)));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .42rem;
  min-width: 10rem;
  padding-top: .72rem;
  transform: translateX(-50%);
  text-align: center;
}

.signature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 6.5rem;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff36d9 0%, #d75aff 12.5%, #8e70ff 25%, #39dfff 37.5%, #ff36d9 50%, #d75aff 62.5%, #8e70ff 75%, #39dfff 87.5%, #ff36d9 100%);
  background-size: 200% 100%;
  background-position: 100% 50%;
  opacity: .24;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  animation: brand-gradient 7s linear infinite;
}

.signature-domain {
  color: rgba(255, 255, 255, .48);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .11em;
  line-height: 1;
  white-space: nowrap;
}

.signature-meta {
  color: rgba(255, 255, 255, .24);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1;
  white-space: nowrap;
}


@keyframes brand-gradient {
  from { background-position: 100% 50%; }
  to { background-position: 0% 50%; }
}

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

@media (max-width: 700px) {
  .hero h1::before {
    width: 118vw;
    height: 34vw;
    min-height: 8rem;
    filter: blur(30px);
    opacity: .95;
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 7rem);
    letter-spacing: -.045em;
    padding-bottom: .24em;
  }

  .brand {
    padding-bottom: .24em;
  }


  .tagline {
    padding-inline: .5rem;
  }

  .signature {
    bottom: .95rem;
    bottom: max(.95rem, calc(.8rem + env(safe-area-inset-bottom)));
    gap: .38rem;
    padding-top: .62rem;
  }

  .signature::before {
    width: 5.5rem;
  }

  .signature-domain {
    font-size: .68rem;
  }

  .signature-meta {
    font-size: .54rem;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .hero h1::before {
    width: 72vw;
    height: 26vw;
    min-height: 6rem;
    filter: blur(24px);
    opacity: .86;
  }

  h1 {
    font-size: clamp(3rem, 18vh, 6.5rem);
    padding-bottom: .18em;
  }

  .brand {
    padding-bottom: .18em;
  }

  .tagline {
    margin-top: .55rem;
    font-size: .88rem;
  }

  .signature {
    bottom: .4rem;
    bottom: max(.4rem, env(safe-area-inset-bottom));
    gap: .3rem;
    padding-top: .46rem;
  }

  .signature::before {
    width: 4.75rem;
  }

  .signature-domain {
    font-size: .6rem;
  }

  .signature-meta {
    font-size: .48rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (forced-colors: active) {
  .brand {
    background: none;
    -webkit-text-fill-color: currentColor;
    color: CanvasText;
    text-shadow: none;
  }

  .hero h1::before {
    display: none;
  }

  .signature::before {
    background: CanvasText;
    opacity: .35;
    -webkit-mask-image: none;
    mask-image: none;
  }
}
