/* ═══════════════════════════════════════════════════════════════
   QPARK Компаньон — Landing v2
   Чистый, изолированный, токен-ориентированный CSS
   ───────────────────────────────────────────────────────────────
   Зависимости (порядок загрузки в шаблоне):
     1. all.min.css  (Tailwind + FontAwesome)
     2. design-tokens.css
     3. landing-v2.css  ← здесь
   ═══════════════════════════════════════════════════════════════ */

/* ─── 1. ТОКЕНЫ ЛЕНДИНГА (SaaS dark, изолированы под .lv2-body) ─── */
.lv2-body {
    /* Базовые цвета */
    --lv2-bg:        #07070e;
    --lv2-bg-2:      #0b0b18;
    --lv2-ink:       #f7fbff;
    --lv2-text:      #ccd5e0;
    --lv2-muted:     #8392a5;
    --lv2-dim:       #505c6d;
    --lv2-line:      rgba(0, 102, 255, 0.15);
    --lv2-line-soft: rgba(255, 255, 255, 0.05);

    /* SaaS Blue/Purple палитра */
    --lv2-blue:      #0066ff;
    --lv2-purple:    #7a00ff;
    --lv2-cyan:      #00f0ff;
    --lv2-violet:    #bd00ff;
    --lv2-magenta:   #ff007f;
    --lv2-amber:     #ffd166;
    --lv2-danger:    #ff3366;
    --lv2-success:   #10d294;

    /* Стекло */
    --lv2-glass:     rgba(14, 14, 28, 0.72);
    --lv2-glass-2:   rgba(20, 20, 38, 0.88);

    /* Тени и glow */
    --lv2-shadow:        0 30px 70px rgba(0, 0, 0, 0.75);
    --lv2-glow-blue:     0 0 20px rgba(0, 102, 255, 0.35);
    --lv2-glow-purple:   0 0 20px rgba(122, 0, 255, 0.35);

    /* Скролл-прогресс (заполняется inline стилем через --lv2-scroll) */
    --lv2-scroll: 0;

    /* Радиусы */
    --lv2-radius-sm: 6px;
    --lv2-radius-md: 10px;
    --lv2-radius-lg: 16px;

    /* Контейнеры (mobile-first) */
    --lv2-container-max: 1160px;
    --lv2-container-pad: 20px;
    --lv2-section-pad:   64px;
    --lv2-section-pad-lg: 100px;

    /* Типографика */
    --lv2-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --lv2-font-display: 'Syne', 'Inter', sans-serif;
    --lv2-font-mono: 'Fira Code', 'JetBrains Mono', monospace;
    --lv2-font-tech: 'Space Grotesk', 'Inter', sans-serif;

    /* iOS safe-area */
    --lv2-safe-top:    env(safe-area-inset-top, 0px);
    --lv2-safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ─── 2. БАЗОВЫЙ СБРОС (изолирован под .lv2-body) ─── */
.lv2-body,
.lv2-body *,
.lv2-body *::before,
.lv2-body *::after {
    box-sizing: border-box;
}

.lv2-body {
    margin: 0;
    min-height: 100vh;
    color: var(--lv2-text);
    background: var(--lv2-bg);
    font-family: var(--lv2-font-sans);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.lv2-body img,
.lv2-body svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.lv2-body a {
    color: inherit;
    text-decoration: none;
}

.lv2-body button {
    font: inherit;
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
}

/* ─── 3. ФОН (фиксированный, с лёгким параллаксом через --lv2-scroll) ─── */
.lv2-oil-backdrop {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.lv2-backdrop-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(122, 0, 255, 0.16), transparent 50%),
        radial-gradient(circle at 15% 60%, rgba(0, 102, 255, 0.12), transparent 50%),
        linear-gradient(180deg, #07070f 0%, #0a0a18 50%, #040409 100%);
}

.lv2-oil-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.04) 1px, transparent 1px);
    background-size: 96px 96px;
    opacity: 0.8;
    will-change: transform;
    transform: translateY(calc(var(--lv2-scroll) * -40px));
}

