:root {
  color-scheme: dark;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background: #03070a;
  color: #f4f0df;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  overflow: hidden;
  background: #03070a;
}

.launch {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: radial-gradient(circle at 50% 54%, #112019 0, #060b0d 44%, #020405 100%);
}

.launch__art,
.launch__art img,
.launch__veil,
.launch__pulse {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.launch__art {
  z-index: -3;
  transform: scale(1.015);
  animation: arrival 14s cubic-bezier(.2, .7, .2, 1) both;
}

.launch__art img {
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.94) contrast(1.05);
}

.launch__veil {
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(1, 4, 5, .2), transparent 20%, transparent 72%, rgba(1, 4, 5, .72)),
    radial-gradient(circle at 50% 55%, transparent 22%, rgba(1, 4, 5, .16) 68%, rgba(1, 4, 5, .5) 100%);
}

.launch__pulse {
  z-index: -1;
  left: 50%;
  top: 53%;
  width: min(28vw, 30rem);
  height: min(28vw, 30rem);
  translate: -50% -50%;
  border-radius: 50%;
  box-shadow: 0 0 5rem rgba(232, 183, 59, .13), inset 0 0 4rem rgba(232, 183, 59, .05);
  opacity: 0;
  animation: pulse 4.8s 1.5s ease-in-out infinite;
  pointer-events: none;
}

.site-footer {
  position: absolute;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: max(1rem, env(safe-area-inset-left));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 76rem;
  margin-inline: auto;
  padding: .7rem .9rem;
  border: 1px solid rgba(218, 184, 88, .18);
  border-radius: 999px;
  color: rgba(248, 244, 226, .72);
  background: rgba(3, 8, 9, .34);
  box-shadow: 0 .75rem 2.5rem rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: clamp(.72rem, 1.3vw, .86rem);
  letter-spacing: .02em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.status i {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #dcb744;
  box-shadow: 0 0 .75rem rgba(220, 183, 68, .9);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@keyframes arrival {
  from { transform: scale(1.08); filter: blur(3px); opacity: .25; }
  to { transform: scale(1.015); filter: blur(0); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: .15; transform: scale(.88); }
  50% { opacity: .72; transform: scale(1.06); }
}

@media (max-aspect-ratio: 4/5) {
  .launch__art img {
    object-position: 50% 50%;
  }

  .launch__art {
    transform: scale(1.02);
  }

  .site-footer {
    padding-inline: .8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .launch__art,
  .launch__pulse {
    animation: none;
  }
}
