@font-face {
  font-family: "ES Rebond Grotesque";
  src: url("../assets/ESRebondGrotesque-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ES Rebond Grotesque";
  src: url("../assets/ESRebondGrotesque-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --page-bg: #46171b;
  --text: #fdf7f5;
  --text-soft: rgba(253, 247, 245, 0.78);
  --max-width: 32rem;
  color-scheme: only dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "ES Rebond Grotesque", "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--page-bg);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-block: clamp(0.5rem, 6vh, 1.75rem);
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.page {
  width: min(100%, var(--max-width));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 5vh, 2.5rem);
  min-height: 100%;
  flex: 1;
}

.hero {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
  width: 100%;
}

.hero__logo {
  width: clamp(90px, 25vw, 130px);
  height: auto;
  display: block;
  margin-inline: auto;
  filter: drop-shadow(0 12px 24px rgba(17, 0, 0, 0.18));
}

.launch-note {
  margin: 0;
  font-weight: 400;
  font-size: clamp(0.82rem, 2.3vw, 1.05rem);
  letter-spacing: 0.08em;
  margin-top: auto;
  margin-bottom: clamp(0.5rem, 4vh, 1.5rem);
  text-align: center;
  color: #d76b73;
}

@media (min-width: 768px) {
  body {
    padding-block: 5rem;
  }

  .page {
    gap: 5rem;
  }
}
