:root {
    --bg-0: #070910;
    --bg-1: #0b1020;
    --bg-2: #10162b;
    --bg-3: #131b35;
    --surface: rgba(18, 24, 46, 0.78);
    --surface-2: rgba(255, 255, 255, 0.05);
    --surface-3: rgba(255, 255, 255, 0.08);
    --line: rgba(255, 255, 255, 0.10);
    --line-2: rgba(255, 255, 255, 0.16);
    --text: #f5f7ff;
    --muted: #aab4d6;
    --muted-2: #7f8ab0;
    --violet: #7b71ff;
    --violet-2: #b36fff;
    --pink: #ff5fcf;
    --teal: #2ce0bf;
    --blue: #45a0ff;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --wrap: 1240px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 18% 14%, rgba(123, 113, 255, 0.18), transparent 0 26%),
        radial-gradient(circle at 82% 12%, rgba(255, 95, 207, 0.12), transparent 0 22%),
        radial-gradient(circle at 72% 72%, rgba(44, 224, 191, 0.12), transparent 0 20%),
        linear-gradient(180deg, #070910 0%, #0b1020 38%, #0f1830 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img,
svg,
canvas {
    display: block;
}

button,
input,
textarea {
    font: inherit;
}

.site-shell {
    position: relative;
    isolation: isolate;
}

.site-canvas {
    position: fixed;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.55;
}

.wrap {
    width: min(var(--wrap), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: linear-gradient(180deg, rgba(7, 9, 16, 0.88), rgba(7, 9, 16, 0.58));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__row {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand__orb {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    position: relative;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)),
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.20), transparent 0 34%),
        linear-gradient(135deg, #4e58f5 0%, #9f53ff 54%, #20d7bb 100%);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.2),
        0 0 0 1px rgba(255,255,255,0.08),
        0 18px 36px rgba(92, 84, 255, 0.24);
    overflow: hidden;
    flex: 0 0 auto;
}

.brand__glow {
    position: absolute;
    inset: auto -10px -22px auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    filter: blur(14px);
}

.brand__letters {
    position: relative;
    z-index: 1;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.12em;
    color: #fff;
}

.brand__meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand__name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand__sub {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 28px;
    color: var(--muted);
}

.main-nav a {
    position: relative;
    transition: color .25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--violet), var(--teal));
    transition: width .25s ease;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: none;
}

.burger {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #fff;
    cursor: pointer;
}

.burger span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.mobile-panel {
    display: none;
    padding: 16px 0 18px;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-panel.is-open {
    display: grid;
}

.mobile-panel a {
    color: var(--muted);
}

@media (min-width: 980px) {
    .main-nav {
        display: flex;
    }

    .header-cta {
        display: inline-flex;
    }

    .burger,
    .mobile-panel {
        display: none !important;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--violet), var(--violet-2) 52%, var(--teal));
    box-shadow: 0 18px 38px rgba(123, 113, 255, 0.24);
}

.btn--outline {
    color: #fff;
    border-color: rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
}

.btn--ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
}

.hero {
    position: relative;
    padding: 34px 0 48px;
    overflow: hidden;
}

.hero__noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.07;
    background-image:
        radial-gradient(circle at 20% 20%, #fff 0.7px, transparent 0.8px),
        radial-gradient(circle at 80% 30%, #fff 0.7px, transparent 0.8px),
        radial-gradient(circle at 50% 70%, #fff 0.6px, transparent 0.7px);
    background-size: 180px 180px, 220px 220px, 260px 260px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    min-height: calc(100vh - 110px);
}

@media (min-width: 1060px) {
    .hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(380px, 480px);
        gap: 38px;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    width: fit-content;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eyebrow--light,
.eyebrow {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: #d9e0ff;
}

.eyebrow--dark {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #cfd8ff;
}

.eyebrow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--teal));
    box-shadow: 0 0 18px rgba(255, 95, 207, 0.5);
}

.hero__copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero__title {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.045em;
    font-size: clamp(44px, 8vw, 98px);
    max-width: 820px;
}

