@font-face {
  font-family: Unbounded;
  src: url("/assets/unbounded-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

:root { color-scheme: dark; }
* { box-sizing: border-box; }

html, body { min-height: 100%; }
body { margin: 0; background: #000; color: #fff; }

.page {
  display: grid;
  min-height: 100svh;
  padding: clamp(16px, 3vw, 44px);
  place-items: center;
}

.hero {
  display: grid;
  place-items: center;
  width: min(100%, 1500px);
  min-height: clamp(340px, 54vw, 650px);
  padding: clamp(28px, 5vw, 80px);
  border: 1px solid #212121;
  border-radius: 16px;
  background: #080a07;
}

h1 {
  max-width: 800px;
  margin: 0;
  font: 650 clamp(42px, 6.4vw, 104px)/1.12 Unbounded, Arial, sans-serif;
  letter-spacing: -.045em;
  text-align: center;
}

h1 span { color: #cbf24e; }

@media (max-width: 650px) {
  .hero { min-height: 340px; }
  h1 { font-size: clamp(34px, 9vw, 60px); overflow-wrap: anywhere; }
}
