:root {
  color-scheme: light;
  --birch: #e7e0d3;
  --beige: #c7b9a6;
  --heritage-green: #5f7d4b;
  --gum: #aa7444;
  --graphite: #242424;
  --graphite-soft: rgba(36, 36, 36, 0.68);
  --green-soft: rgba(95, 125, 75, 0.14);
  --shadow: rgba(36, 36, 36, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--birch);
  font-family:
    ui-rounded,
    "SF Pro Rounded",
    "Avenir Next",
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--graphite);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  margin: 0;
  background: var(--birch);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  border: 18px solid rgba(199, 185, 166, 0.12);
}

.launch {
  display: grid;
  place-items: center;
  padding: 64px 24px 32px;
}

.launch__content {
  width: min(100%, 760px);
  text-align: center;
}

.wordmark {
  margin: 0 0 48px;
  color: var(--heritage-green);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.wordmark span {
  color: var(--gum);
}

h1 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--graphite);
  font-size: clamp(3.1rem, 8vw, 6.75rem);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 0.96;
}

.launch__body {
  max-width: 610px;
  margin: 34px auto 0;
  color: var(--graphite);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.55;
}

.launch__body--secondary {
  max-width: 570px;
  margin-top: 10px;
  color: var(--graphite-soft);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 430;
}

.launch__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 52px;
  margin-top: 42px;
  padding: 0 26px;
  border: 1px solid rgba(95, 125, 75, 0.24);
  border-radius: 999px;
  background: var(--heritage-green);
  box-shadow: 0 18px 46px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #fffdf8;
  cursor: default;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 680;
  letter-spacing: 0;
}

.launch__button:focus-visible {
  outline: 3px solid var(--gum);
  outline-offset: 4px;
}

.footer {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  padding: 0 24px 32px;
  color: rgba(36, 36, 36, 0.56);
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 560;
  letter-spacing: 0;
}

@media (max-width: 640px) {
  .launch {
    padding: 48px 20px 24px;
  }

  .wordmark {
    margin-bottom: 38px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }

  .launch__body {
    margin-top: 28px;
  }

  .launch__button {
    width: min(100%, 220px);
    margin-top: 36px;
  }

  .footer {
    min-height: 80px;
    padding-bottom: 28px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .launch__content {
    animation: arrive 700ms ease-out both;
  }
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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