:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --accent: #2563eb;
  --border: #e5e7eb;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 24px;
}
.site-header, .site-footer {
  max-width: 960px;
  margin: 0 auto 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}
.logo {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}
main {
  max-width: 960px;
  margin: 0 auto;
}
.hero {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
}
h1 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.2;
}
p {
  margin: 0 0 12px;
  font-size: 16px;
}
a {
  color: var(--accent);
}
