:root {
    --lp-bg: #07090d;
    --lp-panel: #0d1118;
    --lp-panel-2: #121823;
    --lp-text: #f6f7fb;
    --lp-muted: #8f98a8;
    --lp-line: rgba(255,255,255,.09);
    --lp-orange: #ff941f;
    --lp-gold: #ffc24b;
    --lp-purple: #8a49ff;
    --lp-green: #22d68a;
    --lp-radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--lp-bg); scrollbar-gutter: stable; }
html.lp-scroll-locked { overflow: hidden; }
html.lp-scroll-locked body.lp-site { padding-right: var(--lp-scrollbar-gap, 0px); }
html.lp-scroll-locked .lp-header { right: var(--lp-scrollbar-gap, 0px); }
body.lp-site {
    margin: 0;
    background: var(--lp-bg);
    color: var(--lp-text);
    font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }

/* Prevent browser image-hover action overlays on site artwork.
   Images remain visually interactive through their parent links/buttons. */
.lp-site img {
    pointer-events: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
}

.lp-noise { display: none !important; }
.lp-shell { width: min(1480px, calc(100% - 72px)); margin: 0 auto; }
.lp-kicker { font-size: 11px; letter-spacing: .24em; font-weight: 800; color: var(--lp-gold); }

.lp-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 88px;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-inline: max(36px, calc((100vw - 1480px) / 2));
    padding-block: 0;
    border-bottom: 1px solid transparent;
    transition: background .3s ease, border-color .3s ease, height .3s ease, backdrop-filter .3s ease;
}
.lp-header.is-scrolled { height: 72px; background: rgba(7,9,13,.82); border-color: var(--lp-line); backdrop-filter: blur(18px); }
.lp-brand { display: inline-flex; width: fit-content; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .08em; font-size: 14px; }
.lp-brand img { width: 38px; height: 38px; object-fit: contain; }
.lp-brand b { color: var(--lp-gold); font-weight: 800; }
.lp-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

/* Верхнее меню сайта: та же механика линии, что и у главного меню форума. */
.lp-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 0;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: rgba(235, 241, 250, 0.86);
    font-family: "Segoe UI", Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1;
    text-transform: uppercase;
    font-synthesis: weight;
    -webkit-text-stroke: .18px currentColor;
    text-shadow: 0 1px 1px rgba(0,0,0,.16);
    white-space: nowrap;
    text-decoration: none;
    transition:
        color .26s ease,
        text-shadow .26s ease,
        opacity .26s ease;
}

/* Мягкий свет над линией — 1:1 с форумом. */
.lp-nav a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 54px;
    height: 18px;
    transform: translateX(-50%) scale(0.45);
    transform-origin: center;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(
        circle,
        rgba(255, 196, 107, 0.34) 0%,
        rgba(255, 196, 107, 0.14) 45%,
        rgba(255, 196, 107, 0) 80%
    );
    filter: blur(10px);
    transition:
        transform .34s cubic-bezier(.22, 1, .36, 1),
        opacity .28s ease;
}

/* Линия снизу — 1:1 с форумом. */
.lp-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 14px;
    width: calc(100% + 10px);
    height: 2px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: 50% 50%;
    opacity: 0;
    border-radius: 999px;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(255, 196, 107, 0) 0%,
        rgba(255, 196, 107, 0.95) 20%,
        rgba(255, 230, 185, 1) 50%,
        rgba(255, 196, 107, 0.95) 80%,
        rgba(255, 196, 107, 0) 100%
    );
    box-shadow:
        0 0 10px rgba(255, 196, 107, 0.55),
        0 0 20px rgba(255, 196, 107, 0.14);
    will-change: transform, opacity;
    transition:
        transform .42s cubic-bezier(.22, 1, .36, 1),
        opacity .22s ease;
}

.lp-nav a:hover,
.lp-nav a.active {
    color: #ffffff;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    text-shadow:
        0 0 10px rgba(255, 196, 107, 0.10),
        0 -2px 14px rgba(255, 196, 107, 0.08);
}

.lp-nav a:hover::before,
.lp-nav a.active::before,
.lp-nav a:focus-visible::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.lp-nav a:hover::after,
.lp-nav a.active::after,
.lp-nav a:focus-visible::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.lp-nav a:focus-visible {
    outline: none;
    color: #fff;
}

@supports selector(.lp-nav:has(a:hover)) {
    .lp-nav:has(a:hover) a.active:not(:hover)::before {
        opacity: 0;
        transform: translateX(-50%) scale(0.45);
    }
    .lp-nav:has(a:hover) a.active:not(:hover)::after {
        transform: translateX(-50%) scaleX(0);
        opacity: 0;
    }
}

/* На форуме desktop-пункты идут без пустых hover-зон: gap = 0, а визуальный
   интервал создается padding. Это часть ощущения плавного "переезда" линии. */
@media (min-width: 1101px) {
    .lp-nav {
        gap: 0;
    }

    .lp-nav a {
        padding-left: 13px;
        padding-right: 13px;
    }

    .lp-nav a::before,
    .lp-nav a::after {
        transition:
            width .28s cubic-bezier(.22, 1, .36, 1),
            opacity .18s ease,
            transform .28s cubic-bezier(.22, 1, .36, 1);
    }

    .lp-nav a:hover::before,
    .lp-nav a:hover::after {
        transition-delay: .04s;
    }
}

/* Финальный desktop override скопирован с форума: reduced-motion и глобальные правила
   не имеют права сделать линию мгновенной. */
@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .lp-nav a::after {
        left: 50% !important;
        width: calc(100% + 10px) !important;
        transform: translateX(-50%) scaleX(0) !important;
        transform-origin: center center !important;
        opacity: 0 !important;
        animation: none !important;
        transition:
            transform .42s cubic-bezier(.22, 1, .36, 1) 0s,
            opacity .18s ease 0s !important;
        will-change: transform, opacity;
    }

    .lp-nav a:hover::after,
    .lp-nav a:focus-visible::after,
    .lp-nav a.active::after {
        transform: translateX(-50%) scaleX(1) !important;
        opacity: 1 !important;
        animation: none !important;
    }

    @supports selector(.lp-nav:has(a:hover)) {
        .lp-nav:has(a:hover) a.active:not(:hover)::after {
            transform: translateX(-50%) scaleX(0) !important;
            opacity: 0 !important;
            animation: none !important;
        }
    }
}

.lp-header-actions { justify-self: end; display: flex; align-items: center; gap: 16px; }
.lp-header-link { font-size: 13px; color: #c8ced9; }
.lp-menu { display: none; border: 0; background: none; padding: 8px; cursor: pointer; }
.lp-menu span { display: block; width: 24px; height: 2px; margin: 5px 0; background: #fff; transition: transform .2s, opacity .2s; }

.lp-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    border: 1px solid var(--lp-line);
    border-radius: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .015em;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.lp-btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.22); }
.lp-btn--small { min-height: 40px; padding: 0 18px; background: rgba(255,255,255,.06); }
.lp-btn--header-download {
    position: relative;
    min-height: 44px;
    padding: 0 24px;
    border: 1px solid rgba(255,255,255,.96);
    border-radius: 6px;
    background: #f5f6f8;
    color: #15171b;
    box-shadow: 0 8px 24px rgba(0,0,0,.14);
    transform: scale(1);
    transform-origin: center;
    will-change: transform;
    transition:
        transform .36s cubic-bezier(.22,1,.36,1),
        background .30s ease,
        color .30s ease,
        box-shadow .34s ease;
}

.lp-btn--header-download::after {
    content: "";
    position: absolute;
    inset: -7px;
    z-index: -1;
    border: 1px solid rgba(255,255,255,.92);
    border-radius: 10px;
    opacity: 0;
    transform: scale(.96);
    pointer-events: none;
    transition:
        opacity .30s ease,
        transform .38s cubic-bezier(.22,1,.36,1);
}

