:root {
  color-scheme: light;
  --text: #111111;
  --muted: #444444;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Arial,
    sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

main {
  width: 100%;
  max-width: 36rem;
  text-align: center;
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

p {
  margin: 0 0 0.85rem;
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
}

p:last-child {
  margin-bottom: 0;
}
