﻿:root {
    --bg: #0d0d0d;
    --line: #161616;

    --card-top: rgba(25, 28, 36, 0.32);
    --card-bottom: #13161d;
    --card-border: #2c2f36;

    --white: #ffffff;
    --text: #f3f8f8;
    --muted: #999c9e;

    --blue: #3866db;
    --blue-border: #5d85eb;
    --blue-hover: #4875e6;

    --secondary-bg: #222a3f;
    --secondary-border: #29344e;
    --secondary-text: #7890cf;

    --icon-btn: #39435d;
    --icon-btn-hover: #444f6d;

    --pill: rgba(111, 141, 227, 0.04);
    --nav-active-bg: #232b3f;
    --nav-active-border: #273046;
    --nav-active-text: #8195c8;

    --glow: #5173c9;
    --beam: #6585ee;

    --status-online: #5de366;
    --status-testing: #b5c4e9;
    --status-updating: #e3cf5d;
    --status-offline: #df4f4f;

    --radius-card: 40px;
    --radius-btn: 26px;

    --font-title: 'Unbounded', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

::selection {
    background: rgba(56, 102, 219, 0.4);
    color: #fff;
}

/* ---------- фон: линии, свечения, шум ---------- */

.arc-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.arc-bg .lines {
    position: absolute;
    inset: 0 120px;
    display: flex;
    justify-content: space-between;
}

.arc-bg .lines span {
    width: 1px;
    height: 100%;
    background: var(--line);
}

.arc-bg .glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: var(--glow);
    filter: blur(300px);
    opacity: 0.55;
}

.arc-bg .glow-1 { top: -220px; left: 30%; }
.arc-bg .glow-2 { top: 60%; left: -190px; }
.arc-bg .glow-3 { top: 15%; right: -190px; }

.arc-bg .beams {
    position: absolute;
    top: -160px;
    left: -310px;
    width: 735px;
    height: 1148px;
    opacity: 0.5;
    background:
        linear-gradient(180deg, rgba(101, 133, 238, 0.24), rgba(101, 133, 238, 0.16)) 0 0 / 124px 985px no-repeat,
        linear-gradient(180deg, rgba(101, 133, 238, 0.24), rgba(101, 133, 238, 0.16)) 253px 163px / 124px 985px no-repeat,
        linear-gradient(180deg, rgba(101, 133, 238, 0.24), rgba(101, 133, 238, 0.16)) 611px 0 / 124px 985px no-repeat;
    filter: blur(120px);
    transform: rotate(12deg);
}

.arc-bg .beams.right {
    left: auto;
    right: -310px;
    top: -260px;
    transform: rotate(-12deg);
}

.arc-noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: url('/img/arcane/noise.jpg') repeat;
    background-size: 256px;
    opacity: 0.02;
}

/* ---------- контейнер ---------- */

.arc-container {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1921px) {
    .arc-container { max-width: 1680px; }
}

.arc-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.15s ease;
    white-space: nowrap;
    overflow: hidden;
    isolation: isolate;
}

.arc-btn > * {
    position: relative;
    z-index: 1;
}

.arc-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.1px;
    height: 0.1px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    transition: width 0.35s ease, height 0.35s ease, opacity 0.35s ease;
    opacity: 0;
}

.arc-btn:active {
    transform: scale(0.97);
}

.arc-btn--primary {
    background: var(--blue);
    border-color: var(--blue-border);
    color: #fff;
}

.arc-btn--primary:hover,
.arc-btn--primary:focus-visible {
    color: #fff;
}

.arc-btn--primary::before {
    background: #4875e6;
}

.arc-btn--primary:hover::before {
    width: 168px;
    height: 168px;
    opacity: 1;
}

.arc-btn--secondary {
    background: var(--secondary-bg);
    border-color: var(--secondary-border);
    color: var(--secondary-text);
    backdrop-filter: blur(8px);
}

.arc-btn--secondary:hover,
.arc-btn--secondary:focus-visible {
    color: var(--secondary-text);
}

.arc-btn--secondary::before {
    background: #272f45;
}

.arc-btn--secondary:hover::before {
    width: 184px;
    height: 184px;
    opacity: 1;
}

.arc-btn--icon {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 50%;
    background: var(--icon-btn);
    border-color: var(--icon-btn);
    color: var(--text);
    font-size: 16px;
}

.arc-btn--icon::before {
    background: #30384c;
}

.arc-btn--icon:hover {
    background: var(--icon-btn-hover);
}

.arc-btn--icon:hover::before {
    width: 44px;
    height: 44px;
    opacity: 1;
}

.arc-btn--icon:disabled {
    opacity: 0.4;
    cursor: default;
}

.arc-btn--icon:disabled:hover::before {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
}

.arc-btn--social {
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 12px;
    background: #17191d;
    border-color: #1f2227;
    color: var(--text);
    font-size: 18px;
}

.arc-btn--social::before {
    border-radius: 12px;
    background: #1e2025;
}

.arc-btn--social:hover::before {
    width: 40px;
    height: 40px;
    opacity: 1;
}

/* ---------- бейдж секции (preheading) ---------- */

