:root {
  color-scheme: dark;
  --background: #090a0c;
  --foreground: #f4f1ea;
  --muted: #85878d;
  --accent: #b8ff37;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(184, 255, 55, 0.07), transparent 28rem),
    var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  display: grid;
  min-height: 100svh;
  grid-template-rows: 1fr auto;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.hero {
  align-self: center;
  width: min(100%, 70rem);
}

.eyebrow {
  margin: 0 0 clamp(1.5rem, 4vw, 3rem);
  color: var(--muted);
  font-size: clamp(0.72rem, 1vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.3em;
}

h1 {
  margin: 0;
  font-size: clamp(4.25rem, 15vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.76;
}

.accent {
  display: block;
  width: clamp(3rem, 8vw, 6rem);
  height: 0.35rem;
  margin-top: clamp(2rem, 5vw, 4rem);
  background: var(--accent);
}

footer {
  padding-top: 3rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

footer p {
  margin: 0;
}

@media (max-width: 30rem) {
  .page {
    padding: 1.25rem;
  }

  h1 {
    font-size: clamp(3.9rem, 22vw, 6rem);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero > * {
    animation: reveal 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero h1 {
    animation-delay: 100ms;
  }

  .hero .accent {
    animation-delay: 220ms;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(1rem);
    }
  }
}
