:root {
  --page-background: linear-gradient(180deg, #090909 0%, #050505 100%);
  --noise-layer: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E");
  --page-text: rgba(250, 250, 250, 0.95);
  --muted-text: rgba(250, 250, 250, 0.74);
  --accent: rgba(255, 215, 0, 0.95);
  --body-font: Helvetica, Arial, sans-serif;
  --heading-font: Georgia, "Times New Roman", Times, serif;
  --content-width: 95ch;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body,
.page {
  min-height: 100dvh;
  width: 100%;
}

body {
  background: var(--page-background);
  color: var(--page-text);
  font-family: var(--body-font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: var(--noise-layer);
  background-size: 220px 220px;
  opacity: 0.06;
  mix-blend-mode: soft-light;
}

.page {
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin: 0 auto;
  max-width: var(--content-width);
  text-align: center;
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--heading-font);
  font-size: clamp(2.25rem, 7vw, 3.75rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero__description {
  font-size: clamp(1.125rem, 2.4vw, 1.5rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted-text);
  text-wrap: pretty;
}

.hero__accent {
  color: var(--accent);
  font-weight: 600;
}

.hero__flicker {
  animation: flicker 3s infinite;
}

.reveal {
  transition:
    opacity 1s ease-out,
    transform 0.5s ease-out;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(25px);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes flicker {
  0%,
  18%,
  22%,
  25%,
  53%,
  57%,
  100% {
    opacity: 1;
  }

  20%,
  24%,
  55% {
    opacity: 0;
  }
}

@media (max-width: 500px) {
  .hero {
    text-align: left;
    width: 100%;
  }

  .hero__title {
    font-size: clamp(2.25rem, 12vw, 3rem);
  }

  .hero__description {
    line-height: 1.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .js-enabled .reveal,
  .js-enabled .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