.arc-preheading {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 24px;
    background: var(--pill);
    border: 1px solid rgba(111, 141, 227, 0.12);
    color: var(--secondary-text);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ---------- заголовки ---------- */

.arc-h1,
.arc-h2 {
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #9cb2ea 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
}

.arc-h1 {
    font-size: clamp(40px, 5vw, 96px);
    line-height: 1.1;
    background: linear-gradient(90deg, #ffffff 0%, #9cb2ea 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.arc-h2 {
    font-size: clamp(24px, 2.5vw, 40px);
    line-height: 1.25;
    text-align: center;
}

.arc-section {
    position: relative;
    margin-top: 96px;
}

.arc-hero + .arc-section {
    margin-top: 64px;
}

.arc-section__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

/* ---------- статусы ---------- */

.arc-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    white-space: nowrap;
}

.arc-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.arc-status--sm {
    padding: 8px 12px;
    font-size: 12px;
    line-height: 16px;
    gap: 6px;
}

.arc-status--sm::before {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 8px currentColor;
}

.arc-status--online { color: var(--status-online); background: rgba(93, 227, 102, 0.08); }
.arc-status--testing { color: var(--status-testing); background: rgba(181, 196, 233, 0.08); }
.arc-status--updating { color: var(--status-updating); background: rgba(227, 207, 93, 0.08); }
.arc-status--offline { color: var(--status-offline); background: rgba(223, 79, 79, 0.08); }

/* ---------- карточка (базовая) ---------- */

.arc-card {
    position: relative;
    border-radius: var(--radius-card);
    background: linear-gradient(180deg, var(--card-top) 0%, var(--card-bottom) 100%);
    border: 1px solid rgba(44, 47, 54, 0.6);
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.arc-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 228px;
    height: 228px;
    border-radius: 50%;
    background: #373b45;
    filter: blur(60px);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.35s ease;
}

.arc-card:hover {
    border-color: var(--card-border);
}

.arc-card:hover::before {
    opacity: 0.9;
}

/* ---------- шапка ---------- */

.arc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 0;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease;
}

.arc-header.scrolled {
    background: rgba(13, 13, 13, 0.82);
}

.arc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.arc-header__left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.arc-logo img {
    width: 59px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.arc-nav {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 40px;
    background: var(--pill);
    border: 1px solid rgba(111, 141, 227, 0.04);
    backdrop-filter: blur(8px);
}

.arc-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    border-radius: 40px;
    border: 1px solid transparent;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.arc-nav a:hover {
    color: var(--nav-active-text);
    font-weight: 600;
}

.arc-nav a.active {
    background: var(--nav-active-bg);
    border-color: var(--nav-active-border);
    color: var(--nav-active-text);
    font-weight: 600;
}

.arc-nav a.active::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--nav-active-text);
}

.arc-header__right {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 100px;
    background: var(--pill);
    border: 1px solid rgba(111, 141, 227, 0.04);
    backdrop-filter: blur(8px);
}

/* мобильное меню */

.arc-burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--icon-btn);
    border: none;
    color: var(--text);
    font-size: 16px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.arc-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

.arc-mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.arc-mobile-menu a {
    font-family: var(--font-title);
    font-size: 20px;
    text-transform: uppercase;
    color: var(--text);
    padding: 12px 24px;
}

.arc-mobile-menu a.active {
    color: var(--nav-active-text);
}

.arc-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    max-height: 1080px;
    overflow: hidden;
}

