@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../assets/fonts/open-sans/open-sans-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../assets/fonts/open-sans/open-sans-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../assets/fonts/open-sans/open-sans-700.woff2') format('woff2');
}

:root {
    color-scheme: dark;
    --policy-red: #e24f43;
    --policy-red-dark: #c63d33;
    --policy-ink: #151515;
    --policy-surface: #202020;
    --policy-text: #e8e8e8;
    --policy-muted: #bdbdbd;
    --policy-border: rgba(255, 255, 255, 0.14);
}

* { box-sizing: border-box; }

html { background: var(--policy-ink); }

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 14% -4%, rgba(226, 79, 67, 0.22), transparent 35rem),
        var(--policy-ink);
    color: var(--policy-text);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.policy-header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(12, 12, 12, 0.94);
    border-bottom: 1px solid var(--policy-border);
    backdrop-filter: blur(12px);
}

.policy-header__inner,
.policy-page {
    width: min(100% - 40px, 860px);
    margin: 0 auto;
}

.policy-header__inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.policy-brand,
.policy-back,
.policy-page a {
    color: var(--policy-red);
    text-decoration: none;
}

.policy-brand {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.055em;
}

.policy-back {
    font-size: 13px;
    font-weight: 600;
}

.policy-brand:hover,
.policy-brand:focus-visible,
.policy-back:hover,
.policy-back:focus-visible,
.policy-page a:hover,
.policy-page a:focus-visible {
    color: #fff;
}

.policy-page {
    padding: 72px 0 88px;
}

.policy-eyebrow {
    margin: 0 0 12px;
    color: var(--policy-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.policy-page h1 {
    margin: 0;
    font-size: clamp(32px, 6vw, 48px);
    line-height: 1.15;
}

.policy-meta {
    margin: 14px 0 40px;
    color: var(--policy-muted);
    font-size: 14px;
}

.policy-content {
    padding: clamp(24px, 5vw, 46px);
    background: rgba(32, 32, 32, 0.94);
    border: 1px solid var(--policy-border);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}

.policy-content h2 {
    margin: 38px 0 14px;
    color: #fff;
    font-size: 21px;
    line-height: 1.35;
}

.policy-content h2:first-child { margin-top: 0; }

.policy-content p,
.policy-content ul {
    margin: 0 0 18px;
}

.policy-content ul { padding-left: 1.35em; }
.policy-content li + li { margin-top: 8px; }
.policy-content strong { color: #fff; }

.policy-contact {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--policy-border);
}

@media (max-width: 560px) {
    .policy-header__inner,
    .policy-page { width: min(100% - 28px, 860px); }
    .policy-header__inner { min-height: 60px; }
    .policy-page { padding: 44px 0 56px; }
    .policy-content { padding: 24px 20px; border-radius: 14px; }
}
