/* Simple modern baseline */

:root {
  --max-width: 980px;
  --border: #e8e8e8;
  --text: #111;
  --muted: #666;
  --bg: #fff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  margin-left: 1rem;
}

.nav-links a.active {
  color: var(--text);
  font-weight: 600;
}

.hero {
  padding: 2rem 0 1rem;
}

.hero p { color: var(--muted); }

.hero-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--text);
  text-decoration: none;
  color: white;
  background: var(--text);
}

.button.outline {
  background: transparent;
  color: var(--text);
}

.card-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}

.card p {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: var(--muted);
}
