:root {
  --bg: #12101f;
  --card: #1c1930;
  --text: #e8e5f5;
  --muted: #9a94b8;
  --accent: #8b7ff5;
  --accent-strong: #5b4fe9;
  --border: #2e2a48;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 40px 24px 80px; }
header.site { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; }
header.site a { color: var(--text); text-decoration: none; font-weight: 800; font-size: 1.15rem; }
header.site nav { margin-left: auto; display: flex; gap: 20px; }
header.site nav a { color: var(--muted); font-weight: 500; font-size: 0.95rem; }
header.site nav a:hover { color: var(--accent); }
.logo-dot {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent-strong), #9c4dff);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
h1 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.tagline { color: var(--muted); font-size: 1.1rem; margin-bottom: 32px; }
h2 { font-size: 1.25rem; font-weight: 700; margin: 36px 0 10px; color: var(--accent); }
p { margin-bottom: 14px; }
ul { margin: 0 0 14px 22px; }
li { margin-bottom: 6px; }
a { color: var(--accent); }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 22px; margin-bottom: 16px;
}
.card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.card p { color: var(--muted); margin-bottom: 0; }
.btn {
  display: inline-block; background: var(--accent-strong); color: #fff;
  padding: 12px 24px; border-radius: 12px; text-decoration: none;
  font-weight: 700; margin-top: 8px;
}
.btn:hover { filter: brightness(1.1); }
footer { margin-top: 64px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.9rem; }
footer a { color: var(--muted); }
.meta { color: var(--muted); font-size: 0.95rem; }
