@font-face {
  font-family: "Chalet London Nineteen Sixty";
  src:
    url("../assets/fonts/chalet-london-nineteen-sixty.woff2") format("woff2"),
    url("../assets/fonts/chalet-london-nineteen-sixty.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --elsewhere-blue: #000099;
  --elsewhere-white: #ffffff;
}

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

html {
  min-height: 100%;
  background: var(--elsewhere-blue);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--elsewhere-blue);
  color: var(--elsewhere-white);
  font-family: "Chalet London Nineteen Sixty", Arial, Helvetica, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing-page {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding:
    max(clamp(28px, 5vw, 80px), env(safe-area-inset-top))
    max(clamp(22px, 5vw, 80px), env(safe-area-inset-right))
    max(clamp(28px, 5vw, 80px), env(safe-area-inset-bottom))
    max(clamp(22px, 5vw, 80px), env(safe-area-inset-left));
}

.brand-lockup {
  display: flex;
  width: min(82vw, 1050px);
  flex-direction: column;
  align-items: center;
  transform: translateY(1.5vh);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.launch-line {
  margin: clamp(22px, 3vw, 42px) 0 0;
  color: var(--elsewhere-white);
  font-size: clamp(12px, 1.18vw, 18px);
  font-weight: 400;
  letter-spacing: 0.21em;
  line-height: 1.65;
  text-align: center;
  text-transform: uppercase;
}

.launch-line span {
  display: inline-block;
  margin-inline: 0.2em;
}

@media (max-width: 640px) {
  .brand-lockup {
    width: 100%;
    transform: none;
  }

  .launch-line {
    max-width: 24rem;
    font-size: 11px;
    letter-spacing: 0.16em;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .brand-lockup {
    animation: settle 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes settle {
    from {
      opacity: 0;
      transform: translateY(calc(1.5vh + 8px));
    }

    to {
      opacity: 1;
      transform: translateY(1.5vh);
    }
  }
}
