/**
 * MINERVA landing — monument + motion + cross-platform hero (web + mobile)
 */

:root {
    --mv-scroll-pct: 0;
    --mv-bg: #050607;
    --mv-bg-elev: #0c0e12;
    --mv-surface: rgba(255, 255, 255, 0.025);
    --mv-line: rgba(255, 255, 255, 0.07);
    --mv-ink: #f3efe6;
    --mv-ink-soft: #c9c2b4;
    --mv-muted: #7a7368;
    --mv-accent: #3de4c4;
    --mv-accent-dim: rgba(61, 228, 196, 0.1);
    --mv-accent-glow: rgba(61, 228, 196, 0.32);
    --mv-gold: #c4a35a;
    --mv-gold-dim: rgba(196, 163, 90, 0.12);
    --mv-gold-mid: rgba(196, 163, 90, 0.45);
    --mv-max: 1200px;
    --mv-text: 58ch;
    --mv-head-h: 72px;
    --mv-font-display: "Cormorant Garamond", "Times New Roman", serif;
    --mv-font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --mv-font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--mv-head-h) + 20px);
}

.mv-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mv-skip {
    position: absolute;
    left: -9999px;
    top: 12px;
    z-index: 400;
    padding: 12px 20px;
    font-family: var(--mv-font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: #030504;
    background: var(--mv-accent);
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.mv-skip:focus {
    left: max(12px, env(safe-area-inset-left));
    outline: 2px solid var(--mv-gold);
    outline-offset: 3px;
}

body.mv-body {
    margin: 0;
    min-height: 100vh;
    color: var(--mv-ink);
    background-color: var(--mv-bg);
    background-image:
        radial-gradient(ellipse 90% 50% at 50% -20%, rgba(196, 163, 90, 0.07), transparent 55%),
        radial-gradient(ellipse 70% 45% at 100% 0%, rgba(61, 228, 196, 0.08), transparent 50%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(80, 60, 120, 0.07), transparent 50%),
        linear-gradient(180deg, #020203 0%, var(--mv-bg) 45%, #040506 100%);
    font-family: var(--mv-font-body);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.65;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    font-optical-sizing: auto;
    overflow-x: clip;
}

body.mv-body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
    background: rgba(61, 228, 196, 0.28);
    color: var(--mv-ink);
}

/* Медленный «северный» свет — атмосфера без тяжёлого JS */
.mv-aurora {
    position: fixed;
    inset: -25%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.42;
    background:
        radial-gradient(ellipse 55% 45% at 15% 25%, rgba(61, 228, 196, 0.14), transparent 55%),
        radial-gradient(ellipse 45% 38% at 85% 75%, rgba(196, 163, 90, 0.11), transparent 50%),
        radial-gradient(ellipse 35% 30% at 50% 50%, rgba(100, 70, 160, 0.06), transparent 45%);
    filter: blur(72px);
    animation: mv-aurora-drift 42s ease-in-out infinite alternate;
}

@keyframes mv-aurora-drift {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    100% {
        transform: translate(4%, -3%) rotate(2deg) scale(1.06);
    }
}

/* Вертикальный индикатор чтения — как у премиальных одностраничников */
.mv-progress {
    position: fixed;
    top: calc(var(--mv-head-h) + 20px);
    right: max(12px, env(safe-area-inset-right));
    bottom: max(28px, env(safe-area-inset-bottom));
    width: 3px;
    z-index: 199;
    pointer-events: none;
}

.mv-progress__track {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.mv-progress__fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    transform-origin: top center;
    transform: scaleY(var(--mv-scroll-pct, 0));
    background: linear-gradient(
        180deg,
        rgba(212, 181, 110, 0.95) 0%,
        var(--mv-accent) 52%,
        rgba(45, 200, 175, 0.88) 100%
    );
    box-shadow:
        0 0 24px rgba(61, 228, 196, 0.28),
        0 0 1px rgba(255, 255, 255, 0.2) inset;
}

@media (max-width: 900px) {
    .mv-progress {
        display: none;
    }
}

/* Второй слой — кинематографичный виньет */
.mv-ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 75% 65% at 50% 45%, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
}

.mv-loading-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    z-index: 300;
    transform-origin: left;
    transform: scaleX(0);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(196, 163, 90, 0.85),
        var(--mv-accent),
        transparent
    );
    transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
}

body.mv-intro-done .mv-loading-line {
    transform: scaleX(1);
    opacity: 0;
    transition:
        transform 1s cubic-bezier(0.65, 0, 0.35, 1),
        opacity 0.45s ease 0.55s;
}