/* ─── 4. ПАРАЛЛАКС-ОРБЫ (CSS scroll-driven, fallback JS через .orb-1..5) ─── */
.lv2-floating-orb {
    position: absolute;
    width: clamp(110px, 14vw, 220px);
    aspect-ratio: 1 / 1;
    background-image: url('/img/landing-v2/glass-orb-decor.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.65;
    pointer-events: none;
    filter: drop-shadow(0 20px 50px rgba(0, 102, 255, 0.2));
    will-change: transform;
    z-index: -1;
    /* Скорость задаётся через data-speed="-180" → --orb-speed */
    --orb-speed: 0px;
    --orb-translate: calc(var(--lv2-scroll) * var(--orb-speed));
}

.orb-1 { top: 12%; left: 6%;  --orb-speed: -180px; }
.orb-2 { top: 32%; right: 4%; --orb-speed: 120px; }
.orb-3 { top: 52%; left: 74%; --orb-speed: -220px; }
.orb-4 { top: 72%; right: 10%;--orb-speed: 160px; }
.orb-5 { top: 88%; left: 8%;  --orb-speed: -110px; }

/* CSS Scroll-Driven Animations (Chromium 115+, Safari TP) */
@supports (animation-timeline: scroll()) {
    .lv2-floating-orb {
        animation: orbParallax linear both;
        animation-timeline: scroll(root);
        animation-range: cover 0% cover 100%;
    }
    @keyframes orbParallax {
        from { transform: translateY(0); }
        to   { transform: translateY(var(--orb-translate)); }
    }
}

/* ─── 5. КОНТЕЙНЕР И ОБЁРТКА ─── */
.lv2-page {
    position: relative;
    isolation: isolate;
}

.lv2-container {
    width: min(var(--lv2-container-max), calc(100% - 2 * var(--lv2-container-pad)));
    margin-inline: auto;
}

/* ─── 6. НАВИГАЦИЯ ─── */
.lv2-nav {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid var(--lv2-line);
    background: rgba(7, 7, 15, 0.82);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    padding-top: var(--lv2-safe-top);
}

.lv2-nav__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.lv2-brand__mark {
    width: 42px;
    height: 42px;
    border-radius: var(--lv2-radius-sm);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 22px;
    font-family: var(--lv2-font-sans);
    background: linear-gradient(135deg, #a855f7, #6366f1, #3b82f6, #10b981, #06b6d4, #8b5cf6, #ec4899);
    background-size: 300% 300%;
    animation: logoShimmer 4s ease infinite;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes logoShimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.lv2-brand__name {
    color: var(--lv2-ink);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--lv2-font-display);
    letter-spacing: 0.5px;
}

.lv2-nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.lv2-nav__links a {
    color: var(--lv2-muted);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--lv2-font-tech);
    letter-spacing: 0.5px;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.lv2-nav__links a:hover,
.lv2-nav__links a:focus-visible {
    color: var(--lv2-cyan);
}

.lv2-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Бургер-кнопка (только <1024px) */
.lv2-burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: var(--lv2-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    color: var(--lv2-ink);
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.lv2-burger:hover,
.lv2-burger:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    outline: none;
}

.lv2-burger i {
    font-size: 18px;
}

/* ─── 6.1 УТИЛИТЫ ─── */
.lv2-skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -1;
}

.lv2-skip-link:focus {
    position: fixed;
    left: 16px;
    top: calc(16px + var(--lv2-safe-top));
    width: auto;
    height: auto;
    padding: 12px 20px;
    border-radius: var(--lv2-radius-sm);
    background: var(--lv2-blue);
    color: #fff;
    font-family: var(--lv2-font-tech);
    font-size: 13px;
    font-weight: 600;
    z-index: 100;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.lv2-text-success { color: var(--lv2-success); }
.lv2-text-warning { color: var(--lv2-amber); }
.lv2-text-danger  { color: var(--lv2-danger); }

/* ─── 7. КНОПКИ ─── */
.lv2-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: var(--lv2-radius-sm);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--lv2-font-tech);
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.25s ease,
                background 0.25s ease,
                border-color 0.25s ease,
                color 0.25s ease;
    white-space: nowrap;
}

@media (hover: hover) {
    .lv2-btn:hover {
        transform: translateY(-2px);
    }
}

.lv2-btn:focus-visible {
    outline: 2px solid var(--lv2-cyan);
    outline-offset: 2px;
}

.lv2-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--lv2-blue), var(--lv2-purple));
    box-shadow: var(--lv2-glow-blue);
}

@media (hover: hover) {
    .lv2-btn--primary:hover {
        box-shadow: 0 0 25px rgba(0, 102, 255, 0.6);
    }
}

.lv2-btn--secondary {
    color: var(--lv2-ink);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (hover: hover) {
    .lv2-btn--secondary:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
    }
}

.lv2-btn--ghost {
    color: var(--lv2-text);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (hover: hover) {
    .lv2-btn--ghost:hover {
        background: rgba(255, 255, 255, 0.04);
        color: var(--lv2-ink);
    }
}

.lv2-btn--glow {
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(0, 102, 255, 0.3); }
    50%      { box-shadow: 0 0 22px rgba(0, 102, 255, 0.6); }
}

/* ─── 8. HERO ─── */
.lv2-hero {
    min-height: clamp(560px, calc(100vh - 80px), 880px);
    display: flex;
    align-items: center;
    padding: 56px 0 var(--lv2-section-pad);
}

.lv2-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(32px, 5vw, 60px);
    align-items: center;
}

.lv2-hero__copy {
    min-width: 0;
}

