* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

section {
    width: 100%;
    max-width: none;
}

.hero {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}
body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #e9eef7;
    background:
        radial-gradient(1100px 650px at 15% 15%, rgba(0,170,255,0.16), rgba(0,0,0,0) 55%),
        radial-gradient(900px 600px at 85% 25%, rgba(255,185,90,0.12), rgba(0,0,0,0) 55%),
        radial-gradient(circle at top, #101622 0, #05060a 45%, #020308 100%);
}
a { color: inherit; text-decoration: none; }

.page {
    width: min(100% - 40px, 1440px);
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 20px 40px;
}
body.loader-active .page {
    opacity: 0;
    transform: translateY(12px);
}
body.loader-ready .page {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(41,151,255,.16), transparent 55%),
        radial-gradient(circle at 80% 65%, rgba(255,190,90,.12), transparent 58%),
        linear-gradient(180deg, rgba(5,12,28,.98), rgba(2,5,15,.98));
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader.finishing {
    background:
        radial-gradient(circle at 20% 20%, rgba(41,151,255,.22), transparent 55%),
        radial-gradient(circle at 80% 65%, rgba(255,190,90,.18), transparent 58%),
        linear-gradient(180deg, rgba(8,16,36,.95), rgba(3,7,20,.95));
}

.site-loader-inner {
    text-align: center;
}

.site-loader-logo {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 1px solid rgba(115,170,255,0.9);
    box-shadow: 0 0 24px rgba(115,170,255,0.7);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 19px;
    letter-spacing: .15em;
    color: #b7dcff;
    background: radial-gradient(circle at 30% 0, #1f2f59 0, #04070f 58%);
    animation: loaderLogoPulse 1.3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.site-loader-logo::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(125,211,252,.0);
    box-shadow: 0 0 0 rgba(125,211,252,0);
    animation: loaderLogoBurst 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.site-loader.finishing .site-loader-logo {
    transform: scale(1.1);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-loader-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #eef4ff;
}

.site-loader-lines {
    min-width: 280px;
    display: grid;
    gap: 6px;
}

.site-loader-line {
    font-size: 13px;
    color: #a9bddf;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.24s cubic-bezier(0.4, 0, 0.2, 1), transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 18px;
}

.site-loader-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.site-loader-line.typing::after {
    content: "_";
    margin-left: 2px;
    color: #d6e8ff;
    animation: loaderCursorBlink .7s steps(1, end) infinite;
}

.site-loader-progress {
    margin-top: 8px;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgba(120,150,240,0.24);
    overflow: hidden;
}

.site-loader-progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(125,211,252,.95), rgba(59,130,246,.95));
    box-shadow: 0 0 16px rgba(59,130,246,.45);
    transition: width 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes loaderCursorBlink {
    0%, 48% { opacity: 1; }
    49%, 100% { opacity: 0; }
}

@keyframes loaderLogoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes loaderLogoBurst {
    0%, 70% {
        border-color: rgba(125,211,252,.0);
        box-shadow: 0 0 0 rgba(125,211,252,0);
    }
    72% {
        border-color: rgba(125,211,252,.45);
        box-shadow: 0 0 18px rgba(125,211,252,.45);
    }
    100% {
        border-color: rgba(125,211,252,.0);
        box-shadow: 0 0 0 rgba(125,211,252,0);
    }
}
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding: 10px 14px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 0 0, rgba(0,170,255,0.16), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(255,190,90,0.12), transparent 60%),
        rgba(5,8,20,0.90);
    border: 1px solid rgba(90,130,230,0.60);
    box-shadow: 0 12px 40px rgba(0,0,0,0.80);
}
.top-left { display: flex; align-items: center; gap: 10px; }
.mn-orbit {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(115,170,255,0.85);
    box-shadow: 0 0 22px rgba(115,170,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9fd1ff;
    background: radial-gradient(circle at 30% 0, #243359 0, #05060a 55%);
}
.mn-text-main { font-size: 14px; font-weight: 700; }
.mn-text-sub { font-size: 11px; color: #b8c6d9; }
.top-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px;
    border-radius: 16px;
    font-size: 12px;
    color: #cfd8e8;
    background:
        linear-gradient(180deg, rgba(18,30,60,0.62), rgba(6,12,28,0.72));
    border: 1px solid rgba(96,165,250,.28);
    box-shadow: inset 0 1px rgba(255,255,255,.05), 0 0 22px rgba(59,130,246,.16);
}

.top-nav a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(96,165,250,.25);
    background: linear-gradient(180deg, rgba(20,35,70,.9), rgba(7,12,28,.9));
    box-shadow: inset 0 1px rgba(255,255,255,.06);
    color: #deebff;
    font-weight: 700;
    letter-spacing: 0.01em;
    opacity: 0.7;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease, background 0.18s ease;
    position: relative;
    overflow: hidden;
}

.nav-icon {
    width: 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 22px;
}

.top-nav a:hover {
    border-color: rgba(96,165,250,.75);
    box-shadow: 0 0 22px rgba(59,130,246,.25), inset 0 1px rgba(255,255,255,.10);
    color: #eff6ff;
    transform: translateY(-1px);
}

.top-nav a.active {
    background: linear-gradient(180deg, rgba(40,80,160,.9), rgba(20,40,90,.9));
    border-color: rgba(96,165,250,.9);
    box-shadow:
        0 0 30px rgba(59,130,246,.35),
        inset 0 1px rgba(255,255,255,.15);
    color: #fff;
    opacity: 1;
}

.top-nav a.active::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7dd3fc;
    box-shadow: 0 0 10px rgba(125,211,252,.8);
    transform: translateY(-50%);
}
.lang { display: flex; gap: 8px; }
.lang a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(120,150,240,0.55);
    background: rgba(4,10,30,0.70);
    color: #b8c6d9;
    font-size: 12px;
}
.lang a.active {
    background: rgba(24,36,51,0.92);
    border-color: rgba(120,150,240,0.85);
    color: #e9eef7;
    box-shadow: 0 0 18px rgba(90,130,230,0.22);
}

