:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 45%),
    #050505;
  color: #fff;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero {
  text-align: center;
}

.brand {
  margin: 0 0 16px;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.coming-soon {
  margin: 0;
  font-size: clamp(44px, 10vw, 112px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.subcopy {
  margin: 18px 0 0;
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.68);
}
