*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0d0d0f;
  --text: #e8e8ea;
  --muted: #8b8b94;
  --accent: #6366f1;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.page {
  max-width: 42rem;
  width: 100%;
  text-align: center;
}

.header {
  margin-bottom: 4rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo .dot {
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.tagline {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.footer {
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}
