:root {
    --bg: #070708;
    --panel: #121214;
    --panel-soft: rgba(18, 18, 20, .9);
    --text: #fbf7ff;
    --muted: #c8bdd3;
    --orange: #ad72ff;
    --orange-dark: #6530c9;
    --line: rgba(255, 255, 255, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(circle at 50% -20%, #1d1528 0, transparent 38%),
        #050506;
    font-family: Inter, Arial, sans-serif;
}

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

button {
    color: inherit;
    font: inherit;
}

.payment-notice {
    position: fixed;
    z-index: 150;
    top: 18px;
    left: 50%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 24px;
    width: min(520px, calc(100% - 30px));
    padding: 16px 50px 16px 18px;
    transform: translateX(-50%);
    border: 1px solid rgba(166, 101, 255, .48);
    border-radius: 9px;
    background: rgba(16, 16, 18, .97);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .5);
    backdrop-filter: blur(15px);
    animation: notice-in .4s ease both;
}

.payment-notice strong,
.payment-notice span {
    grid-column: 1;
}

.payment-notice strong {
    font-size: 13px;
}

.payment-notice span {
    color: #b9acc5;
    font-size: 10px;
    line-height: 1.5;
}

.payment-notice button {
    position: absolute;
    top: 50%;
    right: 15px;
    border: 0;
    transform: translateY(-50%);
    background: transparent;
    color: #c2b0d1;
    cursor: pointer;
    font-size: 22px;
}

.payment-notice--success {
    border-color: rgba(92, 216, 113, .5);
}

.payment-notice--pending {
    border-color: rgba(241, 170, 65, .5);
}

@keyframes notice-in {
    from { opacity: 0; transform: translate(-50%, -20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.site-shell {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, rgba(9, 9, 11, .06), #0d0d0f 78%, #070708);
}

.site-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 20%), rgba(151, 91, 223, .11), transparent 27%),
        linear-gradient(90deg, rgba(6, 4, 9, .72), transparent 25%, transparent 75%, rgba(6, 4, 9, .7));
}

.particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.header {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 270px 1fr 390px;
    align-items: center;
    width: min(1380px, calc(100% - 64px));
    height: 98px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: max-content;
}

.brand__logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 7px 18px rgba(145, 72, 255, .34));
}

.brand {
    display: flex;
    align-items: center;
    gap: 1px;
}

.brand__photo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 2px solid #aa6cff;
    border-radius: 14px 4px 14px 4px;
    background:
        linear-gradient(145deg, rgba(174, 112, 255, .3), rgba(61, 22, 103, .78)),
        #130b1d;
    color: #fbf7ff;
    font-family: "Russo One", sans-serif;
    font-size: 28px;
    line-height: 1;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .2),
        0 7px 18px rgba(145, 72, 255, .34);
    transform: skew(-5deg);
}

.brand__name {
    font-family: "Russo One", sans-serif;
    color: #fbf7ff;
    font-size: 15px;
    line-height: 1;
    letter-spacing: .08em;
    white-space: nowrap;
}

.nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 2vw, 34px);
}

.nav__link {
    position: relative;
    padding: 16px 0;
    color: #d4c7c0;
    font-size: 13px;
    font-weight: 600;
    transition: color .25s ease;
}

.nav__link::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 7px;
    left: 50%;
    height: 2px;
    background: var(--orange);
    transition: inset .25s ease;
}

.nav__link:hover {
    color: white;
}

.nav__link:hover::after,
.nav__link:first-child::after {
    right: 0;
    left: 0;
}

.header__actions,
.socials {
    display: flex;
    align-items: center;
}

.header__actions {
    justify-content: flex-end;
    gap: 12px;
}

.socials {
    gap: 11px;
}

.socials a {
    color: #c5b8d0;
    font-size: 9px;
    font-weight: 900;
}

.socials a:hover {
    color: var(--orange);
}

.online {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 11px;
    border: 1px solid rgba(97, 220, 114, .2);
    border-radius: 5px;
    background: rgba(12, 34, 17, .42);
}

.online__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #61dc72;
    box-shadow: 0 0 12px #61dc72;
    animation: online-pulse 1.8s ease-in-out infinite;
}

.online > span:last-child {
    display: grid;
    text-align: left;
}

.online small {
    color: #789c7e;
    font-size: 7px;
    letter-spacing: .14em;
}

.online strong {
    margin-top: 2px;
    font-size: 10px;
}