.lp-btn--header-download:hover,
.lp-btn--header-download:focus-visible {
    transform: scale(1.025);
    border-color: rgba(255,255,255,.96);
    background: #fff;
    color: #111318;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.lp-btn--header-download:hover::after,
.lp-btn--header-download:focus-visible::after {
    opacity: 1;
    transform: scale(1);
}
.lp-btn--primary { color: #130b02; border-color: transparent; background: linear-gradient(135deg, var(--lp-gold), var(--lp-orange)); box-shadow: 0 16px 46px rgba(255,148,31,.18); }
.lp-btn--primary:hover { box-shadow: 0 20px 56px rgba(255,148,31,.28); }
.lp-btn--primary svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.lp-btn--ghost { background: rgba(255,255,255,.045); backdrop-filter: blur(8px); }

.lp-hero {
    /* 100% масштаба: ровно весь видимый экран любого монитора.
       При Ctrl- CSS viewport становится выше, но screen.height остаётся
       прежним — поэтому уменьшается ВЕСЬ первый слайд вместе с фоном,
       и снизу становятся видны следующие разделы, как на референсе. */
    height: min(100svh, var(--lp-native-screen-height, 100svh));
    min-height: 0;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #06070b;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--lp-hero-image, url('/static/images/live-cover-blue-red.png'));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.012);
    opacity: 1;
    filter: brightness(var(--lp-hero-brightness, 100%)) saturate(1.04) contrast(1.02);
    animation: lpHeroIn 1s cubic-bezier(.2,.75,.2,1) both;
    will-change: transform, opacity;
}
.lp-hero-hover-shield {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: transparent;
    pointer-events: auto;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
}

@keyframes lpHeroIn { from { transform: scale(1.035); opacity: .88; } to { transform: scale(1.012); opacity: 1; } }
.lp-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 72px; background: linear-gradient(transparent, rgba(7,9,13,.72)); pointer-events: none; }
/* Цветные боковые glow-слои отключены: фон отображается без синего/оранжевого подсвечивания. */
.lp-hero-glow,
.lp-hero-glow--left,
.lp-hero-glow--right {
    display: none !important;
    opacity: 0 !important;
    background: none !important;
    filter: none !important;
    box-shadow: none !important;
}

/* Возрастной знак на главном экране */
.lp-age-badge {
    position: absolute;
    top: 92px;
    right: max(36px, calc((100vw - 1480px) / 2));
    z-index: 4;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    border: 2px solid rgba(255,255,255,.92);
    border-radius: 7px;
    background: rgba(4,15,30,.08);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.02em;
    text-shadow: 0 1px 8px rgba(0,0,0,.28);
    box-shadow: 0 0 0 1px rgba(0,0,0,.06);
    pointer-events: none;
}

@media (max-width: 720px) {
    .lp-age-badge {
        top: 82px;
        right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 6px;
        font-size: 14px;
    }
}

.lp-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .55fr); gap: 80px; align-items: end; padding-top: 140px; padding-bottom: 145px; }
.lp-hero-copy { max-width: 760px; }
.lp-eyebrow { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 22px; font-size: 12px; font-weight: 750; color: rgba(238,243,250,.80); letter-spacing: .16em; text-transform: uppercase; text-shadow: 0 2px 12px rgba(0,0,0,.32); }
.lp-eyebrow-line { flex: 0 0 34px; width: 34px; height: 1px; background: var(--lp-gold); box-shadow: 0 0 12px rgba(255,194,75,.8); }
.lp-eyebrow-text { display: inline-block; width: auto; height: auto; background: none; box-shadow: none; white-space: nowrap; }
.lp-hero h1 {
    margin: 0;
    max-width: 960px;
    font-family: "Arial Black", Inter, "Segoe UI", Arial, sans-serif;
    font-size: clamp(58px, 5.65vw, 100px);
    line-height: .88;
    letter-spacing: -.058em;
    font-weight: 900;
    text-transform: uppercase;
    text-wrap: balance;
    font-kerning: normal;
    font-synthesis: none;
}
.lp-hero h1 > span,
.lp-hero h1 > em {
    display: block;
}
.lp-hero-title-main {
    position: relative;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(180deg, #ffffff 0%, #f6f7fb 72%, #dfe7f3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 6px 34px rgba(0,0,0,.30);
}
.lp-hero h1 em {
    margin-top: 9px;
    color: rgba(255,255,255,.035);
    -webkit-text-fill-color: rgba(255,255,255,.035);
    font-family: "Arial Black", Inter, "Segoe UI", Arial, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: .91em;
    line-height: .91;
    letter-spacing: -.052em;
    -webkit-text-stroke: 2.35px rgba(255,255,255,.95);
    paint-order: stroke fill;
    text-shadow:
        0 5px 24px rgba(0,0,0,.20),
        0 0 32px rgba(255,70,64,.10);
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    font-kerning: normal;
    font-variant-ligatures: none;
}
.lp-hero-copy > p {
    max-width: 680px;
    margin: 30px 0 34px;
    color: rgba(255,255,255,.90);
    font-size: clamp(15px, 1.12vw, 18px);
    font-weight: 560;
    line-height: 1.62;
    letter-spacing: .002em;
    text-shadow: 0 3px 16px rgba(0,0,0,.46);
}
.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 26px;
}
.lp-download-action { display: flex; flex-direction: column; align-items: stretch; gap: 10px; min-width: 230px; }
.lp-download-btn {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 27px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 8px;
    background: linear-gradient(135deg, #2fca71 0%, #45df89 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .045em;
    box-shadow: 0 16px 42px rgba(34,201,108,.20);
    transform: translateY(0) scale(1);
    transform-origin: center;
    will-change: transform, box-shadow, filter;
    transition:
        transform .38s cubic-bezier(.22, 1, .36, 1),
        box-shadow .38s ease,
        filter .32s ease,
        border-color .32s ease;
}
.lp-download-btn:hover,
.lp-download-btn:focus-visible {
    transform: translateY(-2px) scale(1.018);
    box-shadow: 0 22px 54px rgba(34,201,108,.30);
    filter: brightness(1.05);
    border-color: rgba(255,255,255,.28);
}
.lp-download-btn svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.lp-download-note { display: inline-flex; align-items: center; gap: 8px; padding-left: 10px; color: rgba(255,255,255,.9); font-size: 11px; font-weight: 650; }
.lp-download-note svg { width: 15px; height: 15px; fill: var(--lp-green); stroke: none; filter: drop-shadow(0 0 10px rgba(34,214,138,.3)); }

.lp-windows-note {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    padding-left: 9px;
    margin-top: 1px;
    color: rgba(255,255,255,.76);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}
.lp-windows-logo {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    fill: #42a5f5;
    filter: drop-shadow(0 2px 7px rgba(66,165,245,.18));
}
.lp-video-trigger {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    text-align: left;
    transform: translateY(0);
    transform-origin: center;
    will-change: transform;
    transition: transform .38s cubic-bezier(.22, 1, .36, 1), filter .32s ease;
}
.lp-video-trigger:hover,
.lp-video-trigger:focus-visible {
    transform: translateY(-1px);
}
.lp-video-trigger-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 12px 30px rgba(0,0,0,.14);
    transform: scale(1);
    transform-origin: center;
    will-change: transform, border-color, background, box-shadow;
    transition:
        transform .38s cubic-bezier(.22, 1, .36, 1),
        border-color .34s ease,
        background .34s ease,
        box-shadow .34s ease;
}
.lp-video-trigger:hover .lp-video-trigger-icon,
.lp-video-trigger:focus-visible .lp-video-trigger-icon {
    transform: scale(1.065);
    border-color: rgba(255,255,255,.68);
    background: rgba(255,255,255,.12);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 16px 36px rgba(0,0,0,.20);
}
.lp-video-trigger-icon svg { width: 22px; height: 15px; display: block; }
.lp-video-trigger-icon svg path { fill: #fff; }
.lp-video-trigger-copy { display: flex; flex-direction: column; gap: 3px; }
.lp-video-trigger-copy strong {
    font-size: 14px;
    font-weight: 800;
    transition: color .32s ease, transform .38s cubic-bezier(.22, 1, .36, 1);
}
.lp-video-trigger-copy small {
    color: rgba(255,255,255,.62);
    font-size: 12px;
    transition: color .32s ease, transform .38s cubic-bezier(.22, 1, .36, 1);
}
.lp-video-trigger:hover .lp-video-trigger-copy strong,
.lp-video-trigger:focus-visible .lp-video-trigger-copy strong {
    color: #fff;
    transform: translateX(2px);
}
.lp-video-trigger:hover .lp-video-trigger-copy small,
.lp-video-trigger:focus-visible .lp-video-trigger-copy small {
    color: rgba(255,255,255,.82);
    transform: translateX(2px);
}
.lp-hero-side {
    align-self: end;
    display: flex;
    justify-content: flex-end;
}

.lp-server-card {
    position: relative;
    width: min(520px, 100%);
    max-width: 520px;
    aspect-ratio: 850 / 493;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;

    /* Возвращено прежнее крупное положение карточки. */
    transform: translateX(265px) scale(1.46);
    transform-origin: center center;
}

.lp-server-card-frame {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block !important;
    overflow: visible;
    pointer-events: none;
    filter: drop-shadow(0 28px 70px rgba(0,0,0,.38));
}

.lp-server-card-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 50px 50px;
}