.hero__title span {
    display: block;
    background: linear-gradient(90deg, #ffffff 0%, #d7d8ff 32%, #c777ff 62%, #4be7c8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__text {
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(16px, 2.3vw, 20px);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.hero__chips span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #d3dcff;
    font-size: 14px;
}

.hero__visual {
    position: relative;
    min-height: 500px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.10);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)),
        rgba(10, 14, 28, 0.72);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.hero-card--main {
    padding: 22px;
    min-height: 420px;
}

.hero-card--main::before {
    content: "";
    position: absolute;
    inset: -30% auto auto -20%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(123, 113, 255, 0.18);
    filter: blur(40px);
}

.hero-card--main::after {
    content: "";
    position: absolute;
    inset: auto -10% -18% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(44, 224, 191, 0.16);
    filter: blur(42px);
}

.hero-card__head,
.hero-card__stats {
    position: relative;
    z-index: 1;
}

.hero-card__head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 22px;
}

.hero-card__graph {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        rgba(255,255,255,0.02);
    padding: 14px;
    margin-bottom: 18px;
}

.hero-card__graph svg {
    width: 100%;
    height: auto;
}

.hero-card__stats {
    display: grid;
    gap: 12px;
}

.hero-card__stats article {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-card__stats strong {
    font-size: 15px;
    color: #fff;
}

.hero-card__stats span {
    color: var(--muted);
    font-size: 14px;
}

.hero-float {
    position: absolute;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(15, 20, 40, 0.74);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    max-width: 220px;
}

.hero-float__label {
    display: block;
    color: var(--muted-2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.hero-float strong {
    display: block;
    line-height: 1.3;
}

.hero-float--a {
    top: 22px;
    right: -8px;
}

.hero-float--b {
    bottom: 12px;
    left: -10px;
}

@media (max-width: 1059px) {
    .hero__visual {
        min-height: auto;
    }

    .hero-float {
        position: static;
        margin-top: 14px;
        max-width: none;
    }
}

.section {
    position: relative;
    padding: 44px 0;
}

@media (min-width: 760px) {
    .section {
        padding: 68px 0;
    }
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.section-head--wide {
    max-width: 920px;
}

.section-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 5vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.section-text {
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
}

.section--concept {
    padding-top: 20px;
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

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

.concept-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 24px;
    min-height: 250px;
    border: 1px solid rgba(255,255,255,0.10);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(12, 16, 30, 0.72);
    box-shadow: var(--shadow);
}

.concept-card::before {
    content: "";
    position: absolute;
    inset: auto -30px -40px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.6;
}

.concept-card--violet::before {
    background: rgba(123, 113, 255, 0.32);
}

.concept-card--pink::before {
    background: rgba(255, 95, 207, 0.28);
}

.concept-card--teal::before {
    background: rgba(44, 224, 191, 0.28);
}

.concept-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
}

.concept-card__icon svg {
    width: 24px;
    height: 24px;
}

.concept-card h3 {
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.concept-card p {
    color: var(--muted);
}

.section--formats {
    overflow: hidden;
}

.formats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 980px) {
    .formats-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
}

.format-panel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.10);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(15, 20, 38, 0.74);
    box-shadow: var(--shadow);
}

.format-panel::before {
    content: "";
    position: absolute;
    inset: -40px auto auto -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(123, 113, 255, 0.16);
    filter: blur(20px);
}

.format-panel--large {
    background:
        radial-gradient(circle at 90% 10%, rgba(44, 224, 191, 0.12), transparent 0 30%),
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)),
        rgba(15, 20, 38, 0.82);
}

.format-panel__meta {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #dbe1ff;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 14px;
}

.format-panel h3 {
    font-size: 28px;
    line-height: 1.08;
    margin-bottom: 12px;
}

.format-panel p {
    color: var(--muted);
}

.format-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 18px 0 22px;
}

.format-list li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
}

.format-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--teal));
    box-shadow: 0 0 14px rgba(123, 113, 255, 0.4);
}

.details-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    border-radius: 34px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.10);
    background:
        radial-gradient(circle at 14% 18%, rgba(255,95,207,0.10), transparent 0 24%),
        radial-gradient(circle at 86% 80%, rgba(44,224,191,0.10), transparent 0 20%),
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(10, 15, 30, 0.76);
    box-shadow: var(--shadow);
}

