:root {
  --launch-dark: #080d13;
  --launch-dark-soft: #0d151e;
  --launch-paper: #f4f7f9;
  --launch-paper-deep: #eaf0f4;
  --launch-ink: #111821;
  --launch-copy: #66727f;
  --launch-quiet: #95a1ad;
  --launch-line: #d9e1e7;
  --launch-blue: #5b9dcc;
  --launch-blue-dark: #25658f;
  --launch-event: #ffd077;
  --launch-shell: min(1440px, calc(100% - 80px));
  --launch-ease: cubic-bezier(.2, .8, .2, 1);
  --body-size: clamp(14px, 1.05vw, 16px);
  --metadata-size: clamp(11px, .8vw, 12px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--launch-ink);
  background: var(--launch-paper);
  font-family: "SF Pro Display", "PingFang SC", "Helvetica Neue", sans-serif;
  font-size: var(--body-size);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
button, a { font: inherit; }
.launch-shell { width: var(--launch-shell); margin: 0 auto; }
.launch-metadata { font-size: var(--metadata-size); }
:focus-visible {
  outline: 2px solid var(--launch-blue);
  outline-offset: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  :root {
    --launch-shell: calc(100% - 48px);
  }
}

@media (max-width: 640px) {
  :root {
    --launch-shell: calc(100% - 34px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  [data-product-layer] {
    transform: none !important;
  }
}