/* Минималистичное внутреннее оформление */
.lp-server-card-content--minimal {
    color: #f5f7fa;
}

.lp-server-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 0;
    border: 0;
}

.lp-server-card-brand {
    min-width: 0;
}

.lp-server-card-label {
    display: block;
    margin-bottom: 8px;
    color: var(--lp-gold);
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .20em;
}

.lp-server-card-top strong {
    display: block;
    margin: 0;
    color: #fff;
    font-size: 21px;
    font-weight: 720;
    line-height: 1.15;
    letter-spacing: -.015em;
}

.lp-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 2px;
    color: var(--lp-green);
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .12em;
    white-space: nowrap;
}

.lp-live i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow:
        0 0 0 4px rgba(34,214,138,.07),
        0 0 14px rgba(34,214,138,.36);
}

.lp-server-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 38px 0 34px;
    padding: 0;
}

.lp-server-stats div {
    position: relative;
    min-width: 0;
}

.lp-server-stats div:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 18px;
    width: 1px;
    height: 34px;
    background: rgba(255,255,255,.07);
}

.lp-server-stats strong {
    display: block;
    color: #fff;
    font-size: 29px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.035em;
}

.lp-server-stats span {
    display: block;
    margin-top: 8px;
    color: rgba(190,199,212,.48);
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .06em;
}

.lp-server-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 0;
    border: 0;
    color: rgba(230,235,242,.68);
    font-size: 11px;
    line-height: 1;
    transition:
        color .34s ease,
        transform .42s cubic-bezier(.22,1,.36,1);
}

.lp-server-link:hover,
.lp-server-link:focus-visible {
    color: #fff;
    transform: translateX(3px);
}

.lp-server-link-text {
    position: relative;
}

.lp-server-link-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: rgba(255,194,75,.75);
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0;
    transition:
        transform .42s cubic-bezier(.22,1,.36,1),
        opacity .28s ease;
}

.lp-server-link:hover .lp-server-link-text::after,
.lp-server-link:focus-visible .lp-server-link-text::after {
    transform: scaleX(1);
    opacity: 1;
}

.lp-server-link-arrow {
    color: var(--lp-gold);
    font-size: 20px;
    line-height: 1;
    transition: transform .42s cubic-bezier(.22,1,.36,1);
}

.lp-server-link:hover .lp-server-link-arrow,
.lp-server-link:focus-visible .lp-server-link-arrow {
    transform: translate(2px,-2px);
}

