:root {
  color-scheme: dark;
  background: #0a0a0a;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #0a0a0a;
  color: #f2f2f2;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

main {
  width: 100vw;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
}

.brand {
  display: grid;
  justify-items: center;
  gap: 16px;
}

img {
  display: block;
  width: clamp(152px, 24vmin, 280px);
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

h1 {
  margin: 2px 0 0;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
}

h1 span {
  margin-left: 0.08em;
  font-size: 0.38em;
  font-weight: 500;
  vertical-align: super;
}

p {
  margin: -4px 0 0;
  color: #8f8f8f;
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  img {
    width: clamp(136px, 42vw, 220px);
  }

  .brand {
    gap: 14px;
  }
}
