:root {
  --bg: #0c0c0e;
  --bg-glow: #17151a;
  --text: #d4d0d1;
  --text-muted: #aa9893;
  --accent: #8a5449;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  background: radial-gradient(ellipse at 50% 40%, var(--bg-glow) 0%, var(--bg) 65%);
  color: var(--text);
  font-family: sans-serif;
  font-size: 18px;
  text-align: center;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  max-width: 32rem;
}

.logo {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.subtitle {
  margin: 0;
  font-size: 1rem;
  letter-spacing: .03em;
  line-height: 1.6;
  color: var(--text-muted);
}

.tagline {
  margin: 2rem 0 0;
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