/* heading: left calc(50% - 827px/2 - 426.5px) */
.arc-hero__heading {
    position: absolute;
    left: calc(50% - 840px);
    top: calc(50% - 217px + 3px);
    width: min(827px, 46vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    z-index: 2;
    transition: left 0.7s ease, opacity 0.55s ease;
}

.arc-hero__title {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.arc-hero__heading .subtitle {
    color: rgba(243, 248, 248, 0.6);
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    margin: 0;
}

/* products: default left 1114px → calc(50% + 154px) */
.arc-hero__products {
    position: absolute;
    left: calc(50% + 154px);
    top: calc(50% - 429px + 55px);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    width: 1680px;
    height: 858px;
    z-index: 2;
    transition: left 0.7s ease;
}

.arc-hero__products .arc-product-card--lg {
    opacity: 0.16;
    transition: opacity 0.55s ease, border-color 0.3s ease;
    pointer-events: none;
}

.arc-hero__products .arc-product-card--lg.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* nav: default left 1054px → calc(50% + 94px), top 573 → calc(50% + 33px) */
.arc-hero__nav {
    position: absolute;
    left: calc(50% + 94px);
    top: calc(50% + 33px);
    z-index: 4;
    transition: left 0.7s ease, opacity 0.45s ease, visibility 0.45s ease;
}

.arc-hero__nav--next {
    display: none;
    left: auto;
    right: 60px;
}

/* btns: default top -46px, expanded top 97px */
.arc-hero__toolbar {
    position: absolute;
    left: 50%;
    top: -46px;
    z-index: 5;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 214px;
    height: 46px;
    margin-left: -107px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: top 0.55s ease, opacity 0.45s ease, visibility 0.45s ease;
}

.arc-hero__catalog-btn {
    min-width: 162px;
    flex-shrink: 0;
}

.arc-hero__close {
    flex-shrink: 0;
    color: #7890cf;
}

.arc-scroll-down {
    position: absolute;
    left: 120px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3d4b67;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.arc-scroll-down__mouse {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.arc-scroll-down__wheel {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 3px;
    height: 5px;
    margin-left: -1.5px;
    border-radius: 2px;
    background: #3d4b67;
    animation: arc-scroll-wheel 1.4s ease-in-out infinite;
}

@keyframes arc-scroll-wheel {
    0%   { transform: translateY(0); opacity: 1; }
    55%  { transform: translateY(7px); opacity: 0; }
    56%  { transform: translateY(-2px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* expanded: products left 120, bottom 56 — только горизонтальный сдвиг */
.arc-hero.is-expanded .arc-hero__heading {
    left: -827px;
    opacity: 0;
    pointer-events: none;
}

.arc-hero.is-expanded .arc-hero__products {
    left: 120px;
}

.arc-hero.is-expanded .arc-hero__products .arc-product-card--lg {
    opacity: 1;
    pointer-events: auto;
}

.arc-hero.is-expanded .arc-hero__nav--prev {
    left: 60px;
}

.arc-hero.is-expanded .arc-hero__nav--next {
    display: inline-flex;
}

.arc-hero.is-expanded .arc-hero__toolbar {
    top: 97px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.arc-hero.is-expanded .arc-scroll-down {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ---------- карточка продукта ---------- */

.arc-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--radius-card);
    background: linear-gradient(180deg, rgba(25, 28, 36, 0) 0%, var(--card-bottom) 100%);
    border: 1px solid rgba(44, 47, 54, 0.5);
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.arc-product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(25, 28, 36, 0);
    pointer-events: none;
    z-index: 1;
    transition: background 0.3s ease;
}

.arc-product-card:hover {
    border-color: var(--card-border);
}

.arc-product-card--lg:hover::after {
    background: rgba(25, 28, 36, 0.24);
}

.arc-product-card--lg {
    width: 544px;
    height: 858px;
    padding: 64px;
    flex-shrink: 0;
    transition: opacity 0.55s ease, border-color 0.3s ease;
}

.arc-product-card--md {
    width: 260px;
    height: 410px;
    padding: 24px;
    flex-shrink: 0;
}

.arc-product-card .game-title-bg {
    position: absolute;
    top: 18%;
    left: 50%;
    width: 70%;
    max-width: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
    transform: translate(-50%, 12px);
    transition: transform 0.45s ease;
}

.arc-product-card .game-title-bg img {
    width: 100%;
    max-height: 160px;
    height: auto;
    object-fit: contain;
    opacity: 0.28;
    /* тёмный «watermark» как старый синий текст */
    filter: brightness(0) saturate(100%) invert(28%) sepia(45%) saturate(900%) hue-rotate(195deg) brightness(0.85);
    transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s ease;
}

.arc-product-card--md .game-title-bg {
    top: 16%;
    width: 72%;
    max-width: 170px;
}

.arc-product-card--md .game-title-bg img {
    max-height: 80px;
}

.arc-product-card--lg .game-title-bg {
    top: 14%;
    width: 62%;
    max-width: 400px;
}

.arc-product-card--lg .game-title-bg img {
    max-height: 200px;
}

/* hover: иконка за персонажем поднимается и светится синим */
.arc-product-card:hover .game-title-bg {
    transform: translate(-50%, -18px);
}

.arc-product-card:hover .game-title-bg img {
    opacity: 0.92;
    filter: brightness(0) saturate(100%) invert(42%) sepia(78%) saturate(1200%) hue-rotate(195deg) brightness(1.15)
        drop-shadow(0 0 18px rgba(56, 102, 219, 0.85))
        drop-shadow(0 0 42px rgba(93, 133, 235, 0.65));
    transform: scale(1.06);
}

.arc-product-card .arc-product-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    max-width: 140px;
    position: relative;
    z-index: 2;
}

.arc-product-card .arc-product-card__icon img {
    max-width: 100%;
    max-height: 28px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.arc-product-card--lg .arc-product-card__icon img {
    max-height: 36px;
}

.arc-product-card__icon--empty {
    width: 48px;
    height: 24px;
}

.arc-product-card__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
}

.arc-product-card--md .arc-product-card__meta {
    align-items: flex-start;
}

.arc-product-card .glow-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #373b45;
    filter: blur(110px);
    z-index: 0;
    opacity: 0.85;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.arc-product-card:hover .glow-inner {
    opacity: 1;
    background: #3a5fbf;
    transform: translate(-50%, -50%) scale(1.08);
}

.arc-product-card .person {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center top;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 100%);
    transition: transform 0.45s ease;
    transform-origin: center bottom;
}

.arc-product-card:hover .person {
    transform: scale(1.014);
}

.arc-product-card .person::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19, 22, 29, 0) 40%, rgba(19, 22, 29, 0.92) 100%);
}

/* арт из макета: лёгкое затухание сверху, чтобы просвечивал game-title-bg */
.arc-product-card .person--art {
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
}

/* medium (каталог): персонаж на карточке, сверху полупрозрачная маска — видна иконка игры */
.arc-product-card--md .person,
.arc-product-card--md .person--art {
    background-size: cover;
    background-position: center top;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 100%);
}

.arc-product-card--md:hover .person,
.arc-product-card--md:hover .person--art {
    transform: scale(1.014);
}

.arc-product-card .person--art::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19, 22, 29, 0) 40%, rgba(19, 22, 29, 0.92) 100%);
}

.arc-product-card__header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.arc-product-card--md .arc-product-card__header {
    margin-bottom: auto;
    align-self: stretch;
}

.arc-product-card__footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.arc-product-card--md .arc-product-card__footer {
    flex-direction: row;
    align-items: flex-end;
    gap: 10px;
}

.arc-product-card--md {
    justify-content: flex-end;
}

.arc-product-card__price {
    color: var(--text);
    font-size: 14px;
}

