:root {
  color-scheme: dark;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, #23201c 0, #121111 36%, #0b0b0c 72%),
    #0b0b0c;
  color: #f4efe5;
}

main {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
}

main::before {
  position: absolute;
  z-index: -1;
  width: min(76vw, 68rem);
  aspect-ratio: 1;
  border: 1px solid rgb(244 239 229 / 9%);
  border-radius: 50%;
  box-shadow:
    0 0 0 clamp(2rem, 6vw, 7rem) rgb(244 239 229 / 2%),
    inset 0 0 8rem rgb(237 129 74 / 5%);
  content: "";
}

h1,
p {
  margin: 0;
}

h1 {
  padding-inline: 0.12em;
  color: #f4efe5;
  font-size: clamp(4.75rem, 17.5vw, 17rem);
  font-weight: 700;
  letter-spacing: -0.085em;
  line-height: 0.82;
  text-align: center;
  text-wrap: nowrap;
}

p {
  position: absolute;
  right: 0;
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  left: 0;
  padding-inline: 1.5rem;
  color: #ed814a;
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(4rem, 22vw, 7rem);
  }

  main::before {
    width: 90vw;
  }
}

@media (prefers-reduced-motion: no-preference) {
  h1 {
    animation: arrive 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  p {
    animation: fade-in 700ms 260ms ease-out both;
  }
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
}
