:root {
    --info-bg: #080910;
    --info-surface: rgba(18, 20, 31, 0.82);
    --info-surface-strong: #141622;
    --info-surface-soft: rgba(255, 255, 255, 0.035);
    --info-border: rgba(255, 255, 255, 0.09);
    --info-border-strong: rgba(255, 255, 255, 0.16);
    --info-text: #f2f3f8;
    --info-muted: #a2a7b9;
    --info-dim: #71778c;
    --info-violet: #7c86ff;
    --info-pink: #ed66ad;
    --info-gold: #ffd166;
    --info-green: #6ae6ad;
    --info-radius-lg: 24px;
    --info-radius-md: 17px;
    --info-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body.info-page {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--info-bg);
    color: var(--info-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.info-page *,
.info-page *::before,
.info-page *::after {
    box-sizing: border-box;
}

.info-main a {
    color: inherit;
}

.info-skip {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
    color: #090a10 !important;
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

.info-skip:focus {
    transform: translateY(0);
}

.info-atmosphere {
    position: fixed;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(1000px 620px at 90% -8%, rgba(88, 101, 242, 0.14), transparent 68%),
        radial-gradient(760px 560px at -5% 18%, rgba(235, 69, 158, 0.09), transparent 70%),
        linear-gradient(180deg, #080910 0%, #0a0b12 46%, #080910 100%);
}

.info-orb {
    position: absolute;
    display: block;
    border-radius: 999px;
    filter: blur(95px);
    opacity: 0.22;
}

.info-orb--violet {
    top: -180px;
    right: -80px;
    width: 470px;
    height: 470px;
    background: #5865f2;
}

.info-orb--pink {
    top: 45%;
    left: -240px;
    width: 420px;
    height: 420px;
    background: #eb459e;
}

.info-orb--gold {
    right: 12%;
    bottom: -240px;
    width: 390px;
    height: 390px;
    background: #d79c36;
    opacity: 0.11;
}

.info-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.info-main {
    position: relative;
    padding: 28px 0 112px;
}

.info-shell {
    width: min(1120px, calc(100% - 44px));
    margin: 0 auto;
}

.info-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 22px;
    color: var(--info-dim);
    font-size: 13px;
    font-weight: 650;
}

.info-breadcrumbs a {
    color: var(--info-muted);
    text-decoration: none;
    transition: color 150ms ease;
}

.info-breadcrumbs a:hover {
    color: #fff;
}

.info-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
    gap: 54px;
    align-items: center;
    min-height: 470px;
    padding: 54px 58px;
    overflow: hidden;
    border: 1px solid var(--info-border);
    border-radius: 30px;
    background:
        radial-gradient(520px 300px at 8% 0%, rgba(124, 134, 255, 0.1), transparent 70%),
        linear-gradient(145deg, rgba(20, 22, 34, 0.94), rgba(12, 13, 21, 0.9));
    box-shadow: var(--info-shadow);
}

.info-hero::after {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(124, 134, 255, 0.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 42px rgba(124, 134, 255, 0.025),
        0 0 0 84px rgba(124, 134, 255, 0.018);
    content: "";
}

.info-hero__copy,
.info-before {
    position: relative;
    z-index: 1;
}

.info-kicker {
    margin: 0 0 11px;
    color: var(--info-violet);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.info-hero h1 {
    max-width: 700px;
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 850;
    letter-spacing: -0.048em;
    line-height: 1.04;
}

.info-hero h1 span {
    background: linear-gradient(100deg, #a7adff 0%, #d69bff 52%, #ffd166 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-hero__lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--info-muted);
    font-size: 17px;
    line-height: 1.75;
}

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

.info-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.info-button:hover {
    transform: translateY(-2px);
}

.info-button--primary {
    background: linear-gradient(135deg, #6672f5, #825ef0);
    box-shadow: 0 14px 34px rgba(88, 101, 242, 0.28);
    color: #fff;
}

.info-button--primary:hover {
    box-shadow: 0 18px 42px rgba(88, 101, 242, 0.4);
}

.info-button--secondary {
    border-color: var(--info-border-strong);
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
}

.info-button--secondary:hover {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
}

.info-before {
    padding: 24px 25px 12px;
    border: 1px solid var(--info-border);
    border-radius: 21px;
    background: rgba(7, 8, 14, 0.48);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
}

.info-before__label {
    margin: 0;
    color: var(--info-dim);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.info-before ol {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.info-before li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    padding: 17px 0;
    border-top: 1px solid var(--info-border);
}

.info-before li:first-child {
    border-top: 0;
}

.info-before li > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(124, 134, 255, 0.22);
    border-radius: 11px;
    background: rgba(124, 134, 255, 0.09);
    color: #aeb4ff;
    font-size: 10px;
    font-weight: 850;
}

.info-before strong {
    color: #f7f7fb;
    font-size: 14px;
}

.info-before p {
    margin: 3px 0 0;
    color: var(--info-muted);
    font-size: 12px;
    line-height: 1.55;
}

.info-jump {
    display: flex;
    gap: 8px;
    margin: 18px 0 72px;
    padding: 10px;
    overflow-x: auto;
    border: 1px solid var(--info-border);
    border-radius: 16px;
    background: rgba(12, 13, 21, 0.72);
    scrollbar-width: thin;
    backdrop-filter: blur(16px);
}

.info-jump a {
    flex: 0 0 auto;
    padding: 8px 13px;
    border-radius: 9px;
    color: var(--info-muted);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
    transition: background 150ms ease, color 150ms ease;
}

.info-jump a:hover {
    background: rgba(255, 255, 255, 0.065);
    color: #fff;
}

.info-section {
    margin-top: 88px;
}

.info-jump + .info-section {
    margin-top: 0;
}

.info-section__heading {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    margin-bottom: 25px;
}

.info-section__heading .info-kicker {
    margin-bottom: 6px;
}

.info-section__number {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    margin: 1px 0 0;
    border: 1px solid rgba(124, 134, 255, 0.22);
    border-radius: 12px;
    background: rgba(124, 134, 255, 0.075);
    color: #aab1ff;
    font-size: 11px;
    font-weight: 850;
}

.info-section h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 820;
    letter-spacing: -0.035em;
    line-height: 1.13;
}

.info-card {
    border: 1px solid var(--info-border);
    border-radius: var(--info-radius-lg);
    background: linear-gradient(145deg, rgba(21, 23, 35, 0.88), rgba(13, 14, 23, 0.84));
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
}

.info-card p,
.info-section__footnote {
    color: var(--info-muted);
}

.info-card a,
.info-callout a,
.info-section__footnote a {
    color: #adb3ff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(173, 179, 255, 0.36);
    text-underline-offset: 3px;
}

.info-card--product {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
    gap: 52px;
    padding: 38px;
}

.info-product__copy p {
    margin: 17px 0 0;
}

.info-product__copy p:first-child {
    margin-top: 0;
}

.info-card__lead {
    color: #e1e3ed !important;
    font-size: 17px;
    line-height: 1.75;
}

.info-note {
    padding: 16px 18px;
    border-left: 2px solid rgba(255, 209, 102, 0.62);
    border-radius: 0 11px 11px 0;
    background: rgba(255, 209, 102, 0.055);
    color: #b9bdcb !important;
    font-size: 13px;
}

.info-facts {
    display: grid;
    align-content: start;
    gap: 0;
    margin: 0;
    border: 1px solid var(--info-border);
    border-radius: 16px;
    background: rgba(5, 6, 11, 0.28);
}

.info-facts div {
    padding: 17px 19px;
    border-top: 1px solid var(--info-border);
}

.info-facts div:first-child {
    border-top: 0;
}

.info-facts dt {
    margin-bottom: 3px;
    color: var(--info-dim);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.info-facts dd {
    margin: 0;
    color: #f1f2f7;
    font-size: 14px;
    font-weight: 720;
}

.info-callout {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 14px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 209, 102, 0.17);
    border-radius: 15px;
    background: rgba(255, 209, 102, 0.045);
}

.info-callout__icon {
    display: grid;
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    place-items: center;
    margin-top: 1px;
    border-radius: 50%;
    background: rgba(255, 209, 102, 0.15);
    color: var(--info-gold);
    font-size: 12px;
    font-weight: 900;
}

.info-callout p {
    margin: 0;
    color: #b8bdcb;
    font-size: 13px;
}

.info-requirements {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}

.info-requirement {
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--info-border);
    border-radius: var(--info-radius-md);
    background: linear-gradient(155deg, rgba(20, 22, 34, 0.82), rgba(12, 13, 21, 0.76));
}

.info-requirement > span {
    color: var(--info-violet);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.info-requirement h3 {
    margin: 28px 0 8px;
    color: #f3f4f8;
    font-size: 15px;
    line-height: 1.35;
}

.info-requirement p {
    margin: 0;
    color: var(--info-muted);
    font-size: 13px;
    line-height: 1.65;
}

.info-section__footnote {
    max-width: 920px;
    margin: 17px 0 0;
    font-size: 13px;
}

.info-requirements-confirm {
    max-width: 920px;
    margin-top: 16px;
    padding: 17px 19px;
    border: 1px solid rgba(255, 209, 102, 0.18);
    border-radius: 14px;
    background: rgba(255, 209, 102, 0.045);
}

.info-requirements-confirm strong {
    display: block;
    margin-bottom: 4px;
    color: #f0cc79;
    font-size: 12px;
}

.info-requirements-confirm p {
    margin: 0;
    color: var(--info-muted);
    font-size: 13px;
}

.info-requirements-confirm a {
    color: #adb3ff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(173, 179, 255, 0.36);
    text-underline-offset: 3px;
}

.info-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 88px;
}

.info-section--compact {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.info-card--fill {
    flex: 1;
    padding: 29px;
}

.info-prices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--info-border);
}

.info-prices div {
    padding: 12px 10px;
    border: 1px solid var(--info-border);
    border-radius: 11px;
    background: rgba(124, 134, 255, 0.055);
    text-align: center;
}

.info-prices span,
.info-prices strong {
    display: block;
}

.info-prices span {
    color: var(--info-dim);
    font-size: 10px;
    font-weight: 750;
}

.info-prices strong {
    margin-top: 3px;
    color: #f2f3f8;
    font-size: 14px;
}

.info-check-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-check-list li {
    position: relative;
    padding-left: 29px;
    color: #c3c7d4;
    font-size: 14px;
}

.info-check-list li::before {
    position: absolute;
    top: 4px;
    left: 0;
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 6px;
    background: rgba(106, 230, 173, 0.1);
    color: var(--info-green);
    content: "✓";
    font-size: 10px;
    font-weight: 900;
}

.info-card__muted {
    margin: 25px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--info-border);
    color: var(--info-dim) !important;
    font-size: 12px;
}

.info-refunds {
    overflow: hidden;
    border: 1px solid var(--info-border);
    border-radius: var(--info-radius-lg);
    background: linear-gradient(145deg, rgba(20, 22, 34, 0.84), rgba(12, 13, 21, 0.82));
}

.info-refunds article {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 22px;
    padding: 25px 30px;
    border-top: 1px solid var(--info-border);
}

.info-refunds article:first-child {
    border-top: 0;
}

.info-refunds article > span {
    color: #9fa7ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.info-refunds h3 {
    margin: 0 0 6px;
    color: #f1f2f6;
    font-size: 15px;
}

.info-refunds p {
    max-width: 920px;
    margin: 0;
    color: var(--info-muted);
    font-size: 13px;
    line-height: 1.72;
}

.info-contacts {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 22px;
    padding: 28px;
}

.info-contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--info-border);
    border-radius: 16px;
}