.arc-product-card__price span {
    color: var(--blue);
    font-weight: 600;
}

.arc-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 402px);
    gap: 24px;
}

.arc-bento .arc-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.arc-bento .cell-tall { grid-row: span 2; }
.arc-bento .cell-wide { grid-column: span 2; }

.arc-bento .arc-card .icon-bg {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 120px;
    color: rgba(35, 41, 56, 0.55);
    pointer-events: none;
    z-index: 0;
    transition: color 0.3s ease;
}

.arc-bento .arc-card:hover .icon-bg {
    color: rgba(56, 102, 219, 0.25);
}

.arc-bento .arc-card > div {
    position: relative;
    z-index: 1;
}

.arc-bento .arc-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.arc-bento .arc-card p {
    font-size: 14px;
    color: var(--text);
    opacity: 0.8;
    line-height: 1.35;
}

.arc-products-head {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.arc-products-head .side-l { justify-self: start; }
.arc-products-head .side-r { justify-self: end; display: flex; align-items: center; gap: 8px; }

.arc-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px;
}

.arc-slider::-webkit-scrollbar {
    display: none;
}

.arc-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.arc-video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-card);
    border: 1px solid var(--card-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.arc-video:hover {
    transform: translateY(-4px);
}

.arc-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.64) 100%);
}

.arc-video__logo {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: radial-gradient(circle at 50% 30%, #1d222d 0%, #13161d 100%);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.arc-video__title {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.arc-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(56, 102, 219, 0.85);
    border: 1px solid var(--blue-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.arc-video:hover .arc-video__play {
    opacity: 1;
}

.arc-advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.arc-advantage {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
}

.arc-advantage .icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #17191d;
    border: 1px solid #1f2227;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4d6ec2;
    font-size: 26px;
}

.arc-advantage > div {
    position: relative;
    z-index: 1;
}

.arc-advantage h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.arc-advantage p {
    font-size: 14px;
    color: var(--text);
    opacity: 0.8;
    line-height: 1.35;
}

/* ---------- CTA ---------- */

.arc-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 48px;
    border-radius: var(--radius-card);
    background: linear-gradient(90deg, var(--blue) 0%, #17181d 100%);
    overflow: hidden;
}

.arc-cta__text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    max-width: 560px;
}

.arc-cta__title {
    display: block;
    width: fit-content;
    max-width: 100%;
}

.arc-cta__text h2 {
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: fit-content;
    max-width: 100%;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    white-space: nowrap;
}

.arc-cta__text h2 span {
    display: block;
    background: linear-gradient(180deg, #ffffff 0%, #9cb2ea 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.arc-cta__eye {
    width: 33px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.64;
    filter: brightness(0) invert(1);
}

.arc-cta__text p {
    font-size: 14px;
    color: var(--text);
}

.arc-cta__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    background:
        linear-gradient(90deg, rgba(23, 24, 29, 0.7) 0%, rgba(23, 24, 29, 0.35) 100%),
        url('/img/arcane/cta.jpg') center / cover no-repeat;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 45%);
    filter: saturate(0.55);
    opacity: 0.75;
    z-index: 1;
}

.arc-cta .arc-btn {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* ---------- footer ---------- */

.arc-footer {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    gap: 24px;
    margin: 120px 0 48px;
}

.arc-footer .arc-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    min-height: 232px;
    overflow: visible;
}

.arc-footer__brand .logo img {
    width: 49px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.arc-footer__brand .desc {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text);
    opacity: 0.9;
    line-height: 1.4;
}

.arc-footer__brand .socials {
    display: flex;
    gap: 8px;
}

.arc-footer__links .caption {
    color: var(--muted);
    font-size: 14px;
}

.arc-footer__links nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.arc-footer__links nav a {
    color: var(--text);
    font-size: 14px;
    line-height: 18px;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.arc-footer__links nav a:hover {
    color: var(--secondary-text);
}

.arc-footer__reseller {
    position: relative;
    overflow: hidden !important;
}

.arc-footer__reseller .glow-inner {
    position: absolute;
    left: -114px;
    bottom: -110px;
    width: 228px;
    height: 228px;
    border-radius: 50%;
    background: #373b45;
    filter: blur(120px);
    opacity: 0.64;
}

.arc-footer__reseller h3 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #9cb2ea 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.arc-footer__reseller p {
    font-size: 14px;
    color: var(--text);
    max-width: 260px;
}

.arc-footer__reseller .content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
}

.arc-footer__reseller .mini-cards {
    position: absolute;
    right: -40px;
    top: 16px;
    bottom: 16px;
    width: 360px;
    pointer-events: none;
}

.arc-footer__reseller .mini-cards span {
    position: absolute;
    width: 120px;
    height: 189px;
    border-radius: 18px;
    background: linear-gradient(180deg, #13151b 0%, #13161d 100%) center / cover;
    border: 1px solid var(--card-border);
    background-size: cover;
    background-position: center top;
}

.arc-footer__reseller .mini-cards span.mini-card--art {
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #13161d;
}

.arc-footer__reseller .mini-cards span:nth-child(1) { left: 0; top: 14px; transform: rotate(-6deg); }
.arc-footer__reseller .mini-cards span:nth-child(2) { left: 111px; top: 6px; z-index: 2; }
.arc-footer__reseller .mini-cards span:nth-child(3) { left: 222px; top: 0; transform: rotate(6deg); }

.arc-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 32px;
    color: var(--muted);
    font-size: 13px;
}

