:root {
  color-scheme: dark;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.18);
  --pink: #ff0073;
  --violet: #5200ff;
  --gold: #ffbd37;
  --bg: #22103d;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  position: relative;
  isolation: isolate;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 0, 115, 0.38), transparent 31rem),
    radial-gradient(circle at 82% 18%, rgba(82, 0, 255, 0.38), transparent 33rem),
    radial-gradient(circle at 50% 82%, rgba(255, 0, 115, 0.16), transparent 30rem),
    linear-gradient(135deg, #160313 0%, #22103d 52%, #271045 100%);
}

body::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 72%);
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: calc(100dvh - 76px);
  display: grid;
  place-items: center;
  padding: calc(48px + env(safe-area-inset-top)) 24px 24px;
}

.hero {
  width: min(760px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
}

.app-icon {
  width: clamp(132px, 22vw, 184px);
  height: clamp(132px, 22vw, 184px);
  border-radius: 30%;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

h1 {
  margin: 28px 0 12px;
  font-size: clamp(4rem, 13vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.tagline {
  width: min(620px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.2vw, 1.45rem);
  line-height: 1.45;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.site-footer {
  position: relative;
  z-index: 1;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 24px calc(26px + env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 620px) {
  .page-shell {
    min-height: calc(100dvh - 104px);
    padding-top: calc(36px + env(safe-area-inset-top));
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
  }
}