.info-contact-list div {
    padding: 18px 20px;
    border-top: 1px solid var(--info-border);
    border-left: 1px solid var(--info-border);
}

.info-contact-list div:nth-child(-n + 2) {
    border-top: 0;
}

.info-contact-list div:nth-child(odd) {
    border-left: 0;
}

.info-contact-list dt {
    margin-bottom: 4px;
    color: var(--info-dim);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.info-contact-list dd {
    margin: 0;
    overflow-wrap: anywhere;
    color: #f0f1f6;
    font-size: 14px;
    font-weight: 720;
}

.info-contact-list a {
    color: #adb3ff;
    text-decoration: none;
}

.info-pending {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 2px 9px;
    border: 1px solid rgba(255, 209, 102, 0.2);
    border-radius: 999px;
    background: rgba(255, 209, 102, 0.07);
    color: #f0cc79;
    font-size: 11px;
    font-weight: 750;
}

.info-support {
    padding: 22px;
    border-radius: 16px;
    background: rgba(6, 7, 12, 0.3);
}

.info-support__label {
    margin: 0 0 11px;
    color: var(--info-dim) !important;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.info-support a {
    display: block;
    padding: 14px 0;
    border-top: 1px solid var(--info-border);
    text-decoration: none;
}

.info-support a:first-of-type {
    border-top: 0;
}

.info-support a span,
.info-support a strong {
    display: block;
}

.info-support a span {
    color: var(--info-dim);
    font-size: 10px;
}

.info-support a strong {
    margin-top: 2px;
    overflow-wrap: anywhere;
    color: #e6e8f1;
    font-size: 13px;
    transition: color 150ms ease;
}

.info-support a:hover strong {
    color: #b1b7ff;
}

.info-security-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.info-security-grid .info-card {
    padding: 27px;
}

.info-security-icon {
    display: inline-grid;
    min-width: 42px;
    height: 34px;
    place-items: center;
    padding: 0 8px;
    border: 1px solid rgba(106, 230, 173, 0.17);
    border-radius: 10px;
    background: rgba(106, 230, 173, 0.07);
    color: var(--info-green);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.info-security-grid h3 {
    margin: 22px 0 7px;
    color: #f2f3f7;
    font-size: 16px;
}

.info-security-grid p {
    margin: 0;
    font-size: 13px;
}

.info-documents {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.info-documents > a {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 15px;
    align-items: center;
    min-height: 128px;
    padding: 22px;
    border: 1px solid var(--info-border);
    border-radius: var(--info-radius-md);
    background: linear-gradient(145deg, rgba(20, 22, 34, 0.8), rgba(12, 13, 21, 0.74));
    text-decoration: none;
    transition: border-color 170ms ease, background 170ms ease, transform 170ms ease;
}

.info-documents > a:hover {
    border-color: rgba(124, 134, 255, 0.32);
    background: linear-gradient(145deg, rgba(26, 29, 46, 0.9), rgba(15, 16, 27, 0.84));
    transform: translateY(-2px);
}

.info-document__number {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    background: rgba(124, 134, 255, 0.09);
    color: #aab0ff;
    font-size: 10px;
    font-weight: 900;
}

.info-documents strong,
.info-documents small {
    display: block;
}

.info-documents strong {
    color: #f1f2f7;
    font-size: 14px;
    line-height: 1.35;
}

.info-documents small {
    margin-top: 6px;
    color: var(--info-muted);
    font-size: 11px;
    line-height: 1.55;
}

.info-documents b {
    color: var(--info-violet);
    font-size: 18px;
    transition: transform 160ms ease;
}

.info-documents a:hover b {
    transform: translateX(3px);
}

@media (max-width: 980px) {
    .info-hero {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 46px;
    }

    .info-before {
        max-width: 680px;
    }

    .info-card--product,
    .info-contacts {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .info-requirements {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-requirement {
        min-height: 180px;
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 120px;
    }

    .info-main {
        padding-top: 18px;
        padding-bottom: 78px;
    }

    .info-shell {
        width: min(calc(100% - 32px), 1120px);
    }

    .info-breadcrumbs {
        margin-bottom: 16px;
    }

    .info-hero {
        min-height: 0;
        padding: 34px 24px 24px;
        border-radius: 23px;
    }

    .info-hero h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .info-hero__lead {
        font-size: 15px;
    }

    .info-before {
        padding: 19px 20px 7px;
    }

    .info-jump {
        margin-bottom: 58px;
    }

    .info-section,
    .info-split {
        margin-top: 68px;
    }

    .info-jump + .info-section {
        margin-top: 0;
    }

    .info-split {
        grid-template-columns: 1fr;
        gap: 68px;
    }

    .info-section--compact {
        margin: 0;
    }

    .info-card--product,
    .info-card--fill,
    .info-contacts {
        padding: 23px;
    }

    .info-requirements,
    .info-security-grid,
    .info-documents {
        grid-template-columns: 1fr;
    }

    .info-requirement {
        min-height: 0;
    }

    .info-requirement h3 {
        margin-top: 19px;
    }

    .info-refunds article {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 14px;
        padding: 21px 20px;
    }

    .info-contact-list {
        grid-template-columns: 1fr;
    }

    .info-contact-list div,
    .info-contact-list div:nth-child(-n + 2) {
        border-top: 1px solid var(--info-border);
        border-left: 0;
    }

    .info-contact-list div:first-child {
        border-top: 0;
    }
}

@media (max-width: 480px) {
    .info-hero__actions {
        display: grid;
    }

    .info-button {
        width: 100%;
    }

    .info-section__heading {
        gap: 12px;
    }

    .info-section__number {
        width: 37px;
        height: 37px;
        border-radius: 10px;
    }

    .info-section h2 {
        font-size: 27px;
    }

    .info-card--product {
        padding: 20px;
    }

    .info-card__lead {
        font-size: 15px;
    }

    .info-prices {
        grid-template-columns: 1fr;
    }

    .info-refunds article {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .info-documents > a {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .info-documents b {
        display: none;
    }
}

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

    .info-page *,
    .info-page *::before,
    .info-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