.lv2-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid rgba(122, 0, 255, 0.25);
    background: rgba(122, 0, 255, 0.08);
    border-radius: var(--lv2-radius-sm);
    color: #cc99ff;
    font-size: 10px;
    font-family: var(--lv2-font-tech);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.lv2-kicker span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lv2-purple);
    box-shadow: 0 0 8px var(--lv2-purple);
    animation: blink 1.2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}

.lv2-hero h1 {
    font-size: clamp(32px, 4.5vw, 58px);
    line-height: 1.05;
    font-family: var(--lv2-font-display);
    font-weight: 800;
    color: var(--lv2-ink);
    letter-spacing: -1.2px;
    margin: 0 0 24px;
}

.lv2-hero h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(135deg, #fff 20%, var(--lv2-blue) 60%, var(--lv2-purple));
    -webkit-background-clip: text;
    background-clip: text;
}

.lv2-lead {
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.6;
    color: var(--lv2-text);
    font-weight: 300;
    max-width: 580px;
    margin: 0;
}

.lv2-hero__cta {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lv2-chipline {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lv2-chipline span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: var(--lv2-radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--lv2-muted);
    font-size: 11px;
    font-family: var(--lv2-font-tech);
}

.lv2-chipline i {
    color: var(--lv2-blue);
}

/* Hero 3D-phone и floating cards */
.lv2-hero-graphic-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    aspect-ratio: 1 / 1;
}

.lv2-hero-phone-img {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 102, 255, 0.18));
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-10px) rotate(0.5deg); }
}

.lv2-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    min-width: 220px;
    background: rgba(12, 12, 28, 0.85);
    border: 1px solid rgba(0, 102, 255, 0.25);
    border-radius: var(--lv2-radius-sm);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.lv2-floating-card i {
    font-size: 20px;
    flex-shrink: 0;
}

.lv2-floating-card > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.lv2-floating-card strong {
    font-family: var(--lv2-font-tech);
    font-size: 12px;
    color: var(--lv2-ink);
}

.lv2-floating-card span {
    font-size: 10px;
    color: var(--lv2-muted);
    margin-top: 1px;
}

.lv2-floating-card.card-top {
    top: 12%;
    left: -4%;
    animation: floatCard1 5s ease-in-out infinite alternate;
}

.lv2-floating-card.card-bottom {
    bottom: 16%;
    right: -4%;
    animation: floatCard2 5s ease-in-out infinite alternate;
}

@keyframes floatCard1 {
    from { transform: translateY(0); }
    to   { transform: translateY(-8px); }
}

@keyframes floatCard2 {
    from { transform: translateY(0); }
    to   { transform: translateY(8px); }
}

/* Цвета иконок (раньше висели на несуществующих Bootstrap-классах) */
.lv2-floating-card .text-success { color: var(--lv2-success); }
.lv2-floating-card .text-warning { color: var(--lv2-amber); }

/* ─── 9. DECAL-CARD (общий примитив) ─── */
.lv2-decal-card {
    position: relative;
    border-radius: var(--lv2-radius-sm) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: var(--lv2-glass) !important;
    box-shadow: var(--lv2-shadow) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.lv2-decal-card::before,
.lv2-decal-card::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    pointer-events: none;
    z-index: 5;
}

.lv2-decal-card::before {
    top: 0;
    left: 0;
    border-top: 2px solid var(--lv2-blue);
    border-left: 2px solid var(--lv2-blue);
}

.lv2-decal-card::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid var(--lv2-purple);
    border-right: 2px solid var(--lv2-purple);
}

/* ─── 10. СЕКЦИИ ─── */
.lv2-section {
    padding: var(--lv2-section-pad) 0;
    border-top: 1px solid var(--lv2-line-soft);
}

.lv2-section--proof {
    padding: 32px 0 48px;
    border-top: none;
}

.lv2-section--alt {
    background: linear-gradient(180deg, var(--lv2-bg-2), var(--lv2-bg));
}

.lv2-section__head {
    max-width: 800px;
    margin-bottom: 40px;
}

.lv2-eyebrow {
    font-family: var(--lv2-font-tech);
    font-size: 11px;
    color: var(--lv2-blue);
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 12px;
}

.lv2-section__head h2,
.lv2-split h2,
.lv2-product-proof h2,
.lv2-final h2 {
    font-size: clamp(24px, 3.6vw, 40px);
    line-height: 1.1;
    font-family: var(--lv2-font-display);
    color: var(--lv2-ink);
    letter-spacing: -0.4px;
    margin: 0;
}

.lv2-section__head p,
.lv2-section-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--lv2-text);
    margin-top: 16px;
    font-weight: 300;
}

/* ─── 11. PROOF (метрики) ─── */
.lv2-proof {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
}

.lv2-proof > div {
    padding: 24px 12px;
    text-align: center;
    border-right: 1px solid var(--lv2-line-soft);
}

