:root {
    --bg: #0b0f14;
    --panel: #101822;
    --panel-2: #0f1620;
    --text: #e7eef7;
    --muted: #a9b6c6;
    --border: rgba(255, 255, 255, .10);
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, .25);
    --radius: 16px;
    --radius-sm: 12px;

    --accent: #55d6ff;

    --accent-2: #59f1b2;

    --danger: #ff6b6b;
    --warning: #ffd166;

    --focus: 0 0 0 3px rgba(85, 214, 255, .35);

    --max: 1120px;
    --headerH: 72px;

    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Inter", Arial, sans-serif;
    background: radial-gradient(1200px 800px at 15% 0%, rgba(85, 214, 255, .12), transparent 60%),
        radial-gradient(900px 700px at 90% 10%, rgba(89, 241, 178, .10), transparent 55%),
        var(--bg);
    color: var(--text);
    line-height: 1.55;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(var(--max), calc(100% - 2rem));
    margin-inline: auto;
}

.section {
    padding: clamp(2.25rem, 5vw, 4rem) 0;
}

.section-head {
    display: grid;
    gap: .5rem;
    margin-bottom: 1.25rem;
}

h1,
h2,
h3 {
    line-height: 1.15;
    margin: 0;
}

h1 {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
}

h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
}

.h3 {
    font-size: 1.35rem;
}

.h4 {
    font-size: 1.05rem;
}

.muted {
    color: var(--muted);
}

.fineprint {
    color: var(--muted);
    font-size: .92rem;
    margin: .25rem 0 0;
}

.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: .75rem;
    padding: .6rem .8rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 999px;
    z-index: 9999;
}

.skip-link:focus {
    left: .75rem;
    outline: none;
    box-shadow: var(--focus);
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(11, 15, 20, .72);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    height: var(--headerH);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .35rem .2rem;
    border-radius: 12px;
}

.brand-link:focus {
    outline: none;
    box-shadow: var(--focus);
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(85, 214, 255, .18), rgba(89, 241, 178, .12));
    border: 1px solid var(--border);
}

.brand-text {
    font-weight: 750;
    letter-spacing: .2px;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(16, 24, 34, .5);
    cursor: pointer;
}

.nav-toggle:focus {
    outline: none;
    box-shadow: var(--focus);
}

.nav-toggle-icon {
    width: 20px;
    height: 14px;
    position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after,
.nav-toggle-icon span {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--text);
    border-radius: 99px;
}

.nav-toggle-icon::before {
    top: 0;
}

.nav-toggle-icon::after {
    bottom: 0;
}

.nav-toggle-icon span {
    top: 6px;
}

.site-nav {
    position: fixed;
    inset: var(--headerH) 0 auto 0;
    background: rgba(11, 15, 20, .94);
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.site-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: .75rem 1rem 1.25rem;
    display: grid;
    gap: .25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: .85rem .85rem;
    border-radius: 14px;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: rgba(16, 24, 34, .5);
    text-decoration: none;
}

.nav-link:focus {
    outline: none;
    box-shadow: var(--focus);
    border-color: rgba(85, 214, 255, .25);
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        inset: auto;
        background: transparent;
        border: 0;
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list {
        padding: 0;
        display: flex;
        gap: .25rem;
        align-items: center;
    }

    .nav-link {
        padding: .55rem .7rem;
    }
}


.btn {
    border: 1px solid var(--border);
    background: rgba(16, 24, 34, .55);
    color: var(--text);
    padding: .78rem 1rem;
    border-radius: 999px;
    display: inline-flex;
    gap: .55rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    font-weight: 650;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(255, 255, 255, .16);
}

.btn:active {
    transform: translateY(0);
}

.btn:focus {
    outline: none;
    box-shadow: var(--focus);
}

.btn-primary {
    background: linear-gradient(135deg, rgba(85, 214, 255, .18), rgba(89, 241, 178, .16));
    border-color: rgba(85, 214, 255, .22);
}

.btn-primary:hover {
    border-color: rgba(85, 214, 255, .35);
}

.btn-secondary {
    background: rgba(16, 24, 34, .45);
}

.btn-ghost {
    background: transparent;
}

.btn-lg {
    padding: .92rem 1.05rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .35rem .6rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(16, 24, 34, .52);
    font-weight: 650;
    font-size: .92rem;
}

.badge-accent {
    border-color: rgba(85, 214, 255, .22);
}

.badge-safe {
    border-color: rgba(89, 241, 178, .22);
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: .25rem .55rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-weight: 700;
    font-size: .9rem;
}

