:root {
  color-scheme: light;
  --bg: #f6f7f9;
  --fg: #17202a;
  --muted: #55606e;
  --accent: #1f6feb;
  --surface: #ffffff;
  --border: #d8dee8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--fg);
  background: var(--bg);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.home {
  width: min(100%, 680px);
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.home h1 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.15;
}

.home p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.home a {
  color: var(--accent);
  font-weight: 600;
}