.lv2-proof > div:last-child {
    border-right: none;
}

.lv2-proof strong {
    display: block;
    font-size: clamp(22px, 2.4vw, 30px);
    font-family: var(--lv2-font-display);
    font-weight: 800;
    color: var(--lv2-ink);
    margin-bottom: 4px;
    white-space: nowrap;
}

.lv2-proof span {
    font-family: var(--lv2-font-tech);
    font-size: 10px;
    color: var(--lv2-muted);
    letter-spacing: 0.5px;
}

/* ─── 12. PILLARS / PANELS ─── */
.lv2-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.lv2-panel {
    padding: 28px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.lv2-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--lv2-radius-sm);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(122, 0, 255, 0.12));
    border: 1px solid rgba(0, 102, 255, 0.25);
    display: grid;
    place-items: center;
    color: var(--lv2-cyan);
    font-size: 18px;
    margin-bottom: 20px;
    box-shadow: var(--lv2-glow-blue);
    flex-shrink: 0;
}

.lv2-panel h3 {
    font-size: 16px;
    font-family: var(--lv2-font-display);
    font-weight: 700;
    color: var(--lv2-ink);
    margin: 0 0 10px;
}

.lv2-panel p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--lv2-muted);
    margin: 0;
}

/* ─── 13. SPLIT (двухколоночные блоки) ─── */
.lv2-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 60px);
    align-items: center;
}

.lv2-split > div {
    min-width: 0;
}

.lv2-feature-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.lv2-feature-list span,
.lv2-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--lv2-text);
}

.lv2-feature-list i {
    margin-top: 4px;
    color: var(--lv2-blue);
    font-size: 13px;
    flex-shrink: 0;
}

/* ─── 14. ИЛЛЮСТРАЦИИ ─── */
.lv2-illustration-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lv2-saas-illustration {
    width: 100%;
    max-width: 440px;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 102, 255, 0.15));
    border-radius: 8px;
    animation: floatIllust 6s ease-in-out infinite alternate;
}

@keyframes floatIllust {
    from { transform: translateY(0); }
    to   { transform: translateY(-8px); }
}

/* ─── 15. LANDING BUILDER (продуктовый proof) ─── */
.lv2-product-proof {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(32px, 5vw, 60px);
    align-items: center;
}

.lv2-product-proof > div {
    min-width: 0;
}

/* ─── 16. WORKFLOW (5 шагов) ─── */
.lv2-flowline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.lv2-flowline > div {
    padding: 24px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.lv2-flowline b {
    font-family: var(--lv2-font-mono);
    font-size: 11px;
    color: var(--lv2-blue);
    display: block;
    margin-bottom: 16px;
}

.lv2-flowline strong {
    font-family: var(--lv2-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--lv2-ink);
    margin-bottom: 10px;
    display: block;
}

.lv2-flowline span {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--lv2-muted);
}

/* ─── 17. CAPABILITIES (4 стеклянные карточки) ─── */
.lv2-shots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.lv2-shots article {
    padding: 24px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.lv2-feature-glass-panel {
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.lv2-panel-icon {
    font-size: 26px;
    margin-bottom: 16px;
}

.lv2-panel-icon.blue   { color: var(--lv2-blue); }
.lv2-panel-icon.purple { color: var(--lv2-purple); }
.lv2-panel-icon.cyan   { color: var(--lv2-cyan); }
.lv2-panel-icon.grey   { color: var(--lv2-muted); }

.lv2-shots h3 {
    font-size: 15px;
    font-family: var(--lv2-font-display);
    font-weight: 700;
    color: var(--lv2-ink);
    margin: 0 0 8px;
}

.lv2-shots p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--lv2-muted);
    margin: 0;
}

/* ─── 18. COMPARE (таблица) ─── */
.lv2-compare {
    overflow-x: auto;
    border-radius: var(--lv2-radius-sm);
    border: 1px solid var(--lv2-line-soft);
    -webkit-overflow-scrolling: touch;
}

.lv2-compare table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
    font-size: 14px;
}

.lv2-compare th,
.lv2-compare td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--lv2-line-soft);
    vertical-align: middle;
}

.lv2-compare th {
    background: rgba(0, 0, 0, 0.3);
    font-family: var(--lv2-font-tech);
    font-size: 11px;
    color: var(--lv2-ink);
    letter-spacing: 1px;
    font-weight: 700;
    position: sticky;
    top: 0;
}

.lv2-compare td {
    color: var(--lv2-text);
}

.lv2-compare tr:last-child td {
    border-bottom: none;
}

.lv2-ok { color: var(--lv2-blue);   font-weight: 700; }
.lv2-no { color: var(--lv2-danger); font-weight: 700; }

/* ─── 19. PRICING ─── */
.lv2-pricing {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 20px;
}