.pill-on {
    border-color: rgba(89, 241, 178, .26);
    background: rgba(89, 241, 178, .08);
}


.card {
    border: 1px solid var(--border);
    background: rgba(16, 24, 34, .52);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
}

.card.soft {
    background: rgba(16, 24, 34, .42);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
}

.bullets,
.keyvals,
.footer-links,
.checklist {
    margin: .7rem 0 0;
    padding-left: 1.1rem;
}

.bullets li,
.checklist li {
    margin: .35rem 0;
}

.keyvals {
    list-style: none;
    padding: 0;
}

.keyvals li {
    display: flex;
    gap: .6rem;
    justify-content: space-between;
    border-top: 1px dashed rgba(255, 255, 255, .10);
    padding: .55rem 0;
}

.keyvals li:first-child {
    border-top: 0;
    padding-top: 0;
}

.keyvals .k {
    color: var(--muted);
}

.keyvals .v {
    font-weight: 700;
}


.hero {
    padding-top: calc(clamp(2.25rem, 5vw, 4rem) + .75rem);
}

.hero-grid {
    display: grid;
    gap: 1.25rem;
}

.hero-content {
    display: grid;
    gap: 1rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.subtitle {
    margin: 0;
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 62ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.legal-note {
    margin: 0;
    font-size: .95rem;
    color: rgba(231, 238, 247, .86);
}

.hero-card {
    border: 1px solid var(--border);
    background: rgba(16, 24, 34, .42);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem;
}

.disclaimer-box {
    margin-top: .85rem;
    padding: .75rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    margin: .55rem 0;
}

.checklist i {
    color: var(--accent-2);
    margin-top: .15rem;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1.2fr .8fr;
        align-items: start;
    }
}


.featured-card {
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, rgba(16, 24, 34, .58), rgba(16, 24, 34, .36));
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.featured-top {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.featured-logo-wrap {
    display: grid;
    gap: .75rem;
    align-content: start;
}

.featured-logo {
    width: 220px;
    max-width: 100%;
    height: auto;
    padding: 5px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(16, 24, 34, .55);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.tag {
    display: inline-flex;
    gap: .45rem;
    align-items: center;
    padding: .3rem .6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    font-weight: 750;
    font-size: .92rem;
}

.tag-reco {
    border-color: rgba(255, 209, 102, .25);
}

.tag-geo {
    border-color: rgba(85, 214, 255, .22);
}

.featured-summary {
    display: grid;
    gap: .85rem;
}

.rating-wrap {
    display: grid;
    gap: .25rem;
}

.rating-score {
    font-weight: 850;
    font-size: 2rem;
    letter-spacing: .2px;
}

.stars {
    display: inline-flex;
    gap: .2rem;
}

.star {
    color: rgba(255, 255, 255, .18);
}

.star.on {
    color: var(--warning);
}

.featured-grid {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
}

.featured-foot {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, .18);
    border-top: 1px solid rgba(255, 255, 255, .10);
    color: var(--muted);
}

.featured-foot i {
    margin-top: .15rem;
    color: var(--accent);
}

@media (min-width: 1024px) {
    .featured-top {
        grid-template-columns: .45fr .55fr;
        align-items: start;
    }

    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.table-wrap {
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius);
    background: rgba(16, 24, 34, .38);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .75rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.table th,
.table td {
    text-align: left;
    padding: .85rem .75rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    vertical-align: top;
}

.table th {
    background: rgba(0, 0, 0, .18);
    color: rgba(231, 238, 247, .92);
    font-size: .95rem;
    position: sticky;
    top: 0;
}

.table td {
    color: rgba(231, 238, 247, .92);
}

.table tr:hover td {
    background: rgba(255, 255, 255, .02);
}

.link-out {
    display: inline-flex;
    gap: .45rem;
    align-items: center;
    font-weight: 750;
    color: var(--accent);
}

.link-out:focus {
    outline: none;
    box-shadow: var(--focus);
    border-radius: 10px;
}

@media (max-width: 767px) {
    .table thead {
        display: none;
    }

    .table,
    .table tbody,
    .table tr,
    .table td {
        display: block;
        width: 100%;
    }

    .table tr {
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: var(--radius);
        overflow: hidden;
        margin-bottom: .9rem;
        background: rgba(0, 0, 0, .10);
    }

    .table td {
        display: grid;
        grid-template-columns: 1fr;
        gap: .25rem;
        border-bottom: 1px dashed rgba(255, 255, 255, .10);
    }

    .table td::before {
        content: attr(data-label);
        color: var(--muted);
        font-weight: 700;
        font-size: .92rem;
    }

    .table td:last-child {
        border-bottom: 0;
    }
}


.method-grid {
    display: grid;
    gap: 1rem;
}

.method-card {
    position: relative;
}

.method-top {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}

.method-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: var(--accent);
}

.method-weight {
    margin-left: auto;
    font-weight: 850;
    color: rgba(231, 238, 247, .92);
}

.steps {
    margin-top: 1.25rem;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(16, 24, 34, .38);
    border-radius: var(--radius);
    padding: 1rem;
}

.steps-list {
    margin: .6rem 0 0;
    padding-left: 1.1rem;
    color: rgba(231, 238, 247, .92);
}

.steps-list li {
    margin: .5rem 0;
    display: flex;
    gap: .6rem;
    align-items: flex-start;
}

.steps-list i {
    color: var(--accent-2);
    margin-top: .18rem;
}

@media (min-width: 768px) {
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .method-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.guides-grid {
    display: grid;
    gap: 1rem;
}

.guide-card {
    display: grid;
    gap: .7rem;
}

.guide-head {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}

.guide-ic {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: var(--accent-2);
}

@media (min-width: 768px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .guides-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.accordion {
    display: grid;
    gap: .75rem;
}

.acc-item {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(16, 24, 34, .38);
    border-radius: var(--radius);
    overflow: hidden;
}

.acc-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    color: var(--text);
    padding: 1rem 1rem;
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    cursor: pointer;
}

.acc-btn:hover {
    background: rgba(255, 255, 255, .03);
}

.acc-btn:focus {
    outline: none;
    box-shadow: var(--focus);
}

.acc-q {
    font-weight: 800;
    flex: 1;
}

.acc-icon {
    margin-top: .2rem;
    color: var(--accent);
}

.acc-panel {
    padding: 0 1rem 1rem;
    color: rgba(231, 238, 247, .92);
}

.acc-panel[hidden] {
    display: none;
}


.responsible {
    background: radial-gradient(900px 600px at 10% 0%, rgba(255, 107, 107, .10), transparent 55%),
        rgba(0, 0, 0, .08);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.responsible-grid {
    display: grid;
    gap: 1rem;
}

.risk-cards {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.inline-links {
    list-style: none;
    padding: 0;
    margin: .75rem 0 0;
    display: grid;
    gap: .35rem;
}

.inline-links li {
    display: flex;
    gap: .6rem;
    align-items: center;
    color: rgba(231, 238, 247, .92);
}

.inline-links i {
    color: var(--warning);
}

.big-18 {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(16, 24, 34, .45);
    box-shadow: var(--shadow);
    padding: 1rem;
    position: sticky;
    top: calc(var(--headerH) + 1rem);
}

.big-18-top {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: .75rem;
}

.aside-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: .75rem;
}

@media (min-width: 1024px) {
    .responsible-grid {
        grid-template-columns: 1.35fr .65fr;
        align-items: start;
    }

    .risk-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}


.site-footer {
    border-top: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .14);
}

.footer-grid {
    display: grid;
    gap: 1.25rem;
    padding: 2rem 0 1.25rem;
}

.footer-col .h4 {
    margin-bottom: .5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: .5rem 0 0;
    display: grid;
    gap: .4rem;
}

.footer-links a {
    color: rgba(231, 238, 247, .92);
    padding: .2rem 0;
}

.footer-links a:focus {
    outline: none;
    box-shadow: var(--focus);
    border-radius: 10px;
}

.social {
    display: flex;
    gap: .5rem;
    margin-top: .75rem;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(16, 24, 34, .45);
}

.social-btn:hover {
    text-decoration: none;
}

.social-btn:focus {
    outline: none;
    box-shadow: var(--focus);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 1rem 0 1.5rem;
    display: grid;
    text-align: center;
    gap: .35rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr 1fr;
    }
}


.modal {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    z-index: 80;
}

.modal.open {
    display: grid;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}

.modal-panel {
    position: relative;
    width: min(760px, calc(100% - 2rem));
    max-height: calc(100dvh - 2rem);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(16, 24, 34, .92);
    box-shadow: var(--shadow);
}

.modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: 1rem 1rem .75rem;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.modal-body {
    padding: 1rem;
    color: rgba(231, 238, 247, .92);
}

.modal-body p {
    margin: .65rem 0;
}

.modal-foot {
    padding: .75rem 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, .10);
    display: flex;
    justify-content: flex-end;
    gap: .6rem;
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .10);
    color: var(--text);
    cursor: pointer;
}