.hero {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 56px 56px 64px;
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    margin-bottom: 26px;
    background:
        radial-gradient(circle at 0 0, rgba(0,180,255,0.16), transparent 60%),
        radial-gradient(circle at 100% 0, rgba(240,170,60,0.14), transparent 55%),
        linear-gradient(135deg, rgba(3,6,16,0.96), rgba(3,5,10,0.98));
    box-shadow: 0 24px 90px rgba(0,0,0,0.90);
    border: 1px solid rgba(90,130,230,0.35);
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0,2.1fr) minmax(0,1.4fr);
    gap: 26px;
    align-items: start;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #8ea7ff;
    background: rgba(8,16,40,0.90);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(114,167,255,0.45);
    margin-bottom: 16px;
}
.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #31ff9c;
    box-shadow: 0 0 8px rgba(49,255,156,0.85);
}
.hero-title { font-size: 30px; line-height: 1.15; margin-bottom: 10px; }
.hero-title span { color: #f7c768; }
.hero-sub { font-size: 15px; color: #d2d9ea; max-width: 560px; margin-bottom: 12px; line-height: 1.6; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0; }
.btn {
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.btn-main {
    background: linear-gradient(135deg,#f6c365,#f0a83c);
    color: #1a1007;
    font-weight: 700;
    box-shadow: 0 0 22px rgba(240,168,60,0.55);
}
.btn-secondary {
    background: rgba(5,10,26,0.90);
    color: #f6e1b2;
    border-color: rgba(245,195,122,0.55);
}
.btn-ghost {
    background: rgba(4,10,30,0.75);
    color: #b8c7ff;
    border-color: rgba(120,150,240,0.55);
    font-size: 13px;
}
.hero-note {
    font-size: 12px;
    color: #9fb2ff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(20,26,58,0.70);
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(105,145,255,0.45);
}
.hero-note .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #59ffe4;
    box-shadow: 0 0 9px rgba(89,255,228,0.70);
}
.hero-card {
    border-radius: 18px;
    padding: 16px;
    background: linear-gradient(120deg, rgba(4,10,30,0.96), rgba(8,16,45,0.96));
    border: 1px solid rgba(120,150,240,0.55);
}
.hero-card-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #8ba6ff; margin-bottom: 6px; }
.hero-card-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.hero-card-text { font-size: 13px; color: #d7e2f3; margin-bottom: 10px; line-height: 1.55; }
.hero-card-meta { font-size: 11px; color: #9f9aa9; }
.hero-card-meta strong { color: #f7c768; }

.section {
    margin-bottom: 18px;
    padding: 20px 18px 18px;
    border-radius: 20px;
    background: rgba(3,6,16,0.92);
    border: 1px solid rgba(65,85,160,0.55);
    box-shadow: 0 18px 60px rgba(0,0,0,0.45);
}
.section-header { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.section-title { font-size: 18px; font-weight: 800; }
.section-tag { font-size: 11px; color: #9f9aa9; text-transform: uppercase; letter-spacing: 0.14em; }
.section-text { font-size: 14px; color: #d5dff0; margin-bottom: 14px; line-height: 1.62; }
.section-list { list-style: none; display: grid; gap: 6px; font-size: 13px; color: #e4eefc; }
.section-list li { display: flex; gap: 6px; }
.section-list li::before { content: "•"; color: #f7c768; margin-top: 1px; }

.mn-block {
    margin-bottom: 18px;
    border-radius: 24px;
    padding: 22px 20px 20px;
    background: linear-gradient(90deg, rgba(5,10,30,0.96) 0%, rgba(5,10,30,0.94) 45%, rgba(8,16,40,0.96) 55%, rgba(10,20,55,0.98) 100%);
    border: 1px solid rgba(90,130,230,0.65);
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 90px rgba(0,0,0,0.50);
}
.mn-line {
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(160,210,255,0.55), transparent);
}
.mn-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(240,190,90,0.16) 0, transparent 55%),
        radial-gradient(circle at 80% 65%, rgba(110,170,255,0.22) 0, transparent 60%);
}
.mn-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(0,1.4fr);
    gap: 22px;
}
.mn-title { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.mn-sub { font-size: 13px; color: #d9e4f8; line-height: 1.6; }
.mn-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; font-size: 11px; }
.mn-chip { padding: 5px 10px; border-radius: 999px; border: 1px solid rgba(120,150,240,0.65); background: rgba(8,14,40,0.72); color: #b8c7ff; }
.mn-list { list-style: none; font-size: 13px; color: #e5f0ff; display: grid; gap: 6px; }
.mn-list li { display: flex; gap: 8px; line-height: 1.55; }
.mn-list li::before { content: "◆"; color: #f7c768; font-size: 11px; margin-top: 2px; }

.process-pipeline {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.process-step {
    font-size: 12px;
    color: #c9d7f4;
    border: 1px solid rgba(120,150,240,0.3);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    background: rgba(9,16,38,0.65);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.process-step.active {
    border-color: rgba(245,195,122,0.75);
    color: #f5ddb3;
    box-shadow: 0 0 0 2px rgba(245,195,122,0.2);
}

.footer {
    font-size: 12px;
    color: #8f9bb0;
    border-top: 1px solid rgba(80,95,150,0.55);
    padding-top: 14px;
    margin-top: 8px;
}
.footer-wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.contacts { display: flex; flex-direction: column; gap: 4px; }
.contacts a { color: #c8d6f1; }

#fab-launcher {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
}

#fab-launcher.open {
    pointer-events: auto;
}

.fab-option {
    position: fixed;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.22);
    cursor: pointer;
    transform: translate(0, 0) scale(0.6);
    opacity: 0;
    transition: all .25s ease;
    color: #ffffff;
    will-change: transform, opacity;
}

.fab-option svg {
    width: 26px;
    height: 26px;
}

.fab-option.show {
    transform: translate(var(--tx, 0), var(--ty, 0)) scale(1);
    opacity: 1;
}

.fab-option-telegram {
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    box-shadow: 0 0 24px rgba(34, 158, 217, 0.45);
}

.fab-option-vk {
    background: linear-gradient(135deg, #0077FF, #005BBA);
    box-shadow: 0 0 24px rgba(0, 119, 255, 0.45);
}

@media (hover: hover) and (pointer: fine) {
    .fab-option:hover {
        transform: translate(var(--tx, 0), var(--ty, 0)) scale(1.08);
    }
    .fab-option-telegram:hover {
        box-shadow: 0 0 28px rgba(34, 158, 217, 0.62);
    }
    .fab-option-vk:hover {
        box-shadow: 0 0 28px rgba(0, 119, 255, 0.62);
    }
}

.fab-option:active {
    transform: translate(var(--tx, 0), var(--ty, 0)) scale(0.94);
}

.fab-pulse-anchor {
    position: fixed;
    pointer-events: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,200,80,.9);
    box-shadow: 0 0 20px rgba(255,200,80,.6);
    animation: pulse 0.6s ease-out;
    z-index: 1199;
}

.fab-trail {
    position: fixed;
    height: 2px;
    transform-origin: 0 50%;
    background: linear-gradient(90deg, rgba(255, 203, 96, 0.62), rgba(255, 203, 96, 0));
    opacity: 0;
    transition: opacity 0.18s ease, width 0.3s ease;
    pointer-events: none;
    z-index: 1198;
}

.fab-trail.show {
    opacity: 0.9;
}

@keyframes pulse {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

.page-transition {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
}

.transition-panel {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background:
    radial-gradient(circle at center, rgba(41,151,255,.20), transparent 55%),
    linear-gradient(180deg, rgba(5,12,28,.98), rgba(2,5,15,.98));
  box-shadow: 0 0 40px rgba(41,151,255,.35);
  transition: transform .48s cubic-bezier(.22,1,.36,1);
}

.transition-left {
  left: 0;
  transform: translateX(-100%);
  border-right: 1px solid rgba(96,165,250,.45);
}

.transition-right {
  right: 0;
  transform: translateX(100%);
  border-left: 1px solid rgba(96,165,250,.45);
}

.page-transition.active .transition-left,
.page-transition.active .transition-right {
  transform: translateX(0);
}

.blog-cards {
    display: grid;
    gap: 12px;
}

.blog-card {
    display: block;
    border: 1px solid rgba(90,130,230,0.55);
    border-radius: 14px;
    padding: 16px;
    background: rgba(8,14,35,0.7);
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.blog-card:hover {
    border-color: rgba(245,195,122,0.65);
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
    transform: translateY(-1px);
}

.blog-card-title {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #f1f4ff;
}

.blog-card-intro {
    font-size: 14px;
    line-height: 1.6;
    color: #d2d9ea;
    margin-bottom: 14px;
}

.blog-read-btn {
    pointer-events: none;
}

.product-mvp {
    margin-top: 8px;
    font-size: 12px;
    color: #9eb3df;
    opacity: 0;
    transform: translateY(3px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.blog-card:hover .product-mvp {
    opacity: 1;
    transform: translateY(0);
}

.live-system {
    overflow: hidden;
}

.system-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #b5c3e4;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #59ffe4;
    box-shadow: 0 0 8px rgba(89,255,228,0.8);
    animation: pulseGlow 1.4s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1); }
}

.live-scene {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1.6fr 1.1fr;
    gap: 12px;
    align-items: stretch;
    min-height: 220px;
}

.live-left,
.live-right {
    border: 1px solid rgba(90,130,230,0.45);
    border-radius: 14px;
    background: rgba(8,14,35,0.62);
    padding: 12px;
}

.live-source {
    border: 1px solid rgba(120,150,240,0.38);
    border-radius: 14px;
    padding: 11px 12px;
    margin-bottom: 10px;
    background:
        radial-gradient(circle at 10% 20%, rgba(125,211,252,0.12), transparent 55%),
        radial-gradient(circle at 85% 80%, rgba(245,195,122,0.08), transparent 58%),
        rgba(10,16,38,0.62);
    font-size: 13px;
    color: #dbe7ff;
    transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease, background 0.22s ease;
    cursor: default;
    user-select: none;
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 2px;
}

.live-source-icon {
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #eaf4ff;
    background: rgba(8,14,35,0.65);
    border: 1px solid rgba(120,150,240,0.28);
    box-shadow: inset 0 1px rgba(255,255,255,.06);
}

.live-source-name {
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.live-source-sub {
    font-size: 11px;
    color: #9fb2d8;
    line-height: 1.2;
}

.live-source-active {
    border-color: rgba(125,211,252,0.70);
    box-shadow: 0 0 26px rgba(59,130,246,0.22), 0 0 18px rgba(125,211,252,0.14);
    transform: translateX(2px);
    background:
        radial-gradient(circle at 15% 20%, rgba(125,211,252,0.18), transparent 58%),
        radial-gradient(circle at 85% 80%, rgba(245,195,122,0.12), transparent 60%),
        rgba(12,18,44,0.72);
}

.live-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9fb3e6;
    font-size: 24px;
}

.live-system-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #e7edff;
}

.live-list {
    display: grid;
    gap: 8px;
}

/* Visual scene mode (single animation story) */
.live-system-core {
    display: grid;
    gap: 12px;
}

.live-stage-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.live-stage {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9fb2d8;
    padding: 10px 8px;
    border-radius: 12px;
    border: 1px solid rgba(120,150,240,0.22);
    background: rgba(8,14,35,0.45);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.live-stage.active {
    border-color: rgba(125,211,252,0.55);
    color: #eaf4ff;
    box-shadow: 0 0 18px rgba(59,130,246,0.20);
    transform: translateY(-1px);
}

.live-system-screen {
    position: relative;
    min-height: 126px;
    border-radius: 16px;
    border: 1px solid rgba(120,150,240,0.30);
    background:
        radial-gradient(circle at 18% 18%, rgba(125,211,252,0.12), transparent 58%),
        radial-gradient(circle at 85% 80%, rgba(245,195,122,0.10), transparent 62%),
        linear-gradient(180deg, rgba(11,18,44,0.72), rgba(8,14,35,0.64));
    box-shadow: 0 16px 50px rgba(0,0,0,0.35);
    overflow: hidden;
}

.live-system-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at center, rgba(125,211,252,0.18), transparent 55%);
    opacity: 0.65;
    filter: blur(20px);
    pointer-events: none;
}

.live-system-label {
    position: absolute;
    left: 12px;
    bottom: 10px;
    font-size: 11px;
    color: rgba(235,245,255,0.72);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.live-system-screen.is-processing::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 35%, rgba(125,211,252,0.12) 50%, transparent 65%);
    animation: scanSweep 1.8s ease-in-out infinite;
    opacity: 0.9;
}

.live-sinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.live-sink {
    border-radius: 14px;
    padding: 10px 12px;
    border: 1px dashed rgba(120,150,240,0.26);
    background: rgba(8,14,35,0.35);
    color: #9fb2d8;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.live-mover {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translate(0, 0);
    font-size: 22px;
    line-height: 1;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(8,14,35,0.55);
    box-shadow: 0 0 26px rgba(125,211,252,0.12);
    transition: transform 1.8s cubic-bezier(.22,1,.36,1), opacity 0.45s ease;
    will-change: transform, opacity;
}

.live-mover.show {
    opacity: 1;
}

.live-mover.is-object { box-shadow: 0 0 30px rgba(245,195,122,0.16); }
.live-mover.is-reply { box-shadow: 0 0 30px rgba(89,255,228,0.18); }
.live-mover.is-cash { box-shadow: 0 0 30px rgba(92,215,146,0.18); }

.live-done {
    margin-top: 10px;
    border-radius: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(92,215,146,0.40);
    background: rgba(14,42,34,0.46);
    color: #b6f5ce;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35), 0 0 22px rgba(92,215,146,0.10);
}

.live-lead-stack {
    display: grid;
    gap: 10px;
}

.live-lead-card {
    border: 1px solid rgba(120,150,240,0.32);
    border-radius: 14px;
    padding: 12px 12px 11px;
    background:
        radial-gradient(circle at 30% 0, rgba(125,211,252,0.10), transparent 60%),
        linear-gradient(180deg, rgba(11,18,44,0.78), rgba(8,14,35,0.68));
    box-shadow: 0 12px 30px rgba(0,0,0,0.30);
    position: relative;
    overflow: hidden;
}

.live-lead-card-bg {
    opacity: 0.55;
    transform: scale(0.985);
    filter: saturate(0.9);
}

.live-lead-card-main {
    border-color: rgba(245,195,122,0.40);
    box-shadow: 0 16px 46px rgba(0,0,0,0.38), 0 0 22px rgba(245,195,122,0.10);
}

.live-lead-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(120deg, transparent 35%, rgba(125,211,252,0.10) 50%, transparent 65%),
        radial-gradient(circle at 50% 20%, rgba(125,211,252,0.10), transparent 55%);
    transform: translateX(-20%);
}

.live-lead-card.is-processing .live-lead-scan {
    opacity: 1;
    animation: scanSweep 1.6s ease-in-out infinite;
}

@keyframes scanSweep {
    0% { transform: translateX(-28%); filter: brightness(1); }
    50% { transform: translateX(18%); filter: brightness(1.08); }
    100% { transform: translateX(-28%); filter: brightness(1); }
}

.live-lead-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.live-lead-title {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.01em;
    color: #eef4ff;
}

.live-lead-pill {
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid rgba(120,150,240,0.25);
    background: rgba(8,14,35,0.45);
    color: #cfe0ff;
    white-space: nowrap;
}

.pill-new { border-color: rgba(245,195,122,0.45); color: #f6e1b2; background: rgba(245,195,122,0.12); }
.pill-check { border-color: rgba(125,211,252,0.40); color: #cfeeff; background: rgba(125,211,252,0.10); }
.pill-work { border-color: rgba(120,150,240,0.45); color: #bed0ff; background: rgba(120,150,240,0.12); }
.pill-done { border-color: rgba(92,215,146,0.42); color: #b6f5ce; background: rgba(92,215,146,0.10); }

.live-lead-meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: #cfe0ff;
}

.live-lead-src { color: #dce6f8; }
.live-lead-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(125,211,252,0.85);
    box-shadow: 0 0 10px rgba(125,211,252,0.35);
}
.live-lead-tag { color: #9ab4ff; }

.live-lead-sub {
    margin-top: 8px;
    font-size: 12px;
    color: #b5c3e4;
    line-height: 1.45;
}

.live-item {
    border: 1px solid rgba(120,150,240,0.34);
    border-radius: 10px;
    padding: 8px 10px;
    background: rgba(11,18,44,0.72);
    transition: box-shadow 0.3s ease;
}

.live-item-highlight {
    box-shadow: 0 0 0 2px rgba(120,150,240,0.28);
}

.live-item-head {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 6px;
}

.live-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.live-time {
    font-size: 11px;
    color: #9fb2d8;
}

.live-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.live-events {
    border: 1px solid rgba(90,130,230,0.45);
    border-radius: 14px;
    background: rgba(8,14,35,0.62);
    padding: 12px;
}

/* Visual scene mode: hide text events column */
.live-events {
    display: none;
}

.live-events-list {
    display: grid;
    gap: 6px;
}

.live-event {
    font-size: 12px;
    color: #d7e2f8;
    border: 1px solid rgba(120,150,240,0.25);
    border-radius: 8px;
    padding: 7px 9px;
    background: rgba(12,20,46,0.7);
}

.live-event-enter {
    opacity: 0;
    transform: translateY(4px);
}

.live-event-enter.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.26s ease, transform 0.26s ease;
}

.live-ev-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 22px;
    padding: 0 8px;
    margin-right: 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(120,150,240,0.26);
    background: rgba(8,14,35,0.45);
    color: #cfeeff;
}

.live-ev-text {
    color: inherit;
}

.live-result {
    margin-top: 10px;
    min-height: 18px;
    font-size: 12px;
    color: #f7d59f;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.live-result.show {
    opacity: 1;
}

.live-result.is-warn {
    color: #ffd2a6;
}

.live-result-card {
    border-radius: 16px;
    padding: 14px 14px 12px;
    border: 1px solid rgba(245,195,122,0.40);
    background:
        radial-gradient(circle at 18% 10%, rgba(245,195,122,0.16), transparent 55%),
        radial-gradient(circle at 85% 70%, rgba(125,211,252,0.12), transparent 58%),
        linear-gradient(180deg, rgba(16,18,32,0.70), rgba(10,14,28,0.62));
    box-shadow: 0 18px 54px rgba(0,0,0,0.42), 0 0 28px rgba(245,195,122,0.12);
}

.live-result-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.live-result-title {
    font-size: 14px;
    font-weight: 900;
    color: #fff3db;
}

.live-result-metric {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    color: #ffe0b3;
}

.live-result-num {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-shadow: 0 0 18px rgba(245,195,122,0.20);
}

.live-result-unit {
    font-size: 12px;
    color: #f6e1b2;
    opacity: 0.9;
}

.live-result-list {
    display: grid;
    gap: 6px;
    font-size: 12px;
    color: #e6f0ff;
}

.live-result-li {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.live-result-li::before {
    content: "✓";
    color: #59ffe4;
    text-shadow: 0 0 12px rgba(89,255,228,0.30);
}

.live-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 10px 0 12px;
}

.live-simulate {
    cursor: pointer;
}

.live-simulate:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.live-controls-hint {
    font-size: 12px;
    color: #b5c3e4;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(120,150,240,0.25);
    background: rgba(8,14,35,0.45);
    opacity: 0;
    transform: translateY(2px);
    transition: opacity 0.18s ease, transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.live-controls-hint.show {
    opacity: 1;
    transform: translateY(0);
}

.live-controls-hint.is-warn {
    border-color: rgba(245,195,122,0.45);
    color: #f6d89d;
}

.live-event.is-warn {
    border-color: rgba(245,195,122,0.35);
    background: rgba(45,28,12,0.52);
    color: #f6e1b2;
}

.live-tag {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #b8c7ff;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(120,150,240,0.25);
    background: rgba(8,14,35,0.45);
    width: fit-content;
}

.pulse-soft {
    animation: pulseSoft 0.55s ease-out;
}

.pulse {
    animation: pulseStrong 0.55s ease-out;
}

@keyframes pulseSoft {
    0% { transform: translateY(0); filter: brightness(1); }
    35% { transform: translateY(-1px); filter: brightness(1.12); }
    100% { transform: translateY(0); filter: brightness(1); }
}

@keyframes pulseStrong {
    0% { transform: translateY(0) scale(1); filter: brightness(1); }
    30% { transform: translateY(-1px) scale(1.01); filter: brightness(1.18); }
    100% { transform: translateY(0) scale(1); filter: brightness(1); }
}

.lead-flight {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    border: 1px solid rgba(245,195,122,0.55);
    background: rgba(245,195,122,0.18);
    color: #f7dfb6;
    transition: transform 0.6s ease, opacity 0.4s ease;
    white-space: nowrap;
}

.mockup-card {
    border-radius: 18px;
    padding: 16px;
    background: linear-gradient(120deg, rgba(4,10,30,0.96), rgba(8,16,45,0.96));
    border: 1px solid rgba(120,150,240,0.55);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.mockup-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f1f4ff;
}

/* Hero product demo (premium flow) */
.hero-demo {
    margin-top: 12px;
    position: relative;
    border-radius: 18px;
    border: 1px solid rgba(90,130,230,0.45);
    background:
        radial-gradient(circle at 18% 18%, rgba(125,211,252,0.14), transparent 58%),
        radial-gradient(circle at 85% 80%, rgba(245,195,122,0.10), transparent 62%),
        radial-gradient(circle at 55% 45%, rgba(59,130,246,0.08), transparent 62%),
        rgba(8,14,35,0.55);
    overflow: hidden;
    padding: 12px;
    min-height: 150px;
}

.hero-demo::before {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    top: 52px;
    height: 2px;
    background: linear-gradient(90deg, rgba(125,211,252,0.0), rgba(125,211,252,0.24), rgba(245,195,122,0.16), rgba(92,215,146,0.18), rgba(125,211,252,0.0));
    opacity: 0.9;
    pointer-events: none;
    filter: blur(0.1px);
}

.hero-demo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.06), transparent 55%);
    opacity: 0.9;
}

.hero-demo-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 10px;
    align-items: stretch;
}

.hero-demo-node {
    border-radius: 16px;
    border: 1px solid rgba(120,150,240,0.28);
    background: rgba(8,14,35,0.45);
    padding: 12px 10px;
    display: grid;
    gap: 6px;
    align-content: start;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.hero-demo-node.is-active {
    border-color: rgba(125,211,252,0.55);
    box-shadow: 0 0 26px rgba(59,130,246,0.20), 0 0 18px rgba(125,211,252,0.12);
    transform: translateY(-1px);
}

.hero-demo-icon {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #eaf4ff;
    background: rgba(5,10,26,0.72);
    border: 1px solid rgba(120,150,240,0.25);
}

.hero-demo-name {
    font-size: 12px;
    font-weight: 900;
    color: #eef4ff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-demo-sub {
    font-size: 11px;
    color: #9fb2d8;
}

.hero-demo-system {
    border-color: rgba(245,195,122,0.28);
    background:
        radial-gradient(circle at 25% 10%, rgba(245,195,122,0.10), transparent 60%),
        linear-gradient(180deg, rgba(11,18,44,0.70), rgba(8,14,35,0.58));
}

.hero-demo-ring {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background:
        conic-gradient(from 180deg, rgba(125,211,252,0.0), rgba(125,211,252,0.85), rgba(245,195,122,0.55), rgba(92,215,146,0.65), rgba(125,211,252,0.0));
    -webkit-mask: radial-gradient(circle, transparent 62%, #000 63%);
    mask: radial-gradient(circle, transparent 62%, #000 63%);
    opacity: 0.35;
    filter: drop-shadow(0 0 14px rgba(125,211,252,0.16));
    transform: rotate(0deg);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.hero-demo-system.is-processing .hero-demo-ring {
    opacity: 0.9;
    animation: ringSpin 1.6s linear infinite;
}

@keyframes ringSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-demo-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(125,211,252,0.12) 50%, transparent 65%);
    transform: translateX(-25%);
}

.hero-demo-system.is-processing .hero-demo-scan {
    opacity: 1;
    animation: scanSweep 1.8s ease-in-out infinite;
}

.hero-demo-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-demo-mover {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translate(0, 0);
    font-size: 18px;
    line-height: 1;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(8,14,35,0.62);
    box-shadow: 0 0 26px rgba(125,211,252,0.12);
    transition: transform 2.1s cubic-bezier(.16,1,.3,1), opacity 0.55s ease;
    will-change: transform, opacity;
}

.hero-demo-mover.show {
    opacity: 1;
    filter: saturate(1.05);
}
.hero-demo-mover.is-msg { box-shadow: 0 0 30px rgba(125,211,252,0.16); }
.hero-demo-mover.is-ok { box-shadow: 0 0 30px rgba(92,215,146,0.14); }

@media (max-width: 780px) {
    .hero-demo-row { grid-template-columns: 1fr; }
    .hero-demo::before {
        left: 50%;
        right: auto;
        top: 16px;
        bottom: 16px;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(125,211,252,0.0), rgba(125,211,252,0.22), rgba(245,195,122,0.14), rgba(92,215,146,0.18), rgba(125,211,252,0.0));
    }
}

.lead-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(120,150,240,0.2);
    font-size: 13px;
    color: #dce6f8;
}

.lead-time {
    font-size: 11px;
    color: #9fb2d8;
    margin: 4px 0 8px;
    text-align: right;
}

.lead-source {
    color: #9ab4ff;
    font-size: 12px;
}

.status-badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    white-space: nowrap;
}

.status-new {
    background: rgba(245,195,122,0.18);
    border-color: rgba(245,195,122,0.55);
    color: #f6d89d;
}

.status-work {
    background: rgba(120,150,240,0.18);
    border-color: rgba(120,150,240,0.55);
    color: #bed0ff;
}

.status-done {
    background: rgba(92,215,146,0.18);
    border-color: rgba(92,215,146,0.55);
    color: #b6f5ce;
}

.mockup-stats {
    margin-top: 12px;
    display: grid;
    gap: 6px;
    font-size: 12px;
    color: #cdd8ef;
}

.mockup-stats div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.mockup-stats strong {
    color: #f1f4ff;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 12px 0 16px;
}

.before-card,
.after-card {
    border-radius: 14px;
    padding: 14px;
    border: 1px solid rgba(90,130,230,0.55);
    background: rgba(8,14,35,0.7);
}

.before-card {
    border-color: rgba(220,100,100,0.55);
    background: rgba(45,16,22,0.5);
}

.after-card {
    border-color: rgba(100,210,140,0.55);
    background: rgba(14,42,34,0.5);
}

@media (max-width: 780px) {
    .topbar { flex-direction: column; align-items: flex-start; border-radius: 18px; }
    .top-nav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding: 8px;
    }
    .top-nav a {
        min-height: 36px;
        padding: 8px 6px;
        font-size: 12px;
        line-height: 1.15;
        gap: 6px;
        justify-content: flex-start;
        min-width: 0;
        text-align: left;
    }
    .top-nav a .nav-icon { align-self: center; }
    .lang { align-self: flex-end; }
    .hero { padding: 22px 18px 20px; }
    .hero-grid { grid-template-columns: 1fr; }
    .fab-option {
        width: 54px;
        height: 54px;
    }
    .fab-option svg {
        width: 24px;
        height: 24px;
    }
    .live-scene { grid-template-columns: 1fr; min-height: 0; }
    .live-arrow { transform: rotate(90deg); font-size: 18px; margin: -2px 0; }
    .process-pipeline { grid-template-columns: 1fr; }
    .product-mvp { opacity: 1; transform: none; }
    .mn-inner { grid-template-columns: 1fr; }
    .mn-line { left: 100%; }
    .before-after-grid { grid-template-columns: 1fr; }
    .live-source { grid-template-columns: 36px 1fr; }
    .live-result-num { font-size: 20px; }
    .live-stage-row { grid-template-columns: 1fr; }
    .live-sinks { grid-template-columns: 1fr; }
}

.mn-logo {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.mn-svg {
    width: clamp(220px, 28vw, 420px);
}

.mn-path {
    opacity: 0;
    animation: mnReveal 1.6s ease forwards;
}

.shine-bar {
    transform: translateX(-120%);
    animation: mnShineMove 2s ease forwards 0.8s;
}

@keyframes mnReveal {
    0% { opacity: 0; filter: brightness(0.4); }
    60% { opacity: 1; filter: brightness(1.2); }
    100% { opacity: 1; filter: brightness(1); }
}

@keyframes mnShineMove {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

/* MIRNOVA HOME LAYOUT RESET */
.page.page-home {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.page.page-home main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.page.page-home .topbar {
  position: sticky;
  top: 18px;
  z-index: 10000;
  width: calc(100% - 96px);
  max-width: none;
  margin: 18px 48px 0;
  box-sizing: border-box;
  padding: 8px 12px;
  background: rgba(5, 8, 20, 0.88) !important;
  background-image: none !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55) !important;
  border: 1px solid rgba(80, 160, 255, 0.38) !important;
  border-radius: 999px;
}

.page.page-home .hero {
  width: 100%;
  min-height: calc(100vh - 120px);
  margin: 0;
  padding: 120px 24px 80px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page.page-home .hero-stage-grid {
  width: 100%;
  max-width: none;
}

.page.page-home .hero-copy {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.page.page-home .hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.page.page-home .section {
  width: calc(100% - 96px);
  max-width: none;
  margin-left: 48px;
  margin-right: 48px;
}

@media (max-width: 768px) {
  .page.page-home .topbar {
    top: 12px;
    width: calc(100% - 24px);
    margin: 12px 12px 0;
    box-sizing: border-box;
  }

  .page.page-home .hero {
    min-height: calc(100svh - 90px);
    padding: 96px 16px 56px;
  }

  .page.page-home .section {
    width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
  }
}

/* HERO CARD REMOVAL */
.page.page-home .hero,
.hero {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: visible !important;
}

.page.page-home .hero::before,
.page.page-home .hero::after,
.hero::before,
.hero::after {
  display: none !important;
  content: none !important;
}

/* HERO CANVAS-ONLY BACKGROUND */
.page.page-home .hero,
.hero {
  background: transparent !important;
  background-image: none !important;
}

.page.page-home .hero::before,
.page.page-home .hero::after,
.hero::before,
.hero::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

#space-bg {
  background: #05070f !important;
}

/* HERO FIRST-SCREEN LOCK */
.page.page-home .hero {
  min-height: 100vh !important;
  height: 100vh !important;
  padding-top: 120px !important;
  padding-bottom: 80px !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.page.page-home .hero-stage,
.hero-stage {
  min-height: 100vh !important;
  height: 100vh !important;
}

.page.page-home .section:first-of-type {
  margin-top: 0 !important;
}

@media (max-height: 760px) {
  .page.page-home .hero {
    padding-top: 90px !important;
    padding-bottom: 60px !important;
  }

  .page.page-home .hero h1,
  .page.page-home .hero-title {
    font-size: clamp(42px, 7vw, 76px) !important;
  }
}

/* HOME: убрать старый двухцветный background body (blue/orange углы) */
html:has(.page.page-home),
body:has(.page.page-home) {
  background: #05070f !important;
  background-image: none !important;
}

/* HOME HERO COMPOSITION (MirNova Systems) */
.page.page-home .hero {
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

.page.page-home .hero-stage-grid {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

.page.page-home .hero-copy {
  width: min(920px, calc(100vw - 64px)) !important;
  max-width: 920px !important;
  margin: clamp(150px, 24vh, 240px) 0 0 clamp(32px, 8vw, 120px) !important;
  text-align: left !important;
  align-items: flex-start !important;
}

.page.page-home .hero-title {
  font-family: "Orbitron", system-ui, sans-serif !important;
  text-transform: none !important;
  font-size: clamp(42px, 6vw, 96px) !important;
  line-height: 0.95 !important;
  letter-spacing: 0.035em !important;
  font-weight: 600 !important;
  margin-bottom: clamp(36px, 7vh, 72px) !important;
}

.page.page-home .hero-sub {
  max-width: 720px !important;
  text-align: left !important;
  margin-top: 22px !important;
  font-size: clamp(16px, 1.4vw, 22px) !important;
}

.page.page-home .hero-buttons {
  justify-content: flex-start !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 768px) {
  .page.page-home .hero {
    justify-content: center !important;
    align-items: center !important;
  }

  .page.page-home .hero-stage-grid {
    justify-content: center !important;
    align-items: center !important;
  }

  .page.page-home .hero-copy {
    width: calc(100vw - 32px) !important;
    margin: 120px auto 0 !important;
    text-align: center !important;
    align-items: center !important;
  }

  .page.page-home .hero-title {
    font-size: clamp(34px, 11vw, 54px) !important;
    line-height: 1.05 !important;
    letter-spacing: 0.025em !important;
  }

  .page.page-home .hero-sub {
    text-align: center !important;
    font-size: 16px !important;
  }

  .page.page-home .hero-buttons {
    justify-content: center !important;
    margin-top: 32px !important;
  }
}

/* HOME HERO: поднять только заголовок (не трогая кнопки) */
.page.page-home .hero-title {
  transform: translateX(-80px) translateY(-220px) !important;
  margin-bottom: 48px !important;
}

.page.page-home .hero-buttons {
  margin-top: 48px !important;
}

@media (max-width: 768px) {
  .page.page-home .hero-title {
    transform: translateX(-20px) translateY(-100px) !important;
    margin-bottom: 32px !important;
  }

  .page.page-home .hero-buttons {
    margin-top: 32px !important;
  }
}

.page.page-home .hero-title .hero-systems {
  display: block !important;
  width: fit-content !important;
  font-size: clamp(18px, 1.6vw, 30px) !important;
  line-height: 1 !important;
  font-weight: 500 !important;
  letter-spacing: 0.38em !important;
  text-transform: uppercase !important;
  font-family: inherit !important;
  color: rgba(235, 245, 255, 0.82) !important;
  text-shadow: 0 0 14px rgba(90, 170, 255, 0.35) !important;
  margin-top: 10px !important;
  margin-left: 56% !important;
}

@media (max-width: 768px) {
  .page.page-home .hero-title .hero-systems {
    font-size: 16px !important;
    letter-spacing: 0.25em !important;
    margin-left: 0 !important;
    margin-top: 8px !important;
  }
}

.page.page-home .hero-cta-row {
  margin-top: 96px !important;
}

@media (max-width: 768px) {
  .page.page-home .hero-cta-row {
    margin-top: 56px !important;
  }
}

@media (max-width: 768px) {
  .page.page-home .topbar {
    position: sticky !important;
    top: 8px !important;
    left: auto !important;
    right: auto !important;
    width: calc(100vw - 24px) !important;
    margin: 8px 12px 0 !important;
    padding: 10px 12px !important;
    border-radius: 22px !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "brand lang"
      "nav nav" !important;
    gap: 10px !important;
    background: rgba(5, 8, 20, 0.92) !important;
    background-image: none !important;
    overflow: hidden !important;
  }

  .page.page-home .top-left {
    grid-area: brand !important;
    min-width: 0 !important;
  }

  .page.page-home .top-nav {
    grid-area: nav !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .page.page-home .top-nav a {
    min-width: 0 !important;
    width: 100% !important;
    height: 44px !important;
    padding: 0 8px !important;
    border-radius: 16px !important;
    font-size: 13px !important;
    line-height: 1.1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .page.page-home .lang {
    grid-area: lang !important;
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }

  .page.page-home .lang a {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .page.page-home .brand-title {
    font-size: 15px !important;
    line-height: 1.1 !important;
  }

  .page.page-home .brand-subtitle {
    font-size: 12px !important;
    line-height: 1.2 !important;
  }

  .page.page-home .hero {
    padding-top: 190px !important;
  }
}

@media (max-width: 768px) {
  .page.page-home .hero-buttons,
  .page.page-home .hero-cta-row {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .page.page-home .hero-buttons a,
  .page.page-home .hero-cta-row a,
  .page.page-home .hero-buttons button,
  .page.page-home .hero-cta-row button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 48px !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    font-size: 14px !important;
  }

  .page.page-home .hero-copy {
    max-width: calc(100vw - 32px) !important;
    overflow: visible !important;
  }
}

@media (max-width: 768px) {
  .page.page-home .hero-title {
    transform: translateX(-20px) translateY(-150px) !important;
  }

  .page.page-home .hero-cta-row {
    margin-top: 32px !important;
    transform: translateY(-36px) !important;
  }
}

@media (max-width: 768px) {
  .page.page-home .hero {
    min-height: calc(100svh - 16px) !important;
    padding-top: 0 !important;
    padding-bottom: 24px !important;
  }

  .page.page-home .hero-copy {
    margin-top: 0 !important;
    transform: translateY(-90px) !important;
  }

  .page.page-home .hero-title {
    transform: none !important;
    margin-bottom: 28px !important;
  }

  .page.page-home .hero-cta-row {
    margin-top: 24px !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .page.page-home,
  .page.page-home main,
  body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .page.page-home,
  .page.page-home main {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .page.page-home .section,
  .page.page-home .card,
  .page.page-home .service-card,
  .page.page-home .solution-card,
  .page.page-home .case-card,
  .page.page-home .pricing-card {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page.page-home .section * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page.page-home .section a,
  .page.page-home .section button,
  .page.page-home .card a,
  .page.page-home .card button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .page.page-home .section {
    padding: 28px 20px !important;
    border-radius: 24px !important;
  }

  .page.page-home .section h2,
  .page.page-home .section h3 {
    font-size: clamp(26px, 8vw, 34px) !important;
    line-height: 1.15 !important;
  }

  .page.page-home .section p,
  .page.page-home .section li {
    font-size: 18px !important;
    line-height: 1.55 !important;
  }

  footer,
  .footer {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin: 32px auto 0 !important;
    padding: 24px 20px !important;
    box-sizing: border-box !important;
    overflow-wrap: anywhere !important;
  }
}

@media (max-width: 768px) {
  .page.page-home .solutions-grid,
  .page.page-home .cards-grid,
  .page.page-home .pricing-grid,
  .page.page-home .services-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 20px !important;
  }

  .page.page-home .solution-card,
  .page.page-home .service-card,
  .page.page-home .pricing-card,
  .page.page-home .case-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 28px 20px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page.page-home .solution-card h3,
  .page.page-home .service-card h3,
  .page.page-home .pricing-card h3,
  .page.page-home .case-card h3 {
    font-size: clamp(28px, 9vw, 40px) !important;
    line-height: 1.12 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .page.page-home .solution-card p,
  .page.page-home .service-card p,
  .page.page-home .pricing-card p,
  .page.page-home .case-card p,
  .page.page-home .solution-card li,
  .page.page-home .service-card li,
  .page.page-home .pricing-card li,
  .page.page-home .case-card li {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .page.page-home .solution-card .btn,
  .page.page-home .service-card .btn,
  .page.page-home .pricing-card .btn,
  .page.page-home .case-card .btn,
  .page.page-home .solution-card a,
  .page.page-home .service-card a,
  .page.page-home .pricing-card a,
  .page.page-home .case-card a {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 768px) {
  .page.page-home .blog-card .hero-buttons {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .page.page-home .blog-card .hero-buttons .btn,
  .page.page-home .blog-card .hero-buttons a {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    white-space: normal !important;
  }
}

@media (max-width: 768px) {
  footer,
  .footer {
    width: calc(100vw - 32px) !important;
    margin: 32px auto 0 !important;
    padding: 24px 20px !important;
    background: rgba(10, 18, 40, 0.6) !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
    overflow-wrap: anywhere !important;
  }

  footer p,
  footer div {
    margin-bottom: 8px !important;
  }
}