.arc-copyright a {
    color: var(--secondary-text);
}

/* ============================================================
   Адаптив
   ============================================================ */

@media (max-width: 1500px) {
    .arc-hero__heading {
        left: 48px;
        width: min(520px, 40vw);
    }

    .arc-hero__products {
        left: calc(50% + 40px);
        transform: scale(0.78);
        transform-origin: left center;
    }

    .arc-hero.is-expanded .arc-hero__products {
        left: 80px;
        transform: scale(0.72);
        transform-origin: left bottom;
    }

    .arc-hero__nav {
        left: calc(50% - 20px);
    }

    .arc-hero.is-expanded .arc-hero__nav--prev {
        left: 24px;
    }
}

@media (max-width: 1200px) {
    .arc-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .arc-bento .cell-tall { grid-row: auto; min-height: 300px; }
    .arc-bento .cell-wide { grid-column: auto; }
    .arc-bento .arc-card { min-height: 300px; }

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

    .arc-footer { grid-template-columns: 1fr 1fr; }
    .arc-footer__reseller { grid-column: span 2; }
}

@media (max-width: 992px) {
    .arc-nav { display: none; }
    .arc-header__right .arc-btn--secondary { display: none; }
    .arc-burger { display: inline-flex; }

    .arc-hero {
        height: auto;
        max-height: none;
        min-height: unset;
        padding: 140px 16px 64px;
        overflow: visible;
    }

    .arc-hero__heading,
    .arc-hero.is-expanded .arc-hero__heading {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        opacity: 1;
        pointer-events: auto;
    }

    .arc-hero__nav,
    .arc-hero__toolbar,
    .arc-hero.is-expanded .arc-hero__toolbar,
    .arc-hero.is-expanded .arc-hero__nav--next {
        display: none !important;
    }

    .arc-hero__products,
    .arc-hero.is-expanded .arc-hero__products {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: calc(100% + 16px);
        height: auto;
        margin-top: 32px;
        overflow-x: auto;
        transform: none;
        scrollbar-width: none;
    }

    .arc-hero__products::-webkit-scrollbar { display: none; }

    .arc-hero__products .arc-product-card--lg {
        opacity: 1;
        pointer-events: auto;
        width: 300px;
        height: 480px;
        padding: 24px;
    }

    .arc-product-card--lg .game-title-bg img { max-height: 140px; }

    .arc-scroll-down { display: none; }

    .arc-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
    }

    .arc-cta__text h2 {
        white-space: normal;
        align-items: flex-start;
    }

    .arc-cta__eye {
        margin-top: 5px;
    }

    .arc-cta__image {
        width: 100%;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 60%);
        mask-image: linear-gradient(180deg, transparent 0%, #000 60%);
        opacity: 0.35;
    }
}

@media (max-width: 768px) {
    .arc-container { padding: 0 16px; }
    .arc-bg .lines { inset: 0 16px; }

    .arc-section { margin-top: 80px; }

    .arc-bento { grid-template-columns: 1fr; }
    .arc-bento .arc-card { min-height: 220px; }

    .arc-advantages { grid-template-columns: 1fr; }

    .arc-footer { grid-template-columns: 1fr; }
    .arc-footer__reseller { grid-column: auto; }
    .arc-footer .arc-card { border-radius: 32px; }
    .arc-footer__reseller .mini-cards { display: none; }

    .arc-products-head {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 16px;
    }

    .arc-products-head .side-l { display: none; }
    .arc-products-head .side-r { justify-self: center; }

    .arc-copyright {
        flex-direction: column;
        text-align: center;
    }
}

/* ---------- страница Products ---------- */

.arc-page-products .arc-header__left {
    flex-wrap: wrap;
}

.arc-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: rgba(243, 248, 248, 0.32);
}

.arc-breadcrumbs a {
    color: inherit;
    transition: color 0.25s ease;
}

.arc-breadcrumbs a:hover {
    color: rgba(243, 248, 248, 0.7);
}

.arc-breadcrumbs i {
    font-size: 10px;
}

.arc-products-main {
    position: relative;
    z-index: 1;
    padding: 166px 0 96px;
    min-height: calc(100vh - 280px);
}

.arc-products-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    text-align: center;
}

.arc-products-title .arc-h2 {
    margin: 0;
}

.arc-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.arc-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 26px;
    border: 1px solid rgba(41, 52, 78, 0.48);
    background: rgba(34, 42, 63, 0.48);
    backdrop-filter: blur(4px);
    color: #7890cf;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.arc-chip:hover {
    color: #9cb2ea;
    border-color: rgba(93, 133, 235, 0.35);
}

.arc-chip.is-active {
    color: #9cb2ea;
    background: rgba(56, 102, 219, 0.18);
    border-color: rgba(93, 133, 235, 0.55);
}

.arc-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 260px);
    gap: 24px;
    justify-content: center;
}

.arc-products-grid .arc-product-card.is-hidden {
    display: none;
}

.arc-status--xs {
    padding: 4px 8px;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
    border-radius: 40px;
}

.arc-status--xs::before {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 8px currentColor;
}

.arc-page-products .arc-footer {
    margin-top: 96px;
}

/* ---------- game product picker (/game/) ---------- */

.arc-game-hero {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(41, 52, 78, 0.48);
    background: rgba(19, 22, 29, 0.72);
    overflow: hidden;
}

.arc-game-hero__art {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 320px;
    border-radius: 14px;
    background-size: cover;
    background-position: center top;
    background-color: #0d1016;
}