.online.is-loading .online__pulse {
    background: #a47cff;
    box-shadow: 0 0 12px #a47cff;
}

.online.is-offline {
    border-color: rgba(224, 73, 73, .25);
    background: rgba(52, 13, 13, .42);
}

.online.is-offline .online__pulse {
    background: #e04b4b;
    box-shadow: 0 0 10px #e04b4b;
    animation: none;
}

.online.is-offline small {
    color: #a66868;
}

.header-ip {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid rgba(166, 103, 255, .5);
    border-radius: 5px;
    background: rgba(20, 20, 23, .88);
    cursor: pointer;
    transition: .25s ease;
}

.header-ip:hover {
    border-color: var(--orange);
    background: rgba(37, 31, 44, .94);
}

.header-ip__status {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #61dc72;
    box-shadow: 0 0 10px #61dc72;
}

.header-ip > span:nth-child(2) {
    display: grid;
    text-align: left;
}

.header-ip small {
    color: #a58eb7;
    font-size: 7px;
    letter-spacing: .14em;
}

.header-ip strong {
    margin-top: 2px;
    font-size: 10px;
}

.header-ip i {
    position: absolute;
    top: calc(100% + 7px);
    left: 50%;
    padding: 5px 8px;
    transform: translate(-50%, 4px);
    border-radius: 4px;
    opacity: 0;
    background: #17151a;
    color: #d4b8ec;
    font-size: 9px;
    font-style: normal;
    pointer-events: none;
    transition: .2s ease;
}

.header-ip:hover i,
.header-ip.is-copied i {
    opacity: 1;
    transform: translate(-50%, 0);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: rgba(18, 18, 21, .94);
}

.menu-toggle i {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: white;
    transition: .25s ease;
}

.hero {
    position: relative;
    z-index: 4;
    min-height: calc(100vh - 138px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 200px 32px 50px;
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 68%;
    background:
        linear-gradient(180deg, transparent, rgba(10, 10, 12, .76) 19%, #0d0d0f 52%, #070708 100%);
}

.hero__art {
    position: absolute;
    z-index: -2;
    inset: -98px 0 auto;
    height: min(790px, 74vh);
    overflow: hidden;
}

.hero__art::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 6, .03), transparent 58%, #0d0d0f 98%),
        linear-gradient(90deg, rgba(7, 5, 10, .5), transparent 28%, transparent 72%, rgba(7, 5, 10, .52));
}

.hero__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    filter: saturate(.72) contrast(1.08) brightness(.78);
    transform: scale(1.04);
    animation: hero-in 1.2s cubic-bezier(.2, .7, .2, 1) both;
}

.hero__flare {
    position: absolute;
    z-index: 2;
    top: 25%;
    left: 50%;
    width: 52vw;
    height: 20vw;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(154, 91, 232, .13);
    filter: blur(85px);
}

.hero__content {
    width: min(1020px, 100%);
    text-align: center;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 11px;
    color: #c89dff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .36em;
}

.hero__eyebrow span {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #9d58ff);
}

.hero__eyebrow span:last-child {
    transform: rotate(180deg);
}

h1 {
    position: relative;
    margin: 0;
    font-family: "Russo One", Impact, sans-serif;
    font-size: clamp(62px, 8.1vw, 128px);
    line-height: .85;
    letter-spacing: -.055em;
    color: #fcf9ff;
    text-shadow:
        0 7px 0 #c5c8c9,
        0 14px 0 #777a7d,
        0 28px 60px rgba(0, 0, 0, .8);
}

h1::after {
    content: attr(data-title);
    position: absolute;
    inset: 0;
    z-index: -1;
    color: transparent;
    -webkit-text-stroke: 8px rgba(0, 0, 0, .35);
}

h2 {
    margin: 28px 0 9px;
    font-size: clamp(19px, 2.1vw, 28px);
    font-weight: 900;
}

.hero__description {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 32px auto 27px;
}

.stat {
    position: relative;
    min-height: 108px;
    padding: 22px 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(30, 29, 33, .94), rgba(15, 15, 17, .94));
    text-align: left;
    backdrop-filter: blur(13px);
    transition: transform .3s ease, border-color .3s ease;
}

.stat::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -50px;
    width: 110px;
    height: 90px;
    border-radius: 50%;
    background: rgba(151, 76, 255, .16);
    filter: blur(23px);
}

.stat:hover {
    transform: translateY(-5px);
    border-color: rgba(170, 107, 255, .65);
}

