:root {
    --bg-deep: #050505;
    --bg-card: #0a0a0a;
    --border: #1a1a1a;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --text-muted: #606060;
    --hq-orange: #ff6b35;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    padding: 24px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 0;
}

.back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 48px;
    transition: color 0.2s;
}

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

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.updated {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--hq-orange);
}

p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

ul {
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 24px;
}

li { margin-bottom: 8px; }

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

.footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-tag {
    font-family: 'JetBrains Mono', monospace;
    color: var(--hq-orange);
}
