
:root {
    --cyan: #00ffc8;
    --bg: #070b0f;
    --panel: rgba(8,12,16,0.88);
    --panel-soft: rgba(255,255,255,0.045);
    --line: rgba(0,255,200,0.16);
    --line-strong: rgba(0,255,200,0.34);
    --muted: rgba(216,255,248,0.56);
    --text: #d8fff8;
    --warning: #ffaa00;
    --danger: #ff6b8a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 16% 8%, rgba(0,255,200,0.08), transparent 34%),
        radial-gradient(circle at 84% 16%, rgba(0,120,255,0.075), transparent 36%),
        linear-gradient(180deg, #070b0f 0%, #090e13 48%, #05080b 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: 0.5;
}

a {
    color: inherit;
    text-decoration: none;
}

.infoPage {
    width: min(1320px, calc(100% - 36px));
    margin: 28px auto 70px;
    position: relative;
    z-index: 1;
}

.infoTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brandMark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid rgba(0,255,200,0.28);
    background:
        radial-gradient(circle at 30% 20%, rgba(0,255,200,0.34), transparent 55%),
        rgba(0,255,200,0.08);
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 0 24px rgba(0,255,200,0.12);
}

.brandText {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.brandSub {
    margin-top: 2px;
    color: rgba(216,255,248,0.45);
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.topActions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.topBtn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.09);
    background: rgba(255,255,255,0.045);
    color: rgba(216,255,248,0.78);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition:
        color 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease,
        transform 0.18s ease;
}

.topBtn:hover {
    color: #fff;
    border-color: rgba(0,255,200,0.32);
    background: rgba(0,255,200,0.06);
    transform: translateY(-1px);
}

.infoLayout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 18px;
    align-items: start;
}

.legalDocument {
    border: 1px solid var(--line);
    border-radius: 26px;
    background:
        radial-gradient(circle at 18% 0%, rgba(0,255,200,0.105), transparent 36%),
        linear-gradient(145deg, rgba(0,255,200,0.035), transparent 38%),
        var(--panel);
    backdrop-filter: blur(14px);
    box-shadow:
        0 24px 80px rgba(0,0,0,0.32),
        inset 0 1px 0 rgba(255,255,255,0.025);
    overflow: hidden;
}

.legalHero {
    padding: clamp(26px, 4vw, 46px);
    border-bottom: 1px solid rgba(255,255,255,0.075);
    background:
        linear-gradient(90deg, rgba(0,255,200,0.06), transparent 68%),
        rgba(255,255,255,0.018);
}

.kicker {
    color: var(--cyan);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.legalHero h1 {
    margin: 12px 0 0;
    max-width: 850px;
    color: #fff;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.96;
    letter-spacing: -2px;
    font-weight: 300;
}

.infoUpdated {
    display: inline-flex;
    margin-top: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(0,255,200,0.16);
    background: rgba(0,255,200,0.06);
    color: rgba(216,255,248,0.66);
    font-size: 11px;
    letter-spacing: 0.8px;
}

.infoLead {
    max-width: 900px;
    margin: 22px 0 0;
    color: rgba(216,255,248,0.66);
    font-size: 14px;
    line-height: 1.85;
}

.legalBody {
    padding: clamp(22px, 3.2vw, 42px);
}

.legalSection {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.075);
}

.legalSection:first-child {
    padding-top: 0;
}

.legalSection:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.legalSection h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(21px, 2vw, 28px);
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -0.4px;
}

.legalSection h2::before {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    margin-bottom: 13px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 16px rgba(0,255,200,0.55);
}

.legalSection h3 {
    margin: 22px 0 9px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1px;
}

.legalSection p {
    margin: 0;
    color: rgba(216,255,248,0.62);
    font-size: 13px;
    line-height: 1.82;
}

.legalSection p + p {
    margin-top: 13px;
}

.legalSection strong {
    color: #fff;
    font-weight: 600;
}

.legalList {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.legalList li {
    position: relative;
    padding-left: 20px;
    color: rgba(216,255,248,0.62);
    font-size: 13px;
    line-height: 1.68;
}

.legalList li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(0,255,200,0.65);
}

.legalMetaGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.legalMetaGrid div {
    padding: 14px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.075);
    background: rgba(255,255,255,0.04);
}

.legalMetaGrid span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.legalMetaGrid strong {
    color: #fff;
    font-family: monospace;
    font-size: 13px;
    font-weight: 500;
}

.legalCallout {
    margin-top: 18px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,170,0,0.24);
    background:
        linear-gradient(145deg, rgba(255,170,0,0.08), transparent 70%),
        rgba(255,170,0,0.055);
    color: rgba(255,232,190,0.9);
    font-size: 12px;
    line-height: 1.75;
}

.legalCallout.cyan {
    border-color: rgba(0,255,200,0.22);
    background:
        linear-gradient(145deg, rgba(0,255,200,0.075), transparent 70%),
        rgba(0,255,200,0.045);
    color: rgba(216,255,248,0.72);
}

.legalInlineCode {
    display: inline-flex;
    padding: 3px 7px;
    border-radius: 7px;
    border: 1px solid rgba(0,255,200,0.14);
    background: rgba(0,255,200,0.055);
    color: var(--cyan);
    font-family: monospace;
    font-size: 12px;
}

.infoSideMenu {
    position: sticky;
    top: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8,12,16,0.82);
    backdrop-filter: blur(14px);
    box-shadow:
        0 20px 70px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.025);
    overflow: hidden;
}

.sideMenuHeader {
    padding: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    background:
        linear-gradient(90deg, rgba(0,255,200,0.07), transparent 70%),
        rgba(255,255,255,0.02);
}

.sideMenuHeader strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.sideMenuHeader span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.sideMenuLinks {
    padding: 10px;
    display: grid;
    gap: 6px;
}

.sideMenuLinks a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    color: rgba(216,255,248,0.68);
    font-size: 12px;
    transition:
        color 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease;
}

.sideMenuLinks a::after {
    content: "›";
    color: rgba(0,255,200,0.5);
    font-size: 16px;
}

.sideMenuLinks a:hover,
.sideMenuLinks a.active {
    background: rgba(0,255,200,0.08);
    color: var(--cyan);
}

.sideMenuNote {
    margin: 0 10px 10px;
    padding: 13px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.075);
    background: rgba(255,255,255,0.035);
    color: rgba(216,255,248,0.48);
    font-size: 11px;
    line-height: 1.55;
}

.mobileInfoSelect {
    display: none;
    margin-bottom: 18px;
}

.mobileInfoSelect select {
    width: 100%;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(0,255,200,0.18);
    background: rgba(8,12,16,0.92);
    color: #fff;
    padding: 0 14px;
    font-family: inherit;
    outline: none;
}

.infoFooter {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(216,255,248,0.42);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .infoLayout {
        grid-template-columns: 1fr;
    }

    .infoSideMenu {
        display: none;
    }

    .mobileInfoSelect {
        display: block;
    }
}

@media (max-width: 720px) {
    .infoPage {
        width: min(100% - 24px, 1320px);
        margin-top: 18px;
    }

    .infoTop {
        flex-direction: column;
        align-items: flex-start;
    }

    .topActions {
        width: 100%;
    }

    .topBtn {
        flex: 1;
    }

    .legalHero,
    .legalBody {
        padding: 22px;
    }

    .legalHero h1 {
        letter-spacing: -1.2px;
    }

    .legalMetaGrid {
        grid-template-columns: 1fr;
    }

    .infoFooter {
        flex-direction: column;
    }
}