.lv2-price {
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.lv2-price--pro {
    border-color: rgba(0, 102, 255, 0.35) !important;
}

.lv2-price__name {
    font-family: var(--lv2-font-display);
    font-size: 14px;
    color: var(--lv2-cyan);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.lv2-price--pro .lv2-price__name {
    color: var(--lv2-blue);
}

.lv2-price__value {
    font-size: clamp(34px, 4vw, 48px);
    font-family: var(--lv2-font-display);
    font-weight: 800;
    color: var(--lv2-ink);
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.lv2-price__value em {
    font-style: normal;
    text-decoration: line-through;
    color: var(--lv2-dim);
    font-size: clamp(16px, 1.6vw, 20px);
    margin-right: 12px;
}

.lv2-price__value span {
    font-size: 14px;
    font-family: var(--lv2-font-tech);
    color: var(--lv2-muted);
}

.lv2-price ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0 0 32px;
}

.lv2-price li {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--lv2-text);
}

.lv2-price li i {
    color: var(--lv2-cyan);
    font-size: 12px;
    flex-shrink: 0;
}

.lv2-price--pro li i {
    color: var(--lv2-blue);
}

.lv2-price .lv2-btn {
    margin-top: auto;
    align-self: stretch;
}

/* ─── 20. FAQ ─── */
.lv2-faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lv2-faq details {
    padding: 20px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.lv2-faq details[open] {
    background: rgba(0, 102, 255, 0.04) !important;
    border-color: rgba(0, 102, 255, 0.25) !important;
}

.lv2-faq summary {
    font-family: var(--lv2-font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--lv2-ink);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 28px;
    line-height: 1.3;
}

.lv2-faq summary::-webkit-details-marker {
    display: none;
}

.lv2-faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-family: var(--lv2-font-tech);
    font-size: 22px;
    color: var(--lv2-cyan);
    line-height: 1;
    transition: transform 0.2s ease;
}

.lv2-faq details[open] summary::after {
    content: '–';
    transform: scale(1.1);
}

.lv2-faq summary:focus-visible {
    outline: 2px solid var(--lv2-cyan);
    outline-offset: 4px;
    border-radius: 4px;
}

.lv2-faq p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--lv2-muted);
    margin: 12px 0 0;
}

/* ─── 21. FINAL CTA ─── */
.lv2-final {
    text-align: center;
    padding: clamp(72px, 9vw, 120px) 0;
}

.lv2-final p {
    margin: 20px auto 0;
    max-width: 680px;
    font-size: 17px;
    color: var(--lv2-text);
}

.lv2-final__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

/* ─── 22. FOOTER ─── */
.lv2-footer {
    padding: 48px 0 calc(64px + var(--lv2-safe-bottom));
    border-top: 1px solid var(--lv2-line-soft);
    background: rgba(0, 0, 0, 0.3);
}

.lv2-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: clamp(32px, 5vw, 60px);
}

.lv2-footer p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--lv2-muted);
    margin: 16px 0 0;
}

.lv2-footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}

.lv2-footer__links a {
    font-family: var(--lv2-font-tech);
    font-size: 12px;
    font-weight: 700;
    color: var(--lv2-muted);
    padding: 6px 0;
    transition: color 0.2s ease;
}

.lv2-footer__links a:hover,
.lv2-footer__links a:focus-visible {
    color: var(--lv2-cyan);
}

/* ─── 23. МОБИЛЬНОЕ МЕНЮ (Drawer) ─── */
.lv2-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 70;
}