.arc-game-hero__art.has-art {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-color: #10131a;
}

.arc-game-hero__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.arc-game-hero__text .arc-h2 {
    margin: 0;
}

.arc-game-hero__text p {
    margin: 0;
    color: rgba(243, 248, 248, 0.55);
    font-size: 15px;
    line-height: 1.5;
    max-width: 520px;
}

.arc-page-game .arc-products-title {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin-bottom: 24px;
}

.arc-page-game .arc-game-grid {
    justify-content: start;
}

@media (max-width: 768px) {
    .arc-game-hero {
        grid-template-columns: 1fr;
    }

    .arc-game-hero__art {
        max-height: 240px;
        aspect-ratio: 16 / 9;
    }

    .arc-page-game .arc-products-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ---------- product siblings switcher ---------- */

.arc-product-siblings {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}

.arc-product-siblings a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(41, 52, 78, 0.55);
    background: rgba(34, 42, 63, 0.4);
    color: rgba(243, 248, 248, 0.72);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.arc-product-siblings a:hover {
    color: #f3f8f8;
    border-color: rgba(123, 205, 237, 0.45);
}

.arc-product-siblings a.is-active {
    color: #141518;
    background: #7bcded;
    border-color: #7bcded;
}

.arc-product-siblings__label {
    width: 100%;
    margin: 0 0 2px;
    color: rgba(243, 248, 248, 0.4);
    font-size: 12px;
    font-weight: 500;
}

@media (max-width: 1680px) {
    .arc-products-grid {
        grid-template-columns: repeat(4, 260px);
    }
}

@media (max-width: 1200px) {
    .arc-breadcrumbs {
        display: none;
    }

    .arc-products-grid {
        grid-template-columns: repeat(3, minmax(0, 260px));
    }
}

@media (max-width: 900px) {
    .arc-products-main {
        padding: 120px 0 64px;
    }

    .arc-products-grid {
        grid-template-columns: repeat(2, minmax(0, 260px));
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .arc-products-grid {
        grid-template-columns: minmax(0, 260px);
    }

    .arc-products-grid .arc-product-card--md {
        width: 100%;
        max-width: 260px;
        justify-self: center;
    }
}

/* ---------- product detail page ---------- */

.arc-page-product .arc-product-main {
    position: relative;
    z-index: 2;
    padding: 166px 0 48px;
}

.arc-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 970px) 402px;
    gap: 24px;
    align-items: start;
}

.arc-product-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}

.arc-product-hero {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.arc-product-poster {
    position: relative;
    flex: 0 0 257px;
    width: 257px;
    height: 274px;
    border-radius: var(--radius-card);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(25, 28, 36, 0) 0%, rgba(19, 22, 29, 0.48) 100%);
    isolation: isolate;
}

.arc-product-poster .glow-inner {
    position: absolute;
    width: 300px;
    height: 300px;
    left: -150px;
    top: 237px;
    background: #373b45;
    filter: blur(200px);
    z-index: 0;
    pointer-events: none;
}

.arc-product-poster .game-title-bg,
.arc-product-poster__icon {
    position: absolute;
    left: 50%;
    top: 28px;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    pointer-events: none;
}

.arc-product-poster .game-title-bg img,
.arc-product-poster__icon img {
    max-width: 140px;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.45;
    filter: brightness(0.7);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.arc-product-poster:hover .game-title-bg img,
.arc-product-poster:hover .arc-product-poster__icon img {
    opacity: 0.95;
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(123, 205, 237, 0.45));
}

.arc-product-poster .person {
    position: absolute;
    left: 50%;
    bottom: -40px;
    width: 253px;
    height: 398px;
    transform: translateX(-50%);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 2;
    mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
}

.arc-product-poster .person--art {
    background-size: contain;
    background-position: center bottom;
    bottom: 0;
    height: 100%;
    width: 100%;
    mask-image: none;
    -webkit-mask-image: none;
}

.arc-product-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.arc-product-info__top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.arc-product-info__title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.arc-product-info__title h1 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff 0%, #9cb2ea 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.arc-product-info__desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 18px;
    max-width: 689px;
}

.arc-product-gallery {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 16px 12px;
    background: rgba(19, 22, 29, 0.48);
    border: 1px solid rgba(44, 47, 54, 0.48);
    border-radius: var(--radius-card);
    width: 100%;
}

.arc-product-gallery__track {
    display: flex;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.arc-product-gallery__track::-webkit-scrollbar {
    display: none;
}

.arc-product-gallery__item {
    flex: 0 0 172px;
    width: 172px;
    height: 96px;
    border-radius: 24px;
    border: 1px solid #2c2f36;
    background:
        linear-gradient(0deg, rgba(13, 43, 120, 0.16), rgba(13, 43, 120, 0.16)),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.64) 100%),
        center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.arc-product-gallery__item:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.arc-product-gallery__item.is-video {
    background:
        linear-gradient(0deg, rgba(13, 43, 120, 0.28), rgba(13, 43, 120, 0.28)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.arc-product-gallery__item.is-video i {
    font-size: 28px;
    color: #bccefd;
}

.arc-product-gallery__dots {
    display: flex;
    gap: 4px;
}

.arc-product-gallery__dots span {
    width: 8px;
    height: 8px;
    border-radius: 1000px;
    background: #1c2228;
}

.arc-product-gallery__dots span.is-active {
    background: var(--blue);
}

.arc-product-panel {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px;
    border-radius: var(--radius-card);
    background: linear-gradient(180deg, rgba(25, 28, 36, 0.1536) 0%, rgba(19, 22, 29, 0.48) 100%);
    backdrop-filter: blur(4px);
}

.arc-product-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 0 48px;
    height: 68px;
    background: rgba(29, 33, 43, 0.48);
    border: 1px solid rgba(33, 37, 48, 0.48);
    border-radius: 24px;
}

.arc-product-tabs__sep {
    width: 1px;
    height: 46px;
    background: rgba(44, 49, 64, 0.8);
    flex-shrink: 0;
}

.arc-product-tab {
    flex: 1;
    max-width: 357px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    position: relative;
    transition: color 0.2s ease;
}

.arc-product-tab i {
    color: #86888c;
    font-size: 18px;
}

.arc-product-tab.is-active {
    border-bottom-color: var(--blue);
}

.arc-product-tab.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--blue);
    filter: blur(12px);
    pointer-events: none;
}