/* Шапка */
.mv-head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--mv-head-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 clamp(18px, 4vw, 36px);
    border-bottom: 1px solid transparent;
    background: rgba(4, 5, 6, 0.78);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    opacity: 0;
    transform: translateY(-14px);
    transition:
        opacity 0.85s ease 0.12s,
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
        border-color 0.4s ease;
}

body.mv-intro-done .mv-head {
    opacity: 1;
    transform: translateY(0);
    border-bottom-color: var(--mv-line);
}

body.mv-drawer-open {
    overflow: hidden;
}

html.mv-scrolled .mv-head {
    background: rgba(2, 3, 4, 0.94);
    border-bottom-color: rgba(196, 163, 90, 0.14);
    box-shadow:
        0 4px 0 rgba(196, 163, 90, 0.04),
        0 24px 48px rgba(0, 0, 0, 0.42);
}

.mv-logo {
    font-family: var(--mv-font-display);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.22em;
    text-decoration: none;
    color: var(--mv-ink);
    text-shadow: 0 0 40px var(--mv-gold-dim);
}

.mv-logo:hover {
    color: var(--mv-gold);
}

.mv-brand-lockup {
    display: flex;
    align-items: center;
    gap: 8px 12px;
    flex-shrink: 0;
    min-width: 0;
}

.mv-collab-x {
    font-family: var(--mv-font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--mv-muted);
    line-height: 1;
    user-select: none;
    flex-shrink: 0;
}

.mv-collab-logo {
    display: block;
    height: 24px;
    width: auto;
    max-width: min(100px, 26vw);
    object-fit: contain;
    object-position: left center;
    opacity: 0.94;
    filter: drop-shadow(0 2px 16px rgba(196, 163, 90, 0.12));
}

@media (min-width: 600px) {
    .mv-collab-logo {
        height: 26px;
        max-width: 118px;
    }
}

@media (min-width: 960px) {
    .mv-collab-logo {
        height: 28px;
        max-width: 132px;
    }
}

@media (max-width: 380px) {
    .mv-brand-lockup {
        gap: 6px;
    }

    .mv-logo {
        font-size: 0.95rem;
        letter-spacing: 0.16em;
    }

    .mv-collab-x {
        font-size: 0.9rem;
    }

    .mv-collab-logo {
        height: 20px;
        max-width: 76px;
    }
}

.mv-nav {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 8px;
}

@media (min-width: 960px) {
    .mv-nav {
        display: flex;
        flex: 1;
        margin: 0 20px;
    }
}

.mv-menu-btn {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    margin-right: 8px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.mv-menu-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(196, 163, 90, 0.28);
}

.mv-menu-btn:focus-visible {
    outline: 2px solid var(--mv-accent);
    outline-offset: 2px;
}

.mv-menu-btn__bar {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    border-radius: 1px;
    background: var(--mv-ink-soft);
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease,
        background 0.2s ease;
}

.mv-menu-btn[aria-expanded="true"] .mv-menu-btn__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mv-menu-btn[aria-expanded="true"] .mv-menu-btn__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mv-menu-btn[aria-expanded="true"] .mv-menu-btn__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 960px) {
    .mv-menu-btn {
        display: none !important;
    }
}

.mv-drawer {
    position: fixed;
    inset: 0;
    z-index: 250;
    pointer-events: none;
}

.mv-drawer:not([hidden]) {
    pointer-events: auto;
}

.mv-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mv-drawer:not([hidden]) .mv-drawer__backdrop {
    opacity: 1;
}

