:root {
  --bg-1: #f4f1eb;
  --bg-2: #e3dfd7;
  --text: #1f1d1a;
  --muted: #5d5a54;
  --accent: #b2492d;
  --accent-strong: #7f2f1d;
  --card: #fffdf8;
  --border: #d7d1c6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, var(--bg-1), var(--bg-2));
  min-height: 100vh;
}

.container {
  width: min(1000px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 5rem 0 4rem;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0.75rem 0 0.5rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
}

.subtitle {
  max-width: 60ch;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

button,
.actions a {
  border: 0;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-weight: 600;
  text-decoration: none;
}

button {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: background 180ms ease;
}

button:hover {
  background: var(--accent-strong);
}

.actions a {
  color: var(--accent-strong);
  border: 1px solid var(--border);
  background: #fff;
}

.status {
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 3rem;
}

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

.card h2 {
  margin-top: 0;
  font-size: 1.05rem;
}

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

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 0 2rem;
  color: var(--muted);
}

@media (max-width: 800px) {
  .features {
    grid-template-columns: 1fr;
  }
}
