:root {
  color-scheme: light;
  --ink: #071d3b;
  --blue: #6da4d4;
  --powder: #eef5fb;
  --paper: #ffffff;
  --line: rgba(7, 29, 59, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.48)),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 23px,
      rgba(109, 164, 212, 0.09) 24px
    ),
    var(--powder);
  font-family: "Avenir Next", Avenir, "Century Gothic", sans-serif;
}

body::before {
  position: fixed;
  inset: clamp(0.75rem, 2vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  content: "";
  pointer-events: none;
}

.launch-card {
  width: min(88vw, 43rem);
  padding: clamp(2.5rem, 8vw, 5.5rem) clamp(1rem, 5vw, 3rem);
  text-align: center;
}

.logo-wrap {
  position: relative;
  margin-inline: auto;
  padding: clamp(0.65rem, 2vw, 1.2rem);
  background: var(--paper);
  box-shadow: 0 1.5rem 4rem rgba(7, 29, 59, 0.07);
  transform: rotate(-0.35deg);
}

.logo-wrap::after {
  position: absolute;
  inset: 0.45rem;
  border: 1px solid rgba(109, 164, 212, 0.2);
  content: "";
  pointer-events: none;
}

.logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.announcement {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  gap: clamp(0.55rem, 2vw, 1rem);
  width: min(100%, 31rem);
  margin: clamp(2rem, 6vw, 3rem) auto 0;
}

h1 {
  margin: 0;
  font-family: "Baskerville", "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.rule {
  height: 1px;
  background: var(--line);
}

.bow-tie {
  position: relative;
  width: 1.45rem;
  height: 0.8rem;
}

.bow-tie::before,
.bow-tie::after {
  position: absolute;
  top: 0.1rem;
  width: 0;
  height: 0;
  border-top: 0.3rem solid transparent;
  border-bottom: 0.3rem solid transparent;
  content: "";
}

.bow-tie::before {
  left: 0;
  border-right: 0.62rem solid var(--blue);
}

.bow-tie::after {
  right: 0;
  border-left: 0.62rem solid var(--blue);
}

@media (max-width: 32rem) {
  .launch-card {
    width: min(91vw, 29rem);
    padding-inline: 0.55rem;
  }

  .announcement {
    grid-template-columns: minmax(1rem, 1fr) auto minmax(1rem, 1fr);
  }

  .announcement .bow-tie {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .logo-wrap,
  .announcement {
    opacity: 0;
    animation: settle-in 700ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }

  .announcement {
    animation-delay: 180ms;
  }
}

@keyframes settle-in {
  from {
    opacity: 0;
    translate: 0 0.75rem;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
