/* NÜMO legal pages — shared styles. Inherits Manrope + cobre palette from
   the main site so navigating to a legal page never feels like a context
   switch. Mobile-first, single column, generous reading width. */
:root {
    --bg: #07060a;
    --bg-1: #0f0d12;
    --ink: #f4ece4;
    --ink-soft: #c8bdb1;
    --ink-mute: #8e827a;
    --accent: #c5704d;
    --accent-hot: #d88a63;
    --line: rgba(255, 255, 255, .07);
}
* { box-sizing: border-box; }
html, body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Manrope", system-ui, sans-serif;
    line-height: 1.65;
}
.legal-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(7, 6, 10, .85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.legal-nav .brand { display: inline-flex; align-items: center; }
.legal-nav .brand__logo { display: block; height: 28px; width: auto; }
.legal-nav__back {
    color: var(--accent);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-decoration: none;
    font-weight: 600;
}
.legal-nav__back:hover { opacity: 0.85; }

.legal {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 22px 80px;
}
.legal__eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin: 0 0 10px;
}
.legal h1 {
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 800;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.legal__updated {
    font-size: 12px;
    color: var(--ink-mute);
    margin: 0 0 32px;
    letter-spacing: 0.04em;
}
.legal h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 36px 0 10px;
    color: var(--ink);
}
.legal h2:first-of-type { margin-top: 12px; }
.legal p,
.legal li {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
}
.legal p { margin: 0 0 14px; }
.legal ul {
    margin: 0 0 18px;
    padding-left: 20px;
}
.legal ul li { margin-bottom: 6px; }
.legal a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal a:hover { color: var(--accent-hot); }
.legal strong { color: var(--ink); font-weight: 700; }
.legal code {
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 13px;
    background: var(--bg-1);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--ink);
}
.legal .legal__footer {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    text-align: center;
}
.legal .legal__footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.legal .legal__footer-links a {
    text-decoration: none;
    font-size: 13px;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
}
.legal .legal__footer-links a:hover { color: var(--accent); }
.legal .legal__footer-copy {
    margin: 18px 0 0;
    font-size: 11px;
    color: var(--ink-mute);
}

@media (min-width: 720px) {
    .legal-nav { padding: 16px 32px; }
    .legal-nav .brand__logo { height: 32px; }
    .legal { padding: 64px 32px 100px; }
}
