:root {
  --text: rgba(255, 255, 255, 1);
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  --logo-top: clamp(48px, 12vw, 128px);
  background-color: #000;
  background-image: url("mobile-002.avif"), url("logo.svg"), url("mobile-001.avif");
  background-repeat: no-repeat;
  background-position: center, center top calc(var(--logo-top) + env(safe-area-inset-top)), center;
  background-size: cover, 50vw auto, cover;
  font-family: "gira-sans", "Gira Sans", system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;
  font-weight: 400;
}

@media (min-width: 768px) {
  body {
    background: #000 url("desktop.avif") center / cover no-repeat;
  }
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(12px, 3vh, 20px);
  width: calc(100% - 48px);
  max-width: 720px;
  margin-inline: auto;
  padding-block: clamp(60px, 8vh, 96px);
  text-align: center;
}

@supports (min-height: 100svh) {
  .page {
    min-height: 100svh;
  }
}

.kicker {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}

.tagline {
  margin: 0;
  width: 100%;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  max-width: 213px;
}

@media (min-width: 768px) {
  .page {
    justify-content: space-between;
    gap: 0;
  }

  .kicker {
    font-size: 24px;
  }

  .tagline {
    max-width: none;
    white-space: nowrap;
  }
}
