

:root {
    --color-bg:              #0f091a;
    --color-bg-elev:         #16102a;
    --color-bg-card:         #1a1232;
    --color-border:          #2a1d4d;
    --color-accent-violet:   #a855f7;
    --color-accent-violet-2: #6d28d9;
    --color-accent-cyan:     #22d3ee;
    --color-accent-cyan-2:   #0ea5b8;
    --color-accent-magenta:  #ec4899;
    --color-text:            #ffffff;
    --color-text-muted:      #94a3b8;
    --color-text-dim:        #64748b;
    --grad-cta:              linear-gradient(135deg, #1e40af 0%, #6d28d9 100%);
    --grad-neon:             linear-gradient(135deg, #22d3ee 0%, #a855f7 100%);
    --radius-btn:            12px;
    --radius-card:           18px;
    --shadow-neon:           0 0 0 1px rgba(168, 85, 247, .35), 0 8px 28px rgba(34, 211, 238, .15);
    --container-w:           1200px;
    --header-h:              72px;
    --type-prose-space:      1rem;
    --type-heading-space:    1.25rem;
}

* { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    min-height: 100%;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background:
        radial-gradient(1200px 600px at 80% -200px, rgba(168, 85, 247, .25), transparent 60%),
        radial-gradient(1000px 500px at -10% 10%,  rgba(34, 211, 238, .15), transparent 55%),
        var(--color-bg);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

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

a { color: var(--color-accent-cyan); text-decoration: none; transition: color .15s ease, opacity .15s ease; }
a:hover { color: var(--color-accent-violet); }

.container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 20px;
}

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--color-accent-cyan); color: #0f091a;
    padding: 8px 12px; border-radius: 6px; z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }


.site-header {
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 9, 26, .85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: var(--header-h);
}
.site-logo {
    line-height: 0;
    flex-shrink: 0;
}
.site-logo img { height: 40px; width: auto; }
.site-logo--footer img { height: 36px; }

.site-header__bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}


.site-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    max-width: min(520px, calc(100vw - 280px));
}
.nav-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 6px; flex-wrap: wrap;
}
.nav-item + .nav-item { margin-top: 0; }
.nav-item a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    color: var(--color-text);
    border-radius: 8px;
    font-weight: 500;
    transition: background-color .15s ease, color .15s ease;
}
.nav-item a:hover { background: rgba(168, 85, 247, .15); color: var(--color-accent-cyan); }
.nav-item.is-active a { color: var(--color-accent-cyan); background: rgba(34, 211, 238, .1); }

.nav-backdrop { display: none; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: var(--color-bg-elev);
    color: var(--color-text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color .15s ease, border-color .15s ease;
}
.menu-toggle:hover {
    background: var(--color-bg-card);
    border-color: var(--color-accent-violet);
}
.menu-toggle__lines {
    position: relative;
    display: block;
    width: 20px;
    height: 14px;
}
.menu-toggle__line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 1px;
    background: currentColor;
    transition: transform .22s ease, opacity .15s ease, top .22s ease;
}
.menu-toggle__line:nth-child(1) { top: 0; }
.menu-toggle__line:nth-child(2) { top: 7px; }
.menu-toggle__line:nth-child(3) { top: 14px; }
.menu-toggle.is-open .menu-toggle__line:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}
.menu-toggle.is-open .menu-toggle__line:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-open .menu-toggle__line:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

body.nav-open {
    overflow: hidden;
}

.site-cta { display: flex; gap: 10px; flex-shrink: 0; align-items: center; }


.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 18px; min-height: 42px;
    border-radius: var(--radius-btn);
    font-weight: 600; font-size: 14px; line-height: 1.2;
    text-transform: none; letter-spacing: .02em;
    cursor: pointer; user-select: none;
    transition: transform .12s ease, box-shadow .15s ease, opacity .15s ease, background-color .15s ease, color .15s ease;
    border: 1px solid transparent;
    text-decoration: none; color: var(--color-text);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
    background: var(--color-accent-cyan);
    color: #0f091a;
    box-shadow: 0 8px 22px rgba(34, 211, 238, .35);
}
.btn--primary:hover { background: #67e8f9; color: #0f091a; }

.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-accent-violet);
}
.btn--ghost:hover { background: rgba(168, 85, 247, .15); color: var(--color-text); }