.mv-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(100%, 360px);
    max-width: 100%;
    padding: calc(env(safe-area-inset-top, 0px) + 16px) max(20px, env(safe-area-inset-right))
        max(24px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
    background: linear-gradient(165deg, #0e1118 0%, #06080c 55%, #040506 100%);
    border-left: 1px solid rgba(196, 163, 90, 0.18);
    box-shadow: -32px 0 80px rgba(0, 0, 0, 0.55);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mv-drawer:not([hidden]) .mv-drawer__panel {
    transform: translateX(0);
}

.mv-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mv-drawer__title {
    margin: 0;
    font-family: var(--mv-font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mv-gold);
}

.mv-drawer__close {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--mv-ink-soft);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.mv-drawer__close:hover {
    color: var(--mv-ink);
    border-color: rgba(61, 228, 196, 0.35);
    background: rgba(61, 228, 196, 0.06);
}

.mv-drawer__close:focus-visible {
    outline: 2px solid var(--mv-accent);
    outline-offset: 2px;
}

.mv-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.mv-drawer__nav a {
    font-family: var(--mv-font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--mv-muted);
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.mv-drawer__nav a:hover {
    color: var(--mv-ink-soft);
    background: rgba(255, 255, 255, 0.04);
}

.mv-drawer__nav a.is-active {
    color: var(--mv-gold);
    background: rgba(196, 163, 90, 0.1);
    border-color: rgba(196, 163, 90, 0.2);
}

.mv-drawer__foot {
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mv-btn--block {
    width: 100%;
}

.mv-btn--head {
    flex-shrink: 0;
}

@media (max-width: 380px) {
    .mv-btn--head {
        padding-left: 16px;
        padding-right: 16px;
        font-size: 0.65rem;
    }
}

.mv-nav a {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mv-muted);
    text-decoration: none;
    padding: 9px 11px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.mv-nav a:hover {
    color: var(--mv-ink-soft);
    background: var(--mv-surface);
}

.mv-nav a.is-active {
    color: var(--mv-gold);
    background: rgba(196, 163, 90, 0.1);
    box-shadow: 0 0 0 1px rgba(196, 163, 90, 0.15);
}

.mv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #030504;
    background: linear-gradient(135deg, #4af0d2 0%, var(--mv-accent) 50%, #2bc4a8 100%);
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12) inset,
        0 4px 24px var(--mv-accent-glow),
        0 24px 48px rgba(0, 0, 0, 0.35);
}

.mv-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.mv-btn:focus-visible {
    outline: 2px solid var(--mv-accent);
    outline-offset: 3px;
}

.mv-btn--ghost {
    background: transparent;
    color: var(--mv-ink-soft);
    border: 1px solid rgba(196, 163, 90, 0.35);
    box-shadow: none;
}

.mv-btn--ghost:hover {
    border-color: rgba(61, 228, 196, 0.45);
    color: var(--mv-ink);
}

/* Main flow */
#landing-scroll {
    position: relative;
    z-index: 1;
    padding-top: var(--mv-head-h);
}

.mv-section {
    position: relative;
    padding: clamp(64px, 11vh, 120px) clamp(18px, 5vw, 44px);
    max-width: var(--mv-max);
    margin: 0 auto;
}

.mv-section + .mv-section {
    border-top: 1px solid transparent;
    border-image: linear-gradient(
            90deg,
            transparent 0%,
            rgba(196, 163, 90, 0.18) 18%,
            rgba(255, 255, 255, 0.07) 50%,
            rgba(61, 228, 196, 0.12) 82%,
            transparent 100%
        )
        1;
}

.mv-eyebrow {
    font-family: var(--mv-font-mono);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mv-gold);
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mv-eyebrow::before {
    content: "";
    display: inline-block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, var(--mv-gold-mid), transparent);
    flex-shrink: 0;
}

.mv-hero .mv-eyebrow {
    margin-bottom: 12px;
}

.mv-hero__collab {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin: 0 0 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mv-hero__collab-minerva {
    font-family: var(--mv-font-display);
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--mv-ink-soft);
    line-height: 1;
}

.mv-hero__collab-x {
    font-family: var(--mv-font-display);
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-weight: 500;
    color: var(--mv-gold);
    line-height: 1;
    opacity: 0.88;
    user-select: none;
}

.mv-hero__collab-logo {
    display: block;
    height: clamp(34px, 5.2vw, 48px);
    width: auto;
    max-width: min(200px, 52vw);
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 6px 28px rgba(0, 0, 0, 0.5));
}

.mv-display {
    font-family: var(--mv-font-display);
    font-weight: 500;
    font-size: clamp(3rem, 6.5vw + 1.25rem, 6.35rem);
    line-height: 0.98;
    letter-spacing: -0.028em;
    color: var(--mv-ink);
    margin: 0 0 30px;
    max-width: 15ch;
    font-variant-numeric: lining-nums;
}

/* Герой: без balance (он ломает «Одна система» на две строки); ширина — вся колонка */
.mv-hero .mv-display {
    max-width: none;
    width: 100%;
    text-wrap: wrap;
}

@media (min-width: 900px) {
    .mv-hero .mv-display {
        text-shadow:
            0 1px 0 rgba(0, 0, 0, 0.45),
            0 0 100px rgba(0, 0, 0, 0.25);
    }
}