.icon-btn:focus {
    outline: none;
    box-shadow: var(--focus);
}


.overlay {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    z-index: 90;
    background: rgba(0, 0, 0, .72);
    padding: 1rem;
}

.overlay.open {
    display: grid;
}

.overlay-panel {
    width: min(560px, 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(16, 24, 34, .92);
    box-shadow: var(--shadow);
    padding: 1.25rem;
    display: grid;
    gap: .75rem;
}

.overlay-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.overlay-badge {
    display: flex;
    justify-content: flex-start;
}

.blocked {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    z-index: 95;
    background: rgba(0, 0, 0, .88);
    padding: 1rem;
}

.blocked.open {
    display: grid;
}

.blocked-panel {
    width: min(520px, 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(16, 24, 34, .92);
    box-shadow: var(--shadow);
    padding: 1.25rem;
    display: grid;
    gap: .75rem;
}

.blocked-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}


.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: none;
    padding: 1rem;
}

.cookie-banner.open {
    display: block;
}

.cookie-inner {
    width: min(var(--max), calc(100% - 0rem));
    margin-inline: auto;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(16, 24, 34, .92);
    box-shadow: var(--shadow);
    padding: 1rem;
    display: grid;
    gap: .75rem;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.toggle-list {
    display: grid;
    gap: .85rem;
    margin-top: .75rem;
}

.toggle-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: .85rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .10);
}