.btn--lg { min-height: 52px; padding: 14px 26px; font-size: 16px; }


.breadcrumbs {
    flex-shrink: 0;
    background: #0a0613;
    border-bottom: 1px solid var(--color-border);
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-text-muted);
}
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li + li::before { content: "/"; color: var(--color-text-dim); margin-right: 6px; }
.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs a:hover { color: var(--color-accent-cyan); }
.breadcrumbs [aria-current="page"] { color: var(--color-text); }


.site-main {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    padding: 0 0 56px;
}
.page-title {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    font-weight: 700;
    margin-block: var(--type-heading-space);
    margin-inline: 0;
    background: var(--grad-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.page-title:first-child {
    margin-block-start: 0;
}

.page-content { font-size: 16px; }
.page-content :is(h1, h2, h3, h4) {
    line-height: 1.2;
    font-weight: 700;
    margin-block: var(--type-heading-space);
    margin-inline: 0;
    color: var(--color-text);
}
.page-content :is(h2, h3, h4):first-child {
    margin-block-start: 0;
}
.page-content h1 { font-size: clamp(28px, 4vw, 40px); }
.page-content h2 { font-size: clamp(22px, 2.75vw, 30px); }
.page-content h3 { font-size: clamp(18px, 2.1vw, 22px); color: var(--color-accent-cyan); }
.page-content h4 { font-size: clamp(16px, 1.65vw, 19px); }
.page-content p,
.page-content ul,
.page-content ol {
    margin: 0 0 var(--type-prose-space);
}
.page-content ul,
.page-content ol {
    padding-left: 22px;
    color: var(--color-text-muted);
}
.page-content ul li::marker { color: var(--color-accent-violet); }
.page-content p { color: var(--color-text-muted); }

.table-scroll,
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    margin: 0 0 var(--type-prose-space);
}
.table-scroll > table,
.table-responsive > table {
    width: 100%;
    min-width: max-content;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.45;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
}
.table-scroll > table thead,
.table-responsive > table thead {
    background: var(--color-bg-elev);
}
.table-scroll > table th,
.table-scroll > table td,
.table-responsive > table th,
.table-responsive > table td {
    padding: 10px 14px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--color-border);
}
.table-scroll > table thead th,
.table-responsive > table thead th {
    font-weight: 600;
    color: var(--color-text);
}
.table-scroll > table tbody td,
.table-responsive > table tbody td {
    color: var(--color-text-muted);
}
.table-scroll > table tbody tr:last-child td,
.table-responsive > table tbody tr:last-child td {
    border-bottom: none;
}

@media (min-width: 768px) {
    .table-scroll,
    .table-responsive {
        overflow-x: visible;
    }
    .table-scroll > table,
    .table-responsive > table {
        table-layout: fixed;
        min-width: 0;
        max-width: 100%;
    }
    .table-scroll > table th,
    .table-scroll > table td,
    .table-responsive > table th,
    .table-responsive > table td {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .table-scroll > table thead th:first-child,
    .table-scroll > table tbody td:first-child,
    .table-responsive > table thead th:first-child,
    .table-responsive > table tbody td:first-child {
        width: 32%;
        max-width: 40%;
    }
}



.page-hero.page-hero--spinto {
    margin: 0 0 0px;
    padding: clamp(18px, 3vw, 28px) 0 32px;
    border-bottom: 1px solid var(--color-border);
    background: linear-gradient(180deg, rgba(15, 9, 26, 0.4), transparent);
}
.page-hero--spinto__wrap {
    position: relative;
    width: 100%;
    padding: clamp(20px, 3.5vw, 32px) clamp(18px, 3vw, 32px);
    border-radius: var(--radius-card);
    background:
        linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(34, 211, 238, 0.08)),
        var(--color-bg-elev);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-neon), 0 24px 48px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}
