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

:root {
  --bg: #0f0f12;
  --surface: #1a1a20;
  --accent: #7c3aed;
  --accent-dim: #5b21b6;
  --text: #e4e4e7;
  --text-muted: #a1a1aa;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

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

h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 2rem;
}

.sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  opacity: 0.8;
}

footer {
  margin-top: auto;
  padding: 2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