.lp-hero-bottom { position: absolute; z-index: 3; bottom: 38px; left: 50%; transform: translateX(-50%); display: flex; justify-content: space-between; align-items: center; color: #727b8a; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.lp-scroll-hint { display: flex; align-items: center; gap: 12px; }
.lp-scroll-hint span { display: block; width: 1px; height: 34px; background: linear-gradient(var(--lp-gold), transparent); animation: lpScroll 1.8s ease-in-out infinite; transform-origin: top; }
@keyframes lpScroll { 50% { transform: scaleY(.45); opacity: .35; } }

.lp-section { position: relative; padding: 130px 0; }
.lp-section-head { display: grid; grid-template-columns: 90px 1fr minmax(280px, 420px); gap: 34px; align-items: end; margin-bottom: 56px; }
.lp-number { color: #3d4654; font-size: 13px; padding-bottom: 12px; }
.lp-section h2, .lp-title-row h2 { margin: 10px 0 0; font-size: clamp(42px, 4vw, 72px); line-height: 1.02; letter-spacing: -.04em; }
.lp-section-head > p, .lp-title-row > p { margin: 0; color: var(--lp-muted); font-size: 14px; line-height: 1.7; }

.lp-about { background: linear-gradient(180deg, #07090d 0%, #0a0d13 100%); }
.lp-showcase { position: relative; min-height: 650px; overflow: hidden; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); background: #080b10; }
.lp-showcase-media { position: absolute; inset: 0; }
.lp-showcase-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,8,13,.92) 0%, rgba(5,8,13,.26) 55%, rgba(5,8,13,.05) 100%), linear-gradient(0deg, rgba(5,8,13,.84), transparent 55%); }
.lp-showcase-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.035); transition: opacity .55s ease, transform 1s ease; }
.lp-showcase-media img.is-active { opacity: 1; transform: scale(1); }
.lp-showcase-ui { position: absolute; z-index: 3; inset: auto 42px 38px 42px; display: flex; justify-content: space-between; gap: 36px; align-items: end; }
.lp-showcase-copy { max-width: 600px; }
.lp-showcase-copy h3 { margin: 8px 0 10px; font-size: clamp(32px, 3vw, 54px); letter-spacing: -.035em; }
.lp-showcase-copy p { margin: 0; max-width: 560px; color: #aeb7c4; line-height: 1.65; }
.lp-slider-controls { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.lp-slider-controls button { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(7,9,13,.65); color: #fff; cursor: pointer; }
.lp-slider-controls span { min-width: 62px; text-align: center; color: #727b8a; font-size: 11px; }
.lp-slider-controls b { color: var(--lp-gold); }
.lp-mini-features { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 20px; border: 1px solid var(--lp-line); border-radius: 18px; overflow: hidden; }
.lp-mini-features article { display: flex; align-items: center; gap: 16px; min-height: 90px; padding: 20px; border-right: 1px solid var(--lp-line); background: #0b0f15; }
.lp-mini-features article:last-child { border-right: 0; }
.lp-mini-features span { display: grid; place-items: center; min-width: 44px; height: 44px; border: 1px solid rgba(255,194,75,.28); border-radius: 12px; color: var(--lp-gold); font-size: 11px; font-weight: 850; }
.lp-mini-features p { margin: 0; color: #a3adba; font-size: 12px; line-height: 1.45; }

.lp-features { background: #090c11; }
.lp-title-row { display: grid; grid-template-columns: 1fr minmax(280px, 420px); gap: 50px; align-items: end; margin-bottom: 50px; }
.lp-feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.lp-feature-card { position: relative; min-height: 330px; padding: 32px; overflow: hidden; border: 1px solid var(--lp-line); border-radius: 22px; background: linear-gradient(145deg, #0e131b, #0a0d12); transition: transform .3s ease, border-color .3s ease; }
.lp-feature-card--wide { grid-column: span 2; }
.lp-feature-card:hover { transform: translateY(-5px); border-color: rgba(255,194,75,.26); }
.lp-card-index { color: #4f5967; font-size: 11px; }
.lp-card-icon { margin: 62px 0 22px; color: var(--lp-gold); font-size: 26px; }
.lp-feature-card h3 { max-width: 600px; margin: 0 0 12px; font-size: 25px; letter-spacing: -.025em; }
.lp-feature-card p { max-width: 590px; margin: 0; color: #8f98a8; line-height: 1.65; font-size: 13px; }
.lp-card-line { position: absolute; left: 32px; bottom: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--lp-gold), var(--lp-orange)); transition: width .35s ease; }
.lp-feature-card:hover .lp-card-line { width: calc(100% - 64px); }

.lp-gallery { background: #f1f0ed; color: #0b0d12; }
.lp-gallery .lp-kicker { color: #a15b00; }
.lp-gallery .lp-title-row > p { color: #6f7277; }
.lp-gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 300px 300px; gap: 14px; }
.lp-gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 22px; cursor: zoom-in; background: #111; color: #fff; text-align: left; }
.lp-gallery-item--hero { grid-row: span 2; }
.lp-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.lp-gallery-item:hover img { transform: scale(1.04); filter: brightness(.78); }
.lp-gallery-item > span { position: absolute; left: 22px; right: 22px; bottom: 20px; display: flex; justify-content: space-between; align-items: center; opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s; font-size: 12px; }
.lp-gallery-item:hover > span { opacity: 1; transform: none; }
.lp-gallery-quote { display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border-radius: 22px; background: #12151b; color: #fff; }
.lp-gallery-quote > span { color: var(--lp-gold); font-size: 10px; letter-spacing: .2em; font-weight: 800; }
.lp-gallery-quote strong { font-size: clamp(24px, 2.3vw, 38px); line-height: 1.1; letter-spacing: -.03em; }
.lp-gallery-quote a { color: #aab2be; font-size: 12px; }

.lp-start { background: linear-gradient(180deg, #0a0d13, #07090d); }
.lp-steps { border-top: 1px solid var(--lp-line); }
.lp-steps article { display: grid; grid-template-columns: 90px 1fr auto; gap: 30px; align-items: center; min-height: 155px; padding: 24px 4px; border-bottom: 1px solid var(--lp-line); }
.lp-step-num { color: var(--lp-gold); font-size: 13px; }
.lp-steps h3 { margin: 0 0 8px; font-size: 24px; }
.lp-steps p { margin: 0; color: var(--lp-muted); font-size: 13px; }
.lp-steps a { padding: 12px 16px; border: 1px solid var(--lp-line); border-radius: 11px; color: #d9dee6; font-size: 12px; }

.lp-cta { padding: 0 0 110px; background: #07090d; }
.lp-cta-inner { position: relative; min-height: 300px; display: grid; grid-template-columns: 170px 1fr auto; gap: 42px; align-items: center; padding: 46px; overflow: hidden; border: 1px solid rgba(255,194,75,.17); border-radius: 28px; background: radial-gradient(circle at 10% 50%, rgba(138,73,255,.14), transparent 30%), radial-gradient(circle at 90% 50%, rgba(255,148,31,.15), transparent 32%), #0d1118; }
.lp-cta-inner::before { content: ""; position: absolute; inset: 0; opacity: .12; background: url('/static/images/live-cover-blue-red.png') center / cover; mix-blend-mode: screen; }
.lp-cta-inner > * { position: relative; z-index: 2; }
.lp-cta-logo { width: 150px; height: 150px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; background: rgba(7,9,13,.5); }
.lp-cta-logo img { width: 90px; }
.lp-cta h2 { margin: 8px 0 8px; font-size: 46px; letter-spacing: -.04em; }
.lp-cta p { margin: 0; color: #9ba4b2; }
.lp-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

.lp-footer { padding: 72px 0 28px; border-top: 1px solid var(--lp-line); background: #05070a; }
.lp-footer-grid { display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 50px; }
.lp-footer-brand img { width: 68px; margin-bottom: 18px; }
.lp-footer-brand p { max-width: 260px; color: #707988; font-size: 12px; line-height: 1.6; }
.lp-footer-grid > div:not(.lp-footer-brand) { display: flex; flex-direction: column; gap: 12px; }
.lp-footer-grid > div > span { margin-bottom: 8px; color: #596270; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.lp-footer-grid a { color: #b9c0ca; font-size: 12px; transition: color .2s; }
.lp-footer-grid a:hover { color: var(--lp-gold); }
.lp-footer-bottom { display: flex; justify-content: space-between; margin-top: 58px; padding-top: 22px; border-top: 1px solid var(--lp-line); color: #515966; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.lp-video-modal {
    position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 34px;
    opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .24s ease, visibility .24s ease;
}
.lp-video-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.lp-video-modal-backdrop { position: absolute; inset: 0; background: rgba(2,5,10,.82); backdrop-filter: blur(10px); }
.lp-video-dialog { position: relative; z-index: 1; width: min(1050px, 92vw); }
.lp-video-dialog-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.lp-video-dialog-head h2 { margin: 0; color: #fff; font-size: clamp(24px,2.2vw,34px); line-height: 1.05; letter-spacing: -.025em; }
.lp-video-close { display: inline-flex; align-items: center; gap: 7px; min-height: 38px; padding: 0 15px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: linear-gradient(135deg,#ff5d31,#ff7a3d); color: #fff; font-weight: 800; font-size: 12px; cursor: pointer; box-shadow: 0 12px 30px rgba(255,93,49,.18); }
.lp-video-stage { position: relative; aspect-ratio: 16/9; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: #05080e; box-shadow: 0 36px 110px rgba(0,0,0,.58); }
.lp-video-player { width: 100%; height: 100%; display: block; border: 0; object-fit: contain; background: #000; }
.lp-video-empty { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 9px; padding: 30px; text-align: center; color: rgba(255,255,255,.9); background: radial-gradient(circle at 50% 35%, rgba(255,148,31,.12), transparent 45%), #070a10; }
.lp-video-empty[hidden] { display: none; }
.lp-video-empty-icon { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: var(--lp-gold); background: rgba(255,255,255,.04); }
.lp-video-empty strong { font-size: 18px; }
.lp-video-empty small { color: var(--lp-muted); font-size: 13px; }

.lp-lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 50px; background: rgba(2,3,5,.92); backdrop-filter: blur(16px); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.lp-lightbox.is-open { opacity: 1; visibility: visible; }
.lp-lightbox img { max-width: min(1320px, 92vw); max-height: 84vh; border-radius: 18px; box-shadow: 0 40px 120px rgba(0,0,0,.55); }
.lp-lightbox button { position: absolute; top: 28px; right: 34px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: rgba(255,255,255,.05); color: #fff; font-size: 25px; cursor: pointer; }

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
    .lp-server-card { transform: none; width: min(520px, 100%); }
    .lp-shell { width: min(100% - 42px, 1480px); }
    .lp-header { grid-template-columns: 1fr auto; }
    .lp-nav { position: fixed; top: 72px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--lp-line); border-radius: 18px; background: rgba(10,13,18,.97); box-shadow: 0 30px 80px rgba(0,0,0,.45); }
    .lp-nav.is-open { display: flex; }
    .lp-nav a { padding: 15px 12px; border-bottom: 1px solid var(--lp-line); font-size: 13px; letter-spacing: .08em; }
    .lp-nav a:last-child { border-bottom: 0; }
    .lp-menu { display: block; }
    .lp-header-link { display: none; }
    .lp-hero-inner { grid-template-columns: 1fr; gap: 44px; align-items: center; }
    .lp-hero-side { width: 100%; }
    .lp-server-card { width: min(520px, 100%); margin-left: 0; }
    .lp-section-head, .lp-title-row { grid-template-columns: 1fr; }
    .lp-section-head .lp-number { display: none; }
    .lp-mini-features { grid-template-columns: repeat(2,1fr); }
    .lp-mini-features article:nth-child(2) { border-right: 0; }
    .lp-mini-features article:nth-child(-n+2) { border-bottom: 1px solid var(--lp-line); }
    .lp-feature-grid { grid-template-columns: repeat(2,1fr); }
    .lp-feature-card--wide { grid-column: span 2; }
    .lp-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 260px; }
    .lp-gallery-item--hero { grid-column: span 2; grid-row: auto; }
    .lp-cta-inner { grid-template-columns: 130px 1fr; }
    .lp-cta-logo { width: 120px; height: 120px; }
    .lp-cta-actions { grid-column: 2; justify-content: flex-start; }
    .lp-footer-grid { grid-template-columns: 1.5fr repeat(3,1fr); gap: 28px; }
}

@media (max-width: 720px) {
    .lp-shell { width: min(100% - 28px, 1480px); }
    .lp-header { height: 68px; padding: 0 20px; }
    .lp-header.is-scrolled { height: 64px; }
    .lp-brand span { display: none; }
    .lp-header-actions .lp-btn { display: none; }
    .lp-nav { top: 64px; left: 10px; right: 10px; }
    .lp-hero {
        height: min(100svh, var(--lp-native-screen-height, 100svh));
        min-height: 0;
        align-items: flex-start;
    }
    .lp-hero-bg { background-position: 57% center; opacity: 1; }
    .lp-hero-inner { padding-top: 150px; padding-bottom: 120px; }
    .lp-hero h1 { font-size: clamp(49px, 15vw, 70px); }
    .lp-hero-copy > p { font-size: 14px; margin-top: 22px; }
    .lp-btn { min-height: 48px; padding: 0 17px; }
    .lp-hero-actions { gap: 18px; }
    .lp-download-action { width: 100%; min-width: 0; }
    .lp-download-btn { width: 100%; }
    .lp-video-trigger { width: 100%; }
    .lp-server-card { width: 100%; max-width: 520px; }
    .lp-server-card-content { padding: 32px 30px 28px; min-height: 280px; }
    .lp-server-stats strong { font-size: 21px; }
    .lp-hero-bottom { bottom: 24px; }
    .lp-scroll-hint { font-size: 9px; }
    .lp-section { padding: 86px 0; }
    .lp-section h2, .lp-title-row h2 { font-size: 40px; }
    .lp-section-head, .lp-title-row { gap: 18px; margin-bottom: 30px; }
    .lp-showcase { min-height: 560px; }
    .lp-showcase-media::after { background: linear-gradient(0deg, rgba(5,8,13,.96) 0%, rgba(5,8,13,.2) 80%); }
    .lp-showcase-ui { inset: auto 22px 22px 22px; display: block; }
    .lp-showcase-copy h3 { font-size: 34px; }
    .lp-slider-controls { margin-top: 22px; }
    .lp-mini-features { grid-template-columns: 1fr; }
    .lp-mini-features article { border-right: 0; border-bottom: 1px solid var(--lp-line); }
    .lp-mini-features article:last-child { border-bottom: 0; }
    .lp-feature-grid { grid-template-columns: 1fr; }
    .lp-feature-card, .lp-feature-card--wide { grid-column: auto; min-height: 270px; }
    .lp-card-icon { margin-top: 42px; }
    .lp-gallery-grid { display: flex; flex-direction: column; }
    .lp-gallery-item { min-height: 260px; }
    .lp-gallery-item--hero { min-height: 390px; }
    .lp-gallery-quote { min-height: 240px; }
    .lp-steps article { grid-template-columns: 54px 1fr; gap: 12px; padding: 28px 0; }
    .lp-steps article a { grid-column: 2; justify-self: start; }
    .lp-cta { padding-bottom: 70px; }
    .lp-cta-inner { grid-template-columns: 1fr; padding: 28px; text-align: center; }
    .lp-cta-logo { margin: 0 auto; }
    .lp-cta-actions { grid-column: auto; justify-content: center; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; }
    .lp-footer-brand { grid-column: span 2; }
    .lp-footer-bottom { gap: 20px; flex-direction: column; }
    .lp-lightbox { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
    .lp-video-modal { padding: 18px; }
    .lp-video-dialog { width: 100%; }
    .lp-video-dialog-head { align-items: flex-start; }
    .lp-video-dialog-head h2 { font-size: 23px; }
    .lp-video-close span { display: none; }
    .lp-video-close { width: 38px; padding: 0; justify-content: center; }
}

/* Download confirmation dialog */
.lp-download-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
    visibility: hidden;
    pointer-events: none;
}
.lp-download-modal.is-mounted {
    visibility: visible;
}
.lp-download-modal.is-open {
    pointer-events: auto;
}
.lp-download-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 11, .76);
    opacity: 0;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition:
        opacity .56s cubic-bezier(.22, .61, .36, 1),
        backdrop-filter .56s cubic-bezier(.22, .61, .36, 1),
        -webkit-backdrop-filter .56s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, backdrop-filter;
}
.lp-download-modal.is-open .lp-download-modal-backdrop {
    opacity: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.lp-download-dialog {
    position: relative;
    z-index: 1;
    width: min(540px, 94vw);
    overflow: hidden;
    border-radius: 12px;
    background: #f6f7f8;
    color: #5d626b;
    box-shadow: 0 34px 100px rgba(0, 0, 0, .52);
    opacity: 0;
    transform: translateY(20px) scale(.965);
    filter: blur(2px);
    transition:
        opacity .56s cubic-bezier(.22, .61, .36, 1),
        transform .56s cubic-bezier(.22, .61, .36, 1),
        filter .56s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, transform, filter;
}
.lp-download-modal.is-open .lp-download-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}
.lp-download-dialog-head {
    min-height: 104px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: linear-gradient(135deg, #31b95b 0%, #49d06e 100%);
    color: #fff;
}
.lp-download-status-icon {
    position: relative;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}
.lp-download-status-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    overflow: visible;
}
.lp-download-status-track,
.lp-download-status-progress {
    fill: none;
    stroke-width: 4;
}
.lp-download-status-track { stroke: rgba(255,255,255,.34); }
.lp-download-status-progress {
    stroke: #fff;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}
.lp-download-modal.is-counting .lp-download-status-progress {
    animation: lpDownloadRingFill 3s linear forwards;
}
@keyframes lpDownloadRingFill { to { stroke-dashoffset: 0; } }
.lp-download-status-count {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.lp-download-dialog-head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(18px, 1.65vw, 24px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.025em;
}
.lp-download-dialog-body { padding: 30px 32px 28px; }
.lp-download-dialog-body p {
    max-width: 350px;
    margin: 0 0 26px;
    color: #7d8289;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.42;
}
.lp-download-continue {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border: 0;
    border-radius: 6px;
    background: #2fb15a;
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .02em;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(47,177,90,.18);
    transition: transform .18s ease, filter .18s ease;
}
.lp-download-continue:hover { transform: translateY(-1px); filter: brightness(1.04); }
.lp-download-cancel {
    display: block;
    margin-top: 9px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #969aa0;
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    cursor: pointer;
}
.lp-download-cancel:hover { color: #6f747c; }
.lp-download-modal.is-error .lp-download-dialog-head {
    background: linear-gradient(135deg, #d93a3a 0%, #f05252 100%);
}
.lp-download-modal.is-error .lp-download-status-ring,
.lp-download-modal.is-error .lp-download-status-count { display: none; }
.lp-download-modal.is-error .lp-download-status-icon::before {
    content: "!";
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 3px solid rgba(255,255,255,.82);
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}
.lp-download-modal.is-error .lp-download-continue {
    background: #d93a3a;
    box-shadow: 0 10px 24px rgba(217,58,58,.18);
}
.lp-download-modal.is-error .lp-download-cancel { display: none; }

@media (max-width: 620px) {
    .lp-download-modal { padding: 14px; }
    .lp-download-dialog-head { min-height: 90px; padding: 20px 22px; }
    .lp-download-dialog-body { padding: 24px 22px 22px; }
    .lp-download-dialog-body p { font-size: 14px; }
}

/* The download dialog should still fade in smoothly even when the OS asks to reduce motion. */
@media (prefers-reduced-motion: reduce) {
    .lp-download-modal-backdrop,
    .lp-download-dialog {
        transition-duration: .56s !important;
    }
    .lp-download-modal.is-counting .lp-download-status-progress {
        animation-duration: 3s !important;
    }
}



/* ===== Главный сайт: footer в стиле форума, навигация сайта сохранена ===== */
.lp-footer-forum {
    margin-top: 54px;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,.065);
    background: #070a0f;
}

.lp-footer-forum-shell {
    padding: 30px 0 20px;
}

.lp-footer-forum-primary,
.lp-footer-forum-secondary,
.lp-footer-forum-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.lp-footer-forum-secondary {
    justify-content: flex-end;
}

.lp-footer-forum-brand {
    min-width: 330px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.lp-footer-forum-logo {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
}

.lp-footer-forum-logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.22));
}

.lp-footer-forum-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-footer-forum-brand-copy strong {
    color: #f2f5f9;
    font-size: 16px;
    font-weight: 760;
    letter-spacing: -.015em;
}

.lp-footer-forum-brand-copy small {
    max-width: 300px;
    color: rgba(201,209,222,.58);
    font-size: 12px;
    line-height: 1.45;
}

.lp-footer-nav-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(130px, auto));
    gap: clamp(30px, 4vw, 70px);
    align-items: start;
    justify-content: end;
}

.lp-footer-nav-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.lp-footer-nav-group > span {
    margin-bottom: 3px;
    color: rgba(190,199,212,.46);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.lp-footer-nav-group a {
    position: relative;
    color: rgba(224,231,241,.72);
    font-size: 12px;
    line-height: 1.2;
    transition: color .32s ease;
}

.lp-footer-nav-group a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 100%;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255,194,75,0) 0%,
        rgba(255,194,75,.86) 18%,
        rgba(255,225,168,1) 50%,
        rgba(255,194,75,.86) 82%,
        rgba(255,194,75,0) 100%
    );
    box-shadow: 0 0 10px rgba(255,176,61,.48);
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition:
        transform .42s cubic-bezier(.22,1,.36,1),
        opacity .28s ease;
}

.lp-footer-nav-group a:hover,
.lp-footer-nav-group a:focus-visible {
    color: #fff;
}

.lp-footer-nav-group a:hover::after,
.lp-footer-nav-group a:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.lp-footer-forum-divider {
    height: 1px;
    margin: 24px 0 20px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.075), transparent);
}


.lp-footer-forum-socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.lp-footer-social {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    color: rgba(235,240,247,.88);
    transform: scale(1);
    transform-origin: center;
    transition:
        transform .38s cubic-bezier(.22,1,.36,1),
        background .32s ease,
        border-color .32s ease,
        box-shadow .32s ease,
        color .32s ease;
}

.lp-footer-social svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.lp-footer-social.social-vk {
    color: #2a8cff;
    background: rgba(42,140,255,.10);
    border-color: rgba(42,140,255,.22);
}

.lp-footer-social.social-vk svg {
    width: 31px;
    height: 31px;
}

.lp-footer-social.social-telegram {
    color: #27a7e7;
    background: rgba(39,167,231,.10);
    border-color: rgba(39,167,231,.22);
}

.lp-footer-social.social-youtube {
    color: #ff3b30;
    background: rgba(255,59,48,.10);
    border-color: rgba(255,59,48,.22);
}

.lp-footer-social.social-tiktok {
    color: rgba(235,240,247,.88);
}

.lp-footer-social:not(.is-disabled):hover,
.lp-footer-social:not(.is-disabled):focus-visible {
    transform: scale(1.07);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,.24);
}

.lp-footer-social.social-vk:not(.is-disabled):hover {
    background: #2a8cff;
    border-color: #2a8cff;
}

.lp-footer-social.social-telegram:not(.is-disabled):hover {
    background: #27a7e7;
    border-color: #27a7e7;
}

.lp-footer-social.is-disabled {
    cursor: default;
    opacity: .72;
}

.lp-footer-forum-bottom {
    margin-top: 19px;
    padding-top: 17px;
    border-top: 1px solid rgba(255,255,255,.045);
    color: rgba(190,199,212,.48);
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .lp-footer-forum-primary {
        align-items: flex-start;
    }

    .lp-footer-nav-groups {
        grid-template-columns: repeat(3, minmax(110px, 1fr));
        gap: 24px;
    }

    .lp-footer-forum-brand {
        min-width: 260px;
    }
}

@media (max-width: 820px) {
    .lp-footer-forum-primary,
    .lp-footer-forum-secondary,
    .lp-footer-forum-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .lp-footer-nav-groups {
        width: 100%;
        justify-content: stretch;
    }

    .lp-footer-forum-socials {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .lp-footer-forum {
        margin-top: 36px;
    }

    .lp-footer-forum-shell {
        padding-top: 24px;
    }

    .lp-footer-forum-brand {
        min-width: 0;
    }

    .lp-footer-forum-logo {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .lp-footer-forum-logo img {
        width: 46px;
        height: 46px;
    }

    .lp-footer-nav-groups {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .lp-footer-nav-group:last-child {
        grid-column: span 2;
    }

    .lp-footer-forum-socials {
        width: 100%;
    }
}


/* Сохраняем мягкие hover-анимации футера даже при системном reduced-motion. */
@media (prefers-reduced-motion: reduce) {
    .lp-footer-nav-group a,
    .lp-footer-nav-group a::after,
    .lp-footer-social {
        transition-duration: .32s !important;
    }
    .lp-footer-nav-group a::after {
        transition-duration: .42s, .28s !important;
    }
    .lp-footer-social {
        transition-duration: .38s, .32s, .32s, .32s, .32s !important;
    }
}


/* Keep the two main hero buttons smooth even when the OS/browser requests reduced motion. */
@media (prefers-reduced-motion: reduce) {
    .lp-download-btn {
        transition-duration: .38s, .38s, .32s, .32s !important;
        transition-timing-function: cubic-bezier(.22,1,.36,1), ease, ease, ease !important;
    }

    .lp-video-trigger {
        transition-duration: .38s, .32s !important;
        transition-timing-function: cubic-bezier(.22,1,.36,1), ease !important;
    }

    .lp-video-trigger-icon {
        transition-duration: .38s, .34s, .34s, .34s !important;
        transition-timing-function: cubic-bezier(.22,1,.36,1), ease, ease, ease !important;
    }

    .lp-video-trigger-copy strong,
    .lp-video-trigger-copy small {
        transition-duration: .32s, .38s !important;
        transition-timing-function: ease, cubic-bezier(.22,1,.36,1) !important;
    }
}

@media (max-width: 480px) {
    .lp-server-card-content { padding: 28px 24px 25px; min-height: 260px; }
    .lp-server-card-top strong { font-size: 17px; }
    .lp-server-stats { gap: 8px; padding: 18px 0 17px; }
    .lp-server-stats strong { font-size: 19px; }
    .lp-server-stats span { font-size: 9px; }
}


@media (prefers-reduced-motion: reduce) {
    .lp-btn--header-download {
        transition:
            transform .36s cubic-bezier(.22,1,.36,1) !important,
            background .30s ease !important,
            color .30s ease !important,
            box-shadow .34s ease !important;
    }

    .lp-btn--header-download::after {
        transition:
            opacity .30s ease !important,
            transform .38s cubic-bezier(.22,1,.36,1) !important;
    }
}


/* ========================================================================== */
/* SECOND SCREEN AND BELOW — EDITORIAL / MAGAZINE LAYOUT                     */
/* The first hero is intentionally untouched.                                 */
/* ========================================================================== */

:root {
    --lp-mag-bg: #111214;
    --lp-mag-bg-soft: #0f1012;
    --lp-mag-panel: #15171a;
    --lp-mag-panel-2: #191b1f;
    --lp-mag-line: rgba(255,255,255,.085);
    --lp-mag-muted: rgba(225,230,238,.58);
    --lp-mag-red: #e62d32;
}

.lp-mag-section {
    position: relative;
    overflow: hidden;
    background: var(--lp-mag-bg);
    color: #f5f7fa;
    border-top: 1px solid rgba(255,255,255,.035);
}

.lp-mag-section:nth-of-type(even) {
    background: var(--lp-mag-bg-soft);
}

.lp-mag-shell {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
    padding: clamp(72px, 7vw, 112px) 0;
}

.lp-mag-heading {
    margin-bottom: clamp(34px, 4vw, 58px);
}

.lp-mag-heading--center {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.lp-mag-heading--split {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr);
    gap: clamp(44px, 7vw, 100px);
    align-items: end;
}

.lp-mag-kicker,
.lp-mag-mini-label {
    display: inline-block;
    color: var(--lp-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
    line-height: 1;
    text-transform: uppercase;
}

.lp-mag-heading h2,
.lp-mag-start-copy h2,
.lp-mag-cta-card h2 {
    margin: 10px 0 0;
    color: #fff;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: clamp(38px, 4vw, 66px);
    font-weight: 850;
    line-height: .98;
    letter-spacing: -.045em;
    text-transform: uppercase;
    text-wrap: balance;
}

.lp-mag-heading p,
.lp-mag-start-copy > p,
.lp-mag-cta-card p {
    margin: 18px 0 0;
    color: var(--lp-mag-muted);
    font-size: 14px;
    line-height: 1.7;
}

.lp-mag-heading--center p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* ABOUT / SHOWCASE — large editorial carousel */
.lp-mag-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
    min-height: 460px;
    overflow: hidden;
    border: 1px solid var(--lp-mag-line);
    border-radius: 26px;
    background: #0b0c0e;
    box-shadow: 0 32px 90px rgba(0,0,0,.28);
}

.lp-mag-showcase-media.lp-showcase-media {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    background: #090a0c;
    border-radius: 0;
}

.lp-mag-showcase-media.lp-showcase-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 68%, rgba(10,11,13,.36));
}

.lp-mag-showcase-media.lp-showcase-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.025);
    transition:
        opacity .7s ease,
        transform 1.1s cubic-bezier(.22,1,.36,1);
}

.lp-mag-showcase-media.lp-showcase-media img.is-active {
    opacity: 1;
    transform: scale(1);
}

.lp-mag-showcase-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 4vw, 58px);
    background:
        radial-gradient(circle at 100% 0%, rgba(230,45,50,.08), transparent 34%),
        #111317;
}

.lp-mag-showcase-copy::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 0;
    width: 2px;
    height: 52px;
    background: var(--lp-gold);
}

.lp-mag-showcase-copy h3 {
    margin: 15px 0 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.lp-mag-showcase-copy > p {
    min-height: 72px;
    margin: 18px 0 0;
    color: rgba(224,230,238,.62);
    font-size: 14px;
    line-height: 1.65;
}

.lp-mag-slider-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--lp-mag-line);
}

.lp-mag-showcase .lp-slider-controls {
    gap: 10px;
}

.lp-mag-showcase .lp-slider-controls button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    background: rgba(255,255,255,.035);
    color: #fff;
    cursor: pointer;
    transition:
        transform .32s cubic-bezier(.22,1,.36,1),
        border-color .28s ease,
        background .28s ease;
}

.lp-mag-showcase .lp-slider-controls button:hover {
    transform: scale(1.07);
    border-color: rgba(255,194,75,.62);
    background: rgba(255,194,75,.08);
}

.lp-mag-showcase .lp-slider-controls > span {
    min-width: 52px;
    color: rgba(255,255,255,.48);
    font-size: 10px;
    letter-spacing: .12em;
    text-align: center;
}

.lp-mag-showcase .lp-slider-controls b {
    color: #fff;
    font-weight: 800;
}

.lp-mag-autoplay-note {
    color: rgba(255,255,255,.33);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.lp-mag-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 18px;
    border: 1px solid var(--lp-mag-line);
    border-radius: 18px;
    background: rgba(255,255,255,.018);
}

.lp-mag-facts article {
    min-width: 0;
    padding: 22px 26px;
}

.lp-mag-facts article + article {
    border-left: 1px solid var(--lp-mag-line);
}

.lp-mag-facts strong {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 850;
    line-height: 1;
}

.lp-mag-facts span {
    display: block;
    margin-top: 7px;
    color: rgba(255,255,255,.4);
    font-size: 10px;
}

/* FEATURES — one strong lead + compact editorial rows */
.lp-mag-feature-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 16px;
}

.lp-mag-feature-lead,
.lp-mag-feature-list {
    border: 1px solid var(--lp-mag-line);
    border-radius: 24px;
    background: var(--lp-mag-panel);
}

.lp-mag-feature-lead {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(32px, 4vw, 54px);
    background:
        linear-gradient(145deg, rgba(230,45,50,.14), transparent 44%),
        var(--lp-mag-panel);
}

.lp-mag-feature-index {
    color: rgba(255,255,255,.22);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
}

.lp-mag-feature-lead h3 {
    margin: 15px 0 0;
    color: #fff;
    font-size: clamp(32px, 3.4vw, 52px);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.lp-mag-feature-lead p {
    max-width: 440px;
    margin: 18px 0 0;
    color: var(--lp-mag-muted);
    font-size: 14px;
    line-height: 1.7;
}

.lp-mag-feature-list {
    overflow: hidden;
}

.lp-mag-feature-list article {
    min-height: 107px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    align-items: center;
    padding: 22px 30px;
    transition:
        background .3s ease,
        padding-left .36s cubic-bezier(.22,1,.36,1);
}

.lp-mag-feature-list article + article {
    border-top: 1px solid var(--lp-mag-line);
}

.lp-mag-feature-list article:hover {
    padding-left: 36px;
    background: rgba(255,255,255,.026);
}

.lp-mag-feature-list article > span {
    color: var(--lp-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.lp-mag-feature-list h3 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 780;
}

.lp-mag-feature-list p {
    margin: 7px 0 0;
    color: rgba(225,230,238,.48);
    font-size: 12px;
    line-height: 1.5;
}

/* GALLERY — two seamless rows inside the same magazine boundaries */
.lp-mag-gallery {
    background:
        radial-gradient(circle at 50% 38%, rgba(230,45,50,.055), transparent 33%),
        var(--lp-mag-bg-soft);
}

.lp-mag-marquee {
    display: grid;
    gap: 12px;
    overflow: hidden;
}

.lp-mag-marquee-row {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
}

.lp-mag-marquee-track {
    width: 200%;
    display: flex;
    will-change: transform;
}

.lp-mag-marquee-group {
    flex: 0 0 50%;
    width: 50%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding-right: 12px;
    box-sizing: border-box;
}

.lp-mag-marquee-group[aria-hidden="true"] .lp-mag-photo {
    pointer-events: none;
}

.lp-mag-photo {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    background: #08090b;
    cursor: pointer;
}

.lp-mag-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.34));
    opacity: .62;
    pointer-events: none;
    transition: opacity .35s ease;
}

.lp-mag-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.002);
    transition:
        transform .55s cubic-bezier(.22,1,.36,1),
        filter .38s ease;
}

.lp-mag-photo:hover img {
    transform: scale(1.045);
    filter: brightness(1.08);
}

.lp-mag-photo:hover::after {
    opacity: .2;
}

.lp-mag-marquee-track--forward {
    animation: lpMagMarqueeForward 34s linear infinite;
}

.lp-mag-marquee-track--reverse {
    transform: translateX(-50%);
    animation: lpMagMarqueeReverse 39s linear infinite;
}

@keyframes lpMagMarqueeForward {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes lpMagMarqueeReverse {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.lp-mag-marquee:hover .lp-mag-marquee-track {
    animation-play-state: paused;
}

.lp-mag-gallery-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--lp-mag-line);
}

.lp-mag-gallery-foot strong {
    max-width: 650px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.5;
}

.lp-mag-gallery-foot a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 11px;
    font-weight: 750;
    white-space: nowrap;
}

.lp-mag-gallery-foot a span {
    color: var(--lp-gold);
    font-size: 18px;
}

/* START — compact final editorial panel */
.lp-mag-start-card {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    overflow: hidden;
    border: 1px solid var(--lp-mag-line);
    border-radius: 26px;
    background:
        radial-gradient(circle at 0% 0%, rgba(230,45,50,.14), transparent 36%),
        var(--lp-mag-panel);
}

.lp-mag-start-copy {
    padding: clamp(38px, 5vw, 66px);
    border-right: 1px solid var(--lp-mag-line);
}

.lp-mag-start-copy h2 {
    font-size: clamp(34px, 3.6vw, 56px);
}

.lp-mag-start-download {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,.92);
    border-radius: 7px;
    background: #fff;
    color: #111;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform .34s cubic-bezier(.22,1,.36,1),
        box-shadow .3s ease;
}

.lp-mag-start-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,.24);
}

.lp-mag-start-download b {
    font-size: 16px;
}

.lp-mag-steps {
    display: flex;
    flex-direction: column;
}

.lp-mag-steps article {
    min-height: 142px;
    display: grid;
    grid-template-columns: 46px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 24px 34px;
}

.lp-mag-steps article + article {
    border-top: 1px solid var(--lp-mag-line);
}

.lp-mag-steps article > span {
    color: var(--lp-gold);
    font-size: 10px;
    font-weight: 850;
}

.lp-mag-steps h3 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}

.lp-mag-steps p {
    margin: 7px 0 0;
    color: rgba(225,230,238,.48);
    font-size: 12px;
    line-height: 1.5;
}

.lp-mag-steps a {
    color: rgba(255,255,255,.67);
    font-size: 10px;
    white-space: nowrap;
    transition: color .3s ease;
}

.lp-mag-steps a:hover {
    color: #fff;
}

/* final CTA stays compact so zooming out shows the page like a magazine */
.lp-mag-cta .lp-mag-shell {
    padding-top: 26px;
    padding-bottom: 82px;
}

.lp-mag-cta-card {
    min-height: 176px;
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 34px 40px;
    border: 1px solid var(--lp-mag-line);
    border-radius: 22px;
    background: #0d0e10;
}

.lp-mag-cta-brand {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border: 1px solid var(--lp-mag-line);
    border-radius: 18px;
}

.lp-mag-cta-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.lp-mag-cta-card h2 {
    font-size: clamp(26px, 2.7vw, 40px);
}

.lp-mag-cta-card p {
    margin-top: 10px;
    font-size: 12px;
}

.lp-mag-cta-actions {
    display: flex;
    gap: 10px;
}

.lp-mag-cta-actions a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid var(--lp-mag-line);
    border-radius: 7px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.lp-mag-cta-actions a:first-child {
    background: #fff;
    color: #111;
    border-color: #fff;
}

/* Browser zoom behavior: content-width sections, never tied to 100vh. */
@media (min-width: 1101px) {
    .lp-mag-section {
        min-height: 0 !important;
        height: auto !important;
    }
}

/* Mobile/tablet */
@media (max-width: 980px) {
    .lp-mag-shell {
        width: min(100% - 36px, 1180px);
        padding: 68px 0;
    }

    .lp-mag-heading--split,
    .lp-mag-feature-layout,
    .lp-mag-start-card {
        grid-template-columns: 1fr;
    }

    .lp-mag-heading--split {
        gap: 18px;
    }

    .lp-mag-showcase {
        grid-template-columns: 1fr;
    }

    .lp-mag-showcase-media.lp-showcase-media {
        min-height: 390px;
        aspect-ratio: 16 / 9;
    }

    .lp-mag-showcase-copy {
        min-height: 300px;
    }

    .lp-mag-feature-lead {
        min-height: 330px;
    }

    .lp-mag-start-copy {
        border-right: 0;
        border-bottom: 1px solid var(--lp-mag-line);
    }

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

    .lp-mag-facts article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--lp-mag-line);
    }

    .lp-mag-facts article:nth-child(4) {
        border-top: 1px solid var(--lp-mag-line);
    }

    .lp-mag-cta-card {
        grid-template-columns: 74px 1fr;
    }

    .lp-mag-cta-actions {
        grid-column: 2;
    }
}

@media (max-width: 640px) {
    .lp-mag-shell {
        width: min(100% - 24px, 1180px);
        padding: 54px 0;
    }

    .lp-mag-heading h2,
    .lp-mag-start-copy h2 {
        font-size: 34px;
    }

    .lp-mag-showcase {
        border-radius: 18px;
    }

    .lp-mag-showcase-media.lp-showcase-media {
        min-height: 240px;
    }

    .lp-mag-showcase-copy {
        min-height: 280px;
        padding: 30px 24px;
    }

    .lp-mag-slider-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .lp-mag-autoplay-note {
        display: none;
    }

    .lp-mag-facts article {
        padding: 18px;
    }

    .lp-mag-marquee-group {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        padding-right: 7px;
    }

    .lp-mag-marquee {
        gap: 7px;
    }

    .lp-mag-photo {
        border-radius: 10px;
    }

    .lp-mag-gallery-foot {
        align-items: flex-start;
        flex-direction: column;
    }

    .lp-mag-feature-list article {
        grid-template-columns: 34px 1fr;
        padding: 20px;
    }

    .lp-mag-steps article {
        grid-template-columns: 32px 1fr;
        padding: 22px 24px;
    }

    .lp-mag-steps article a {
        grid-column: 2;
        justify-self: start;
    }

    .lp-mag-cta-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .lp-mag-cta-brand {
        width: 58px;
        height: 58px;
    }

    .lp-mag-cta-actions {
        grid-column: 1;
        flex-wrap: wrap;
    }
}

/* The user wants the gallery motion even if Windows has "reduce animations" enabled. */
@media (prefers-reduced-motion: reduce) {
    .lp-mag-marquee-track--forward {
        animation: lpMagMarqueeForward 34s linear infinite !important;
    }

    .lp-mag-marquee-track--reverse {
        animation: lpMagMarqueeReverse 39s linear infinite !important;
    }

    .lp-mag-showcase-media.lp-showcase-media img {
        transition-duration: .7s, 1.1s !important;
    }
}


/* Временный публичный режим: только первый экран. */
.lp-first-slide-only main { min-height: 0; }
.lp-first-slide-only .lp-hero { margin-bottom: 0; }


/* ==========================================================================
   LOCKED VIDEO — ONLY SEEK LINE
   Внешний плеер остаётся некликабельным, поэтому перейти на другое видео,
   канал или рекомендации нельзя. Снизу остаётся только линия перемотки.
   ========================================================================== */

.lp-video-stage.is-locked-external {
    isolation: isolate;
}

.lp-video-player--locked {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.lp-video-seekbar-wrap {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 12px;
    z-index: 9;
    height: 18px;
    display: flex;
    align-items: center;
    pointer-events: auto;
}

.lp-video-seekbar {
    --lp-video-progress: 0%;
    width: 100%;
    height: 18px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
    outline: none;
}

/* Chromium / Safari */
.lp-video-seekbar::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            #ff3b30 0 var(--lp-video-progress),
            rgba(255,255,255,.42) var(--lp-video-progress) 100%
        );
    box-shadow: 0 1px 4px rgba(0,0,0,.35);
}