.switch {
    position: relative;
    width: 54px;
    height: 32px;
    display: inline-block;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: background .15s ease, border-color .15s ease;
}

.slider::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 999px;
    background: rgba(231, 238, 247, .9);
    transition: transform .15s ease;
}

.switch input:checked+.slider {
    background: rgba(89, 241, 178, .16);
    border-color: rgba(89, 241, 178, .22);
}

.switch input:checked+.slider::before {
    transform: translate(22px, -50%);
}

.switch input:focus+.slider {
    box-shadow: var(--focus);
}

.logo-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    max-width: 1120px;
    margin: 25px auto;
    justify-content: center;
}

.logo-footer a {
    height: 48px;

}

.logo-footer a img {
    height: 100%;
    object-fit: contain;
}


.policy-layout {
    display: grid;
    gap: 1rem;
}

.policy-toc-card {
    padding: 1rem;
}

.policy-toc-list {
    margin: .75rem 0 0;
    padding-left: 1.15rem;
    display: grid;
    gap: .35rem;
}

.policy-toc a {
    color: rgba(231, 238, 247, .92);
    text-decoration: none;
    padding: .2rem .15rem;
    border-radius: 10px;
    display: inline-block;
}

.policy-toc a:hover {
    text-decoration: underline;
}

.policy-toc a:focus {
    outline: none;
    box-shadow: var(--focus);
}

.policy-toc-note {
    margin-top: .85rem;
    padding: .75rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    color: var(--muted);
}

.policy-toc-note i {
    color: var(--accent);
    margin-top: .15rem;
}

.policy-content {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(16, 24, 34, .38);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
}

.policy-content h3 {
    margin-top: 1.1rem;
    scroll-margin-top: calc(var(--headerH) + 18px);
    font-size: 1.15rem;
}

.policy-content p {
    margin: .7rem 0;
    color: rgba(231, 238, 247, .92);
    max-width: 78ch;
}

.policy-content .bullets {
    max-width: 78ch;
}

.policy-callout {
    padding: .9rem;
    border-radius: var(--radius);
    border: 1px solid rgba(85, 214, 255, .18);
    background: linear-gradient(135deg, rgba(85, 214, 255, .10), rgba(89, 241, 178, .07));
    margin-bottom: .9rem;
}

.policy-callout p {
    margin: .45rem 0 0;
}

.policy-divider {
    margin: 1rem 0;
    height: 1px;
    background: rgba(255, 255, 255, .10);
}

.policy-small {
    font-size: .92rem;
    display: flex;
    gap: .6rem;
    align-items: flex-start;
}

.policy-small i {
    color: var(--accent);
    margin-top: .15rem;
}

@media (min-width: 1024px) {
    .policy-layout {
        grid-template-columns: .85fr 2.15fr;
        align-items: start;
    }

    .policy-toc {
        position: sticky;
        top: calc(var(--headerH) + 1rem);
        height: fit-content;
    }
}


.terms-layout {
    display: grid;
    gap: 1rem;
}

