:root {
  --brand: #2b51a8;
  --brand-dark: #1d3877;
  --bg: #eef2fb;
  --ink: #0a1630;
  --muted: #5b7dcb;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  text-align: center;
}

.logo {
  width: min(420px, 80vw);
  height: auto;
  margin-bottom: 2.5rem;
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
  color: var(--brand);
  letter-spacing: 0.02em;
}

p {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--muted);
}
