:root {
  color-scheme: light dark;
  --bg: #faf7f2;
  --text: #2e2a26;
  --muted: #6b6259;
  --accent: #c98a5b;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-align: center;
}

.card {
  max-width: 32rem;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}

p {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--muted);
}
