/* SafeRedact Base CSS — canonical resets for all subpages */
/* Source of truth: index.html inline styles */

* { box-sizing: border-box; }

body {
    background: #ffffff;
    color: #0f172a;
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Nav button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: #111;
    color: white;
}

.btn-primary:hover {
    background: #222;
    transform: translateY(-1px);
}

/* Footer resets — prevent any page-specific styles from bleeding in */
footer ul { list-style: none !important; margin: 0 !important; padding: 0 !important; }
footer li { margin: 0 !important; }
footer a { color: inherit !important; text-decoration: none !important; }
footer a:hover { color: white !important; }

/* Responsive nav */
@media (max-width: 768px) {
    .desktop-nav { display: none !important; }
}
