        :root {
            --bg: #07070b;
            --bg-2: #0d0d14;
            --surface: rgba(255, 255, 255, .035);
            --surface-2: rgba(255, 255, 255, .06);
            --line: rgba(255, 255, 255, .09);
            --text: #ffffff;
            --muted: rgba(255, 255, 255, .58);
            --muted-2: rgba(255, 255, 255, .4);
            --accent: #d84664;
            --accent-2: #87346d;
            --grad: linear-gradient(135deg, #87346d 0%, #d84664 100%);
            --grad-soft: linear-gradient(135deg, rgba(135, 52, 109, .22), rgba(216, 70, 100, .22));
            --radius: 22px;
            --gutter: clamp(20px, 4.5vw, 96px);
            --gutter-sm: clamp(16px, 3vw, 32px);
            --section-y: clamp(72px, 9vw, 140px);
            --nav-h: 76px;
            --ease-out: cubic-bezier(.22, 1, .36, 1);
            --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
        body {
            font-family: 'Manrope', system-ui, -apple-system, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.55;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        body.menu-open { overflow: hidden; }
        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }
        ::selection { background: var(--accent); color: #fff; }

        h1, h2, h3, .display { font-family: 'Unbounded', 'Manrope', sans-serif; font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }

        .wrap { width: 100%; padding-inline: var(--gutter); }
        .grad-text {
            background: var(--grad);
            -webkit-background-clip: text; background-clip: text;
            -webkit-text-fill-color: transparent; color: transparent;
        }

        /* ---------- Decorative background ---------- */
        .bg-fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
        .bg-grid {
            position: absolute; inset: 0;
            background-image:
                linear-gradient(var(--line) 1px, transparent 1px),
                linear-gradient(90deg, var(--line) 1px, transparent 1px);
            background-size: 64px 64px;
            opacity: .35;
            /* Сетка не заходит в шапку — плавное появление ниже nav */
            mask-image:
                linear-gradient(
                    to bottom,
                    transparent 0,
                    transparent calc(var(--nav-h) - 1px),
                    rgba(0, 0, 0, .22) calc(var(--nav-h) + 18px),
                    rgba(0, 0, 0, .65) calc(var(--nav-h) + 44px),
                    #000 calc(var(--nav-h) + 76px)
                ),
                radial-gradient(ellipse 130% 90% at 50% 38%, #000 0%, transparent 72%);
            -webkit-mask-image:
                linear-gradient(
                    to bottom,
                    transparent 0,
                    transparent calc(var(--nav-h) - 1px),
                    rgba(0, 0, 0, .22) calc(var(--nav-h) + 18px),
                    rgba(0, 0, 0, .65) calc(var(--nav-h) + 44px),
                    #000 calc(var(--nav-h) + 76px)
                ),
                radial-gradient(ellipse 130% 90% at 50% 38%, #000 0%, transparent 72%);
            -webkit-mask-composite: source-in;
            mask-composite: intersect;
        }
        .orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; will-change: transform; }
        .orb--1 { width: 520px; height: 520px; background: #87346d; top: -120px; left: -100px; }
        .orb--2 { width: 460px; height: 460px; background: #d84664; top: 30%; right: -140px; opacity: .4; }
        .orb--3 { width: 420px; height: 420px; background: #5b2f6b; bottom: -120px; left: 30%; opacity: .35; }

        /* ---------- Scroll progress ---------- */
        .progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad); z-index: 200; box-shadow: 0 0 14px rgba(216,70,100,.7); }

        /* ---------- Nav (fluid glass bar) ---------- */
        .nav {
            position: fixed;
            inset: 0 0 auto;
            z-index: 120;
            pointer-events: none;
            animation: nav-enter .9s var(--ease-out) both;
        }
        @keyframes nav-enter {
            from { opacity: 0; transform: translateY(-100%); }
            to { opacity: 1; transform: none; }
        }
        .nav__bar {
            pointer-events: auto;
            border-bottom: 1px solid transparent;
            transition:
                background .45s var(--ease-out),
                border-color .45s,
                box-shadow .45s,
                backdrop-filter .45s;
        }
        .nav.scrolled .nav__bar {
            background: rgba(7, 7, 11, .72);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border-color: rgba(255, 255, 255, .08);
            box-shadow: 0 12px 40px -20px rgba(0, 0, 0, .75);
        }
        .nav__inner {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr) auto;
            align-items: center;
            gap: clamp(16px, 2.5vw, 48px);
            min-height: var(--nav-h);
            padding-inline: var(--gutter);
        }
        .nav__logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            transition: opacity .25s, transform .35s var(--ease-out);
        }
        .nav__logo:hover { opacity: .88; transform: scale(1.02); }
        .nav__logo img,
        .nav__logo-mark {
            height: clamp(30px, 2.8vw, 36px);
            width: auto;
            max-width: clamp(120px, 14vw, 154px);
            flex-shrink: 0;
            display: block;
        }
        .nav__links {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            align-items: center;
            position: relative;
            width: 100%;
            min-width: 0;
            transform: translateY(3px);
        }
        .nav__links a {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 9px clamp(8px, 1.4vw, 16px);
            font-size: clamp(14px, 1.2vw, 16px);
            font-weight: 600;
            letter-spacing: .015em;
            color: rgba(255, 255, 255, .42);
            text-align: center;
            white-space: nowrap;
            border-radius: 10px;
            transition: color .3s, background .3s, box-shadow .3s;
        }
        /* Вертикальный разделитель — градиент, отличим от фоновой сетки */
        .nav__links a:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 22px;
            background: linear-gradient(
                180deg,
                transparent 0%,
                rgba(255, 255, 255, .14) 24%,
                rgba(216, 70, 100, .32) 50%,
                rgba(255, 255, 255, .14) 76%,
                transparent 100%
            );
            box-shadow: 0 0 10px rgba(216, 70, 100, .15);
            pointer-events: none;
        }
        .nav__links a:hover {
            color: rgba(255, 255, 255, .78);
            background: rgba(255, 255, 255, .035);
        }
        .nav__links a.is-active {
            color: #fff;
            background: rgba(255, 255, 255, .06);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07);
        }
        .nav__actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav__soc {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .nav__icon {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            height: 40px;
            padding: 0 14px 0 11px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .08);
            background: rgba(255, 255, 255, .04);
            color: rgba(255, 255, 255, .88);
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            transition: transform .3s var(--ease-spring), background .25s, border-color .25s, box-shadow .25s;
        }
        .nav__icon svg { width: 16px; height: 16px; flex-shrink: 0; }
        .nav__icon--mail {
            font-size: 12px;
            letter-spacing: -.01em;
            padding-inline: 14px 13px;
            background: rgba(216, 70, 100, .07);
            border-color: rgba(216, 70, 100, .16);
        }
        .nav__icon--wa {
            background: rgba(37, 211, 102, .07);
            border-color: rgba(37, 211, 102, .16);
        }
        .nav__icon--tg {
            background: rgba(41, 182, 246, .07);
            border-color: rgba(41, 182, 246, .16);
        }
        .nav__icon--wa:hover {
            background: rgba(37, 211, 102, .15);
            border-color: rgba(37, 211, 102, .35);
            box-shadow: 0 6px 20px -8px rgba(37, 211, 102, .5);
            transform: translateY(-2px);
        }
        .nav__icon--tg:hover {
            background: rgba(41, 182, 246, .15);
            border-color: rgba(41, 182, 246, .35);
            box-shadow: 0 6px 20px -8px rgba(41, 182, 246, .5);
            transform: translateY(-2px);
        }
        .nav__icon--mail:hover {
            background: rgba(216, 70, 100, .15);
            border-color: rgba(216, 70, 100, .35);
            box-shadow: 0 6px 20px -8px rgba(216, 70, 100, .5);
            transform: translateY(-2px);
        }
        .burger {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 12px;
            background: rgba(255, 255, 255, .04);
            cursor: pointer;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: background .25s, border-color .25s;
        }
        .burger:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .16); }
        .burger span {
            display: block;
            width: 20px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: transform .35s var(--ease-out), opacity .25s, width .35s var(--ease-out);
        }
        body.menu-open .burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); width: 22px; }
        body.menu-open .burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); width: 22px; }

        /* ---------- Buttons ---------- */
        .btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; border-radius: 50px; font-weight: 600; font-size: 15px; cursor: pointer; border: none; transition: transform .25s, box-shadow .3s, background .3s; white-space: nowrap; }
        .btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -8px rgba(216,70,100,.6); }
        .btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -10px rgba(216,70,100,.75); }
        .btn--ghost { background: var(--surface); color: #fff; border: 1px solid var(--line); }
        .btn--ghost:hover { background: var(--surface-2); transform: translateY(-3px); }
        .btn svg { width: 16px; height: 16px; }

        /* ---------- Mobile menu (slide panel) ---------- */
        .mobile-menu {
            position: fixed;
            inset: 0;
            z-index: 115;
            pointer-events: none;
            visibility: hidden;
        }
        body.menu-open .mobile-menu {
            pointer-events: auto;
            visibility: visible;
        }
        .mobile-menu__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(4, 4, 8, .55);
            backdrop-filter: blur(16px) saturate(140%);
            -webkit-backdrop-filter: blur(16px) saturate(140%);
            opacity: 0;
            transition: opacity .4s var(--ease-out);
        }
        body.menu-open .mobile-menu__backdrop { opacity: 1; }
        .mobile-menu__panel {
            position: absolute;
            top: 0;
            right: 0;
            width: min(100%, 420px);
            height: 100%;
            padding: calc(var(--nav-h) + 24px) var(--gutter-sm) 40px;
            background: linear-gradient(165deg, rgba(14, 14, 22, .97) 0%, rgba(7, 7, 11, .98) 100%);
            border-left: 1px solid rgba(255, 255, 255, .08);
            box-shadow: -24px 0 64px -20px rgba(0, 0, 0, .8);
            transform: translateX(105%);
            transition: transform .5s var(--ease-out);
            display: flex;
            flex-direction: column;
            gap: 8px;
            overflow-y: auto;
            overscroll-behavior: contain;
        }
        body.menu-open .mobile-menu__panel { transform: none; }
        .mobile-menu__head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .mobile-menu__label {
            font-size: 12px;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 600;
        }
        .mobile-menu__close {
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 12px;
            background: rgba(255, 255, 255, .04);
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .25s, transform .3s var(--ease-spring);
        }
        .mobile-menu__close:hover { background: rgba(255, 255, 255, .1); transform: rotate(90deg); }
        .mobile-menu__close svg { width: 20px; height: 20px; }
        .mobile-menu__nav { display: flex; flex-direction: column; gap: 4px; }
        .mobile-menu__nav a {
            font-family: 'Unbounded', sans-serif;
            font-size: clamp(22px, 6vw, 30px);
            font-weight: 600;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            color: rgba(255, 255, 255, .88);
            opacity: 0;
            transform: translateX(28px);
            transition:
                opacity .45s var(--ease-out),
                transform .45s var(--ease-out),
                color .25s;
            transition-delay: calc(.06s * var(--i, 0) + .12s);
        }
        body.menu-open .mobile-menu__nav a { opacity: 1; transform: none; }
        .mobile-menu__nav a.is-active { color: var(--accent); }
        .mobile-menu__nav a:hover { color: #fff; }
        .mobile-menu__cta {
            margin-top: 28px;
            justify-content: center;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity .45s var(--ease-out) .35s, transform .45s var(--ease-out) .35s;
        }
        body.menu-open .mobile-menu__cta { opacity: 1; transform: none; }
        .mobile-menu__soc {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: auto;
            padding-top: 32px;
        }
        .mobile-menu__soc .nav__icon {
            width: 100%;
            height: 52px;
            border-radius: 14px;
            justify-content: flex-start;
            gap: 12px;
            padding-inline: 16px;
            font-size: 15px;
            font-weight: 600;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), background .25s, border-color .25s;
        }
        .mobile-menu__soc .nav__icon:nth-child(1) { transition-delay: .42s; }
        .mobile-menu__soc .nav__icon:nth-child(2) { transition-delay: .48s; }
        .mobile-menu__soc .nav__icon:nth-child(3) { transition-delay: .54s; }
        body.menu-open .mobile-menu__soc .nav__icon { opacity: 1; transform: none; }

        /* ---------- Hero ---------- */
        .hero { position: relative; z-index: 1; min-height: 100svh; display: flex; align-items: center; padding: calc(var(--nav-h) + 48px) 0 clamp(60px, 8vw, 90px); }
        .hero__grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 40px; align-items: center; width: 100%; }
        .hero__content { max-width: 620px; }
        .hero__badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 50px; font-size: 13px; color: var(--muted); background: var(--surface); margin-bottom: 30px; }
        .hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ee37a; box-shadow: 0 0 10px #4ee37a; animation: pulse 2s infinite; }
        @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.35;} }
        .hero h1 { font-size: clamp(34px, 4.6vw, 64px); margin-bottom: 26px; }
        .hero h1 .word { display: inline-block; }
        .hero__sub { font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); max-width: 540px; margin-bottom: 38px; }
        .hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 54px; }
        .hero__stats { display: flex; gap: 44px; flex-wrap: wrap; }
        .hero__stat .num { font-family: 'Unbounded', sans-serif; font-size: clamp(26px, 3vw, 36px); font-weight: 700; }
        .hero__stat .lbl { font-size: 13.5px; color: var(--muted-2); margin-top: 4px; max-width: 160px; }

        /* Hero infographic — разработка → воронка → API → CRM */
        .hero__visual { position: relative; width: 100%; max-width: 600px; aspect-ratio: 1 / 1; margin-left: auto; }
        .hero__visual::before { content: ''; position: absolute; inset: 8% 6%; background: radial-gradient(ellipse at 50% 42%, rgba(216,70,100,.22), rgba(135,52,109,.1) 50%, transparent 72%); filter: blur(32px); z-index: 0; }
        .hero__frame { position: absolute; inset: 4%; border: 1px solid var(--line); border-radius: 18px; opacity: .38; z-index: 1; overflow: hidden; pointer-events: none; }
        .hero__frame::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 22px 22px; border-radius: inherit; }
        .hero__frame::after { content: ''; position: absolute; inset: 10%; border: 1px dashed rgba(255,255,255,.08); border-radius: 12px; }

        .hero__infographic { position: absolute; inset: 0; z-index: 2; overflow: hidden; border-radius: 16px; }
        .hinfo__scene { display: block; width: 100%; height: 100%; }
        .hinfo__flow { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 4; }

        /* Шаги цикла */
        .hinfo__steps { position: absolute; top: 3.5%; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; list-style: none; z-index: 6; padding: 4px; border-radius: 50px; background: rgba(11,11,17,.55); border: 1px solid var(--line); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
        .hinfo__steps li { display: flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: 50px; font-size: 10px; color: var(--muted-2); white-space: nowrap; transition: color .45s var(--ease-out), background .45s, box-shadow .45s, transform .45s var(--ease-spring); }
        .hinfo__steps li span { font-family: 'Unbounded', sans-serif; font-size: 9px; opacity: .55; }
        .hinfo__steps li.is-active { color: #fff; background: var(--grad-soft); border: 1px solid rgba(216,70,100,.35); box-shadow: 0 0 20px rgba(216,70,100,.2); transform: scale(1.02); }
        .hinfo__steps li.is-done { color: var(--muted); }
        .hinfo__steps li.is-done span { color: #4ee37a; opacity: 1; }

        /* SVG: воронка и связи */
        .hinfo__glow { opacity: .7; transition: opacity .8s var(--ease-out); }
        .hinfo__funnel-body, .hinfo__funnel-neck, .hinfo__funnel-spout { fill: url(#hinfoFunnel); stroke: rgba(255,255,255,.12); stroke-width: 1; }
        .hinfo__funnel-label { fill: rgba(255,255,255,.45); font-size: 11px; font-family: 'Manrope', sans-serif; letter-spacing: .04em; }
        .hinfo__link { stroke: rgba(216,70,100,.18); stroke-dasharray: 5 9; transition: stroke .5s, opacity .5s; }
        .hinfo__api-bg { fill: rgba(11,11,17,.75); stroke: rgba(255,255,255,.1); stroke-width: 1; }
        .hinfo__api-ring { opacity: .5; transform-origin: center; animation: hinfo-ring 8s linear infinite; }
        .hinfo__api-title { fill: #fff; font-size: 13px; font-weight: 600; font-family: 'Unbounded', sans-serif; }
        .hinfo__api-sub { fill: rgba(255,255,255,.42); font-size: 10px; font-family: 'Manrope', sans-serif; }
        @keyframes hinfo-ring { to { transform: rotate(360deg); } }

        [data-step="dev"] .hinfo__link--ide { stroke: rgba(216,70,100,.55); stroke-dashoffset: 0; animation: hinfo-dash 1.2s linear infinite; }
        [data-step="funnel"] .hinfo__glow { opacity: 1; }
        [data-step="funnel"] .hinfo__funnel-body { filter: drop-shadow(0 0 18px rgba(216,70,100,.35)); }
        [data-step="api"] .hinfo__link--api { stroke: rgba(216,70,100,.65); animation: hinfo-dash 1s linear infinite; }
        [data-step="api"] .hinfo__api-ring { opacity: 1; animation-duration: 4s; }
        [data-step="crm"] .hinfo__link--crm { stroke: rgba(78,227,122,.55); animation: hinfo-dash 1.1s linear infinite; }
        @keyframes hinfo-dash { to { stroke-dashoffset: -28; } }

        /* Панели IDE и CRM */
        .hinfo__panel { position: absolute; z-index: 3; border: 1px solid var(--line); border-radius: 14px; background: rgba(11,11,17,.78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 20px 50px -24px rgba(0,0,0,.9); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out), box-shadow .65s; }
        .hinfo__ide { top: 9%; left: 4%; width: 42%; min-height: 34%; display: grid; grid-template-columns: 28px 1fr; grid-template-rows: auto 1fr; opacity: .35; transform: translateY(6px) scale(.96); }
        .hinfo__crm { top: 58%; right: 3%; width: 36%; opacity: .35; transform: translateX(8px) scale(.96); }
        [data-step="dev"] .hinfo__ide { opacity: 1; transform: none; box-shadow: 0 0 40px -12px rgba(216,70,100,.45); }
        [data-step="crm"] .hinfo__crm { opacity: 1; transform: none; box-shadow: 0 0 40px -12px rgba(78,227,122,.25); }
        [data-step="funnel"] .hinfo__ide, [data-step="api"] .hinfo__ide { opacity: .5; transform: translateY(4px) scale(.97); }
        [data-step="dev"] .hinfo__crm, [data-step="funnel"] .hinfo__crm, [data-step="api"] .hinfo__crm { opacity: .4; }

        .hinfo__ide-bar { grid-column: 1 / -1; display: flex; align-items: center; gap: 5px; padding: 8px 10px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.03); font-size: 10px; color: var(--muted-2); }
        .hinfo__ide-bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.14); }
        .hinfo__ide-bar i:first-child { background: var(--accent); }
        .hinfo__ide-bar span { margin-left: 4px; font-family: ui-monospace, monospace; }
        .hinfo__ide-side { display: flex; flex-direction: column; gap: 6px; padding: 10px 8px; border-right: 1px solid var(--line); }
        .hinfo__ide-side span { height: 4px; border-radius: 2px; background: rgba(255,255,255,.08); }
        .hinfo__ide-side span.is-active { background: var(--grad); box-shadow: 0 0 8px rgba(216,70,100,.5); }
        .hinfo__ide-code { position: relative; padding: 10px 10px 12px; overflow: hidden; }
        .hinfo__ide-code pre { margin: 0; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: clamp(8px, 1.45vw, 10.5px); line-height: 1.65; color: rgba(255,255,255,.82); white-space: pre-wrap; word-break: break-word; }
        .hinfo__ide-code .tok--keyword { color: #ff8fb0; }
        .hinfo__ide-code .tok--plain { color: rgba(255,255,255,.72); }
        .hinfo__cursor { position: absolute; width: 2px; height: 12px; background: var(--accent); border-radius: 1px; bottom: 14px; left: 38px; animation: hinfo-blink 1s step-end infinite; pointer-events: none; }
        @keyframes hinfo-blink { 50% { opacity: 0; } }

        .hinfo__crm-head { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: 11px; }
        .hinfo__crm-head b { color: #fff; font-weight: 600; flex: 1; }
        .hinfo__crm-head small { color: var(--muted-2); font-size: 10px; }
        .hinfo__crm-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ee37a; box-shadow: 0 0 8px #4ee37a; animation: pulse 2s infinite; }
        .hinfo__crm-list { list-style: none; padding: 8px; display: flex; flex-direction: column; gap: 6px; }
        .hinfo__crm-list li { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 10px; background: rgba(255,255,255,.03); border: 1px solid transparent; opacity: 0; transform: translateX(12px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-spring), border-color .4s, background .4s; }
        .hinfo__crm-list li.is-in { opacity: 1; transform: none; border-color: rgba(78,227,122,.2); background: rgba(78,227,122,.06); }
        .hinfo__crm-list .av { width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; background: var(--grad-soft); color: #fff; }
        .hinfo__crm-list .nm { font-size: 10.5px; color: rgba(255,255,255,.88); }
        .hinfo__crm-list .st { font-size: 9px; padding: 3px 7px; border-radius: 50px; font-weight: 600; }
        .hinfo__crm-list .st--deal { background: rgba(78,227,122,.15); color: #4ee37a; }
        .hinfo__crm-list .st--work { background: rgba(216,70,100,.15); color: #ff9bb0; }
        .hinfo__crm-list .st--new { background: rgba(255,255,255,.08); color: var(--muted); }

        /* Карточки заявок в воронке */
        .hinfo__cards { position: absolute; inset: 0; z-index: 5; pointer-events: none; overflow: hidden; }
        .hinfo__card { position: absolute; top: 0; left: 0; width: 28%; min-width: 88px; max-width: 130px; display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 12px; border: 1px solid rgba(255,255,255,.12); background: rgba(14,14,22,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 12px 28px -14px rgba(0,0,0,.85), 0 0 0 1px rgba(216,70,100,.08); will-change: transform, opacity; transition: box-shadow .35s, border-color .35s; }
        .hinfo__card.is-absorbed { border-color: rgba(216,70,100,.45); box-shadow: 0 0 22px rgba(216,70,100,.35); }
        .hinfo__card-ico { font-size: 16px; line-height: 1; flex-shrink: 0; }
        .hinfo__card-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
        .hinfo__card-body b { font-size: 10px; color: #fff; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .hinfo__card-body small { font-size: 8.5px; color: var(--muted-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        /* Floating HUD chips (серверные процессы) */
        .hero__hud { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
        .chip { position: absolute; display: flex; align-items: center; gap: 11px; padding: 11px 15px; border: 1px solid var(--line); border-radius: 15px; background: rgba(11,11,17,.66); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 16px 40px -18px rgba(0,0,0,.85); font-size: 12.5px; color: var(--muted); white-space: nowrap; animation: floaty 7s ease-in-out infinite; }
        .chip b { color: #fff; font-weight: 600; }
        .chip small { color: var(--muted-2); font-size: 11px; }
        .chip .ico { width: 32px; height: 32px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: var(--grad-soft); border: 1px solid var(--line); flex-shrink: 0; }
        .chip .ico svg { width: 16px; height: 16px; stroke: var(--accent); }
        .chip .ok { width: 8px; height: 8px; border-radius: 50%; background: #4ee37a; box-shadow: 0 0 9px #4ee37a; animation: pulse 2s infinite; flex-shrink: 0; }
        .chip--metric { top: 6%; left: -7%; animation-delay: 0s; }
        .chip--status { top: 45%; right: -8%; animation-delay: -2.3s; }
        .chip--term { bottom: 3%; left: -2%; padding: 0; overflow: hidden; min-width: 232px; animation-delay: -4.6s; flex-direction: column; align-items: stretch; white-space: normal; }
        @keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-13px); } }

        .term__bar { display: flex; align-items: center; gap: 6px; padding: 9px 13px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.03); }
        .term__bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.16); }
        .term__bar i:first-child { background: var(--accent); }
        .term__bar span { margin-left: 6px; font-size: 11px; color: var(--muted-2); }
        .term__body { padding: 12px 14px; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11.5px; line-height: 1.75; }
        .term__body .ln { display: block; opacity: 0; transform: translateY(4px); animation: termln .45s ease forwards; }
        .term__body .c1 { animation-delay: .4s; } .term__body .c2 { animation-delay: 1.3s; }
        .term__body .c3 { animation-delay: 2.2s; } .term__body .c4 { animation-delay: 3.1s; }
        .term__body .g { color: #4ee37a; } .term__body .p { color: var(--accent); } .term__body .m { color: var(--muted-2); }
        @keyframes termln { to { opacity: 1; transform: none; } }

        /* Hero responsive */
        @media (max-width: 1100px) {
            .hero { min-height: auto; padding-block: calc(var(--nav-h) + 40px) clamp(60px, 7vw, 80px); }
            .hero__grid { grid-template-columns: 1fr; gap: 18px; }
            .hero__content { max-width: min(760px, 100%); }
            .hero__visual { max-width: 440px; aspect-ratio: 5 / 4; margin: 6px auto 0; }
            .chip--metric { left: 0; } .chip--status { right: 0; }
        }
        @media (max-width: 620px) {
            .hero { padding-block: calc(var(--nav-h) + 32px) clamp(48px, 10vw, 60px); }
            .hero__visual { max-width: 330px; aspect-ratio: 1 / 1; }
            .chip { font-size: 11px; padding: 9px 12px; }
            .chip--status { display: none; }
            .chip--term { min-width: 188px; }
            .hinfo__steps li { padding: 4px 7px; font-size: 9px; }
            .hinfo__steps li span { display: none; }
            .hinfo__ide { width: 46%; top: 11%; }
            .hinfo__crm { width: 40%; top: 60%; }
        }

        .scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted-2); font-size: 12px; letter-spacing: .15em; z-index: 4; }
        .scroll-hint .mouse { width: 24px; height: 38px; border: 1px solid var(--line); border-radius: 14px; position: relative; }
        .scroll-hint .mouse::after { content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--accent); border-radius: 4px; animation: wheel 1.6s infinite; }
        @keyframes wheel { 0%{opacity:1; transform:translate(-50%,0);} 100%{opacity:0; transform:translate(-50%,12px);} }

        /* ---------- Section heading ---------- */
        section { position: relative; z-index: 1; padding-block: var(--section-y); }
        .eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 18px; }
        .eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
        .sec-head { max-width: min(760px, 90%); margin-bottom: clamp(40px, 5vw, 60px); }
        .sec-head h2 { font-size: clamp(30px, 4.5vw, 52px); margin-bottom: 18px; }
        .sec-head p { color: var(--muted); font-size: 18px; }

        /* ---------- Marquee ---------- */
        .marquee { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
        .marquee__track { display: flex; gap: 56px; width: max-content; animation: scroll-x 32s linear infinite; }
        .marquee__track span { font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 600; color: rgba(255,255,255,.32); white-space: nowrap; display: flex; align-items: center; gap: 56px; }
        .marquee__track span::after { content: '✦'; color: var(--accent); }
        @keyframes scroll-x { to { transform: translateX(-50%); } }

        /* ---------- Approach cards ---------- */
        .grid { display: grid; gap: 22px; }
        .approach { grid-template-columns: repeat(3, 1fr); }
        .card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s, background .4s; position: relative; overflow: hidden; }
        .card::before { content: ''; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity .4s; }
        .card:hover { transform: translateY(-6px); border-color: rgba(216,70,100,.45); }
        .card:hover::before { opacity: 1; }
        .card > * { position: relative; z-index: 1; }
        .card .ic { width: 56px; height: 56px; border-radius: 14px; background: var(--grad-soft); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
        .card .ic svg { width: 26px; height: 26px; stroke: var(--accent); }
        .card h3 { font-size: 21px; margin-bottom: 12px; }
        .card p { color: var(--muted); font-size: 15.5px; }
        .card .q { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; letter-spacing: .01em; color: var(--accent); margin-bottom: 14px; }
        .card .q svg { width: 16px; height: 16px; stroke: var(--accent); flex-shrink: 0; }

        /* ---------- Expertise ---------- */
        .expertise { grid-template-columns: repeat(3, 1fr); }
        .exp-item { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); display: flex; flex-direction: column; gap: 12px; transition: .35s; }
        .exp-item:hover { background: var(--surface-2); transform: translateY(-4px); }
        .exp-item .num { font-family: 'Unbounded', sans-serif; color: var(--accent); font-weight: 600; font-size: 14px; }
        .exp-item h3 { font-size: 19px; }
        .exp-item p { color: var(--muted); font-size: 15px; }

        /* ---------- Flagship ---------- */
        .flagship { padding-top: 0; }
        .flag-eco { display: inline-flex; align-items: center; gap: 12px; padding: 10px 18px; border: 1px solid var(--line); border-radius: 50px; background: var(--surface); font-size: 14px; color: var(--muted); margin-bottom: 26px; }
        .flag-list { display: flex; flex-direction: column; gap: 28px; }
        .flag-card { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); }
        .flag-card:nth-child(even) .flag-card__media { order: 2; }
        .flag-card__body { padding: 48px; display: flex; flex-direction: column; }
        .flag-tag { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: #fff; background: var(--grad); padding: 7px 14px; border-radius: 50px; margin-bottom: 22px; }
        .flag-card__domain { color: var(--accent); font-weight: 600; font-size: 14px; margin-bottom: 8px; font-family: 'Manrope'; }
        .flag-card h3 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 6px; }
        .flag-card__subtitle { color: var(--muted-2); font-size: 14px; margin-bottom: 22px; }
        .flag-card__desc { color: var(--muted); font-size: 16px; margin-bottom: 26px; }
        .flag-metrics { display: flex; gap: 30px; flex-wrap: wrap; margin-bottom: 26px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
        .flag-metrics .m .v { font-family: 'Unbounded', sans-serif; font-size: 24px; font-weight: 700; }
        .flag-metrics .m .v.grad-text { -webkit-text-fill-color: transparent; }
        .flag-metrics .m .l { font-size: 13px; color: var(--muted-2); max-width: 130px; }
        .flag-stack { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
        .flag-stack span { font-size: 13px; color: var(--muted); padding: 8px 14px; border: 1px solid var(--line); border-radius: 50px; background: var(--surface); }
        .flag-card__media { position: relative; min-height: 420px; background: radial-gradient(circle at 70% 15%, rgba(216,70,100,.22), transparent 60%), linear-gradient(160deg, #16161f, #0b0b12); display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 38px 38px 0; }
        .flag-card__media .glow { position: absolute; width: 280px; height: 280px; background: var(--accent); filter: blur(120px); opacity: .35; top: -40px; right: -40px; }
        /* Premium browser frame around real screenshots */
        .browser { position: relative; z-index: 2; width: 100%; max-width: 560px; border-radius: 14px 14px 0 0; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-bottom: none; box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.03); transform: translateY(6px); transition: transform .5s cubic-bezier(.2,.8,.2,1); }
        .flag-card:hover .browser { transform: translateY(-4px); }
        .browser__bar { display: flex; align-items: center; gap: 14px; padding: 11px 16px; background: rgba(20,20,28,.95); border-bottom: 1px solid rgba(255,255,255,.08); }
        .browser__dots { display: flex; gap: 7px; }
        .browser__dots i { width: 11px; height: 11px; border-radius: 50%; }
        .browser__dots i:nth-child(1){ background:#ff5f57; } .browser__dots i:nth-child(2){ background:#febc2e; } .browser__dots i:nth-child(3){ background:#28c840; }
        .browser__url { flex: 1; display: flex; align-items: center; gap: 8px; height: 26px; padding: 0 12px; background: rgba(255,255,255,.06); border-radius: 8px; font-size: 12px; color: var(--muted); font-family: 'Manrope'; }
        .browser__url svg { width: 12px; height: 12px; flex-shrink: 0; opacity: .7; }
        .browser__view { aspect-ratio: 16/12; overflow: hidden; background: #fff; }
        .browser__view img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
        /* ---------- Portfolio grid ---------- */
        .port-grid { grid-template-columns: repeat(3, 1fr); }
        .port { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); transition: transform .4s, border-color .4s; display: flex; flex-direction: column; }
        .port:hover { transform: translateY(-6px); border-color: rgba(216,70,100,.4); }
        .port__img { aspect-ratio: 16/11; overflow: hidden; position: relative; background: var(--bg-2); }
        .port__img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .7s; }
        .port:hover .port__img img { transform: scale(1.06); }
        .port__cat { position: absolute; top: 14px; left: 14px; font-size: 12px; padding: 6px 12px; border-radius: 50px; background: rgba(7,7,11,.7); backdrop-filter: blur(6px); color: #fff; border: 1px solid var(--line); }
        .port__body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
        .port__city { font-size: 13px; color: var(--accent); font-weight: 600; }
        .port__body h3 { font-size: 18px; font-family: 'Manrope'; font-weight: 700; letter-spacing: 0; line-height: 1.3; }
        .port__body p { font-size: 14.5px; color: var(--muted); flex: 1; }
        .port__link { font-size: 13px; color: var(--muted-2); display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; }

        /* ---------- Process ---------- */
        .process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
        .step { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); position: relative; }
        .step__n { font-family: 'Unbounded', sans-serif; font-size: 52px; font-weight: 800; line-height: 1; margin-bottom: 18px; }
        .step h3 { font-size: 19px; margin-bottom: 10px; font-family: 'Manrope'; font-weight: 700; letter-spacing: 0; }
        .step p { color: var(--muted); font-size: 14.5px; }

        /* ---------- Stats band ---------- */
        .stats-band { border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(160deg, rgba(135,52,109,.18), rgba(216,70,100,.1)); padding: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
        .stat-b .num { font-family: 'Unbounded', sans-serif; font-size: clamp(34px, 5vw, 52px); font-weight: 800; }
        .stat-b .lbl { color: var(--muted); font-size: 15px; margin-top: 6px; }

        /* ---------- CTA ---------- */
        .cta { position: relative; z-index: 1; }
        .cta__box { border: 1px solid var(--line); border-radius: 32px; background: radial-gradient(circle at 50% 0%, rgba(216,70,100,.22), transparent 60%), var(--bg-2); padding: 72px 48px; text-align: center; position: relative; overflow: hidden; }
        .cta__box h2 { font-size: clamp(30px, 5vw, 56px); margin-bottom: 20px; }
        .cta__box p { color: var(--muted); font-size: 19px; max-width: 560px; margin: 0 auto 38px; }
        .cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

        /* ---------- Footer ---------- */
        footer { position: relative; z-index: 1; border-top: 1px solid var(--line); padding: 64px 0 40px; }
        .foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 48px; }
        .foot-brand img { height: 42px; margin-bottom: 18px; }
        .foot-brand p { color: var(--muted); max-width: 320px; font-size: 15px; }
        .foot-col h4 { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
        .foot-col a, .foot-col div { color: var(--muted); font-size: 15px; display: block; margin-bottom: 10px; transition: color .25s; }
        .foot-col a:hover { color: #fff; }
        .foot-soc { display: flex; gap: 12px; margin-top: 6px; }
        .foot-soc a { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--surface); transition: .3s; }
        .foot-soc a:hover { background: var(--grad); border-color: transparent; transform: translateY(-3px); }
        .foot-soc svg { width: 20px; height: 20px; }
        .foot-bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: 13.5px; }

        /* ---------- Reveal animation ---------- */
        [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
        [data-reveal].in { opacity: 1; transform: none; }
        [data-reveal][data-delay="1"] { transition-delay: .08s; }
        [data-reveal][data-delay="2"] { transition-delay: .16s; }
        [data-reveal][data-delay="3"] { transition-delay: .24s; }

        @media (max-width: 1320px) {
            .nav__icon { padding-inline: 11px 10px; font-size: 12px; gap: 6px; }
            .nav__icon--mail { font-size: 11px; }
        }
        @media (max-width: 980px) {
            .nav__links { display: none; }
            .nav__soc { display: none; }
            .burger { display: flex; }
            :root { --nav-h: 64px; }
            .approach, .expertise, .port-grid { grid-template-columns: repeat(2, 1fr); }
            .process { grid-template-columns: repeat(2, 1fr); }
            .stats-band { grid-template-columns: repeat(2, 1fr); padding: 40px; }
            .flag-card { grid-template-columns: 1fr; }
            .flag-card:nth-child(even) .flag-card__media { order: 0; }
            .flag-card__media { min-height: 280px; }
            .flag-card__body { padding: 34px; }
        }
        @media (max-width: 620px) {
            :root { --gutter: clamp(16px, 5vw, 24px); }
            .mobile-menu__panel { width: 100%; border-left: none; }
            section { padding-block: clamp(64px, 14vw, 76px); }
            .approach, .expertise, .port-grid, .process { grid-template-columns: 1fr; }
            .hero__stats { gap: 30px; }
            .stats-band { grid-template-columns: 1fr; }
            .cta__box { padding: 48px 24px; }
            .flag-metrics { gap: 20px; }
        }
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation-duration: .001ms !important; transition: none !important; }
        }
    </style>
