:root {
  --bg: #0f0f12;
  --card: #1a1a22;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --accent: #f97316;
  --border: #2a2a35;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  padding: 1.5rem 1rem 3rem;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
}

.back {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

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

h1 {
  font-size: 1.85rem;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

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

section {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

section:last-child {
  border-bottom: none;
}

h2 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

p, li {
  color: #d4d4d8;
}

ul {
  padding-left: 1.25rem;
}

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

strong {
  color: var(--text);
}