.lv2-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.lv2-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    height: 100vh; /* fallback */
    width: min(360px, 86vw);
    background: rgba(7, 7, 18, 0.95);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-left: 1px solid var(--lv2-line);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 80;
    display: flex;
    flex-direction: column;
    padding: calc(20px + var(--lv2-safe-top)) 24px calc(24px + var(--lv2-safe-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.lv2-drawer.is-open {
    transform: translateX(0);
}

.lv2-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.lv2-drawer__close {
    width: 44px;
    height: 44px;
    border-radius: var(--lv2-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--lv2-ink);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.lv2-drawer__close i {
    font-size: 16px;
}

.lv2-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.lv2-drawer__nav a {
    font-family: var(--lv2-font-tech);
    font-size: 16px;
    font-weight: 600;
    color: var(--lv2-text);
    padding: 14px 12px;
    border-radius: var(--lv2-radius-sm);
    border-left: 2px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lv2-drawer__nav a:hover,
.lv2-drawer__nav a:focus-visible {
    background: rgba(0, 102, 255, 0.05);
    border-left-color: var(--lv2-cyan);
    color: var(--lv2-ink);
    outline: none;
}

.lv2-drawer__cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lv2-drawer__cta .lv2-btn {
    width: 100%;
    justify-content: center;
}

.lv2-drawer__foot {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--lv2-line-soft);
    font-family: var(--lv2-font-tech);
    font-size: 11px;
    color: var(--lv2-dim);
    letter-spacing: 0.5px;
    text-align: center;
}

/* Lock body scroll when drawer open */
.lv2-body.lv2-no-scroll {
    overflow: hidden;
}

/* ─── 24. BREAKPOINTS ─── */

/* ≤ 1280px (ноутбуки) */
@media (max-width: 1280px) {
    .lv2-body {
        --lv2-container-max: 1100px;
    }
}

/* ≤ 1024px (планшет landscape) */
@media (max-width: 1024px) {
    .lv2-body {
        --lv2-section-pad: 72px;
    }

    .lv2-nav__links {
        display: none;
    }

    .lv2-burger {
        display: inline-flex;
    }

    .lv2-hero__grid,
    .lv2-split,
    .lv2-product-proof,
    .lv2-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lv2-hero-graphic-container {
        order: -1;
        max-width: 360px;
    }

    .lv2-pillars,
    .lv2-shots,
    .lv2-flowline,
    .lv2-faq {
        grid-template-columns: repeat(2, 1fr);
    }

    .lv2-pricing {
        grid-template-columns: 1fr;
    }

    .lv2-footer__links {
        text-align: left;
    }
}

/* ≤ 768px (планшет portrait) */
@media (max-width: 768px) {
    .lv2-body {
        --lv2-section-pad: 56px;
        --lv2-container-pad: 16px;
    }

    .lv2-nav__inner {
        min-height: 64px;
    }

    /* На мобиле прячем "ПОДКЛЮЧИТЬСЯ" (широкая), оставляем "Кабинет/Войти" (узкая) */
    .lv2-actions .lv2-btn--primary {
        display: none;
    }
    .lv2-actions .lv2-btn--ghost {
        padding: 0 12px;
        min-height: 40px;
        font-size: 12px;
        gap: 6px;
    }

    .lv2-hero {
        min-height: 0;
        padding: 32px 0 56px;
    }

    .lv2-hero h1 {
        font-size: clamp(28px, 7vw, 40px);
        letter-spacing: -0.6px;
    }

    .lv2-hero-graphic-container {
        max-width: 320px;
    }

    .lv2-floating-card {
        min-width: 180px;
        padding: 10px 14px;
    }

    .lv2-floating-card.card-top,
    .lv2-floating-card.card-bottom {
        left: 0;
        right: 0;
    }

    .lv2-floating-card.card-top {
        top: 4%;
    }

    .lv2-floating-card.card-bottom {
        bottom: 6%;
    }

    .lv2-pillars,
    .lv2-shots,
    .lv2-flowline,
    .lv2-faq,
    .lv2-proof {
        grid-template-columns: 1fr;
    }

    .lv2-proof > div {
        border-right: none !important;
        border-bottom: 1px solid var(--lv2-line-soft);
    }

    .lv2-proof > div:last-child {
        border-bottom: none;
    }

    .lv2-flowline > div {
        min-height: 0;
    }

    .lv2-compare {
        border-radius: var(--lv2-radius-sm);
    }

    .lv2-feature-list span,
    .lv2-feature-list li {
        font-size: 14.5px;
    }

    .lv2-section__head p,
    .lv2-section-text {
        font-size: 15px;
    }
}

/* ≤ 480px (маленький телефон) */
@media (max-width: 480px) {
    .lv2-body {
        --lv2-section-pad: 48px;
        --lv2-container-pad: 14px;
    }

    .lv2-brand__name {
        font-size: 13px;
    }

    .lv2-brand__mark {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .lv2-hero h1 {
        font-size: clamp(26px, 8vw, 34px);
    }

    .lv2-lead {
        font-size: 15px;
    }

    .lv2-hero__cta .lv2-btn,
    .lv2-final__actions .lv2-btn {
        width: 100%;
        justify-content: center;
    }

    .lv2-hero-graphic-container {
        max-width: 280px;
    }

    .lv2-floating-card {
        min-width: 160px;
        padding: 8px 12px;
        gap: 8px;
    }

    .lv2-floating-card i {
        font-size: 16px;
    }

    .lv2-floating-card strong {
        font-size: 11px;
    }

    .lv2-floating-card span {
        font-size: 9px;
    }

    .lv2-section__head h2,
    .lv2-split h2,
    .lv2-product-proof h2,
    .lv2-final h2 {
        font-size: clamp(22px, 6.5vw, 30px);
    }

    .lv2-price__value {
        font-size: 32px;
    }

    .lv2-price {
        padding: 24px;
    }
}

/* ≤ 360px (минимальный целевой) */
@media (max-width: 360px) {
    .lv2-body {
        --lv2-section-pad: 40px;
    }

    .lv2-floating-card {
        min-width: 140px;
    }

    .lv2-actions .lv2-btn {
        padding: 0 12px;
        font-size: 12px;
    }
}

/* ─── 25. prefers-reduced-motion ─── */
@media (prefers-reduced-motion: reduce) {
    .lv2-floating-orb,
    .lv2-saas-illustration,
    .lv2-hero-phone-img,
    .lv2-btn--glow,
    .lv2-kicker span,
    .lv2-floating-card,
    .lv2-brand__mark {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

/* ─── 26. prefers-contrast ─── */
@media (prefers-contrast: more) {
    .lv2-ink,
    .lv2-hero h1,
    .lv2-section__head h2 {
        color: #fff;
    }
    .lv2-muted {
        color: #c0c8d0;
    }
}

/* ─── 27. SCROLL-REVEAL АНИМАЦИИ ───
   Блоки с data-reveal появляются при попадании в viewport.
   Варианты: fade-up (default), fade-in, fade-left, fade-right, blur-in, scale-in.
   Триггер через .is-invisible → .is-visible (ставит IntersectionObserver).
   По умолчанию контент видим (без data-reveal — работает без JS).
   Respect prefers-reduced-motion → анимация отключается.
*/
[data-reveal] {
    --reveal-distance: 28px;
    --reveal-duration: 0.7s;
    --reveal-delay: 0s;
    --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="fade-up"] {
    transform: translateY(var(--reveal-distance));
}
[data-reveal="fade-in"] {
    opacity: 0;
}
[data-reveal="fade-left"] {
    transform: translateX(calc(var(--reveal-distance) * -1));
}
[data-reveal="fade-right"] {
    transform: translateX(var(--reveal-distance));
}
[data-reveal="blur-in"] {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(8px);
}
[data-reveal="scale-in"] {
    opacity: 0;
    transform: scale(0.96);
}

[data-reveal].is-invisible {
    opacity: 0;
}

[data-reveal="fade-up"].is-invisible,
[data-reveal="fade-left"].is-invisible,
[data-reveal="fade-right"].is-invisible {
    opacity: 0;
}

[data-reveal="fade-in"].is-invisible,
[data-reveal="fade-up"].is-invisible,
[data-reveal="fade-left"].is-invisible,
[data-reveal="fade-right"].is-invisible,
[data-reveal="blur-in"].is-invisible,
[data-reveal="scale-in"].is-invisible {
    transition: opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
                transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
                filter var(--reveal-duration) var(--reveal-ease) var(--reveal-delay);
    will-change: opacity, transform, filter;
}

[data-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* Каскад для групп (pillars, shots, flowline) — child раскрывается с задержкой */
[data-reveal-stagger] > * {
    --reveal-delay: 0s;
}
[data-reveal-stagger="1"] > *:nth-child(1) { --reveal-delay: 0.00s; }
[data-reveal-stagger="1"] > *:nth-child(2) { --reveal-delay: 0.08s; }
[data-reveal-stagger="1"] > *:nth-child(3) { --reveal-delay: 0.16s; }
[data-reveal-stagger="1"] > *:nth-child(4) { --reveal-delay: 0.24s; }
[data-reveal-stagger="1"] > *:nth-child(5) { --reveal-delay: 0.32s; }
[data-reveal-stagger="1"] > *:nth-child(6) { --reveal-delay: 0.40s; }
[data-reveal-stagger="1"] > *:nth-child(7) { --reveal-delay: 0.48s; }
[data-reveal-stagger="1"] > *:nth-child(8) { --reveal-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-reveal].is-invisible,
    [data-reveal].is-visible {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}

/* ─── 28. GLASS / FX ДЛЯ ИЛЛЮСТРАЦИЙ ───
   Применяется к .lv2-illustration-container и .lv2-hero-graphic-container.
   Дети .lv2-illustration-container получают .lv2-fx-image, родитель — .lv2-fx-glass.
   Hero-телефон получает .lv2-fx-tilt для 3D-tilt по курсору (через CSS vars из JS).
*/

/* Glassmorphism-рамка вокруг иллюстрации */
.lv2-fx-glass {
    position: relative;
    isolation: isolate;
    border-radius: var(--lv2-radius-lg);
    padding: clamp(20px, 3vw, 36px);
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.04) 0%,
            rgba(255, 255, 255, 0.01) 40%,
            rgba(0, 102, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

/* Угловые «метки» в стиле decal-card */
.lv2-fx-glass::before,
.lv2-fx-glass::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    z-index: 3;
    pointer-events: none;
}
.lv2-fx-glass::before {
    top: 8px;
    left: 8px;
    border-top: 2px solid var(--lv2-cyan);
    border-left: 2px solid var(--lv2-cyan);
}
.lv2-fx-glass::after {
    bottom: 8px;
    right: 8px;
    border-bottom: 2px solid var(--lv2-purple);
    border-right: 2px solid var(--lv2-purple);
}

/* Плавающий градиентный «plasma orb» за картинкой */
.lv2-fx-glass .lv2-fx-plasma {
    position: absolute;
    inset: -20% -10% -10% -10%;
    z-index: -1;
    background:
        radial-gradient(circle at 30% 40%, rgba(0, 102, 255, 0.45), transparent 45%),
        radial-gradient(circle at 70% 60%, rgba(189, 0, 255, 0.35), transparent 50%),
        radial-gradient(circle at 50% 90%, rgba(0, 240, 255, 0.25), transparent 50%);
    filter: blur(40px);
    opacity: 0.85;
    animation: plasmaShift 14s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes plasmaShift {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    33%  { transform: translate(3%, -2%) rotate(8deg) scale(1.05); }
    66%  { transform: translate(-2%, 4%) rotate(-6deg) scale(0.97); }
    100% { transform: translate(2%, 1%) rotate(4deg) scale(1.03); }
}

/* Контейнер картинки внутри glass-рамки — perspective для 3D-tilt */
.lv2-fx-stage {
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Сама иллюстрация — готова к tilt и chromatic split */
.lv2-fx-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--lv2-radius-md);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, filter;
    transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

/* Hover на стейдже — лёгкое приподнимание картинки */
.lv2-fx-stage:hover .lv2-fx-image {
    transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) scale(1.02);
}

/* Glitch-overlay поверх картинки (RGB-split полосы) */
.lv2-fx-image::before,
.lv2-fx-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Glitch триггерится на hover стейджа */
.lv2-fx-stage:hover .lv2-fx-image::before,
.lv2-fx-stage:hover .lv2-fx-image::after {
    opacity: 0.55;
}

.lv2-fx-image::before {
    background:
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 3px,
            rgba(0, 240, 255, 0.18) 3px,
            rgba(0, 240, 255, 0.18) 4px
        );
    transform: translate(2px, 0);
    animation: glitchH 2.5s steps(1) infinite;
    mix-blend-mode: overlay;
}

.lv2-fx-image::after {
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 6px,
            rgba(255, 0, 127, 0.12) 6px,
            rgba(255, 0, 127, 0.12) 7px
        );
    transform: translate(-2px, 0);
    animation: glitchH 3.2s steps(1) infinite reverse;
    mix-blend-mode: overlay;
}

@keyframes glitchH {
    0%, 92%, 100% { transform: translate(0, 0); }
    93% { transform: translate(3px, -1px); }
    95% { transform: translate(-2px, 1px); }
    97% { transform: translate(2px, 0); }
}

/* Chromatic aberration — двойник картинки со смещением по каналам */
.lv2-fx-stage .lv2-fx-chroma {
    position: absolute;
    inset: 0;
    border-radius: var(--lv2-radius-md);
    background-image: inherit;
    background-size: cover;
    background-position: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lv2-fx-stage:hover .lv2-fx-chroma {
    opacity: 0.35;
}

/* Hero-телефон: tilt чуть сильнее + glow-аура */
.lv2-fx-tilt .lv2-fx-image {
    filter: drop-shadow(0 30px 60px rgba(0, 102, 255, 0.35))
            drop-shadow(0 0 24px rgba(122, 0, 255, 0.18));
}

.lv2-fx-tilt .lv2-fx-image::before,
.lv2-fx-tilt .lv2-fx-image::after {
    /* Отключаем полосы на hero, оставляем только chromatic на стейдже */
    display: none;
}

/* Сканлайны и шум на glass-карточках */
.lv2-fx-glass .lv2-fx-noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
    background-size: 3px 3px;
    mix-blend-mode: overlay;
}

/* Декоративный «техно-штамп» в углу */
.lv2-fx-stamp {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 4;
    font-family: var(--lv2-font-mono);
    font-size: 9px;
    color: var(--lv2-cyan);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.7;
    pointer-events: none;
}

.lv2-fx-stamp::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lv2-cyan);
    box-shadow: 0 0 6px var(--lv2-cyan);
    margin-right: 6px;
    vertical-align: middle;
    animation: blink 1.2s infinite;
}

/* На мобилке упрощаем эффекты (не все устройства тянут blur+filter) */
@media (max-width: 768px) {
    .lv2-fx-glass {
        padding: 16px;
    }
    .lv2-fx-glass .lv2-fx-plasma {
        filter: blur(28px);
        opacity: 0.6;
    }
    /* Glitch и chromatic отключаем на тач-устройствах */
    .lv2-fx-stage:hover .lv2-fx-image::before,
    .lv2-fx-stage:hover .lv2-fx-image::after,
    .lv2-fx-stage:hover .lv2-fx-chroma {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lv2-fx-plasma,
    .lv2-fx-image::before,
    .lv2-fx-image::after,
    .lv2-fx-stamp::before {
        animation: none !important;
    }
    .lv2-fx-glass .lv2-fx-plasma {
        transform: none !important;
    }
}