.page-hero--spinto__glow {
    position: absolute;
    width: 140%;
    height: 60%;
    top: -35%;
    left: -20%;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.35), transparent 65%);
    pointer-events: none;
    opacity: 0.7;
}
.page-hero--spinto__center {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.page-hero--spinto__badges {
    position: relative;
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.page-hero--spinto__chip {
    position: relative;
    display: inline-block;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-border);
}
.page-hero--spinto__chip--violet {
    color: #f5e1ff;
    border-color: rgba(168, 85, 247, 0.55);
    background: rgba(168, 85, 247, 0.2);
    box-shadow: 0 0 18px rgba(168, 85, 247, 0.25);
}
.page-hero--spinto__chip--cyan {
    color: #ecfeff;
    border-color: rgba(34, 211, 238, 0.55);
    background: rgba(34, 211, 238, 0.15);
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.2);
}
.page-hero--spinto__chip--soft {
    text-transform: none;
    letter-spacing: 0.03em;
    font-weight: 700;
    font-size: 12px;
    color: var(--color-text);
    border-color: rgba(255, 255, 255, 0.12);
}
.page-hero--spinto__offer {
    position: relative;
    margin: 0 0 10px;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    background: var(--grad-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.page-hero--spinto__note {
    position: relative;
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-muted);
}
.page-hero--spinto__tiles {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 0 22px;
}
.page-hero--spinto__tile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: var(--radius-btn);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--color-text);
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--color-border);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.12);
}
.page-hero--spinto__tile--accent {
    border-color: rgba(34, 211, 238, 0.55);
    color: #ecfeff;
    background: rgba(34, 211, 238, 0.12);
    box-shadow: 0 0 22px rgba(34, 211, 238, 0.2);
}
.page-hero--spinto__cta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}
.page-hero--spinto__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 26px;
    border-radius: var(--radius-btn);
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
}
.page-hero--spinto__btn:hover {
    transform: translateY(-2px);
}
.page-hero--spinto__btn--fill {
    color: #0f091a;
    background: linear-gradient(135deg, #67e8f9, var(--color-accent-cyan));
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 12px 36px rgba(34, 211, 238, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.page-hero--spinto__btn--fill:hover {
    filter: brightness(1.05);
    box-shadow: 0 16px 44px rgba(34, 211, 238, 0.55);
}
.page-hero--spinto__btn--line {
    color: var(--color-text);
    background: rgba(26, 18, 50, 0.92);
    border: 2px solid rgba(168, 85, 247, 0.55);
    box-shadow: 0 0 28px rgba(168, 85, 247, 0.2);
}
.page-hero--spinto__btn--line:hover {
    border-color: rgba(34, 211, 238, 0.65);
    box-shadow: 0 0 32px rgba(34, 211, 238, 0.22);
    color: var(--color-accent-cyan);
}


.hero {
    margin: 8px 0 28px;
    padding: 34px 28px;
    border-radius: var(--radius-card);
    background:
        linear-gradient(135deg, rgba(168, 85, 247, .25), rgba(34, 211, 238, .12)),
        var(--color-bg-elev);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-neon);
}
.hero h1 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 var(--type-heading-space);
    color: var(--color-text);
}
.hero p {
    margin: 0 0 var(--type-prose-space);
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 16px 0; }
.card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 20px;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-2px); border-color: var(--color-accent-violet); box-shadow: var(--shadow-neon); }
.card h3 {
    margin-block-start: 0;
    margin-block-end: 10px;
    margin-inline: 0;
    font-size: clamp(17px, 1.9vw, 20px);
}


