@font-face {
  font-family: "DIN Pro Condensed";
  src: url("assets/fonts/DINPro-CondensedRegular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DIN Pro Condensed";
  src: url("assets/fonts/DINPro-CondensedBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --surface: #23242a;
  --surface-deep: #1c1d22;
  --text: #dedfe4;
  --text-dim: #9a9ba6;
  --accent: #3cb882;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--surface);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 50% 7%, rgb(60 184 130 / 0.08), transparent 31rem),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-deep) 145%);
  color: var(--text);
  font-family: "DIN Pro Condensed", "Arial Narrow", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.launch {
  position: relative;
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: clamp(2rem, 7vh, 4.5rem) 1.25rem;
}

.content {
  display: flex;
  width: min(100%, 34rem);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.brand {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand__logo {
  display: block;
  width: clamp(8rem, 20vw, 8.5rem);
  height: auto;
  filter: drop-shadow(0 0.65rem 1.75rem rgb(60 184 130 / 0.2));
}

.brand__name {
  margin: 0.75rem 0 0;
  color: #f4f4f5;
  font-size: clamp(5.55rem, 10vw, 4.25rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.brand__name {
  margin: 0.75rem 0 0;
  color: #f4f4f5;
  font-size: clamp(5.55rem, 10vw, 4.25rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.announcement {
  margin: 0.5rem 0 0;
  color: rgb(222 223 228 / 0.72);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.28em;
}

::selection {
  background: rgb(60 184 130 / 0.35);
  color: #f4f4f5;
}

@media (prefers-reduced-transparency: reduce) {
  body {
    background: var(--surface);
  }

  body::before {
    display: none;
  }
}