.mv-display em {
    font-style: italic;
    font-weight: 400;
    color: var(--mv-ink-soft);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .mv-display em {
        color: transparent;
        background: linear-gradient(120deg, var(--mv-ink-soft) 0%, var(--mv-gold) 45%, var(--mv-ink-soft) 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
}

.mv-lede {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.78;
    color: var(--mv-ink-soft);
    max-width: var(--mv-text);
    margin: 0 0 32px;
}

.mv-lede--tight {
    margin-bottom: 18px;
}

.mv-note {
    font-size: 1.0625rem;
    line-height: 1.78;
    font-weight: 400;
    color: var(--mv-muted);
    max-width: var(--mv-text);
    margin: 0;
}

.mv-note + .mv-note {
    margin-top: 1.35rem;
}

.mv-plat {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.mv-plat span {
    font-family: var(--mv-font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 11px 16px;
    border: 1px solid rgba(196, 163, 90, 0.22);
    border-radius: 4px;
    color: var(--mv-ink-soft);
    background: rgba(255, 255, 255, 0.02);
}

.mv-plat span strong {
    color: var(--mv-ink);
    font-weight: 600;
}

.mv-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
    margin-top: 28px;
}

/* Мост между длинными блоками */
.mv-proof.mv-section {
    max-width: none;
    width: 100%;
    padding-top: clamp(56px, 9vh, 96px);
    padding-bottom: clamp(56px, 9vh, 96px);
    background:
        linear-gradient(90deg, transparent 0%, rgba(196, 163, 90, 0.06) 50%, transparent 100%),
        radial-gradient(ellipse 80% 80% at 50% 50%, rgba(61, 228, 196, 0.05), transparent 65%);
    border-top: 1px solid rgba(196, 163, 90, 0.12);
    border-bottom: 1px solid rgba(61, 228, 196, 0.08);
}

.mv-proof__grid {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--mv-max);
    display: grid;
    gap: clamp(24px, 4vw, 36px);
}

@media (min-width: 900px) {
    .mv-proof__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 40px;
    }
}

.mv-proof__cell {
    position: relative;
    margin: 0;
    padding: clamp(22px, 3vw, 28px) clamp(20px, 3vw, 26px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.mv-proof__mark {
    display: block;
    font-family: var(--mv-font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1;
    color: rgba(243, 239, 230, 0.12);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}

.mv-proof__lead {
    margin: 0 0 10px;
    font-family: var(--mv-font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--mv-ink-soft);
    line-height: 1.35;
}

.mv-proof__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--mv-muted);
}

.mv-contact .mv-h2 {
    margin-bottom: 1rem;
}

.mv-contact__row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 28px;
}

/* Герой шире остальных секций — во всю ширину вьюпорта с полями */
.mv-hero.mv-section {
    max-width: none;
    width: 100%;
    padding-left: clamp(18px, 4vw, 56px);
    padding-right: clamp(18px, 4vw, 56px);
}

@media (min-width: 900px) {
    .mv-hero .mv-lede {
        max-width: min(64ch, 100%);
    }
}

/* Hero — монумент */
.mv-hero {
    min-height: min(100vh, 1080px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(80px, 14vh, 140px);
    padding-bottom: clamp(56px, 9vh, 100px);
    overflow: clip;
}

/* Мягкое свечение у подножия героя — «сцена» для мокапов */
.mv-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5%;
    width: min(140%, 2000px);
    height: min(52%, 520px);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(
        ellipse 72% 88% at 50% 100%,
        rgba(61, 228, 196, 0.09) 0%,
        rgba(196, 163, 90, 0.04) 38%,
        transparent 72%
    );
    opacity: 0.85;
}

.mv-hero__vault {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.mv-hero__stamp {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    font-family: var(--mv-font-display);
    font-weight: 600;
    font-size: clamp(4.5rem, 22vw, 16rem);
    letter-spacing: 0.04em;
    line-height: 1;
    color: rgba(243, 239, 230, 0.032);
    white-space: nowrap;
    user-select: none;
}

@media (prefers-reduced-motion: no-preference) {
    body.mv-intro-done .mv-hero__stamp {
        animation: mv-stamp-halo 22s ease-in-out infinite alternate;
    }
}

@keyframes mv-stamp-halo {
    0% {
        color: rgba(243, 239, 230, 0.028);
        letter-spacing: 0.04em;
    }
    100% {
        color: rgba(243, 239, 230, 0.045);
        letter-spacing: 0.045em;
    }
}

.mv-hero__orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(196, 163, 90, 0.08);
    pointer-events: none;
}

.mv-hero__orbit--a {
    width: min(95vw, 880px);
    height: min(95vw, 880px);
    left: 50%;
    top: 38%;
    transform: translate(-50%, -50%);
}

@media (prefers-reduced-motion: no-preference) {
    .mv-hero__orbit--a {
        animation: mv-ring-gold 18s ease-in-out infinite;
    }

    .mv-hero__orbit--b {
        animation: mv-ring-teal 22s ease-in-out infinite reverse;
    }
}

@keyframes mv-ring-gold {
    0%,
    100% {
        border-color: rgba(196, 163, 90, 0.07);
        opacity: 1;
    }
    50% {
        border-color: rgba(196, 163, 90, 0.22);
        opacity: 0.92;
    }
}

@keyframes mv-ring-teal {
    0%,
    100% {
        border-color: rgba(61, 228, 196, 0.05);
    }
    50% {
        border-color: rgba(61, 228, 196, 0.14);
    }
}

.mv-hero__orbit--b {
    width: min(72vw, 620px);
    height: min(72vw, 620px);
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    border-color: rgba(61, 228, 196, 0.06);
}

.mv-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(44px, 7vw, 72px);
    align-items: center;
}

