:root {
  --bg: #06080c;
  --surface: #0e1218;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f0f4f8;
  --muted: #8b9cb3;
  --accent: #22c55e;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.logo a {
  color: var(--text);
  text-decoration: none;
}

.logo span { color: var(--accent); }

.back {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.back:hover { color: var(--text); }

h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
}

.content h2 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 28px 0 10px;
}

.content h2:first-child { margin-top: 0; }

.content p,
.content li {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.content ul {
  padding-left: 1.25rem;
  margin-bottom: 12px;
}

.content li { margin-bottom: 6px; }

.content a {
  color: var(--accent);
}

footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover { color: var(--text); }