.stat strong,
.stat span {
    display: block;
}

.stat strong {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 900;
}

.stat span {
    max-width: 150px;
    color: #c7bbd1;
    font-size: 11px;
    line-height: 1.35;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 17px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    padding: 16px 23px;
    border: 1px solid rgba(185, 132, 255, .68);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24), 0 12px 30px rgba(0, 0, 0, .34);
    transition: transform .25s ease, filter .25s ease;
}

.button:hover {
    transform: translateY(-3px);
    filter: brightness(1.16);
}

.button span {
    margin-right: 10px;
    font-size: 15px;
}

.button--primary {
    background: linear-gradient(180deg, #b77aff, #7139d3);
}

.button--secondary {
    background: linear-gradient(180deg, #8049b8, #3c1e59);
}

.server {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 20px;
    color: #b9adc4;
    font-size: 13px;
}

.server strong {
    margin-left: 8px;
    color: white;
}

.scroll-hint {
    position: absolute;
    right: 34px;
    bottom: 36px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(90deg) translateX(100%);
    transform-origin: right bottom;
    color: #82778a;
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.scroll-hint span {
    width: 35px;
    height: 1px;
    background: #65408a;
}

@keyframes hero-in {
    from {
        opacity: 0;
        transform: scale(1.13);
    }
    to {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes online-pulse {
    50% {
        opacity: .45;
        box-shadow: 0 0 4px #61dc72;
    }
}

@media (max-width: 1100px) {
    .header {
        grid-template-columns: 225px 1fr auto;
    }

    .nav {
        gap: 16px;
    }

    .online {
        display: none;
    }
}

@media (max-width: 820px) {
    .header {
        grid-template-columns: 1fr auto;
        width: min(100% - 34px, 720px);
        height: 80px;
    }

    .nav {
        position: absolute;
        top: 68px;
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 12px 20px;
        transform: translateY(-12px);
        visibility: hidden;
        opacity: 0;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(13, 13, 15, .98);
        backdrop-filter: blur(18px);
        transition: .25s ease;
    }

    .nav.is-open {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    .nav__link {
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .nav__link::after {
        display: none;
    }

    .header-ip {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.is-open i:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .menu-toggle.is-open i:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .hero {
        min-height: calc(100vh - 100px);
        padding: 180px 18px 44px;
    }

    .hero__art {
        inset: -80px 0 auto;
        height: 620px;
    }

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

    .scroll-hint {
        display: none;
    }
}

.shop {
    position: relative;
    overflow: hidden;
    padding: 110px max(32px, calc((100vw - 1380px) / 2)) 130px;
    background:
        radial-gradient(circle at 50% 5%, rgba(157, 94, 225, .09), transparent 28%),
        linear-gradient(180deg, #080809, #101012 48%, #080809);
}

.shop::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .14;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(transparent, black 20%, black 80%, transparent);
}

.section-heading {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 0 14px;
    color: #b982ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .32em;
}

.section-heading p span {
    width: 34px;
    height: 1px;
    background: #7440b7;
}

.section-heading h2 {
    margin: 0 0 13px;
    font-family: "Russo One", sans-serif;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1;
}

.section-heading > span {
    color: #a092aa;
    font-size: 14px;
}

.server-tabs {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 500px);
    justify-content: center;
    gap: 14px;
    max-width: 1380px;
    margin: 0 auto 22px;
}

.server-tab {
    display: grid;
    gap: 5px;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 9px;
    background: rgba(23,23,26,.94);
    cursor: pointer;
    text-align: left;
    transition: .25s ease;
}

.server-tab strong {
    font-family: "Russo One", sans-serif;
    font-size: 17px;
}

.server-tab span {
    color: #94869d;
    font-size: 10px;
}

.server-tab:hover,
.server-tab.is-active {
    border-color: var(--orange);
    background: linear-gradient(135deg, rgba(43,39,48,.96), rgba(20,20,23,.96));
    box-shadow: 0 12px 35px rgba(0,0,0,.3);
}

.category-tabs {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 30px;
}

.category-tab {
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 5px;
    background: rgba(18,18,21,.94);
    color: #aa9bb4;
    cursor: pointer;
    font-size: 10px;
    font-weight: 800;
    transition: .2s ease;
}

.category-tab:hover,
.category-tab.is-active {
    border-color: rgba(169,101,255,.68);
    background: #26212c;
    color: white;
}

.product-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1380px;
    margin: 0 auto;
}

.product[hidden] {
    display: none;
}

.catalog-empty {
    position: relative;
    z-index: 1;
    display: none;
    padding: 55px 20px;
    color: #94869d;
    text-align: center;
}

.catalog-empty.is-visible {
    display: block;
}

.product {
    --accent: #9e48ff;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;
    background: #111113;
    box-shadow: 0 25px 70px rgba(0,0,0,.35);
    transition: transform .35s ease, border-color .35s ease;
}

.product--red { --accent: #c25cff; }
.product--green { --accent: #8d6cff; }
.product--blue { --accent: #7157ff; }

.product:hover {
    transform: translateY(-10px);
    border-color: color-mix(in srgb, var(--accent), white 20%);
}

.product__visual {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-image: url("../images/store-ranks.png");
    background-size: 200% 200%;
    background-position: var(--product-position);
}

.product__visual::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, #111113);
}

.product__badge {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    padding: 7px 10px;
    border: 1px solid color-mix(in srgb, var(--accent), white 25%);
    border-radius: 4px;
    background: rgba(5,5,5,.65);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    backdrop-filter: blur(7px);
}

.product__shine {
    position: absolute;
    z-index: 1;
    inset: auto 10% -80px;
    height: 140px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .22;
    filter: blur(45px);
}

.product__body {
    position: relative;
    padding: 0 23px 23px;
}

.product__body > p {
    margin: 0 0 7px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
}

.product h3 {
    margin: 0;
    font-family: "Russo One", sans-serif;
    font-size: 25px;
    letter-spacing: .02em;
}

.product__subtitle {
    display: block;
    margin-top: 7px;
    color: #91869a;
    font-size: 11px;
}

.product__footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.product__footer div {
    display: grid;
}

.product__footer small {
    color: #91869a;
    font-size: 9px;
}

.product__footer strong {
    margin-top: 2px;
    font-size: 19px;
}

.product__footer button {
    padding: 11px 15px;
    border: 1px solid color-mix(in srgb, var(--accent), white 15%);
    border-radius: 5px;
    background: color-mix(in srgb, var(--accent), #160b21 60%);
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    transition: .25s ease;
}

.product__footer button:hover {
    transform: translateX(3px);
    filter: brightness(1.25);
}

.product__footer button span {
    margin-left: 8px;
}

.purchase-modal {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease, visibility .3s ease;
}

.purchase-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.purchase-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3,2,2,.82);
    backdrop-filter: blur(13px);
}

.purchase-modal__dialog {
    position: relative;
    width: min(1050px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    transform: translateY(30px) scale(.97);
    border: 1px solid rgba(166,101,255,.3);
    border-radius: 15px;
    background: #101012;
    box-shadow: 0 40px 100px rgba(0,0,0,.65);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.purchase-modal.is-open .purchase-modal__dialog {
    transform: translateY(0) scale(1);
}

.purchase-modal__close {
    position: absolute;
    z-index: 5;
    top: 15px;
    right: 17px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background: rgba(8,5,12,.7);
    cursor: pointer;
    font-size: 24px;
}

.purchase-flow {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    min-height: 620px;
}

.purchase-main {
    padding: 55px;
}

.purchase-step {
    display: none;
}

.purchase-step.is-active {
    display: block;
    animation: step-in .35s ease both;
}

.step-label {
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
}

.purchase-step h2 {
    margin: 9px 0 6px;
    font-family: "Russo One", sans-serif;
    font-size: 35px;
}

.purchase-step > p {
    margin: 0 0 28px;
    color: #988ba1;
    font-size: 13px;
}

.period-list {
    display: grid;
    gap: 11px;
}

.period-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: #19191c;
    cursor: pointer;
    transition: .25s ease;
}

.period-option:hover,
.period-option.is-selected {
    border-color: var(--orange);
    background: #29252e;
}

.period-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--orange);
}

.period-option span {
    display: grid;
}

.period-option strong {
    font-size: 15px;
}

.period-option small {
    margin-top: 3px;
    color: #bba6ca;
}

.purchase-next {
    width: 100%;
    margin-top: 24px;
    padding: 15px 20px;
    border: 1px solid #ae72ff;
    border-radius: 6px;
    background: linear-gradient(180deg, #b77aff, #7139d3);
    cursor: pointer;
    font-weight: 800;
    box-shadow: inset 0 1px rgba(255,255,255,.25), 0 15px 34px rgba(80,35,142,.34);
}

.purchase-next:hover {
    filter: brightness(1.15);
}

.purchase-next span {
    margin-left: 10px;
}

.purchase-summary {
    display: flex;
    flex-direction: column;
    padding: 55px 48px;
    background:
        radial-gradient(circle at 65% 18%, rgba(169,104,235,.11), transparent 28%),
        #161619;
}

.purchase-summary__head {
    display: flex;
    align-items: center;
    gap: 18px;
}

.purchase-summary__image {
    flex: 0 0 96px;
    height: 96px;
    border: 2px solid var(--orange);
    border-radius: 10px;
    background-image: url("../images/store-ranks.png");
    background-size: 200% 200%;
}

.purchase-summary__head small {
    color: #a88db8;
    font-size: 8px;
    letter-spacing: .14em;
}

.purchase-summary__head h3 {
    margin: 7px 0 4px;
    font-family: "Russo One", sans-serif;
    font-size: 25px;
}

.purchase-summary__head strong {
    color: #bd88ff;
    font-size: 13px;
}

.purchase-summary__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 18px;
    padding: 17px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: #b3a3bd;
    font-size: 12px;
}

.purchase-summary__price strong {
    color: white;
    font-size: 21px;
}

.purchase-summary__features {
    flex: 1;
    padding: 20px;
    border: 1px solid rgba(166,101,255,.32);
    border-radius: 8px;
    background: rgba(8,8,10,.58);
}

.purchase-summary__features > span {
    color: #b979ff;
    font-size: 12px;
    font-weight: 800;
}

.purchase-summary__features ul {
    display: grid;
    gap: 12px;
    margin: 17px 0 0;
    padding: 0;
    list-style: none;
}

.purchase-summary__features li {
    position: relative;
    padding-left: 18px;
    color: #c5b8cd;
    font-size: 12px;
    line-height: 1.4;
}

.purchase-summary__features li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 7px;
    top: 4px;
}

.purchase-summary > p {
    margin: 18px 0 0;
    color: #7d7087;
    font-size: 9px;
    text-align: center;
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.field span {
    color: #c0b0ca;
    font-size: 11px;
    font-weight: 700;
}

.field input {
    width: 100%;
    padding: 15px 16px;
    outline: none;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 6px;
    background: #19191c;
    color: white;
    transition: .2s ease;
}

.field input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(159,92,255,.14);
}

.field input.is-invalid {
    border-color: #ff4261;
}

.payment-title {
    margin: 24px 0 12px;
    font-size: 14px;
}

.payment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}

.order-number {
    display: block;
    margin: 20px 0 5px;
    color: #bd8aff;
    font-size: 11px;
    overflow-wrap: anywhere;
}

.payment-list input {
    position: absolute;
    opacity: 0;
}

.payment-list span {
    display: grid;
    place-items: center;
    min-height: 72px;
    padding: 11px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 7px;
    background: #18181b;
    cursor: pointer;
    color: #b77dff;
    font-size: 18px;
}

.payment-list small {
    margin-top: 7px;
    color: #c5b7cd;
    font-size: 9px;
}

.payment-list input:checked + span {
    border-color: var(--orange);
    background: #29252e;
}

.form-error {
    min-height: 18px;
    margin-top: 13px;
    color: #ff6a80;
    font-size: 11px;
}

.purchase-buttons {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
}

.purchase-buttons.is-single {
    grid-template-columns: 1fr;
}

.purchase-buttons > button:first-child {
    margin-top: 24px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
}

.purchase-success {
    padding-top: 100px;
    text-align: center;
}

.success-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border: 1px solid #62cf76;
    border-radius: 50%;
    background: rgba(52,180,77,.12);
    color: #72e388;
    font-size: 30px;
}

.footer {
    padding: 0 max(32px, calc((100vw - 1380px) / 2));
    background: #070708;
    color: #91869a;
}

.footer__top {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    align-items: center;
    gap: 30px;
    padding: 45px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.recent-purchases {
    min-width: 0;
}

.recent-purchases__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 9px;
}

.recent-purchases__heading > span {
    color: #eee7f5;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.recent-purchases__heading small {
    color: #77717f;
    font-size: 9px;
}

.recent-purchases__viewport {
    min-width: 0;
    overflow: hidden;
}

.recent-purchases__track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.recent-purchases__track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.recent-purchases__track::-webkit-scrollbar {
    display: none;
}

.recent-purchase,
.recent-purchases__empty {
    flex: 0 0 clamp(190px, 24%, 255px);
    min-width: 0;
    min-height: 190px;
    padding: 14px 16px 16px;
}

.recent-purchase {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    background:
        radial-gradient(circle at 50% 34%, rgba(161, 92, 235, .13), transparent 42%),
        #111113;
    scroll-snap-align: start;
}

.recent-purchase__time {
    position: absolute;
    z-index: 2;
    top: 11px;
    right: 11px;
    padding: 5px 9px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    background: #26242a;
    color: #c8bdcf;
    font-size: 9px;
    font-weight: 700;
}

.recent-purchase__image {
    position: absolute;
    inset: 13px 18px 52px;
    background-image: url("../images/store-ranks.png");
    background-repeat: no-repeat;
    background-size: 200% 200%;
    filter: drop-shadow(0 14px 20px rgba(0,0,0,.5));
}

.recent-purchase strong {
    overflow: hidden;
    color: #f7f1ff;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recent-purchase small {
    overflow: hidden;
    margin-top: 4px;
    color: #a99bb3;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recent-purchase small span {
    margin-right: 3px;
    color: #b879ff;
}

.recent-purchases__empty {
    display: grid;
    place-items: center;
    flex-basis: 100%;
    min-height: 190px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: #101012;
    color: #8f8298;
    font-size: 10px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    padding: 27px 0 40px;
    font-size: 10px;
    line-height: 1.7;
}

.footer__bottom div {
    display: grid;
}

.footer__bottom strong {
    color: #bdb0c5;
}

.footer__bottom a {
    color: #ad72f2;
    text-decoration: underline;
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 18px;
    margin-top: 14px;
}

.legal-body {
    background:
        radial-gradient(circle at 50% -10%, rgba(157, 94, 225, .1), transparent 34%),
        #070708;
}

.legal-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 48px));
    min-height: 98px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.legal-header__back {
    color: #cbbdd4;
    font-size: 12px;
    font-weight: 700;
    transition: color .2s ease;
}

.legal-header__back:hover {
    color: var(--orange);
}

.legal-page {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    padding: 74px 24px 110px;
}

.legal-page__glow {
    position: absolute;
    top: 70px;
    left: 50%;
    width: 620px;
    height: 230px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(159, 96, 225, .1);
    filter: blur(90px);
    pointer-events: none;
}

.legal-document {
    position: relative;
    width: min(980px, 100%);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 64px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(28, 28, 31, .98), rgba(13, 13, 15, .99));
    box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.legal-document__eyebrow {
    margin: 0 0 13px;
    color: #b982ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .26em;
}

.legal-document h1 {
    margin: 0 0 48px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -.04em;
    text-shadow: none;
}

.legal-document h1::after {
    display: none;
}

.legal-document__content h2 {
    margin: 42px 0 14px;
    color: #fbf7ff;
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.35;
}

.legal-document__content h2:first-child {
    margin-top: 0;
}

.legal-document__content p {
    margin: 0 0 15px;
    color: #c6b9cf;
    font-size: 14px;
    line-height: 1.8;
}

.legal-document__content a {
    color: #b879ff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 620px) {
    .legal-header {
        width: calc(100% - 32px);
        min-height: 80px;
    }

    .legal-header .brand__name {
        display: none;
    }

    .legal-page {
        padding: 38px 14px 70px;
    }

    .legal-document h1 {
        margin-bottom: 34px;
    }

    .legal-document__content p {
        font-size: 13px;
        line-height: 1.7;
    }
}

.footer__bottom p {
    margin: 0;
    text-align: right;
}

body.modal-open {
    overflow: hidden;
}

@keyframes step-in {
    from { opacity: 0; transform: translateX(15px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1050px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product__visual {
        height: 360px;
    }
}

@media (max-width: 760px) {
    .shop {
        padding: 80px 18px;
    }

    .purchase-modal {
        padding: 10px;
    }

    .purchase-flow {
        grid-template-columns: 1fr;
    }

    .purchase-main,
    .purchase-summary {
        padding: 38px 24px;
    }

    .purchase-summary {
        min-height: 460px;
    }

    .server-tabs {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .category-tab {
        flex: 0 0 auto;
    }

    .footer {
        padding-inline: 20px;
    }

    .footer__top {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
    }

    .footer__bottom p {
        text-align: left;
    }
}

@media (max-width: 520px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product__visual {
        height: 390px;
    }

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

    .payment-list span {
        grid-template-columns: auto 1fr;
        min-height: 55px;
    }

    .payment-list small {
        margin: 0 0 0 8px;
    }

    .purchase-summary__image {
        flex-basis: 76px;
        height: 76px;
    }
}

@media (max-width: 560px) {
    .brand__logo {
        width: 45px;
        height: 45px;
    }

    .brand__mark {
        width: 45px;
        height: 45px;
        font-size: 23px;
    }

    .brand__name {
        font-size: 12px;
    }

    .hero {
        padding-top: 145px;
    }

    .hero__art {
        height: 490px;
    }

    h1 {
        font-size: clamp(43px, 14.3vw, 72px);
        text-shadow: 0 4px 0 #c5c8c9, 0 8px 0 #777a7d, 0 20px 50px rgba(0, 0, 0, .9);
    }

    h2 {
        margin-top: 22px;
    }

    .hero__description {
        font-size: 12px;
    }

    .stats {
        gap: 9px;
        margin-top: 24px;
    }

    .stat {
        min-height: 95px;
        padding: 17px 14px;
    }

    .stat strong {
        font-size: 21px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .server {
        flex-direction: column;
        gap: 9px;
    }
}

/* Graphite interface refresh */
body {
    background:
        radial-gradient(circle at 50% -15%, rgba(141, 80, 211, .1), transparent 32%),
        #17181f;
}

.site-shell {
    background: #17181f;
}

.header {
    margin-top: 18px;
    padding-inline: 22px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 15px;
    background: rgba(28, 29, 37, .9);
    box-shadow: 0 18px 45px rgba(0,0,0,.2);
    backdrop-filter: blur(18px);
}

.site-shell::before {
    background:
        radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 20%), rgba(151, 91, 223, .08), transparent 28%);
}

.nav__link {
    color: #b9b8c3;
}

.online,
.header-ip {
    border-color: rgba(255,255,255,.08);
    background: #23242d;
}

.header-ip:hover {
    border-color: rgba(174, 112, 255, .6);
    background: #2b2735;
}

.hero__art {
    inset-inline: max(24px, calc((100vw - 1440px) / 2));
    border-radius: 28px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
    background:
        radial-gradient(circle at 50% 32%, rgba(151, 91, 223, .1), transparent 32%),
        #1d1e26;
}

.hero::after {
    background: linear-gradient(180deg, transparent, rgba(23, 24, 31, .38) 28%, #17181f 100%);
}

.hero__art::after {
    background: linear-gradient(180deg, rgba(23, 24, 31, .02), transparent 66%, #17181f 100%);
}

.hero__art img {
    filter: saturate(.72) contrast(1.04) brightness(.84);
}

.stat {
    border-color: rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(31, 32, 41, .88);
    box-shadow: 0 14px 32px rgba(0,0,0,.16);
}

.stat:hover {
    border-color: rgba(174, 112, 255, .5);
}

.button {
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0,0,0,.25);
}

.button--primary,
.purchase-next,
.payment-result__button {
    border-color: #ae72ff;
    background: linear-gradient(135deg, #9e55e8, #7441be);
}

.button--secondary {
    border-color: rgba(255,255,255,.1);
    background: #24252e;
}

.shop {
    background: #17181f;
}

.shop::before {
    opacity: .06;
}

.server-tab,
.category-tab {
    border-color: rgba(255,255,255,.07);
    background: #1f2028;
}

.server-tab:hover,
.server-tab.is-active,
.category-tab:hover,
.category-tab.is-active {
    border-color: rgba(174, 112, 255, .45);
    background: #292633;
    box-shadow: none;
}

.product {
    border-color: rgba(255,255,255,.06);
    border-radius: 18px;
    background: #1e1f27;
    box-shadow: 0 16px 38px rgba(0,0,0,.2);
}

.product__visual::after {
    background: linear-gradient(transparent, #1e1f27);
}

.product__footer button {
    border-color: rgba(174, 112, 255, .45);
    border-radius: 9px;
    background: #8d50d4;
}

.purchase-modal__dialog {
    border-color: rgba(255,255,255,.08);
    background: #1c1d25;
}

.purchase-main,
.purchase-summary {
    background-color: #1c1d25;
}

.period-option,
.field input,
.payment-list span {
    border-color: rgba(255,255,255,.08);
    background: #24252e;
}

.period-option:hover,
.period-option.is-selected,
.payment-list input:checked + span {
    background: #2d2938;
}

.footer {
    background: #14151b;
}

.footer__top {
    border-color: rgba(255,255,255,.07);
}

.recent-purchase,
.recent-purchases__empty {
    border-color: rgba(255,255,255,.07);
    background:
        radial-gradient(circle at 50% 34%, rgba(157, 89, 229, .12), transparent 42%),
        #1d1e26;
}

.legal-body,
.legal-page {
    background: #17181f;
}

.legal-document {
    border-color: rgba(255,255,255,.07);
    background: #1e1f27;
}

.payment-result {
    position: fixed;
    z-index: 220;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .25s ease, visibility .25s ease;
}

.payment-result.is-open {
    visibility: visible;
    opacity: 1;
}

.payment-result__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 8, .82);
    backdrop-filter: blur(12px);
}

.payment-result__dialog {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(520px, 100%);
    padding: 26px 42px 34px;
    transform: translateY(18px) scale(.98);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    background: #20212a;
    box-shadow: 0 35px 90px rgba(0,0,0,.55);
    text-align: center;
    transition: transform .28s ease;
}

.payment-result.is-open .payment-result__dialog {
    transform: translateY(0) scale(1);
}

.payment-result__close {
    position: absolute;
    top: 18px;
    right: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #85838d;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
}

.payment-result__label {
    width: min(270px, calc(100% - 65px));
    padding: 9px 18px;
    border-radius: 9px;
    background: linear-gradient(135deg, #9e55e8, #7441be);
    color: white;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(130, 67, 196, .28);
}

.payment-result h2 {
    margin: 24px 0 5px;
    font-family: Inter, sans-serif;
    font-size: clamp(26px, 5vw, 36px);
    line-height: 1.1;
}

.payment-result__description {
    margin: 0;
    color: #a9a5b1;
    font-size: 12px;
}

.payment-result__icon {
    width: 164px;
    height: 164px;
    margin: 20px 0 10px;
    object-fit: contain;
}

.payment-result__price {
    color: #faf7ff;
    font-size: 31px;
    line-height: 1;
}

.payment-result__product {
    max-width: 100%;
    margin-top: 7px;
    overflow: hidden;
    color: #c3bdca;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.payment-result__button {
    width: min(290px, 100%);
    margin-top: 30px;
    padding: 15px 22px;
    border: 1px solid #ae72ff;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    font-weight: 800;
}

.promo-field {
    display: grid;
    grid-template-columns: 1fr 118px;
    align-items: end;
    gap: 9px;
}

.promo-field .field {
    margin-bottom: 0;
}

.promo-field button {
    height: 48px;
    border: 1px solid rgba(174, 112, 255, .45);
    border-radius: 8px;
    background: #29252e;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
}

.promo-field button:hover:not(:disabled) {
    border-color: var(--orange);
    background: #352d40;
}

.promo-field button:disabled {
    cursor: wait;
    opacity: .65;
}

.promo-status {
    min-height: 20px;
    padding-top: 6px;
    font-size: 10px;
}

.promo-status.is-success {
    color: #72e388;
}

.promo-status.is-error {
    color: #ff6a80;
}

.terms-consent {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: start;
    gap: 13px;
    margin-top: 22px;
    padding: 15px 16px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    background: #22232b;
    cursor: pointer;
    color: #c7bfce;
    font-size: 13px;
    line-height: 1.6;
}

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

.terms-consent__check {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 6px;
    background: #24252e;
    color: transparent;
    font-size: 16px;
    font-weight: 900;
    transition: .2s ease;
}

.terms-consent input:checked + .terms-consent__check {
    border-color: #ad72ff;
    background: #8d50d4;
    color: white;
}

.terms-consent a {
    color: #bd88ff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.purchase-summary__price > div {
    display: grid;
    justify-items: end;
}

.purchase-summary__price del {
    margin-bottom: 3px;
    color: #817987;
    font-size: 11px;
}

@media (max-width: 760px) {
    .header {
        margin-top: 10px;
        padding-inline: 12px;
    }

    .hero__art {
        inset-inline: 10px;
        border-radius: 18px;
    }

    .payment-result__dialog {
        padding: 24px 20px 28px;
        border-radius: 18px;
    }

    .payment-result__icon {
        width: 138px;
        height: 138px;
    }
}

@media (max-width: 520px) {
    .promo-field {
        grid-template-columns: 1fr;
    }

    .promo-field button {
        width: 100%;
    }
}
