.launch-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(24px, 6vw, 76px) 20px 104px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0) 42%),
    #000;
  color: #fff;
  transform: translate3d(0, 0, 0);
  transition:
    transform 760ms cubic-bezier(0.24, 0.04, 0.47, 0.96),
    opacity 72ms linear 718ms,
    visibility 0ms linear 796ms;
  will-change: transform;
}

html.launch-complete .launch-screen {
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, -101.25%, 0);
  pointer-events: none;
}

.launch-panel {
  width: min(620px, 100%);
  transition:
    opacity 170ms ease,
    transform 210ms cubic-bezier(0.22, 0.7, 0.22, 1);
}

.launch-screen.is-committing .launch-panel {
  opacity: 0.74;
  transform: translate3d(0, -3px, 0);
}

.launch-stage {
  display: grid;
  gap: 22px;
}

.launch-title {
  max-width: 590px;
  color: #fff;
  font-size: clamp(3.25rem, 6.1vw, 4.7rem);
  font-weight: 200;
  letter-spacing: -0.067em;
  line-height: 0.91;
}

.launch-paths {
  display: grid;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.launch-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  align-items: center;
  min-height: 78px;
  padding: 12px 2px 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.89);
  text-align: left;
  transition: color var(--motion-quick) ease;
}

.launch-path:hover,
.launch-path:focus-visible {
  color: #fff;
  outline: none;
}

.launch-path-copy {
  display: grid;
  gap: 3px;
}

.launch-path-copy strong {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.018em;
}

.launch-path-copy small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  font-weight: 400;
}

.launch-path-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  transition:
    border-color var(--motion-quick) ease,
    background var(--motion-quick) ease,
    color var(--motion-quick) ease,
    transform var(--motion-quick) var(--ease-standard);
}

.launch-path:hover .launch-path-arrow,
.launch-path:focus-visible .launch-path-arrow {
  border-color: #fff;
  background: #fff;
  color: #000;
  transform: translateX(2px);
}

.launch-inline-status {
  min-height: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.45;
}

.launch-back {
  justify-self: start;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.82rem;
  transition: color var(--motion-quick) ease;
}

.launch-back:hover,
.launch-back:focus-visible {
  color: #fff;
  outline: none;
}

.launch-kicker {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.launch-consent-title {
  max-width: 560px;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.7rem);
  font-weight: 200;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.launch-notes {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}

.launch-note {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

.launch-note::before {
  width: 5px;
  height: 5px;
  margin-top: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  content: '';
}

.launch-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 12px 0 2px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.52;
}

.launch-consent input {
  appearance: none;
  position: relative;
  display: inline-grid;
  width: 19px;
  min-height: 19px;
  height: 19px;
  margin: 2px 0 0;
  padding: 0;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.launch-consent input::after {
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  content: '';
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg) scale(0.72);
  transition:
    opacity var(--motion-micro) ease,
    transform var(--motion-quick) var(--ease-standard);
}

.launch-consent input:checked {
  border-color: #fff;
  background: #fff;
}

.launch-consent input:checked::after {
  opacity: 1;
  transform: translateY(-1px) rotate(-45deg) scale(1);
}

.launch-consent input:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.launch-enter {
  position: relative;
  display: inline-flex;
  justify-self: start;
  min-width: 126px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    opacity var(--motion-quick) ease,
    transform var(--motion-quick) var(--ease-standard),
    background var(--motion-quick) ease;
}

.launch-enter:hover:not(:disabled),
.launch-enter:focus-visible:not(:disabled) {
  background: rgba(255, 255, 255, 0.9);
  outline: none;
  transform: translateY(-1px);
}

.launch-enter:disabled {
  opacity: 0.32;
}

.launch-footer {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 150ms ease;
}

.launch-screen.is-committing .launch-footer {
  opacity: 0.28;
}

.launch-footer-logo {
  width: 19px;
  filter: invert(1);
  opacity: 0.92;
}