.article-toc--spinto {
    margin: 16px 0 24px;
    border-radius: var(--radius-card);
    padding: 2px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.55), rgba(34, 211, 238, 0.45));
    box-shadow: var(--shadow-neon);
}
.article-toc--spinto .article-toc__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    cursor: pointer;
    user-select: none;
    border-radius: calc(var(--radius-card) - 2px);
    background: var(--color-bg-elev);
    transition: filter .15s ease;
}
.article-toc--spinto .article-toc__summary::-webkit-details-marker {
    display: none;
}
.article-toc--spinto .article-toc__summary::marker {
    content: "";
}
.article-toc--spinto .article-toc__summary:hover {
    filter: brightness(1.06);
}
.article-toc--spinto .article-toc__summary:focus {
    outline: none;
}
.article-toc--spinto .article-toc__summary:focus-visible {
    outline: 2px solid var(--color-accent-cyan);
    outline-offset: 2px;
}
.article-toc--spinto .article-toc__title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: var(--grad-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.article-toc--spinto .article-toc__summary::after {
    content: "";
    flex-shrink: 0;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--color-accent-violet);
    transition: transform .22s ease;
    opacity: 0.9;
}
.article-toc--spinto[open] .article-toc__summary::after {
    transform: rotate(180deg);
}
.article-toc--spinto .article-toc__panel {
    margin-top: 2px;
    padding: 14px 16px 18px;
    border-radius: 0 0 calc(var(--radius-card) - 2px) calc(var(--radius-card) - 2px);
    background: var(--color-bg-card);
}
.article-toc--spinto .article-toc__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.article-toc--spinto .article-toc__list li {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: rgba(22, 16, 42, 0.6);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.article-toc--spinto .article-toc__list li:hover {
    border-color: rgba(34, 211, 238, 0.35);
    box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.2);
}
.article-toc--spinto .article-toc__list a {
    display: block;
    color: var(--color-accent-cyan);
    font-weight: 600;
    font-size: 15px;
}
.article-toc--spinto .article-toc__list a:hover {
    color: var(--color-accent-violet);
}

.article-faq {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}
.article-faq .article-faq__heading {
    margin: 0 0 18px;
    font-size: 1.35rem;
}
.article-faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.article-faq__item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    background: var(--color-bg-card);
    overflow: hidden;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.article-faq__item:hover {
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.12);
}
.article-faq__item[open] {
    border-color: rgba(34, 211, 238, 0.28);
    box-shadow: var(--shadow-neon);
}
.article-faq__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    cursor: pointer;
    user-select: none;
    transition: background .15s ease;
}
.article-faq__summary::-webkit-details-marker {
    display: none;
}
.article-faq__summary::marker {
    content: "";
}
.article-faq__summary:hover {
    background: rgba(168, 85, 247, 0.08);
}
.article-faq__summary:focus {
    outline: none;
}
.article-faq__summary:focus-visible {
    outline: 2px solid var(--color-accent-cyan);
    outline-offset: -2px;
}
.article-faq__summary::after {
    content: "";
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    margin-top: -4px;
    border-right: 2px solid var(--color-text-dim);
    border-bottom: 2px solid var(--color-text-dim);
    transform: rotate(45deg);
    transition: transform .2s ease, margin .2s ease;
    opacity: 0.9;
}
.article-faq__item[open] .article-faq__summary::after {
    margin-top: 2px;
    transform: rotate(225deg);
    border-right-color: var(--color-accent-cyan);
    border-bottom-color: var(--color-accent-cyan);
}
.article-faq__q {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-text);
    text-align: left;
}
.article-faq__answer {
    padding: 0 18px 16px;
    border-top: 1px solid transparent;
}
.article-faq__item[open] .article-faq__answer {
    border-top-color: var(--color-border);
}
.article-faq__answer p {
    margin: 14px 0 0;
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.6;
}


.site-footer--bands {
    flex-shrink: 0;
    margin-top: 48px;
    border-top: 1px solid var(--color-border);
    background: #0a0613;
}
.site-footer__strip {
    background: linear-gradient(90deg, rgba(168, 85, 247, .12), rgba(34, 211, 238, .08));
    border-bottom: 1px solid var(--color-border);
}
.site-footer__strip-inner { padding: 14px 0; }
.footer-strip-nav {
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px;
    justify-content: center;
}
.footer-strip-nav__link {
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.footer-strip-nav__link:hover {
    color: var(--color-accent-cyan);
    border-color: rgba(34, 211, 238, .35);
    background: rgba(34, 211, 238, .06);
}

.site-footer__body {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.95fr);
    gap: 32px;
    padding: 32px 20px 36px;
    align-items: start;
}
.site-footer__primary .copyright { color: var(--color-text-muted); font-size: 14px; margin: 14px 0 0; }
.disclaimer--footer { margin-top: 16px; font-size: 13px; line-height: 1.55; color: var(--color-text-dim); }