.lp-video-seekbar::-webkit-slider-thumb {
    width: 12px;
    height: 12px;
    margin-top: -4px;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    border-radius: 50%;
    background: #ff3b30;
    box-shadow: 0 1px 5px rgba(0,0,0,.45);
    transition: transform .16s ease;
}

.lp-video-seekbar:hover::-webkit-slider-thumb,
.lp-video-seekbar:focus-visible::-webkit-slider-thumb {
    transform: scale(1.14);
}

/* Firefox */
.lp-video-seekbar::-moz-range-track {
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,.42);
    box-shadow: 0 1px 4px rgba(0,0,0,.35);
}

.lp-video-seekbar::-moz-range-progress {
    height: 4px;
    border-radius: 999px;
    background: #ff3b30;
}

.lp-video-seekbar::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: #ff3b30;
    box-shadow: 0 1px 5px rgba(0,0,0,.45);
}

@media (max-width: 720px) {
    .lp-video-seekbar-wrap {
        left: 10px;
        right: 10px;
        bottom: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-video-seekbar::-webkit-slider-thumb {
        transition: transform .16s ease !important;
    }
}


/* ==========================================================================
   HIDE PROVIDER "OTHER VIDEOS" STRIP
   Сам iframe остаётся некликабельным. Нижняя служебная полоса YouTube/Vimeo
   закрывается маской; поверх остаётся только наша линия перемотки.
   ========================================================================== */

.lp-video-stage.is-locked-external::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 7;
    height: 62px;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,.72) 34%,
            rgba(0,0,0,.96) 68%,
            #000 100%
        );
}

/* Линия перемотки всегда выше маски. */
.lp-video-seekbar-wrap {
    z-index: 9 !important;
}

@media (max-width: 720px) {
    .lp-video-stage.is-locked-external::after {
        height: 52px;
    }
}