.terms-toc-card {
    padding: 1rem;
}

.terms-toc-list {
    margin: .75rem 0 0;
    padding-left: 1.15rem;
    display: grid;
    gap: .35rem;
}

.terms-toc a {
    color: rgba(231, 238, 247, .92);
    text-decoration: none;
    padding: .2rem .15rem;
    border-radius: 10px;
    display: inline-block;
}

.terms-toc a:hover {
    text-decoration: underline;
}

.terms-toc a:focus {
    outline: none;
    box-shadow: var(--focus);
}

.terms-toc-note {
    margin-top: .85rem;
    padding: .75rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    color: var(--muted);
}

.terms-toc-note i {
    color: var(--accent);
    margin-top: .15rem;
}

.terms-content {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(16, 24, 34, .38);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
}

.terms-content h3 {
    margin-top: 1.1rem;
    scroll-margin-top: calc(var(--headerH) + 18px);
    font-size: 1.15rem;
}

.terms-content p {
    margin: .7rem 0;
    color: rgba(231, 238, 247, .92);
    max-width: 78ch;
}

.terms-content .bullets {
    max-width: 78ch;
}

.terms-callout {
    padding: .9rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 209, 102, .18);
    background: linear-gradient(135deg, rgba(255, 209, 102, .09), rgba(85, 214, 255, .06));
    margin-bottom: .9rem;
}

.terms-callout p {
    margin: .45rem 0 0;
}

.terms-divider {
    margin: 1rem 0;
    height: 1px;
    background: rgba(255, 255, 255, .10);
}

.terms-small {
    font-size: .92rem;
    display: flex;
    gap: .6rem;
    align-items: flex-start;
}

.terms-small i {
    color: var(--accent);
    margin-top: .15rem;
}

@media (min-width: 1024px) {
    .terms-layout {
        grid-template-columns: .85fr 2.15fr;
        align-items: start;
    }

    .terms-toc {
        position: sticky;
        top: calc(var(--headerH) + 1rem);
        height: fit-content;
    }
}


.cookies-layout {
    display: grid;
    gap: 1rem;
}

.cookies-toc-card {
    padding: 1rem;
}

.cookies-toc-list {
    margin: .75rem 0 0;
    padding-left: 1.15rem;
    display: grid;
    gap: .35rem;
}

.cookies-toc a {
    color: rgba(231, 238, 247, .92);
    text-decoration: none;
    padding: .2rem .15rem;
    border-radius: 10px;
    display: inline-block;
}

.cookies-toc a:hover {
    text-decoration: underline;
}

.cookies-toc a:focus {
    outline: none;
    box-shadow: var(--focus);
}

.cookies-toc-note {
    margin-top: .85rem;
    padding: .75rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    color: var(--muted);
}

.cookies-toc-note i {
    color: var(--accent);
    margin-top: .15rem;
}

.cookies-content {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(16, 24, 34, .38);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
}

.cookies-content h3 {
    margin-top: 1.1rem;
    scroll-margin-top: calc(var(--headerH) + 18px);
    font-size: 1.15rem;
}

.cookies-content p {
    margin: .7rem 0;
    color: rgba(231, 238, 247, .92);
    max-width: 78ch;
}

.cookies-callout {
    padding: .9rem;
    border-radius: var(--radius);
    border: 1px solid rgba(89, 241, 178, .18);
    background: linear-gradient(135deg, rgba(89, 241, 178, .09), rgba(85, 214, 255, .06));
    margin-bottom: .9rem;
}

.cookies-callout p {
    margin: .45rem 0 0;
}

.cookies-actions-inline {
    margin-top: .75rem;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.cookies-cards {
    display: grid;
    gap: 1rem;
    margin: .85rem 0 .25rem;
}

.cookies-cards .card h4 {
    margin: 0;
}

.cookies-cards .card i {
    color: var(--accent);
}

.cookies-steps {
    margin-top: .9rem;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .10);
    border-radius: var(--radius);
    padding: .9rem;
}

.cookies-divider {
    margin: 1rem 0;
    height: 1px;
    background: rgba(255, 255, 255, .10);
}

.cookies-small {
    font-size: .92rem;
    display: flex;
    gap: .6rem;
    align-items: flex-start;
}

.cookies-small i {
    color: var(--accent);
    margin-top: .15rem;
}

@media (min-width: 768px) {
    .cookies-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .cookies-layout {
        grid-template-columns: .85fr 2.15fr;
        align-items: start;
    }

    .cookies-toc {
        position: sticky;
        top: calc(var(--headerH) + 1rem);
        height: fit-content;
    }
}
 
