:root {
  --bg: #0b0d14;
  --fg: #e7e9f0;
  --muted: #9aa1b5;
  --accent-1: #a78bfa;
  --accent-2: #38bdf8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  overflow-x: hidden;
}

/* Soft drifting "silk" gradient backdrop */
.silk {
  position: fixed;
  inset: -40%;
  z-index: -1;
  background:
    radial-gradient(40% 35% at 30% 40%, rgba(167, 139, 250, 0.18), transparent 70%),
    radial-gradient(35% 40% at 70% 55%, rgba(56, 189, 248, 0.14), transparent 70%),
    radial-gradient(30% 30% at 55% 30%, rgba(244, 114, 182, 0.08), transparent 70%);
  filter: blur(40px);
  animation: drift 24s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate(-3%, -2%) rotate(-2deg); }
  to   { transform: translate(3%, 2%) rotate(2deg); }
}

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

main {
  max-width: 42rem;
  text-align: center;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.logo {
  width: 1.8rem;
  height: 1.8rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 650;
  line-height: 1.1;
  background: linear-gradient(100deg, var(--fg) 30%, var(--accent-1) 65%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}

.tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 3rem;
}

.status {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--fg);
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  background: rgba(167, 139, 250, 0.08);
}

footer {
  position: fixed;
  bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}
