:root {
  --bg: #0c0e10;
  --surface: #16191c;
  --surface-2: #1c2024;
  --border: #262b30;
  --text: #e8e9ea;
  --muted: #8b9198;
  --faint: #4a5157;
  --accent: #e8b84b;
  --accent-dim: #7a6531;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}
header {
  text-align: center;
  margin-bottom: 40px;
}
h1 {
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin: 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 760px;
}
a.card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
a.card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-1px);
}
.card .icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}
.card .name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.card .desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
footer {
  margin-top: 40px;
  font-size: 12px;
  color: var(--faint);
}