.arc-product-tab.is-active i {
    color: var(--blue);
}

.arc-product-tabpanel {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.arc-product-tabpanel.is-active {
    display: flex;
}

.arc-func {
    background: rgba(29, 33, 43, 0.48);
    border: 1px solid rgba(33, 37, 48, 0.48);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.arc-func.is-open {
    padding-bottom: 24px;
}

.arc-func.is-open::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    left: -109px;
    top: calc(50% - 93px);
    background: var(--blue);
    filter: blur(73px);
    pointer-events: none;
    z-index: 0;
}

.arc-func__head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 18px;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    position: relative;
    z-index: 1;
    font-family: var(--font-body);
}

.arc-func__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
}

.arc-func__label .icon-func {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-style: normal;
}

.arc-func__chevron {
    color: #86888c;
    transition: transform 0.2s ease, color 0.2s ease;
}

.arc-func.is-open .arc-func__chevron {
    transform: rotate(180deg);
    color: var(--blue);
}

.arc-func__body {
    display: none;
    padding: 0 18px;
    position: relative;
    z-index: 1;
}

.arc-func.is-open .arc-func__body {
    display: block;
}

.arc-func__line {
    display: block;
    height: 1px;
    margin-bottom: 24px;
    background: linear-gradient(90deg, rgba(44, 49, 64, 0) 0%, #2c3140 50%, rgba(44, 49, 64, 0) 100%);
    border-radius: 2px;
}

.arc-func__body p {
    color: var(--muted);
    font-size: 14px;
    line-height: 18px;
}

.arc-reqs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.arc-req {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 16px;
    width: calc(50% - 6px);
    min-height: 78px;
    padding: 18px;
    background: rgba(29, 33, 43, 0.48);
    border: 1px solid rgba(33, 37, 48, 0.48);
    border-radius: 20px;
}

.arc-req > i {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 22px;
    flex-shrink: 0;
}

.arc-req__label {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 8px;
}

.arc-req__value {
    display: block;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
}

.arc-product-buy {
    position: sticky;
    top: 130px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px;
    border-radius: var(--radius-card);
    background: linear-gradient(180deg, rgba(25, 28, 36, 0.1536) 0%, rgba(19, 22, 29, 0.48) 100%);
    backdrop-filter: blur(4px);
}

.arc-product-periods {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.arc-period {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    width: 100%;
    height: 56px;
    padding: 16px 24px 16px 16px;
    border-radius: 50px;
    background: rgba(32, 36, 44, 0.48);
    border: 1px solid rgba(38, 42, 51, 0.48);
    color: var(--text);
    cursor: pointer;
    font-family: var(--font-body);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.arc-period:hover {
    border-color: rgba(56, 102, 219, 0.4);
}

.arc-period.is-active {
    border-color: rgba(56, 102, 219, 0.55);
    background: rgba(40, 48, 68, 0.55);
}

.arc-period__left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.arc-period__radio {
    width: 24px;
    height: 24px;
    border-radius: 100px;
    background: rgba(40, 45, 54, 0.48);
    border: 1px solid rgba(44, 50, 61, 0.48);
    position: relative;
    flex-shrink: 0;
}

.arc-period.is-active .arc-period__radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 100px;
    background: var(--blue);
}

.arc-period__time {
    color: var(--muted);
    font-size: 14px;
    line-height: 18px;
}

.arc-period.is-active .arc-period__time {
    color: var(--text);
}

.arc-period__price {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

.arc-product-buy__footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.arc-buy-email {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.arc-buy-email label {
    font-size: 13px;
    color: rgba(243, 248, 248, 0.45);
}

.arc-buy-email__input {
    width: 100%;
    box-sizing: border-box;
    height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(44, 50, 61, 0.8);
    background: rgba(20, 23, 28, 0.9);
    color: #f3f8f8;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.arc-buy-email__input:focus {
    border-color: var(--blue);
}

.arc-pay-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.arc-pay-methods__label {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.arc-pay-method {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-radius: 50px;
    background: rgba(32, 36, 44, 0.48);
    border: 1px solid rgba(38, 42, 51, 0.48);
    color: var(--muted);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.arc-pay-method:hover {
    border-color: rgba(56, 102, 219, 0.4);
}

.arc-pay-method.is-active {
    border-color: rgba(56, 102, 219, 0.55);
    background: rgba(40, 48, 68, 0.55);
    color: var(--text);
}

.arc-pay-method .arc-period__radio {
    width: 20px;
    height: 20px;
}

.arc-pay-method.is-active .arc-period__radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 100px;
    background: var(--blue);
}

.arc-agree {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.arc-agree__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.arc-agree__box {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(40, 45, 54, 0.48);
    border: 1px solid rgba(44, 50, 61, 0.48);
    flex-shrink: 0;
    position: relative;
}

.arc-agree__input:checked + .arc-agree__box {
    background: rgba(56, 102, 219, 0.2);
    border-color: var(--blue);
}

.arc-agree__input:checked + .arc-agree__box::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid var(--blue);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.arc-agree__text {
    color: var(--blue);
    font-size: 14px;
    line-height: 18px;
}

.arc-agree__text a {
    color: inherit;
    text-decoration: underline;
}

.arc-product-buy__btn {
    width: 100%;
    height: 74px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    gap: 6px;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.arc-product-buy__btn.is-disabled {
    pointer-events: none;
    opacity: 0.45;
    filter: grayscale(0.2);
}

.arc-product-empty {
    color: var(--muted);
    font-size: 14px;
    line-height: 18px;
    padding: 8px 0;
}

@media (max-width: 1400px) {
    .arc-product-layout {
        grid-template-columns: minmax(0, 1fr) 360px;
    }
}

@media (max-width: 1100px) {
    .arc-page-product .arc-product-main {
        padding: 130px 0 48px;
    }

    .arc-product-layout {
        grid-template-columns: 1fr;
    }

    .arc-product-buy {
        position: static;
        order: -1;
    }
}

@media (max-width: 800px) {
    .arc-product-hero {
        flex-direction: column;
    }

    .arc-product-poster {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .arc-product-info__title h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .arc-product-tabs {
        gap: 12px;
        padding: 0 12px;
    }

    .arc-product-tab {
        font-size: 14px;
        padding: 0 8px;
    }

    .arc-req {
        width: 100%;
    }
}

@keyframes arcFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Payment success ── */
.arc-page-success {
    min-height: 100vh;
}

.arc-success {
    position: relative;
    z-index: 1;
    padding: 140px 0 80px;
}

.arc-success__inner {
    max-width: 820px;
    text-align: center;
}

.arc-success__brand {
    margin-bottom: 48px;
}

.arc-success__title {
    margin: 0 auto 18px;
    max-width: 14ch;
}

.arc-success__congrats {
    margin: 0;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    opacity: 0;
    animation: arcFadeUp 0.7s ease 0.15s forwards;
}

.arc-success__panel {
    text-align: left;
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(160deg, rgba(18, 28, 48, 0.72), rgba(8, 12, 22, 0.55)),
        radial-gradient(ellipse at top left, rgba(90, 140, 255, 0.12), transparent 55%);
    backdrop-filter: blur(16px);
    opacity: 0;
    animation: arcFadeUp 0.7s ease 0.28s forwards;
}

.arc-success__key-block {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.arc-success__key-block .arc-preheading {
    display: block;
    margin-bottom: 14px;
}

.arc-success__key {
    font-family: "Unbounded", sans-serif;
    font-size: clamp(18px, 2.4vw, 26px);
    font-weight: 600;
    letter-spacing: 0.04em;
    word-break: break-all;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 18px;
    padding: 16px 18px;
    background: rgba(0, 0, 0, 0.28);
    border-left: 3px solid rgba(120, 170, 255, 0.85);
}

.arc-success__copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.arc-success__wait {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.arc-success__wait b {
    color: #fff;
    font-weight: 600;
}

.arc-success__details-title {
    margin: 0 0 18px;
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.arc-success__meta {
    margin: 0;
    display: grid;
    gap: 16px;
}

.arc-success__meta > div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    align-items: baseline;
}

.arc-success__meta dt {
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.45);
}

.arc-success__meta dd {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.arc-success__cheat {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.arc-success__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
    opacity: 0;
    animation: arcFadeUp 0.7s ease 0.4s forwards;
}

@media (max-width: 640px) {
    .arc-success {
        padding: 120px 0 60px;
    }

    .arc-success__panel {
        padding: 22px 18px;
    }

    .arc-success__meta > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .arc-scroll-down__wheel {
        animation: none;
    }

    .arc-product-card:hover .person {
        transform: none;
    }
}

body.arc-pay-modal-open {
    overflow: hidden;
}

.arc-pay-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.arc-pay-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.arc-pay-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
}

.arc-pay-modal__panel {
    position: relative;
    width: min(420px, 100%);
    padding: 28px 24px 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, #191c24 0%, #12151b 100%);
    border: 1px solid #2c2f36;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.arc-pay-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #999c9e;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.arc-pay-modal__close:hover {
    color: #fff;
}

.arc-pay-modal__title {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 6px;
}

.arc-pay-modal__hint {
    color: var(--muted);
    margin: 0 0 18px;
}

.arc-pay-modal__methods {
    display: grid;
    gap: 10px;
}

.arc-pay-modal__method {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #2c2f36;
    background: rgba(255, 255, 255, .03);
    color: inherit;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}

.arc-pay-modal__method:hover {
    border-color: var(--blue-border);
    background: rgba(56, 102, 219, .12);
}

.arc-pay-modal__method.is-offline {
    opacity: .55;
}

.arc-pay-modal__method.is-offline::after {
    content: 'скоро';
    float: right;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.arc-pay-modal__method-name {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.arc-pay-modal__method-desc {
    display: block;
    font-size: 12px;
    color: var(--muted);
}
