:root {
  --text: #4b4f57;
  --text-h: #14171c;
  --bg: #f6f5f2;
  --accent: #b5502e;
  --accent-hover: #9c3f21;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #b8bcc4;
    --text-h: #f2f1ee;
    --bg: #15161a;
    --accent: #d97b53;
    --accent-hover: #e28f6b;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 16px/1.5 system-ui, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

main {
  text-align: center;
  padding: 24px calc(24px + env(safe-area-inset-right)) calc(24px + env(safe-area-inset-bottom)) calc(24px + env(safe-area-inset-left));
}

h1 {
  font-size: 40px;
  letter-spacing: -0.5px;
  color: var(--text-h);
  margin: 0 0 8px;
}

.tagline {
  font-size: 17px;
  margin: 0 0 32px;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 8px;
}

.cta:hover {
  background: var(--accent-hover);
}
