/* Matches main app theme: Plus Jakarta Sans, light background, dark text */
:root {
  --background: #ffffff;
  --foreground: #030213;
  --muted: #717182;
  --radius: 0.625rem;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--background);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  text-align: center;
  padding: 2rem;
}

.message {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 500;
  color: var(--foreground);
  letter-spacing: 0.02em;
}