.rg-layout {
    display: grid;
    gap: 1rem;
}

.rg-toc-card {
    padding: 1rem;
}

.rg-toc-list {
    margin: .75rem 0 0;
    padding-left: 1.15rem;
    display: grid;
    gap: .35rem;
}

.rg-toc a {
    color: rgba(231, 238, 247, .92);
    text-decoration: none;
    padding: .2rem .15rem;
    border-radius: 10px;
    display: inline-block;
}

.rg-toc a:hover {
    text-decoration: underline;
}

.rg-toc a:focus {
    outline: none;
    box-shadow: var(--focus);
}

.rg-toc-note {
    margin-top: .85rem;
    padding: .75rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    color: var(--muted);
}

.rg-toc-note i {
    color: var(--accent);
    margin-top: .15rem;
}

.rg-18 {
    margin-top: .85rem;
    padding: .75rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(89, 241, 178, .18);
    background: linear-gradient(135deg, rgba(89, 241, 178, .08), rgba(0, 0, 0, .06));
}

.rg-18 p {
    margin: .45rem 0 0;
}

.rg-content {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(16, 24, 34, .38);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
}

.rg-content h3 {
    margin-top: 1.1rem;
    scroll-margin-top: calc(var(--headerH) + 18px);
    font-size: 1.15rem;
}

.rg-content p {
    margin: .7rem 0;
    color: rgba(231, 238, 247, .92);
    max-width: 78ch;
}

.rg-callout {
    padding: .9rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 107, 107, .18);
    background: radial-gradient(900px 600px at 10% 0%, rgba(255, 107, 107, .10), transparent 55%),
        linear-gradient(135deg, rgba(255, 107, 107, .06), rgba(85, 214, 255, .05));
    margin-bottom: .9rem;
}

.rg-callout p {
    margin: .45rem 0 0;
}

.rg-cards {
    display: grid;
    gap: 1rem;
    margin: .85rem 0 .25rem;
}

.rg-cards .card i {
    color: var(--warning);
}

.rg-grid-2 {
    display: grid;
    gap: 1rem;
    margin-top: .85rem;
}

.rg-warning {
    margin-top: 1rem;
    padding: .9rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 209, 102, .20);
    background: rgba(255, 209, 102, .06);
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}

.rg-warning i {
    color: var(--warning);
    margin-top: .2rem;
}

.rg-tools {
    display: grid;
    gap: 1rem;
    margin-top: .85rem;
}

.rg-steps {
    margin: .85rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .75rem;
    max-width: 86ch;
}

.rg-steps li {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: .85rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .10);
}

.rg-step-ic {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: var(--accent);
    flex: 0 0 auto;
}

.rg-steps p {
    margin: .35rem 0 0;
}

.rg-resources {
    display: grid;
    gap: 1rem;
    margin-top: .85rem;
}

.rg-note {
    margin-top: 1rem;
    padding: .9rem;
    border-radius: var(--radius);
    border: 1px solid rgba(85, 214, 255, .18);
    background: rgba(85, 214, 255, .06);
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}

.rg-note i {
    color: var(--accent);
    margin-top: .2rem;
}

.rg-mini-faq {
    display: grid;
    gap: .65rem;
    margin-top: .75rem;
    max-width: 86ch;
}

.rg-details {
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, .10);
    padding: .75rem .85rem;
}

.rg-details summary {
    cursor: pointer;
    font-weight: 800;
    color: rgba(231, 238, 247, .94);
}

.rg-details summary:focus {
    outline: none;
    box-shadow: var(--focus);
    border-radius: 12px;
}

.rg-details p {
    margin: .6rem 0 0;
    color: var(--muted);
}

.rg-divider {
    margin: 1rem 0;
    height: 1px;
    background: rgba(255, 255, 255, .10);
}

.rg-small {
    font-size: .92rem;
    display: flex;
    gap: .6rem;
    align-items: flex-start;
}

.rg-small i {
    color: var(--accent);
    margin-top: .15rem;
}

@media (min-width: 768px) {
    .rg-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .rg-tools {
        grid-template-columns: repeat(3, 1fr);
    }

    .rg-resources {
        grid-template-columns: repeat(3, 1fr);
    }

    .rg-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rg-layout {
        grid-template-columns: .85fr 2.15fr;
        align-items: start;
    }

    .rg-toc {
        position: sticky;
        top: calc(var(--headerH) + 1rem);
        height: fit-content;
    }
}