@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    --bg: #08070b;
    --surface: #0f0e14;
    --surface-raised: #15131c;
    --border: #24202f;
    --text: #c8c0b8;
    --text-bright: #eee7df;
    --text-dim: #81776f;
    --amber: #d0a755;
    --amber-soft: rgba(208, 167, 85, 0.11);
    --max-width: 820px;
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% -20%, rgba(208, 167, 85, 0.09), transparent 42%),
        var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

a {
    color: var(--amber);
    text-underline-offset: 3px;
}

a:hover {
    color: var(--text-bright);
}

.shell {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
}

.site-header {
    border-bottom: 1px solid var(--border);
    background: rgba(8, 7, 11, 0.88);
    backdrop-filter: blur(16px);
}

.site-header .shell {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    color: var(--text-bright);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.brand span {
    color: var(--amber);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.82rem;
}

.site-nav a {
    color: var(--text-dim);
    text-decoration: none;
}

.site-nav a[aria-current='page'],
.site-nav a:hover {
    color: var(--text-bright);
}

.hero {
    padding: 78px 0 38px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--amber);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    color: var(--text-bright);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.25;
}

h1 {
    margin: 0;
    font-size: clamp(2rem, 7vw, 3.4rem);
    letter-spacing: -0.035em;
}

.updated {
    margin: 14px 0 0;
    color: var(--text-dim);
    font-size: 0.82rem;
}

.summary {
    margin: 30px 0 0;
    max-width: 700px;
    color: var(--text);
    font-size: 1.02rem;
}

.legal-card {
    margin-bottom: 72px;
    padding: clamp(24px, 5vw, 44px);
    border: 1px solid var(--border);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(21, 19, 28, 0.96), rgba(15, 14, 20, 0.96));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.legal-card section + section {
    margin-top: 42px;
    padding-top: 34px;
    border-top: 1px solid var(--border);
}

h2 {
    margin: 0 0 14px;
    font-size: 1.35rem;
    letter-spacing: -0.015em;
}

h3 {
    margin: 24px 0 8px;
    font-size: 1rem;
}

p {
    margin: 0 0 15px;
}

ul {
    margin: 12px 0 0;
    padding-left: 22px;
}

li + li {
    margin-top: 9px;
}

strong {
    color: var(--text-bright);
    font-weight: 600;
}

.brand-scope {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 20px 0 6px;
    padding: 0;
    list-style: none;
}

.brand-scope li {
    margin: 0;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.018);
    color: var(--text-bright);
    font-size: 0.9rem;
}

.notice {
    margin: 22px 0;
    padding: 16px 18px;
    border-left: 3px solid var(--amber);
    border-radius: 0 8px 8px 0;
    background: var(--amber-soft);
}

.notice p:last-child,
.legal-card section p:last-child {
    margin-bottom: 0;
}

.contact-block {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.018);
}

.site-footer {
    padding: 30px 0 42px;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.75rem;
}

.site-footer .shell {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
}

@media (max-width: 640px) {
    .shell {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .site-header .shell {
        min-height: 64px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 13px 0;
        gap: 5px;
    }

    .site-nav {
        gap: 14px;
    }

    .hero {
        padding-top: 54px;
    }

    .brand-scope {
        grid-template-columns: 1fr;
    }

    .site-footer .shell {
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media print {
    body {
        background: #fff;
        color: #222;
    }

    .site-header,
    .site-footer {
        display: none;
    }

    .legal-card {
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    h1,
    h2,
    h3,
    strong {
        color: #111;
    }
}
