:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #09090b;
  --muted: #71717a;
  --line: #e4e4e7;
  --shadow: 0 22px 62px rgba(0, 0, 0, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 76%, #f4f4f5 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 28px 20px;
}

.launch {
  width: min(620px, 100%);
  padding: 62px 48px;
  border: 1px solid rgba(228, 228, 231, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  text-align: center;
}

.badge {
  width: fit-content;
  margin: 0 auto 22px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #27272a;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.supporting {
  max-width: 440px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.supporting strong {
  color: var(--text);
  font-weight: 760;
}

.launch-meta {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.launch-meta p {
  margin: 0;
}

.launch-meta .thanks {
  color: #a1a1aa;
  font-size: 0.82rem;
}

.launch-meta span {
  color: #2563eb;
  font-weight: 760;
  transition: color 160ms ease;
}

.launch-meta span:hover {
  color: #1d4ed8;
}

.site-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #a1a1aa;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0;
}

.dmca-badge {
  display: inline-flex;
  flex: 0 0 auto;
  width: 54px;
  line-height: 0;
  opacity: 0.72;
  overflow: hidden;
  transition: opacity 160ms ease;
}

.dmca-badge:hover {
  opacity: 1;
}

.dmca-badge img {
  display: block;
  width: 54px !important;
  max-width: 54px !important;
  height: auto !important;
  max-height: 24px !important;
  object-fit: contain;
}

.ready .launch {
  animation: reveal 420ms ease both;
}

.badge,
.supporting,
.launch-meta,
.site-footer {
  opacity: 0;
  transform: translateY(8px);
}

.ready .badge {
  animation: revealItem 420ms ease 80ms both;
}

.ready .supporting {
  animation: revealItem 420ms ease 180ms both;
}

.ready .launch-meta {
  animation: revealItem 420ms ease 280ms both;
}

.ready .site-footer {
  animation: revealItem 420ms ease 380ms both;
}

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

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

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

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

@media (max-width: 760px) {
  .launch {
    width: min(540px, 100%);
    padding: 48px 30px;
    border-radius: 22px;
  }
}

@media (max-width: 480px) {
  .page-shell {
    padding: 20px 14px;
  }

  .launch {
    padding: 38px 20px;
    border-radius: 20px;
  }

  .badge {
    margin-bottom: 20px;
  }

  .supporting {
    font-size: 0.94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ready .launch,
  .ready .badge,
  .ready .supporting,
  .ready .launch-meta,
  .ready .site-footer {
    animation: none;
  }

  .badge,
  .supporting,
  .launch-meta,
  .site-footer {
    opacity: 1;
    transform: none;
  }
}
