:root {
  font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
  color: #e7eff0;
  background: #050b0f;
  font-synthesis: none;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html,
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

body {
  display: grid;
  grid-template-rows: 64px 1fr;
  background: #050b0f;
}

header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 58px);
  background: #050b0f;
  border-bottom: 1px solid #16323a;
}

header a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

header img {
  width: 34px;
  height: 34px;
}

header strong {
  font-size: 16px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 36px 22px 100px;
  text-align: center;
}

main p {
  margin: 0 0 14px;
  color: #50dbb7;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

main h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 1;
}

a:focus-visible {
  outline: 1px solid #38d3ad;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
