:root {
  color-scheme: light;
  --orange: #f05a2a;
  --orange-deep: #c83f18;
  --paper: #fff8f4;
}

* { box-sizing: border-box; }
html, body { min-width: 320px; min-height: 100%; }

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--orange-deep);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.launch {
  width: min(840px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: max(40px, env(safe-area-inset-top)) 0 max(40px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.launch-logo {
  display: block;
  width: clamp(190px, 26vw, 292px);
  height: auto;
  margin-bottom: clamp(36px, 6vh, 64px);
  filter: brightness(0) saturate(100%) invert(42%) sepia(94%) saturate(2613%) hue-rotate(350deg) brightness(101%) contrast(89%);
}

h1 {
  margin: 0;
  max-width: 760px;
  color: var(--orange);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -.055em;
  text-wrap: balance;
}

p {
  max-width: 700px;
  margin: 26px 0 0;
  font-size: clamp(17px, 2.1vw, 24px);
  line-height: 1.55;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.launch-date {
  margin-top: clamp(44px, 8vh, 80px);
  color: var(--orange);
  font-size: clamp(13px, 1.6vw, 17px);
  font-weight: 800;
  letter-spacing: .18em;
}

@media (max-width: 560px) {
  .launch { width: min(100% - 32px, 440px); }
  .launch-logo { width: 190px; margin-bottom: 38px; }
  h1 { font-size: clamp(38px, 12vw, 54px); }
  p { margin-top: 22px; font-size: 17px; }
  .launch-date { margin-top: 48px; font-size: 12px; letter-spacing: .13em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; scroll-behavior: auto !important; }
}