.site-footer__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}
.footer-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px 16px;
}
.badge {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 12px; border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-elev);
    color: var(--color-text);
    font-size: 13px; font-weight: 600;
}
.badge--age { color: var(--color-accent-magenta); border-color: var(--color-accent-magenta); }
.badge--bga-logo {
    padding: 6px 10px;
    border: 0;
    background: transparent;
}
.badge--bga-logo:hover { opacity: .92; }
.badge--bga-logo img {
    display: block;
    height: 28px;
    width: auto;
    max-width: min(220px, 100%);
}


.social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}
.social-icons__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: var(--color-text-muted);
    background: var(--color-bg-elev);
    border: 1px solid var(--color-border);
    transition: color .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.social-icons__btn svg { flex-shrink: 0; }
.social-icons__btn:hover {
    color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, .2);
}
.social-icons__btn--tg:hover { border-color: #26A5E4; color: #26A5E4; }
.social-icons__btn--vk:hover { border-color: #0077FF; color: #0077FF; }
.social-icons__btn--yt:hover { border-color: #FF0000; color: #FF4D4D; }


.error-page { text-align: center; padding: 60px 0; }
.error-page__code { font-size: clamp(64px, 12vw, 140px); font-weight: 800; line-height: 1; background: var(--grad-neon); -webkit-background-clip: text; background-clip: text; color: transparent; }


@media (max-width: 960px) {
    .site-footer__body { grid-template-columns: 1fr; }
    .site-footer__aside { align-items: flex-start; }
    .footer-trust { justify-content: flex-start; }
    .social-icons { justify-content: flex-start; }
}

@media (max-width: 760px) {
    .site-header__inner {
        gap: 10px;
        min-height: var(--header-h);
    }
    .site-logo { flex-shrink: 0; }
    .site-logo img {
        height: 30px;
        width: auto;
    }
    .site-header__bar {
        gap: 8px;
        flex-shrink: 0;
    }
    .site-cta .btn { padding: 8px 12px; font-size: 13px; min-height: 38px; }
    .site-header__bar .btn--ghost {
        display: none;
    }
    .page-hero--spinto__btn--line {
        display: none;
    }
    .menu-toggle {
        display: inline-flex;
    }
    .site-nav {
        position: fixed;
        left: 0;
        right: 0;
        top: var(--header-h);
        width: 100%;
        max-width: none;
        max-height: min(72vh, calc(100dvh - var(--header-h) - 16px));
        margin: 0;
        padding: 10px 0 18px;
        padding-bottom: max(18px, env(safe-area-inset-bottom));
        background: var(--color-bg-elev);
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
        z-index: 200;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform .26s ease, opacity .22s ease, visibility 0s linear .26s;
        justify-content: flex-start;
    }
    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: transform .26s ease, opacity .22s ease, visibility 0s linear 0s;
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        width: 100%;
        max-width: none;
        padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
        box-sizing: border-box;
    }
    .nav-item a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0 14px;
        border-radius: 8px;
    }
    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        top: var(--header-h);
        z-index: 190;
        margin: 0;
        padding: 0;
        border: 0;
        background: rgba(0, 0, 0, 0.55);
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .22s ease, visibility 0s linear .22s;
    }
    .nav-backdrop[hidden] {
        display: none !important;
    }
    .nav-backdrop:not([hidden]) {
        display: block !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity .22s ease, visibility 0s linear 0s;
    }

    .hero { padding: 24px 18px; }
}

@media (max-width: 420px) {
    .btn { padding: 9px 12px; font-size: 13px; }
}