@media (min-width: 900px) {
    .mv-hero__grid {
        /* Левая колонка чуть шире — визуальный блок ближе к центру экрана */
        grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
        gap: clamp(24px, 3.5vw, 52px);
        align-items: stretch;
    }

    .mv-hero__visual {
        min-width: 0;
        justify-self: center;
        width: 100%;
        max-width: min(720px, 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mv-hero__copy {
        min-width: 0;
        align-self: center;
    }
}

.mv-hero__copy {
    position: relative;
    z-index: 2;
}

.mv-hero__visual {
    position: relative;
    z-index: 2;
    will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
    body.mv-intro-done .mv-hero__visual {
        transform: translateY(var(--mv-hero-parallax, 0px));
    }
}

.mv-hero__visual::before {
    content: "";
    position: absolute;
    inset: -28% -12% -20% -28%;
    background:
        radial-gradient(ellipse 55% 50% at 48% 42%, var(--mv-accent-dim), transparent 58%),
        radial-gradient(ellipse 48% 44% at 62% 55%, var(--mv-gold-dim), transparent 52%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03), transparent 45%);
    filter: blur(64px);
    z-index: -1;
    pointer-events: none;
}

/* Герой: сцена мокапов — крупнее и плотнее к заголовку */
.mv-hero__devices {
    position: relative;
    width: 100%;
    max-width: min(580px, 100%);
    margin-left: 0;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    isolation: isolate;
}

.mv-hero__devices::before {
    content: "";
    position: absolute;
    inset: -10% -6% -14% -10%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 72% 68% at 48% 42%, #000 25%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 72% 68% at 48% 42%, #000 25%, transparent 78%);
}

.mv-hero__stage {
    position: relative;
    width: 100%;
    max-width: min(500px, 100%);
    margin-inline: auto;
    min-height: min(300px, 56vw);
    max-height: min(420px, 82vw);
}

.mv-hero__device--web {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 74%;
    margin-right: auto;
    transform-origin: left center;
    filter: saturate(1.02) brightness(1.02);
}

.mv-laptop {
    margin: 0;
    max-width: 100%;
}

.mv-laptop__bezel {
    padding: 10px 10px 0;
    background: linear-gradient(158deg, #323945 0%, #171c23 55%, #12161d 100%);
    border-radius: 16px 16px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 20px 52px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(0, 0, 0, 0.35);
}

@media (min-width: 900px) {
    .mv-laptop__bezel {
        padding: 12px 12px 0;
        border-radius: 18px 18px 0 0;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 28px 64px rgba(0, 0, 0, 0.52),
            0 0 0 1px rgba(0, 0, 0, 0.35),
            0 0 120px rgba(61, 228, 196, 0.06);
    }
}

.mv-browser {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    background: #0a0f14;
}

.mv-browser__toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: linear-gradient(180deg, #161d26 0%, #121820 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mv-browser__traffic {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.mv-browser__traffic span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3d4450;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.mv-browser__traffic span:nth-child(1) {
    background: #ff5f57;
}

.mv-browser__traffic span:nth-child(2) {
    background: #febc2e;
}

.mv-browser__traffic span:nth-child(3) {
    background: #28c840;
}

.mv-browser__title {
    flex: 1;
    min-width: 0;
    text-align: center;
    font-family: var(--mv-font-mono);
    font-size: 0.5625rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--mv-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mv-browser__spacer {
    width: 48px;
    flex-shrink: 0;
}

/* Превью в герое: на десктопе выше — больше «веса» рядом с заголовком */
.mv-browser__viewport {
    max-height: clamp(168px, 22vw, 210px);
    overflow: hidden;
    background: #0a0f14;
}

.mv-browser__viewport img {
    display: block;
    width: 100%;
    height: auto;
    max-height: clamp(168px, 22vw, 210px);
    object-fit: cover;
    object-position: top center;
}

@media (min-width: 900px) {
    .mv-browser__viewport {
        max-height: clamp(220px, 26vw, 320px);
    }

    .mv-browser__viewport img {
        max-height: clamp(220px, 26vw, 320px);
    }
}

@media (min-width: 1280px) {
    .mv-browser__viewport {
        max-height: clamp(260px, 24vw, 360px);
    }

    .mv-browser__viewport img {
        max-height: clamp(260px, 24vw, 360px);
    }
}

.mv-laptop__base {
    height: 14px;
    margin: 0 16px;
    background: linear-gradient(180deg, #434c5c 0%, #252d36 40%, #1a2028 100%);
    border-radius: 0 0 10px 10px;
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.52),
        0 4px 0 #0d1014,
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
}

.mv-laptop__hinge {
    display: block;
    width: min(100px, 30%);
    height: 4px;
    margin: 0 auto;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    opacity: 0.65;
}

@media (min-width: 900px) {
    .mv-hero__devices {
        max-width: min(680px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .mv-hero__stage {
        align-self: center;
        width: fit-content;
        max-width: min(600px, 48vw);
        margin-left: auto;
        margin-right: auto;
        min-height: min(340px, 36vw);
        max-height: min(560px, 56vw);
    }

    .mv-hero__device--web {
        max-width: min(100%, 520px);
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .mv-hero__device--mobile {
        position: absolute;
        right: max(4%, 8px);
        top: 52%;
        width: 38%;
        max-width: min(232px, 32vw);
        z-index: 4;
        transform: translateY(-50%);
        filter:
            drop-shadow(-26px 32px 48px rgba(0, 0, 0, 0.65))
            drop-shadow(0 12px 36px rgba(61, 228, 196, 0.12));
    }
}

@media (min-width: 1200px) {
    .mv-hero__stage {
        max-width: min(640px, 44vw);
    }
}

@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
    .mv-hero__device--mobile {
        transform: translateY(-50%) rotate(-5deg);
    }
}

@media (min-width: 1280px) {
    .mv-hero__device--mobile {
        max-width: min(256px, 28vw);
        right: max(6%, 12px);
    }
}

.mv-hero__labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 28px;
    margin-top: 22px;
    padding-top: 18px;
    padding-right: min(8px, 2vw);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.mv-hero__label {
    font-family: var(--mv-font-mono);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mv-ink-soft);
    line-height: 1.45;
}

.mv-hero__label--web {
    justify-self: start;
    text-align: left;
    padding-left: 2px;
}

.mv-hero__label--mobile {
    justify-self: end;
    text-align: right;
    padding-right: 2px;
}

@media (min-width: 900px) {
    .mv-hero__labels {
        padding-right: 0;
        justify-items: center;
    }

    .mv-hero__label--web,
    .mv-hero__label--mobile {
        justify-self: center;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 899px) {
    .mv-hero__devices {
        max-width: 460px;
        margin-inline: auto;
    }

    .mv-hero__stage {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 0;
        max-height: none;
        width: 100%;
        margin-inline: auto;
    }

    .mv-hero__device--web {
        max-width: 100%;
        transform: none;
        filter: none;
    }

    .mv-hero__device--mobile {
        margin-top: 20px;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: auto;
        max-width: 220px;
        margin-left: auto;
        margin-right: auto;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
    }

    .mv-browser__viewport {
        max-height: min(200px, 48vw);
    }

    .mv-browser__viewport img {
        max-height: min(200px, 48vw);
    }

    .mv-hero__labels {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 6px;
        margin-top: 16px;
        padding-top: 14px;
    }

    .mv-hero__label--web,
    .mv-hero__label--mobile {
        justify-self: center;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }

    .mv-laptop__bezel {
        border-radius: 14px 14px 0 0;
    }
}

@media (prefers-reduced-motion: no-preference) {
    body.mv-intro-done .mv-hero__devices {
        animation: mv-float 11s ease-in-out infinite;
    }
}

@keyframes mv-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-11px);
    }
}

@media (min-width: 900px) {
    .mv-laptop__base {
        height: 17px;
        margin: 0 18px;
        box-shadow:
            0 22px 50px rgba(0, 0, 0, 0.55),
            0 4px 0 #0d1014,
            inset 0 1px 0 rgba(255, 255, 255, 0.07);
    }

    .mv-browser {
        border-radius: 12px 12px 0 0;
    }
}

.mv-cap {
    margin-top: 22px;
    font-family: var(--mv-font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mv-muted);
    text-align: center;
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (min-width: 900px) {
    .mv-hero__visual > .mv-cap {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: min(46ch, 100%);
        letter-spacing: 0.14em;
        color: var(--mv-ink-soft);
    }
}

.mv-phone {
    max-width: 300px;
    margin: 0 auto;
    padding: 13px;
    border-radius: 46px;
    background: linear-gradient(155deg, #2f3640 0%, #141920 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 40px 100px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(61, 228, 196, 0.06);
}

.mv-phone img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 36px;
}

.mv-frame.mv-phone {
    max-width: 296px;
    margin-left: auto;
    margin-right: auto;
    padding: 12px;
    border-radius: 44px;
    background: linear-gradient(155deg, #323944 0%, #141920 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.07),
        0 32px 80px rgba(0, 0, 0, 0.48);
}

.mv-frame.mv-phone img {
    border-radius: 34px;
}

/* Герой: телефон поверх веб-макета */
.mv-phone.mv-phone--hero {
    max-width: 212px;
    padding: 11px;
    border-radius: 44px;
}

@media (min-width: 900px) {
    .mv-phone.mv-phone--hero {
        max-width: min(248px, 22vw);
        padding: 12px;
        border-radius: 48px;
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.09),
            inset 0 1px 0 rgba(255, 255, 255, 0.07),
            0 48px 120px rgba(0, 0, 0, 0.58),
            0 0 100px rgba(61, 228, 196, 0.09);
    }

    .mv-phone.mv-phone--hero img {
        border-radius: 40px;
    }
}

.mv-scroll-hint {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 56px;
    font-family: var(--mv-font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--mv-muted);
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.75s ease 1s,
        transform 0.75s ease 1s;
}

body.mv-intro-done .mv-scroll-hint {
    opacity: 1;
    transform: translateY(0);
}

/* Split feature rows */
.mv-split {
    display: grid;
    gap: 40px;
    align-items: center;
    position: relative;
}

@media (min-width: 900px) {
    .mv-split {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }

    .mv-split::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 5%;
        bottom: 5%;
        width: 1px;
        margin-left: -0.5px;
        background: linear-gradient(180deg, transparent, rgba(196, 163, 90, 0.22), transparent);
        pointer-events: none;
    }

    .mv-split--flip {
        direction: rtl;
    }

    .mv-split--flip > * {
        direction: ltr;
    }
}

.mv-h2 {
    font-family: var(--mv-font-display);
    font-weight: 600;
    font-size: clamp(1.95rem, 4vw, 3.15rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    color: var(--mv-ink);
    text-wrap: balance;
}

.mv-shot {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.mv-shot-caption {
    margin: 16px 0 0;
    padding: 0 10px;
    max-width: min(34ch, 94vw);
    text-align: center;
    font-family: var(--mv-font-mono);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mv-muted);
    line-height: 1.45;
}

.mv-shot--desktop .mv-shot-caption {
    max-width: min(50ch, 94vw);
}

@media (min-width: 900px) {
    .mv-shot-caption {
        margin-top: 18px;
        letter-spacing: 0.12em;
    }
}

.mv-shot .mv-frame.mv-desktop {
    width: 100%;
    align-self: stretch;
}

.mv-frame {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--mv-line);
    background: var(--mv-bg-elev);
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(196, 163, 90, 0.06) inset;
}

.mv-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.mv-desktop img {
    border-radius: 12px;
}

/* Roles */
.mv-roles {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .mv-roles {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

.mv-role-card {
    position: relative;
    padding: 28px 24px 30px;
    border-radius: 6px;
    border: 1px solid var(--mv-line);
    background:
        linear-gradient(165deg, rgba(196, 163, 90, 0.06) 0%, transparent 42%),
        var(--mv-surface);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.mv-role-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mv-gold-mid), transparent);
    opacity: 0.5;
}

.mv-role-card:hover {
    border-color: rgba(196, 163, 90, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.mv-role-card h3 {
    font-family: var(--mv-font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--mv-ink);
}

.mv-role-card ul {
    margin: 0;
    padding-left: 1.05rem;
    font-size: 0.9375rem;
    color: var(--mv-muted);
    line-height: 1.62;
}

.mv-role-card li + li {
    margin-top: 10px;
}

.mv-role-card li::marker {
    color: var(--mv-accent);
}

/* Lists / security */
.mv-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mv-list li {
    padding: 20px 22px;
    border-radius: 6px;
    border: 1px solid var(--mv-line);
    font-size: 0.9375rem;
    line-height: 1.62;
    color: var(--mv-muted);
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid rgba(196, 163, 90, 0.35);
}

.mv-list strong {
    color: var(--mv-ink-soft);
    font-weight: 600;
}

.mv-list code {
    font-family: var(--mv-font-mono);
    font-size: 0.84em;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--mv-line);
    color: var(--mv-accent);
}

.mv-cta-row {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

/* Intro: только герой — остальное через mv-reveal */
.mv-intro-active .mv-hero .mv-hero__grid {
    opacity: 0;
    transform: translateY(26px);
}

.mv-intro-done .mv-hero .mv-hero__grid {
    opacity: 1;
    transform: none;
    transition:
        opacity 1s ease 0.12s,
        transform 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.mv-intro-active .mv-hero .mv-hero__grid {
    transition-delay: 0.06s;
}

/* Кинематографичное появление блоков при скролле */
.mv-reveal:not(.mv-reveal--in) {
    opacity: 0;
    transform: translate3d(0, 48px, 0);
    filter: blur(12px);
}

.mv-reveal.mv-reveal--in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
    transition:
        opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.25s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.95s ease;
}

@media (prefers-reduced-motion: reduce) {
    .mv-reveal:not(.mv-reveal--in),
    .mv-reveal.mv-reveal--in {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}

/* Footer */
.mv-foot {
    position: relative;
    padding: 64px clamp(18px, 5vw, 44px) 72px;
    max-width: var(--mv-max);
    margin: 0 auto;
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(196, 163, 90, 0.35), rgba(61, 228, 196, 0.2), transparent) 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    text-align: center;
}

.mv-foot__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mv-foot__brand span:first-child {
    font-family: var(--mv-font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: var(--mv-ink-soft);
}

.mv-foot__brand span:last-child {
    font-family: var(--mv-font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mv-muted);
}

.mv-foot__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
}

.mv-foot__nav a {
    font-family: var(--mv-font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mv-muted);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.mv-foot__nav a:hover {
    color: var(--mv-ink-soft);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

@media (min-width: 900px) {
    .mv-foot {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        text-align: left;
        gap: 24px;
    }

    .mv-foot__brand {
        align-items: flex-start;
    }

    .mv-foot__brand span:first-child {
        font-size: 1.35rem;
    }

    .mv-foot__nav {
        justify-content: flex-end;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .mv-aurora {
        animation: none !important;
    }

    .mv-loading-line,
    .mv-head,
    .mv-scroll-hint,
    .mv-intro-done .mv-hero .mv-hero__grid {
        transition: none !important;
    }

    body.mv-intro-active .mv-hero .mv-hero__grid {
        opacity: 1 !important;
        transform: none !important;
    }

    body.mv-intro-active .mv-head {
        opacity: 1 !important;
        transform: none !important;
    }

    .mv-loading-line {
        display: none;
    }

    body.mv-intro-done .mv-hero__devices {
        animation: none !important;
    }

    body.mv-intro-done .mv-hero__stamp {
        animation: none !important;
    }

    .mv-hero__orbit--a,
    .mv-hero__orbit--b {
        animation: none !important;
    }

    .mv-drawer__panel,
    .mv-drawer__backdrop {
        transition: none !important;
    }

    .mv-menu-btn__bar {
        transition: none !important;
    }
}

/* Переход на страницу входа с лендинга */
.mv-route-overlay {
    position: fixed;
    inset: 0;
    z-index: 400;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(ellipse 88% 88% at 50% 48%, rgba(5, 6, 7, 0.15) 0%, rgba(5, 6, 7, 0.92) 70%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: opacity 0.38s ease, backdrop-filter 0.42s ease, -webkit-backdrop-filter 0.42s ease;
}

.mv-route-overlay.is-active {
    pointer-events: auto;
    opacity: 1;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

@media (prefers-reduced-motion: reduce) {
    .mv-route-overlay {
        transition: none !important;
    }
}