@media (min-width: 980px) {
    .details-shell {
        grid-template-columns: 0.92fr 1.08fr;
        padding: 30px;
        gap: 28px;
    }
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline__item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.timeline__num {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--violet), var(--violet-2), var(--teal));
    box-shadow: 0 14px 30px rgba(123, 113, 255, 0.24);
}

.timeline__item h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

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

.section--contact {
    padding-bottom: 78px;
}

.contact-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    border-radius: 34px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.10);
    background:
        radial-gradient(circle at 100% 0%, rgba(123,113,255,0.14), transparent 0 28%),
        radial-gradient(circle at 0% 100%, rgba(44,224,191,0.10), transparent 0 24%),
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(12, 17, 32, 0.78);
    box-shadow: var(--shadow);
}

@media (min-width: 980px) {
    .contact-shell {
        grid-template-columns: 0.95fr 1.05fr;
        padding: 30px;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-boxes {
    display: grid;
    gap: 14px;
    margin-top: 6px;
}

.contact-box {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.contact-box span {
    display: block;
    color: var(--muted-2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label > span {
    color: var(--muted);
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    color: #fff;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 15px 16px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8d99c2;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(123, 113, 255, 0.42);
    box-shadow: 0 0 0 4px rgba(123, 113, 255, 0.10);
    background: rgba(255,255,255,0.07);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-full {
    width: 100%;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox__mark {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,0.20);
    background: rgba(255,255,255,0.04);
    flex: 0 0 auto;
    margin-top: 2px;
    position: relative;
}

.checkbox input:checked + .checkbox__mark::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 11px;
    border: solid var(--teal);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox__text {
    color: var(--muted);
    font-size: 14px;
}

.checkbox__text a {
    text-decoration: underline;
}

.site-footer {
    padding: 28px 0 36px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(7, 10, 18, 0.65);
    backdrop-filter: blur(12px);
}

.site-footer__top,
.site-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer__top {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-nav,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    color: var(--muted);
}

.footer-copy {
    color: var(--muted-2);
    font-size: 14px;
}

@media (min-width: 900px) {
    .site-footer__top,
    .site-footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.legal-page {
    padding-bottom: 40px;
}

.legal-hero {
    padding: 42px 0 18px;
}

.legal-hero__box {
    border-radius: 30px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.10);
    background:
        radial-gradient(circle at 100% 0%, rgba(123,113,255,0.14), transparent 0 28%),
        radial-gradient(circle at 0% 100%, rgba(44,224,191,0.10), transparent 0 24%),
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(12, 17, 32, 0.78);
    box-shadow: var(--shadow);
}

.legal-title {
    margin-top: 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.legal-updated {
    margin-top: 12px;
    color: var(--muted-2);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.legal-intro {
    margin-top: 16px;
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
}

.legal-content-section {
    padding: 22px 0 70px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 980px) {
    .legal-layout {
        grid-template-columns: 300px minmax(0, 1fr);
        align-items: start;
    }
}

.legal-sidebar {
    display: grid;
    gap: 16px;
}

@media (min-width: 980px) {
    .legal-sidebar {
        position: sticky;
        top: 104px;
    }
}

.legal-sidecard {
    border-radius: 22px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.10);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
        rgba(12, 17, 32, 0.72);
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
}

.legal-sidecard__label {
    color: var(--muted-2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.legal-sidecard a,
.legal-sidecard div {
    color: #fff;
    line-height: 1.5;
    word-break: break-word;
}

.legal-sidecard a:hover {
    color: #dcdfff;
}

.legal-card {
    border-radius: 30px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.10);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
        rgba(12, 17, 32, 0.74);
    box-shadow: var(--shadow);
}

@media (min-width: 760px) {
    .legal-card {
        padding: 30px;
    }
}

.legal-block + .legal-block {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.legal-block h2 {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.legal-block p,
.legal-block li {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.legal-block p + p {
    margin-top: 12px;
}

.legal-block ul {
    padding-left: 20px;
    margin-top: 12px;
}

.legal-block li + li {
    margin-top: 8px;
}

.legal-block a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.35);
    text-underline-offset: 3px;
}