:root {
  color-scheme: dark;
  --field: #171b1c;
  --title: #f3f5f5;
  --subtitle: #aeb5b7;
}

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

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--field);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: var(--field);
  color: var(--title);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(1.25rem, 4vw, 3rem);
  place-items: center;
}

.lockup {
  width: min(100%, 70rem);
  text-align: center;
  transform: translateY(clamp(-3.5rem, -5vh, -2rem));
}

h1,
p {
  margin: 0;
}

h1 {
  color: var(--title);
  font-size: clamp(2.18rem, 9.3vw, 8.6rem);
  font-weight: 900;
  letter-spacing: clamp(0.005em, 0.35vw, 0.045em);
  line-height: 0.88;
  white-space: nowrap;
}

p {
  margin-top: clamp(1.05rem, 2.5vw, 2rem);
  color: var(--subtitle);
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
  }
}
