:root {
  color-scheme: light;
  --color-ivory: #f4efe6;
  --color-off-white: #fbf8f2;
  --color-deep-blue: #112b3c;
  --color-night-blue: #071b26;
  --color-copper: #b46a3c;
  --color-stone: #8a8178;
  --color-ink: #17242c;
  --color-line: rgba(17, 43, 60, 0.14);
}

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

html {
  min-width: 20rem;
  background: var(--color-ivory);
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-deep-blue);
  background: var(--color-ivory);
  font-family: "Instrument Sans", Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  position: fixed;
  left: 0;
  z-index: 1;
  width: 0.75rem;
  content: "";
}

body::before {
  top: 0;
  height: 100%;
  background: var(--color-deep-blue);
}

body::after {
  bottom: 0;
  height: 18%;
  min-height: 4.5rem;
  background: var(--color-copper);
}

.launch-page {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  max-width: 90rem;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem 2.75rem;
}

.brand img {
  display: block;
  width: min(100%, 18rem);
  height: auto;
}

.announcement {
  align-self: end;
  padding: 4rem 0 1.5rem;
}

.accent-line {
  display: block;
  width: 4.5rem;
  height: 0.25rem;
  margin-bottom: 1.25rem;
  background: var(--color-copper);
}

h1 {
  max-width: 100%;
  margin: 0;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

@media (min-width: 48rem) {
  body::before,
  body::after {
    width: 1rem;
  }

  .launch-page {
    padding: 3.5rem 4rem 4rem 5rem;
  }

  .brand img {
    width: min(100%, 23rem);
  }

  .announcement {
    justify-self: end;
    padding-bottom: 2rem;
    text-align: right;
  }

  .accent-line {
    width: 6rem;
    margin-right: 0;
    margin-left: auto;
  }

  h1 {
    font-size: 4.5rem;
  }
}

@media (min-width: 64rem) {
  .launch-page {
    padding: 4.5rem 6rem 5rem 7rem;
  }

  h1 {
    font-size: 5.75rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .brand,
  .announcement {
    animation: reveal 600ms ease-out both;
  }

  .announcement {
    animation-delay: 120ms;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(0.75rem);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
