:root {
    --bg: #0f1115;
    --panel: #161a22;
    --text: #e6e8ee;
    --muted: #9aa3b2;
    --accent: #c7a75f;
    --border: #242a36;
}

* { box-sizing: border-box; }

html, body {
    height: 100%;
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.access-wrapper {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.access-panel {
    width: 100%;
    max-width: 720px;
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 48px;
}

.access-panel h1 {
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.subtitle {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 32px 0;
}

.policy p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.6;
}

.clearance h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.clearance ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clearance li {
    font-size: 13px;
    color: var(--muted);
    padding: 6px 0;
}

.actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--border);
}

.btn.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

.btn.secondary {
    background: transparent;
    color: var(--text);
}

.footer {
    margin-top: 32px;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
}
