/* Стили лендинга. Раньше жили семью <style>-блоками прямо в
   templates/landing.html и весили ~237 КБ в КАЖДОМ ответе главной.
   Вынесены в статику: документ похудел, а файл кешируется браузером
   и хешируется WhiteNoise по содержимому.

   ПОРЯДОК БЛОКОВ = порядок в исходном документе, менять нельзя:
   каскад держится на нем. Подключается ОДНОЙ ссылкой сразу после
   tailwind.min.css - то есть там же, где стоял первый блок. */

/* ============ блок 1 (был inline, строка 73) ============ */

        html {
            scroll-behavior: smooth;
            overflow-x: clip;
            font-feature-settings: "cv11", "ss01", "ss03", "tnum";
        }

        body {
            overflow-x: clip;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: #c7d2fe;
            border-radius: 3px;
        }

        .gradient-text {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Фирменная конверсионная кнопка: тот же градиент, что у CTA живого
           демо (.c5-btn) и «Включить автопилот» (.tld-btn) - индиго - фиолет
           с теплым краем #d16bd6 справа. Класс задает ТОЛЬКО цвет, тень и
           ховер; display, паддинги и радиус остаются utility-классами
           инстанса, поэтому одинаково живет в шапке, тарифах и секциях.
           landing.css подключен ПОСЛЕ tailwind.min.css - при равной
           специфичности эти правила перекрывают утилиты. */
        .cta-brand {
            color: #fff;
            background: linear-gradient(135deg, #4f46e5, #7c3aed 62%, #d16bd6);
            box-shadow: 0 14px 28px -12px rgba(124, 58, 237, .65),
            inset 0 1px 0 rgba(255, 255, 255, .28);
            transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
        }

        .cta-brand:hover {
            color: #fff;
            transform: translateY(-1px);
            filter: brightness(1.05);
            box-shadow: 0 18px 34px -12px rgba(124, 58, 237, .8),
            inset 0 1px 0 rgba(255, 255, 255, .28);
        }

        .cta-brand:focus-visible {
            outline: 2px solid #7c3aed;
            outline-offset: 2px;
        }

        .hero-gradient {
            background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(79, 70, 229, 0.15) 0%, transparent 70%),
            radial-gradient(ellipse 60% 50% at 80% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%),
            radial-gradient(ellipse 60% 50% at 20% 60%, rgba(168, 85, 247, 0.06) 0%, transparent 60%);
        }

        .grid-pattern {
            background-image: linear-gradient(rgba(79, 70, 229, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(79, 70, 229, 0.03) 1px, transparent 1px);
            background-size: 64px 64px;
        }

        .card-glow {
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .card-glow:hover {
            box-shadow: 0 8px 30px rgba(79, 70, 229, 0.12);
            transform: translateY(-2px);
        }

        .ao-split {
            display: grid;
            grid-template-columns: minmax(0, 11fr) minmax(0, 10fr);
            gap: clamp(32px, 5vw, 72px);
            align-items: center;
        }

        .ao-h2 {
            font-size: clamp(29px, 3.6vw, 44px);
            font-weight: 900;
            letter-spacing: -.025em;
            line-height: 1.1;
            margin-bottom: 16px;
        }

        .ao-sub {
            font-size: clamp(15.5px, 1.8vw, 17.5px);
            line-height: 1.6;
            color: #6b7280;
            max-width: 520px;
            margin-bottom: 30px;
        }

        .ao-feats {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .ao-feats li {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .ao-fic {
            flex: none;
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 11px;
            background: #eef2ff;
            border: 1px solid #e0e7ff;
            color: #4f46e5;
            transition: transform .25s cubic-bezier(.2, .7, .3, 1);
        }

        .ao-feats li:nth-child(even) .ao-fic {
            background: #f5f3ff;
            border-color: #ede9fe;
            color: #7c3aed;
        }

        .ao-feats li:hover .ao-fic {
            transform: translateY(-2px);
        }

        .ao-fic svg {
            width: 19px;
            height: 19px;
        }

        .ao-feats h3 {
            font-size: 15.5px;
            font-weight: 800;
            letter-spacing: -.01em;
            margin: 0 0 3px;
        }

        .ao-feats p {
            font-size: 13.5px;
            color: #6b7280;
            line-height: 1.55;
            max-width: 460px;
            margin: 0;
        }

        .ao-stats {
            display: flex;
            gap: clamp(20px, 3vw, 36px);
            margin-top: 30px;
            padding-top: 26px;
            border-top: 1px solid #f3f4f6;
            flex-wrap: wrap;
        }

        .ao-st {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .ao-st b {
            font-size: clamp(26px, 2.6vw, 32px);
            font-weight: 900;
            letter-spacing: -.03em;
            line-height: 1;
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .ao-st span {
            font-size: 12.5px;
            font-weight: 600;
            color: #6b7280;
            line-height: 1.35;
            max-width: 150px;
        }

        .ao-st-div {
            width: 1px;
            background: #f3f4f6;
            align-self: stretch;
        }

        .ao-viz {
            --ao-r1: 128px;
            --ao-r2: 200px;
            --ao-orb: 124px;
            position: relative;
            width: min(100%, 540px);
            aspect-ratio: 1 / 1;
            margin: 0 auto;
        }

        .ao-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            pointer-events: none;
        }

        .ao-ring--1 {
            width: calc(var(--ao-r1) * 2);
            height: calc(var(--ao-r1) * 2);
            border: 1px solid #e0e7ff;
        }

        .ao-ring--2 {
            width: calc(var(--ao-r2) * 2);
            height: calc(var(--ao-r2) * 2);
            border: 1px dashed #dcdcf3;
        }

        .ao-viz::after {
            content: '';
            position: absolute;
            left: 50%;
            top: calc(50% + var(--ao-r2));
            bottom: 0;
            width: 1px;
            background: #dcdcf3;
        }

        .ao-node {
            position: absolute;
            left: 50%;
            top: calc(50% + var(--ao-r2));
            width: 8px;
            height: 8px;
            margin: -4px 0 0 -4px;
            border-radius: 50%;
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            box-shadow: 0 0 0 3px #fff, 0 0 0 4px #c7d2fe;
            z-index: 2;
        }

        .ao-halo {
            position: absolute;
            top: 50%;
            left: 50%;
            width: var(--ao-orb);
            height: var(--ao-orb);
            margin: calc(var(--ao-orb) / -2) 0 0 calc(var(--ao-orb) / -2);
            border-radius: 50%;
            border: 1px solid #c7d2fe;
            animation: ao-halo 4.5s ease-out infinite;
            pointer-events: none;
        }

        @keyframes ao-halo {
            0% {
                transform: scale(1);
                opacity: .7;
            }
            100% {
                transform: scale(1.55);
                opacity: 0;
            }
        }

        .ao-orb {
            position: absolute;
            top: 50%;
            left: 50%;
            width: var(--ao-orb);
            height: var(--ao-orb);
            margin: calc(var(--ao-orb) / -2) 0 0 calc(var(--ao-orb) / -2);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            color: #fff;
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
            box-shadow: 0 14px 38px rgba(79, 70, 229, .32);
            z-index: 3;
            text-align: center;
        }

        .ao-orb svg {
            width: 26px;
            height: 26px;
        }

        .ao-orb b {
            font-size: 12.5px;
            font-weight: 800;
            letter-spacing: -.01em;
            line-height: 1.15;
        }

        .ao-orbit {
            position: absolute;
            inset: 0;
            z-index: 4;
        }

        .ao-o1 {
            animation: ao-spin 70s linear infinite;
        }

        .ao-o2 {
            animation: ao-spin 110s linear infinite reverse;
        }

        @keyframes ao-spin {
            to {
                transform: rotate(360deg);
            }
        }

        .ao-hold {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
        }

        .ao-o1 .ao-hold {
            transform: rotate(var(--a)) translate(var(--ao-r1)) rotate(calc(-1 * var(--a)));
        }

        .ao-o2 .ao-hold {
            transform: rotate(var(--a)) translate(var(--ao-r2)) rotate(calc(-1 * var(--a)));
        }

        .ao-counter {
            position: absolute;
            top: 0;
            left: 0;
            transform-origin: 0 0;
        }

        .ao-o1 .ao-counter {
            animation: ao-spin 70s linear infinite reverse;
        }

        .ao-o2 .ao-counter {
            animation: ao-spin 110s linear infinite;
        }

        .ao-sat {
            display: flex;
            align-items: center;
            gap: 7px;
            width: max-content;
            transform: translate(-50%, -50%);
            background: #fff;
            border: 1px solid #e0e7ff;
            border-radius: 999px;
            padding: 5px 13px 5px 5px;
            box-shadow: 0 6px 20px rgba(31, 28, 64, .12);
        }

        .ao-sat-ic {
            flex: none;
            width: 26px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #eef2ff;
            color: #4f46e5;
        }

        .ao-sat-ic--alt {
            background: #f5f3ff;
            color: #7c3aed;
        }

        .ao-sat-ic svg {
            width: 14px;
            height: 14px;
        }

        .ao-sat b {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -.01em;
            color: #4b5563;
            white-space: nowrap;
        }

        .ao-dist {
            position: relative;
            width: min(440px, 100%);
            margin: 0 auto;
            padding-top: 34px;
        }

        .ao-dist::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 1px;
            height: 16px;
            background: #dcdcf3;
        }

        .ao-dist::after {
            content: '';
            position: absolute;
            top: 16px;
            left: 16.66%;
            right: 16.66%;
            height: 1px;
            background: #dcdcf3;
        }

        .ao-dist-chips {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }

        .ao-dch {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .ao-dch::before {
            content: '';
            position: absolute;
            top: -18px;
            left: 50%;
            width: 1px;
            height: 18px;
            background: #dcdcf3;
        }

        .ao-chan {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 12.5px;
            font-weight: 700;
            color: #4b5563;
            background: #fff;
            border: 1px solid #e5e7eb;
            padding: 7px 13px;
            border-radius: 999px;
            box-shadow: 0 2px 8px rgba(31, 28, 64, .05);
            white-space: nowrap;
        }

        .ao-chan i {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            flex: none;
        }

        @media (max-width: 1020px) {
            .ao-split {
                grid-template-columns: 1fr;
                gap: 48px;
                max-width: 640px;
                margin: 0 auto;
            }

            .ao-sub {
                max-width: none;
            }
        }

        @media (max-width: 600px) {
            .ao-viz {
                --ao-r1: min(92px, calc(50vw - 128px));
                --ao-r2: min(142px, calc(50vw - 78px));
                --ao-orb: 88px;
            }

            .ao-o1, .ao-o2 {
                animation: ao-spin 90s linear infinite;
            }

            .ao-o1 .ao-counter, .ao-o2 .ao-counter {
                animation: ao-spin 90s linear infinite reverse;
            }

            .ao-o1 .ao-hold, .ao-o2 .ao-hold {
                transform: rotate(var(--am, var(--a))) translate(var(--ao-r2)) rotate(calc(-1 * var(--am, var(--a))));
            }

            .ao-o1 .ao-hold:nth-child(1) {
                --am: -90deg;
            }

            .ao-o1 .ao-hold:nth-child(2) {
                --am: -18deg;
            }

            .ao-o1 .ao-hold:nth-child(3) {
                --am: 126deg;
            }

            .ao-o2 .ao-hold:nth-child(1) {
                --am: 198deg;
            }

            .ao-o2 .ao-hold:nth-child(2) {
                --am: 54deg;
            }

            .ao-o2 .ao-hold:nth-child(3) {
                visibility: hidden;
            }

            .ao-orb svg {
                width: 21px;
                height: 21px;
            }

            .ao-orb b {
                font-size: 11px;
            }

            .ao-sat {
                padding: 4px 10px 4px 4px;
                gap: 6px;
            }

            .ao-sat-ic {
                width: 22px;
                height: 22px;
            }

            .ao-sat-ic svg {
                width: 12px;
                height: 12px;
            }

            .ao-sat b {
                font-size: 11px;
            }
        }

        @media (max-width: 420px) {
            .ao-viz {
                --ao-orb: 78px;
            }

            .ao-orb svg {
                width: 18px;
                height: 18px;
            }

            .ao-orb b {
                font-size: 10.5px;
            }

            .ao-sat b {
                font-size: 10.5px;
            }

            .ao-st span {
                max-width: 130px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .ao-o1, .ao-o2, .ao-counter {
                animation: none !important;
            }

            .ao-halo {
                display: none;
            }
        }

        @media (min-width: 1024px) {
            #pricing .lg\:p-7 {
                padding: 1.3rem;
            }
        }

        @keyframes badge-pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.3);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(79, 70, 229, 0);
            }
        }

        .badge-pulse {
            animation: badge-pulse 2.5s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-12px);
            }
        }

        .float-slow {
            animation: float 6s ease-in-out infinite;
        }

        .float-medium {
            animation: float 5s ease-in-out infinite 0.5s;
        }

        .float-fast {
            animation: float 4s ease-in-out infinite 1s;
        }

        .fade-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .placeholder-shimmer {
            background: linear-gradient(110deg, #f0f0f5 8%, #e8e8f0 18%, #f0f0f5 33%);
            background-size: 200% 100%;
            animation: shimmer 1.8s linear infinite;
        }

        @keyframes shimmer {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }


        .conic-border {
            position: relative;
        }

        .conic-border::before {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, #4f46e5 20%, #7c3aed 50%, #4f46e5 80%, transparent 100%);
            opacity: 0.7;
            z-index: 1;
            pointer-events: none;
        }

        .typewriter {
            display: inline;
        }

        .typewriter::after {
            content: '';
            display: inline-block;
            width: 2px;
            height: 0.95em;
            margin-left: 2px;
            background: #7c3aed;
            vertical-align: text-bottom;
            transform: translateY(-1px);
            animation: caret-blink 0.9s step-end infinite;
        }

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

        .ai-bar {
            width: 3px;
            border-radius: 9999px;
            background: linear-gradient(180deg, #818cf8 0%, #a78bfa 100%);
            transform-origin: bottom;
            animation: ai-bar 1.1s ease-in-out infinite;
        }

        .ai-bar:nth-child(1) {
            animation-delay: 0s;
            height: 45%;
        }

        .ai-bar:nth-child(2) {
            animation-delay: 0.15s;
            height: 80%;
        }

        .ai-bar:nth-child(3) {
            animation-delay: 0.3s;
            height: 60%;
        }

        .ai-bar:nth-child(4) {
            animation-delay: 0.45s;
            height: 90%;
        }

        .ai-bar:nth-child(5) {
            animation-delay: 0.6s;
            height: 55%;
        }

        @keyframes ai-bar {
            0%, 100% {
                transform: scaleY(0.35);
                opacity: 0.75;
            }
            50% {
                transform: scaleY(1);
                opacity: 1;
            }
        }

        .typing-dot {
            display: inline-block;
            width: 4px;
            height: 4px;
            margin: 0 1px;
            border-radius: 999px;
            background: #7c3aed;
            animation: typing-dot 1.2s ease-in-out infinite;
        }

        .typing-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typing-dot {
            0%, 100% {
                transform: translateY(0);
                opacity: 0.35;
            }
            50% {
                transform: translateY(-3px);
                opacity: 1;
            }
        }

        .pipe-active {
            position: relative;
            overflow: hidden;
            background: linear-gradient(90deg, #c7d2fe 0%, #a5b4fc 100%);
        }

        .pipe-active::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
            transform: translateX(-100%);
            animation: pipe-shimmer 1.8s ease-in-out infinite;
        }

        @keyframes pipe-shimmer {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        .data-line {
            stroke-dasharray: 4 6;
            animation: data-flow 3s linear infinite;
        }

        @keyframes data-flow {
            0% {
                stroke-dashoffset: 0;
            }
            100% {
                stroke-dashoffset: -20;
            }
        }

        [data-hero-swap] {
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        [data-hero-swap].hero-swap-out {
            opacity: 0;
            transform: translateY(3px);
        }

        [data-hero-image],
        [data-hero-image-photo],
        [data-hero-image-icon] {
            transition: background 0.5s ease, opacity 0.4s ease, transform 0.5s ease;
        }

        [data-hero-monogram-bg] {
            transition: background 0.5s ease;
        }

        @media (prefers-reduced-motion: reduce) {
            .typewriter::after,
            .ai-bar,
            .typing-dot,
            .pipe-active::after,
            .data-line {
                animation: none !important;
            }

            [data-hero-swap],
            [data-hero-image],
            [data-hero-image-photo],
            [data-hero-image-icon],
            [data-hero-monogram-bg] {
                transition: none !important;
            }
        }

        .niche-stage {
            position: relative;
        }

        .niche-swiper {
            padding: 3.5rem 0 4rem;
        }

        .niche-stage .niche-swiper {
            padding: 3.5rem 0 4rem;
            -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
        }

        .niche-swiper .swiper-wrapper {
            align-items: stretch;
        }

        .niche-swiper .swiper-slide {
            width: clamp(248px, 80vw, 296px);
            height: auto;
        }

        .niche-card {
            height: 100%;
            display: flex;
            flex-direction: column;
            background: #fff;
            border-radius: 1.3rem;
            overflow: hidden;
            transition: box-shadow .4s ease;
        }

        .swiper-slide-active .niche-card {
            box-shadow: 0 26px 52px -22px rgba(79, 70, 229, .42);
        }

        .niche-card__media {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: linear-gradient(150deg, #4f46e5 0%, #7c3aed 52%, #a855f7 100%);
        }

        .niche-card__media::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(130% 95% at 16% 10%, rgba(255, 255, 255, .3) 0%, transparent 55%),
            radial-gradient(85% 75% at 92% 96%, rgba(15, 23, 42, .25) 0%, transparent 60%);
        }

        .niche-card__img {
            position: relative;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .niche-card__chan,
        .niche-card__tag {
            position: absolute;
            top: .8rem;
            display: inline-flex;
            align-items: center;
            border-radius: 999px;
            background: rgba(17, 24, 39, .42);
            -webkit-backdrop-filter: blur(12px) saturate(160%);
            backdrop-filter: blur(12px) saturate(160%);
            color: #fff;
            font-weight: 700;
        }

        .niche-card__chan {
            left: .8rem;
            gap: .36rem;
            padding: .3rem .6rem;
            font-size: .68rem;
        }

        .niche-card__tag {
            right: .8rem;
            gap: .3rem;
            padding: .28rem .54rem;
            font-size: .62rem;
        }

        .niche-card__chan .cdot {
            width: .46rem;
            height: .46rem;
            border-radius: 999px;
            box-shadow: 0 0 0 2.5px rgba(255, 255, 255, .18);
        }

        .niche-card__chan--tg .cdot {
            background: #4cb3f0;
        }

        .niche-card__chan--vk .cdot {
            background: #4d9bff;
        }

        .niche-card__chan--max .cdot {
            background: #5b8dff;
        }

        .niche-card__tag svg {
            width: .72rem;
            height: .72rem;
        }

        .niche-card__body {
            display: flex;
            flex-direction: column;
            flex: 1;
            padding: 1rem 1.05rem 1.1rem;
        }

        .niche-card__label {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            font-size: .74rem;
            font-weight: 800;
            color: #4f46e5;
            margin-bottom: .55rem;
        }

        .niche-card__ico {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.35rem;
            height: 1.35rem;
            border-radius: .5rem;
            background: #eef2ff;
        }

        .niche-card__ico svg {
            width: .82rem;
            height: .82rem;
            color: #4f46e5;
        }

        .niche-card__title {
            font-size: 1rem;
            font-weight: 800;
            line-height: 1.3;
            color: #0f172a;
            margin-bottom: .4rem;
        }

        .niche-card__text {
            font-size: .84rem;
            line-height: 1.5;
            color: #64748b;
        }

        .niche-card__tags {
            margin-top: .7rem;
            display: flex;
            flex-wrap: wrap;
            gap: .35rem;
        }

        .niche-card__hash {
            font-size: .72rem;
            font-weight: 600;
            color: #6d28d9;
        }

        .niche-card__foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: .6rem;
            margin-top: auto;
            padding-top: .85rem;
        }

        .niche-card__stats {
            display: inline-flex;
            align-items: center;
            gap: .85rem;
            font-size: .72rem;
            color: #94a3b8;
            font-weight: 600;
        }

        .niche-card__stats span {
            display: inline-flex;
            align-items: center;
            gap: .3rem;
        }

        .niche-card__stats svg {
            width: .85rem;
            height: .85rem;
        }

        .niche-card__auto {
            display: inline-flex;
            align-items: center;
            font-size: .66rem;
            font-weight: 700;
            color: #4f46e5;
            padding: .24rem .55rem;
            border-radius: 999px;
            background: #eef2ff;
            white-space: nowrap;
        }

        .niche-stage .niche-prev, .niche-stage .niche-next {
            position: absolute;
            top: 46%;
            transform: translateY(-50%);
            z-index: 10;
            width: 3rem;
            height: 3rem;
            border-radius: 999px;
            background: #fff;
            border: 1px solid #e9e9ef;
            color: #475569;
            box-shadow: 0 10px 26px -10px rgba(16, 24, 40, .32);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: color .2s, border-color .2s, box-shadow .2s, transform .2s;
        }

        .niche-stage .niche-prev {
            left: -0.5rem;
        }

        .niche-stage .niche-next {
            right: -0.5rem;
        }

        .niche-stage .niche-prev:hover, .niche-stage .niche-next:hover {
            color: #4f46e5;
            border-color: #c7d2fe;
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 14px 30px -10px rgba(79, 70, 229, .45);
        }

        .niche-stage .niche-prev svg, .niche-stage .niche-next svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        .niche-stage .niche-prev.swiper-button-disabled, .niche-stage .niche-next.swiper-button-disabled {
            opacity: .35;
            pointer-events: none;
        }

        @media (max-width: 1023px) {
            .niche-stage .niche-prev, .niche-stage .niche-next {
                display: none;
            }
        }

        .niche-swiper .swiper-pagination {
            position: static;
            margin-top: 1.6rem;
            display: flex;
            justify-content: center;
            gap: 6px;
        }

        .niche-swiper .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            background: #c7d2fe;
            opacity: 1;
            border-radius: 999px;
            transition: all .3s ease;
            margin: 0 !important;
        }

        .niche-swiper .swiper-pagination-bullet-active {
            background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 100%);
            width: 28px;
        }

        .niche-swiper:not(.swiper-initialized) {
            overflow: hidden;
        }

        .niche-swiper:not(.swiper-initialized) .swiper-wrapper {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            padding-bottom: 1rem;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .niche-swiper:not(.swiper-initialized) .swiper-slide {
            scroll-snap-align: center;
        }

        .niche-swiper:not(.swiper-initialized) .swiper-pagination {
            display: none;
        }

        .niche-cta {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .85rem 1.6rem;
            border-radius: .9rem;
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            color: #fff;
            font-size: .95rem;
            font-weight: 700;
            box-shadow: 0 16px 34px -14px rgba(79, 70, 229, .6);
            transition: transform .2s, box-shadow .2s, filter .2s;
        }

        .niche-cta:hover {
            transform: translateY(-2px);
            filter: brightness(1.06);
            box-shadow: 0 20px 40px -14px rgba(79, 70, 229, .7);
        }

        .niche-cta svg {
            width: 1.05rem;
            height: 1.05rem;
            transition: transform .2s;
        }

        .niche-cta:hover svg {
            transform: translateX(3px);
        }

        @media (prefers-reduced-motion: reduce) {
            .niche-swiper .swiper-slide {
                transition: none;
            }
        }

        .tour-grad {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
        }

        .tour-grad-text {
            background: linear-gradient(135deg, #4f46e5, #7c3aed, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes tour-shimmer {
            0% {
                background-position: -600px 0
            }
            100% {
                background-position: 600px 0
            }
        }

        .tour-shimmer {
            background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
            background-size: 600px 100%;
            animation: tour-shimmer 1.4s ease-in-out infinite;
            border-radius: 8px;
        }

        @keyframes tour-slide-in {
            from {
                opacity: 0;
                transform: translateX(24px)
            }
            to {
                opacity: 1;
                transform: translateX(0)
            }
        }

        .tour-step-enter {
            animation: tour-slide-in .26s ease-out forwards;
        }

        @keyframes tour-fade-up {
            from {
                opacity: 0;
                transform: translateY(6px)
            }
            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes tour-fade-in {
            from {
                opacity: 0
            }
            to {
                opacity: 1
            }
        }

        @keyframes tour-word-in {
            from {
                opacity: 0;
                transform: translateY(3px)
            }
            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes tour-pulse-ring {
            0% {
                box-shadow: 0 0 0 0 rgba(79, 70, 229, .5)
            }
            70% {
                box-shadow: 0 0 0 8px rgba(79, 70, 229, 0)
            }
            100% {
                box-shadow: 0 0 0 0 rgba(79, 70, 229, 0)
            }
        }

        @keyframes tour-blink {
            0%, 100% {
                opacity: 1
            }
            50% {
                opacity: 0
            }
        }

        @keyframes tour-spin {
            to {
                transform: rotate(360deg)
            }
        }

        @keyframes tour-scan-move {
            0% {
                top: 2px
            }
            100% {
                top: calc(100% - 4px)
            }
        }

        @keyframes tour-dot-pulse {
            0%, 100% {
                transform: scale(1);
                opacity: .6
            }
            50% {
                transform: scale(1.8);
                opacity: 1
            }
        }

        @keyframes tour-draw-line {
            from {
                stroke-dashoffset: 200
            }
            to {
                stroke-dashoffset: 0
            }
        }

        @keyframes tour-slide-right {
            from {
                opacity: 0;
                transform: translateX(-10px)
            }
            to {
                opacity: 1;
                transform: translateX(0)
            }
        }

        .tour-cursor {
            display: inline-block;
            width: 2px;
            height: 1em;
            background: #4f46e5;
            vertical-align: text-bottom;
            margin-left: 1px;
            animation: tour-blink 1s step-end infinite;
        }

        .tour-spin {
            animation: tour-spin .8s linear infinite;
        }

        .tour-scan-line {
            position: absolute;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #4f46e5 40%, #7c3aed, transparent);
            animation: tour-scan-move 1.6s ease-in-out infinite;
            pointer-events: none;
        }

        .tour-kdot {
            animation: tour-dot-pulse 2s ease-in-out infinite;
        }

        .tour-seg {
            height: 4px;
            border-radius: 2px;
            transition: background .3s;
        }

        .tour-overflow-safe {
            overflow: visible !important;
        }

        @media (prefers-reduced-motion: reduce) {
            .tour-step-enter, .tour-shimmer, .tour-cursor,
            .tour-scan-line, .tour-kdot {
                animation: none !important;
            }
        }

        .pj-proj {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .pj-stage-wrap {
            position: relative;
        }

        .pj-stage {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 28px;
            padding: 46px 64px 50px;
            min-height: 348px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 24px 60px -22px rgba(79, 70, 229, .18);
            background-image: radial-gradient(640px 240px at 88% -12%, #eef2ff 0%, rgba(238, 242, 255, 0) 70%);
        }

        .pj-stage.pj-enter {
            animation: pj-s-in .34s ease;
        }

        .pj-stage.pj-enter-back {
            animation: pj-s-in-back .34s ease;
        }

        @keyframes pj-s-in {
            from {
                opacity: 0;
                transform: translateX(18px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pj-s-in-back {
            from {
                opacity: 0;
                transform: translateX(-18px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .pj-watermark {
            position: absolute;
            right: 26px;
            bottom: -22px;
            font-size: 130px;
            font-weight: 900;
            letter-spacing: -.05em;
            color: #f3f4f6;
            line-height: 1;
            user-select: none;
            pointer-events: none;
        }

        .pj-stage-head {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
            position: relative;
        }

        .pj-stage-ico {
            width: 52px;
            height: 52px;
            border-radius: 15px;
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: none;
            box-shadow: 0 8px 22px rgba(79, 70, 229, .3);
        }

        .pj-stage-ico svg {
            width: 25px;
            height: 25px;
        }

        .pj-eyebrow {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .09em;
            text-transform: uppercase;
            color: #6366f1;
            margin-bottom: 5px;
        }

        .pj-pm {
            display: inline-flex;
            align-items: center;
            padding: 3px 8px;
            border-radius: 999px;
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .07em;
            text-transform: uppercase;
            line-height: 1.3;
        }

        .pj-stage-title {
            font-size: clamp(21px, 2.6vw, 28px);
            font-weight: 800;
            letter-spacing: -.02em;
            line-height: 1.15;
            margin: 0;
        }

        .pj-stage-desc {
            font-size: 16px;
            line-height: 1.65;
            color: #4b5563;
            max-width: 720px;
            margin: 0 0 26px;
            position: relative;
        }

        .pj-stage-feats {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 11px 28px;
            position: relative;
        }

        .pj-feat {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14.5px;
            font-weight: 500;
            color: #374151;
            line-height: 1.45;
        }

        .pj-ck {
            flex: none;
            width: 20px;
            height: 20px;
            border-radius: 7px;
            background: #eef2ff;
            color: #4f46e5;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1px;
        }

        .pj-ck svg {
            width: 11px;
            height: 11px;
        }

        .pj-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid #e5e7eb;
            color: #6b7280;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(17, 24, 39, .1);
            z-index: 3;
            font: inherit;
            transition: color .15s, border-color .15s, transform .15s;
        }

        .pj-nav:hover {
            color: #4f46e5;
            border-color: #c7d2fe;
            transform: translateY(-50%) scale(1.05);
        }

        .pj-nav:focus-visible {
            outline: 2px solid #4f46e5;
            outline-offset: 2px;
        }

        .pj-nav svg {
            width: 18px;
            height: 18px;
        }

        .pj-nav--prev {
            left: -23px;
        }

        .pj-nav--next {
            right: -23px;
        }

        .pj-strip {
            display: flex;
            gap: 9px;
            margin-top: 26px;
            overflow-x: auto;
            padding: 4px 2px 8px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .pj-strip::-webkit-scrollbar {
            display: none;
        }

        .pj-chip {
            flex: 1 1 0;
            min-width: 96px;
            position: relative;
            overflow: hidden;
            text-align: left;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 14px;
            padding: 10px 12px 12px;
            cursor: pointer;
            font: inherit;
            color: inherit;
            transition: border-color .15s ease, background .15s ease, transform .15s ease;
        }

        .pj-chip:hover {
            border-color: #c7d2fe;
            transform: translateY(-1px);
        }

        .pj-chip:focus-visible {
            outline: 2px solid #4f46e5;
            outline-offset: 2px;
        }

        .pj-chip-num {
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .07em;
            color: #9ca3af;
        }

        .pj-chip-title {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: #4b5563;
            margin-top: 3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .pj-chip.is-active {
            border-color: #a5b4fc;
            background: #eef2ff;
        }

        .pj-chip.is-active .pj-chip-num {
            color: #4f46e5;
        }

        .pj-chip.is-active .pj-chip-title {
            color: #312e81;
        }

        .pj-chip-progress {
            position: absolute;
            left: 0;
            bottom: 0;
            height: 3px;
            width: 0;
            background: linear-gradient(90deg, #4f46e5, #7c3aed);
            border-radius: 0 2px 0 0;
        }

        .pj-chip.is-active .pj-chip-progress.run {
            animation: pj-fill 7s linear forwards;
        }

        .pj-paused .pj-chip-progress,
        .pj-off .pj-chip-progress {
            animation-play-state: paused;
        }

        @keyframes pj-fill {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }

        .pj-no-auto .pj-chip-progress {
            display: none;
        }

        .pj-hint {
            margin-top: 14px;
            text-align: center;
            font-size: 12px;
            color: #9ca3af;
            font-weight: 500;
        }

        .pj-hint b {
            color: #6b7280;
            font-weight: 700;
        }

        @media (max-width: 1140px) {
            .pj-nav--prev {
                left: -12px;
            }

            .pj-nav--next {
                right: -12px;
            }
        }

        @media (max-width: 760px) {
            .pj-stage {
                padding: 30px 24px 34px;
                border-radius: 22px;
                min-height: 0;
            }

            .pj-watermark {
                font-size: 84px;
                bottom: -14px;
                right: 14px;
            }

            .pj-nav {
                width: 38px;
                height: 38px;
                top: auto;
                bottom: -19px;
                transform: none;
            }

            .pj-nav:hover {
                transform: scale(1.05);
            }

            .pj-nav--prev {
                left: calc(50% - 48px);
            }

            .pj-nav--next {
                right: calc(50% - 48px);
            }

            .pj-strip {
                margin-top: 40px;
            }

            .pj-chip {
                flex: none;
                min-width: 128px;
            }
        }

        @media (max-width: 639px) {
            .pj-stage-feats {
                grid-template-columns: 1fr;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .pj-stage.pj-enter,
            .pj-stage.pj-enter-back,
            .pj-chip.is-active .pj-chip-progress.run {
                animation: none;
            }
        }

        .tc-island {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
            max-width: 1180px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            background: #0c0e1d;
            border: 1px solid rgba(99, 102, 241, .28);
            box-shadow: 0 30px 80px -24px rgba(30, 27, 75, .5);
        }

        .tc-island::before {
            content: '';
            position: absolute;
            top: -140px;
            left: 14%;
            width: 520px;
            height: 320px;
            background: radial-gradient(closest-side, rgba(99, 102, 241, .28), transparent);
            pointer-events: none;
        }

        .tc-island::after {
            content: '';
            position: absolute;
            bottom: -160px;
            right: -60px;
            width: 420px;
            height: 320px;
            background: radial-gradient(closest-side, rgba(124, 58, 237, .18), transparent);
            pointer-events: none;
        }

        .tc-term {
            position: relative;
            z-index: 1;
            padding: 22px 26px 26px;
            border-right: 1px solid rgba(148, 163, 184, .12);
        }

        .tc-bar {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-bottom: 14px;
            margin-bottom: 14px;
            border-bottom: 1px solid rgba(148, 163, 184, .12);
        }

        .tc-dots {
            display: flex;
            gap: 6px;
        }

        .tc-dots i {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #293048;
        }

        .tc-t {
            font-family: ui-monospace, SFMono-Regular, 'Cascadia Mono', Menlo, Consolas, monospace;
            font-size: 12px;
            font-weight: 600;
            color: #64748b;
        }

        .tc-live {
            margin-left: auto;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: #a5b4fc;
        }

        .tc-live i {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #818cf8;
            animation: tc-blink 1.6s ease-in-out infinite;
        }

        @keyframes tc-blink {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: .25;
            }
        }

        .tc-log {
            font-family: ui-monospace, SFMono-Regular, 'Cascadia Mono', Menlo, Consolas, monospace;
            font-size: 12.5px;
            line-height: 1.85;
            color: #cbd5e1;
            height: 432px;
            overflow: hidden;
            white-space: pre-wrap;
            word-break: break-word;
        }

        .tc-line {
            min-height: 23px;
        }

        .tc-lt {
            color: #475569;
        }

        .tc-tag {
            color: #a5b4fc;
            font-weight: 600;
        }

        .tc-ok {
            color: #86efac;
        }

        .tc-hl {
            color: #e0e7ff;
            font-weight: 600;
        }

        .tc-caret {
            display: inline-block;
            width: 7px;
            height: 13px;
            margin-left: 2px;
            vertical-align: -2px;
            background: #a5b4fc;
            animation: tc-caretb 1s steps(2, start) infinite;
        }

        @keyframes tc-caretb {
            50% {
                opacity: 0;
            }
        }

        .tc-spec {
            position: relative;
            z-index: 1;
            padding: 26px 30px;
            display: flex;
            flex-direction: column;
        }

        .tc-spec-h {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: #818cf8;
            margin-bottom: 4px;
        }

        .tc-spec-s {
            font-size: 12px;
            color: #64748b;
            margin: 0 0 10px;
        }

        .tc-srow {
            display: flex;
            gap: 14px;
            padding: 13px 0;
            border-bottom: 1px solid rgba(148, 163, 184, .1);
        }

        .tc-srow:last-child {
            border-bottom: 0;
        }

        .tc-snum {
            font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
            font-size: 11px;
            font-weight: 700;
            color: #6366f1;
            padding-top: 3px;
            flex: none;
        }

        .tc-stitle {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: -.01em;
            color: #f1f5f9;
        }

        .tc-smod {
            font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
            font-size: 10px;
            color: #a5b4fc;
            background: rgba(99, 102, 241, .14);
            border: 1px solid rgba(99, 102, 241, .3);
            padding: 2px 7px;
            border-radius: 6px;
        }

        .tc-srow p {
            margin: 5px 0 0;
            font-size: 12.5px;
            line-height: 1.6;
            color: #94a3b8;
        }

        @media (max-width: 900px) {
            .tc-island {
                display: block;
                background: transparent;
                border: 0;
                border-radius: 0;
                box-shadow: none;
                overflow: visible;
            }

            .tc-island::before,
            .tc-island::after {
                display: none;
            }

            .tc-term {
                background: #0c0e1d;
                border: 1px solid rgba(99, 102, 241, .28);
                border-radius: 20px;
                box-shadow: 0 20px 50px -20px rgba(30, 27, 75, .45);
                padding: 16px 18px 18px;
            }

            .tc-log {
                height: 312px;
                font-size: 11.5px;
                line-height: 1.8;
            }

            .tc-spec {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 10px;
                padding: 0;
                margin-top: 22px;
            }

            .tc-spec-h {
                grid-column: 1 / -1;
                color: #4f46e5;
                margin: 2px 2px 0;
            }

            .tc-spec-s {
                grid-column: 1 / -1;
                color: #6b7280;
                margin: 0 2px 4px;
            }

            .tc-srow {
                display: block;
                background: #fff;
                border: 1px solid #e5e7eb;
                border-radius: 16px;
                padding: 14px 15px 15px;
                transition: border-color .2s ease, box-shadow .2s ease;
            }

            .tc-srow:last-child {
                border: 1px solid #e5e7eb;
            }

            .tc-srow:hover {
                border-color: #c7d2fe;
                box-shadow: 0 8px 30px rgba(79, 70, 229, .1);
            }

            .tc-snum {
                display: inline-block;
                padding: 0;
                margin-bottom: 7px;
                color: #4f46e5;
            }

            .tc-stitle {
                color: #111827;
            }

            .tc-smod {
                color: #4338ca;
                background: #eef2ff;
                border: 1px solid #e0e7ff;
            }

            .tc-srow p {
                color: #6b7280;
            }
        }

        @media (max-width: 560px) {
            .tc-spec {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 420px) {
            .tc-term {
                padding: 14px 13px 16px;
            }

            .tc-log {
                height: 300px;
                font-size: 11px;
            }

            .tc-t {
                font-size: 11px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .tc-live i {
                animation: none;
            }

            .tc-caret {
                display: none;
            }
        }

        section.hero-gradient--with-banner {
            padding-top: calc(64px + 24px);
        }

        @media (min-width: 1024px) {
            section.hero-gradient--with-banner {
                padding-top: calc(72px + 28px);
            }
        }

        .launch-banner {
            --lb-from: #4f46e5;
            --lb-via: #7c3aed;
            --lb-to: #a855f7;
            animation: launch-banner-fadein .55s cubic-bezier(.2, .8, .2, 1) both;
        }

        @keyframes launch-banner-fadein {
            0% {
                opacity: 0;
                transform: translateY(-10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .launch-banner__card {
            position: relative;
            isolation: isolate;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.7rem 0.95rem;
            border-radius: 14px;
            overflow: hidden;
            color: #fff;
            text-decoration: none;
            background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0)),
            linear-gradient(120deg, var(--lb-from) 0%, var(--lb-via) 40%, var(--lb-to) 75%, var(--lb-via) 100%);
            background-size: 100% 100%, 220% 100%;
            background-position: 0 0, 0% 50%;
            box-shadow: 0 10px 30px -10px rgba(79, 70, 229, .35),
            0 0 0 1px rgba(255, 255, 255, .10) inset;
            transition: transform .35s cubic-bezier(.2, .8, .2, 1),
            box-shadow .35s ease;
            animation: launch-banner-flow 12s ease-in-out infinite;
            cursor: pointer;
        }

        @keyframes launch-banner-flow {
            0%, 100% {
                background-position: 0 0, 0% 50%;
            }
            50% {
                background-position: 0 0, 100% 50%;
            }
        }

        .launch-banner__card:hover {
            transform: translateY(-1px);
            box-shadow: 0 18px 42px -12px rgba(79, 70, 229, .50),
            0 0 0 1px rgba(255, 255, 255, .20) inset;
        }

        .launch-banner__card:active {
            transform: translateY(0) scale(.997);
        }

        .launch-banner__card:focus-visible {
            outline: 2px solid #fff;
            outline-offset: 3px;
        }

        .launch-banner__card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .22) 50%, transparent 65%);
            transform: translateX(-150%);
            animation: launch-banner-shine 7s ease-in-out infinite 1.2s;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes launch-banner-shine {
            0% {
                transform: translateX(-150%);
            }
            55% {
                transform: translateX(150%);
            }
            100% {
                transform: translateX(150%);
            }
        }

        .launch-banner__card::after {
            content: '';
            position: absolute;
            inset: -10%;
            background: radial-gradient(circle 1.8px at 12% 30%, rgba(255, 255, 255, .95) 0%, transparent 100%),
            radial-gradient(circle 1.5px at 80% 70%, rgba(255, 255, 255, .85) 0%, transparent 100%),
            radial-gradient(circle 2.2px at 50% 18%, rgba(255, 255, 255, .80) 0%, transparent 100%),
            radial-gradient(circle 1.2px at 30% 80%, rgba(255, 255, 255, .90) 0%, transparent 100%),
            radial-gradient(circle 1.6px at 92% 25%, rgba(255, 255, 255, .85) 0%, transparent 100%),
            radial-gradient(circle 1.4px at 18% 65%, rgba(255, 255, 255, .80) 0%, transparent 100%),
            radial-gradient(circle 1.8px at 65% 35%, rgba(255, 255, 255, .85) 0%, transparent 100%),
            radial-gradient(circle 1px at 38% 55%, rgba(255, 255, 255, .70) 0%, transparent 100%);
            opacity: 0;
            transform: scale(.9);
            transition: opacity .35s ease, transform .5s ease;
            pointer-events: none;
            z-index: 0;
        }

        .launch-banner__card:hover::after {
            opacity: 1;
            transform: scale(1);
        }

        .launch-banner__sparkles {
            position: absolute;
            inset: -10%;
            pointer-events: none;
            z-index: 0;
            opacity: 0;
            transform: scale(.92);
            transition: opacity .4s ease, transform .55s ease;
        }

        .launch-banner__card:hover .launch-banner__sparkles {
            opacity: 1;
            transform: scale(1);
        }

        .launch-banner__sparkles::before,
        .launch-banner__sparkles::after {
            content: '';
            position: absolute;
            inset: 0;
        }

        .launch-banner__sparkles::before {
            background: radial-gradient(circle 1.4px at 8% 45%, rgba(255, 255, 255, .95) 0%, transparent 100%),
            radial-gradient(circle 1px at 24% 22%, rgba(255, 255, 255, .85) 0%, transparent 100%),
            radial-gradient(circle 1.6px at 42% 75%, rgba(255, 255, 255, .90) 0%, transparent 100%),
            radial-gradient(circle 1.2px at 58% 28%, rgba(255, 255, 255, .85) 0%, transparent 100%),
            radial-gradient(circle 1.4px at 73% 60%, rgba(255, 255, 255, .95) 0%, transparent 100%),
            radial-gradient(circle 1px at 86% 40%, rgba(255, 255, 255, .80) 0%, transparent 100%),
            radial-gradient(circle 1.8px at 96% 78%, rgba(255, 255, 255, .95) 0%, transparent 100%);
            animation: launch-sparkle-twinkle 1.4s ease-in-out infinite;
        }

        .launch-banner__sparkles::after {
            background: radial-gradient(circle 2.2px at 16% 80%, rgba(255, 255, 255, .95) 0%, transparent 100%),
            radial-gradient(circle 2.4px at 36% 12%, rgba(255, 255, 255, .95) 0%, transparent 100%),
            radial-gradient(circle 2px at 60% 88%, rgba(255, 255, 255, .90) 0%, transparent 100%),
            radial-gradient(circle 2.6px at 78% 14%, rgba(255, 255, 255, .95) 0%, transparent 100%),
            radial-gradient(circle 2px at 90% 62%, rgba(255, 255, 255, .90) 0%, transparent 100%);
            animation: launch-sparkle-twinkle 1.8s ease-in-out infinite .35s;
        }

        @keyframes launch-sparkle-twinkle {
            0%, 100% {
                opacity: .35;
                transform: scale(.95);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
        }

        .launch-banner__halo {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse 60% 80% at 50% 50%,
            rgba(255, 255, 255, .18) 0%,
            rgba(255, 255, 255, .06) 35%,
            transparent 70%);
            opacity: 0;
            transform: scale(.85);
            transition: opacity .4s ease, transform .5s cubic-bezier(.2, .8, .2, 1);
            mix-blend-mode: overlay;
        }

        .launch-banner__card:hover .launch-banner__halo {
            opacity: 1;
            transform: scale(1);
        }

        .launch-banner__card:hover {
            box-shadow: 0 18px 42px -12px rgba(79, 70, 229, .55),
            0 0 0 1px rgba(255, 255, 255, .30) inset,
            0 0 32px rgba(255, 255, 255, .12) inset;
        }

        .launch-banner__card:hover .launch-banner__pulse-dot {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
            animation-duration: 1.2s;
        }

        .launch-banner__card:hover .launch-banner__arrow {
            box-shadow: 0 0 0 4px rgba(255, 255, 255, .18),
            0 0 18px rgba(255, 255, 255, .30);
        }

        .launch-banner__title::after {
            content: '✦';
            display: inline-block;
            margin-left: 6px;
            color: rgba(255, 255, 255, .95);
            opacity: 0;
            transform: translateY(-1px) scale(.5) rotate(-30deg);
            transition: opacity .35s ease, transform .45s cubic-bezier(.2, .8, .2, 1);
            text-shadow: 0 0 8px rgba(255, 255, 255, .6);
        }

        .launch-banner__card:hover .launch-banner__title::after {
            opacity: 1;
            transform: translateY(-1px) scale(1) rotate(0);
        }

        .launch-banner__inner {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex: 1;
            min-width: 0;
        }

        .launch-banner__pulse {
            position: relative;
            flex-shrink: 0;
            width: 10px;
            height: 10px;
        }

        .launch-banner__pulse-dot {
            position: absolute;
            inset: 0;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 0 0 0 rgba(255, 255, 255, .7);
            animation: launch-pulse 1.8s cubic-bezier(.4, 0, .6, 1) infinite;
        }

        @keyframes launch-pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, .7);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
                transform: scale(.85);
            }
        }

        .launch-banner__text {
            min-width: 0;
            font-size: 14px;
            line-height: 1.4;
            color: #fff;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .launch-banner__title {
            font-weight: 700;
            margin-right: 4px;
        }

        .launch-banner__text-extra {
            opacity: .9;
        }

        .launch-banner__discount {
            position: relative;
            z-index: 1;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .18);
            color: #fff;
            font-weight: 700;
            font-size: 12px;
            border: 1px solid rgba(255, 255, 255, .22);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .launch-banner__discount-percent {
            font-weight: 800;
            letter-spacing: .01em;
        }

        .launch-banner__discount code {
            background: rgba(0, 0, 0, .22);
            padding: 1px 6px;
            border-radius: 4px;
            font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
            font-size: 11px;
            letter-spacing: .04em;
            font-weight: 700;
        }

        .launch-banner__arrow {
            position: relative;
            z-index: 1;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .16);
            border: 1px solid rgba(255, 255, 255, .24);
            transition: transform .35s cubic-bezier(.2, .8, .2, 1),
            background .25s ease, border-color .25s ease;
        }

        .launch-banner__card:hover .launch-banner__arrow {
            transform: translateX(4px);
            background: rgba(255, 255, 255, .30);
            border-color: rgba(255, 255, 255, .40);
        }

        .launch-banner__arrow svg {
            width: 14px;
            height: 14px;
        }

        @media (max-width: 640px) {
            .launch-banner__card {
                padding: 0.6rem 0.8rem;
                gap: .55rem;
                border-radius: 12px;
            }

            .launch-banner__text {
                font-size: 13px;
            }

            .launch-banner__text-extra {
                display: none;
            }

            .launch-banner__discount {
                padding: 3px 8px;
                font-size: 11px;
                gap: 0;
            }

            .launch-banner__discount code {
                display: none;
            }

            .launch-banner__arrow {
                width: 24px;
                height: 24px;
            }

            .launch-banner__arrow svg {
                width: 12px;
                height: 12px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .launch-banner,
            .launch-banner__card,
            .launch-banner__card::before,
            .launch-banner__pulse-dot,
            .launch-banner__sparkles::before,
            .launch-banner__sparkles::after {
                animation: none !important;
                transition: none !important;
            }
        }


        .hero-fullscreen {
            position: relative;
            width: 100%;
            height: 100vh;
            height: 100svh;
            min-height: 480px;
            overflow: hidden;
            background: #faf5ff;
            container-type: inline-size;
        }

        /* Высота hero = 100svh (small viewport height), НЕ 100dvh.

        dvh (dynamic) пересчитывается на лету при сворачивании/разворачивании
        адресной строки в мобильном Chrome → высота hero «дышит», а слои
        sky/water/park (спозиционированы в % от высоты) и parallax
        пересчитываются на каждом тоггле URL-бара → картинка hero дёргается
        при смене направления скролла (вниз бар прячется, вверх вылезает).
        svh зафиксирован на «маленький» вьюпорт (адресная строка показана) и
        НЕ меняется при её сворачивании → hero стабилен, рывков по высоте нет.
        Бонус: при показанной адресной строке сцена помещается целиком (в
        отличие от 100vh/100lvh, которые прячут низ под бар — та «обрезанность»,
        что раньше лечили через dvh).

        100vh — fallback для старых браузеров (Safari <15.4, Chrome <108).
        min-height:480 — универсальный safety floor: на коротких вьюпортах
        (ландшафтный смартфон ~306-420px height) секция не схлопывается до
        свечного svh, иначе текст и ноутбук перекрываются. Узкий портретный
        mobile получает усиленный floor 560 (см. блок max-width:640 ниже). */
        @media (max-width: 640px) {
            .hero-fullscreen {
                height: 100vh;
                height: 100svh;
                min-height: 560px;
            }
        }

        .hero-scene-full {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .hero-scene {
            position: absolute;
            inset: 0;
        }

        .hero-bg-layer {
            position: absolute;
            will-change: transform;
        }

        .hero-bg-layer > img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            user-select: none;
            -webkit-user-drag: none;
        }

        .hero-bg-layer--sky,
        .hero-bg-layer--water {
            left: 0;
            right: 0;
            height: calc(50% + 220px);
        }

        .hero-bg-layer--sky {
            top: -220px;
        }

        .hero-bg-layer--sky > img {
            object-position: center bottom;
        }

        .hero-bg-layer--water {
            top: 50%;
        }

        .hero-bg-layer--water > img {
            object-position: center top;
        }

        .hero-bg-layer--park {
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .hero-bg-layer--park > img {
            object-position: center 72%;
        }


        .hero-sun-glow {
            position: absolute;
            left: var(--sun-x, 6%);
            top: var(--sun-y, 29%);
            width: clamp(280px, 34vw, 560px);
            height: clamp(280px, 34vw, 560px);
            transform: translate(-50%, -50%);
            border-radius: 50%;
            pointer-events: none;
            background: radial-gradient(circle closest-side,
            rgba(255, 237, 201, 0.50) 0%,
            rgba(255, 223, 178, 0.30) 30%,
            rgba(255, 214, 165, 0.12) 55%,
            rgba(255, 214, 165, 0) 78%);
            mix-blend-mode: screen;
            will-change: opacity;
            animation: hero-sun-breathe 9s ease-in-out infinite;
        }

        @keyframes hero-sun-breathe {
            0%, 100% {
                opacity: 0.55;
            }
            50% {
                opacity: 0.95;
            }
        }

        .hero-water-glints {
            position: absolute;
            left: var(--refl-x, 6%);
            top: var(--refl-y, 2%);
            width: 0;
            height: 0;
            pointer-events: none;
        }

        .hero-glint {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 253, 248, 0.92) 26%,
            rgba(255, 246, 226, 0.35) 52%,
            rgba(255, 246, 226, 0) 74%);
            opacity: 0;
            will-change: transform, opacity;
            mix-blend-mode: normal;
            animation: hero-glint-twinkle var(--g-dur, 5s) ease-in-out var(--g-delay, 0s) infinite;
        }

        @keyframes hero-glint-twinkle {
            0%, 100% {
                opacity: 0;
                transform: scale(0.45);
            }
            50% {
                opacity: var(--g-peak, 0.85);
                transform: scale(1);
            }
        }

        .hero-glint--1 {
            left: 4px;
            top: -22px;
            width: 12px;
            height: 12px;
            --g-peak: 0.95;
            --g-dur: 4.6s;
            --g-delay: -1.2s;
        }

        .hero-glint--2 {
            left: 40px;
            top: -6px;
            width: 9px;
            height: 9px;
            --g-peak: 0.80;
            --g-dur: 6.1s;
            --g-delay: -3.4s;
        }

        .hero-glint--3 {
            left: 20px;
            top: 14px;
            width: 11px;
            height: 11px;
            --g-peak: 0.90;
            --g-dur: 5.3s;
            --g-delay: -4.8s;
        }

        .hero-glint--4 {
            left: 75px;
            top: 30px;
            width: 8px;
            height: 8px;
            --g-peak: 0.72;
            --g-dur: 5.8s;
            --g-delay: -2.1s;
        }

        .hero-glint--5 {
            left: 48px;
            top: 52px;
            width: 13px;
            height: 13px;
            --g-peak: 0.92;
            --g-dur: 4.9s;
            --g-delay: -3.9s;
        }

        .hero-boat {
            position: absolute;
            left: 0;
            top: 52%;
            height: 5.5%;
            aspect-ratio: 96 / 156;
            pointer-events: none;
            filter: drop-shadow(0 1px 1px rgba(15, 23, 42, 0.18)) saturate(0.72) brightness(1.06);
            opacity: 0.94;
        }

        .hero-boat-drift {
            position: absolute;
            inset: 0;
            animation: hero-boat-sail 210s linear infinite;
            will-change: transform, opacity;
        }

        @keyframes hero-boat-sail {
            0% {
                transform: translateX(0vw);
                opacity: 1;
            }
            80% {
                transform: translateX(95vw);
                opacity: 1;
            }
            90% {
                transform: translateX(105vw);
                opacity: 0;
            }
            90.1% {
                transform: translateX(0vw);
                opacity: 0;
            }
            100% {
                transform: translateX(0vw);
                opacity: 1;
            }
        }

        .hero-boat-reflection {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            display: block;
            transform: scaleY(-1);
            opacity: 0.34;
            filter: blur(0.6px) saturate(0.55) brightness(1.1);
            -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 0) 95%);
            mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 0) 95%);
            pointer-events: none;
            user-select: none;
            -webkit-user-drag: none;
        }

        .hero-boat-img {
            width: 100%;
            height: 100%;
            display: block;
            user-select: none;
            -webkit-user-drag: none;
            animation: hero-boat-rock 9s ease-in-out infinite;
            transform-origin: 50% 92%;
        }

        @keyframes hero-boat-rock {
            0% {
                transform: translateY(0) rotate(-1.3deg);
            }
            25% {
                transform: translateY(-2.4px) rotate(0.6deg);
            }
            50% {
                transform: translateY(0.9px) rotate(1.5deg);
            }
            75% {
                transform: translateY(-1.6px) rotate(-0.35deg);
            }
            100% {
                transform: translateY(0) rotate(-1.3deg);
            }
        }

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

        .hero-bird {
            position: absolute;
            left: 0;
            aspect-ratio: 271 / 188;
            width: auto;
            opacity: 0;
            will-change: transform, opacity;
            animation-name: hero-bird-fly;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
            animation-fill-mode: both;
            filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.20));
        }

        .hero-bird-lottie {
            display: block;
            width: 100%;
            height: 100%;
        }

        @keyframes hero-bird-fly {
            0% {
                transform: translate3d(-30vw, 0, 0);
                opacity: 0;
            }
            18% {
                opacity: var(--hero-bird-opacity, 0.7);
            }
            50% {
                transform: translate3d(50vw, var(--hero-bird-arc, -22px), 0);
            }
            82% {
                opacity: var(--hero-bird-opacity, 0.7);
            }
            100% {
                transform: translate3d(130vw, var(--hero-bird-end, -6px), 0);
                opacity: 0;
            }
        }

        .hero-bird--far2 {
            top: 14%;
            height: 2%;
            --hero-bird-opacity: 0.42;
            --hero-bird-arc: -28px;
            --hero-bird-end: -2px;
            animation-duration: 135s;
            animation-delay: -22s;
        }

        .hero-bird--far3 {
            top: 22%;
            height: 1.7%;
            --hero-bird-opacity: 0.32;
            --hero-bird-arc: 8px;
            --hero-bird-end: -6px;
            animation-duration: 160s;
            animation-delay: -55s;
        }

        .hero-bird--far4 {
            top: 18%;
            height: 1.8%;
            --hero-bird-opacity: 0.36;
            --hero-bird-arc: -10px;
            --hero-bird-end: 4px;
            animation-duration: 145s;
            animation-delay: -90s;
        }

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

        /* Каждый лист стартует из СВОЕГО места (свой left), а JS на каждой
        итерации падения выдаёт новый случайный left в открытой части сцены -
        чтобы лист не слетал из одной и той же точки по кругу. Вертикаль живёт
        на wrapper'е (.hero-leaf): чистый translateY с linear-таймингом →
        постоянная скорость, без рывков и «торможения». Боковой снос + лёгкое
        покачивание - на вложенном <img> отдельной анимацией (ease-in-out
        маятник). Вертикаль и горизонталь разделены → спуск плавный, качание
        мягкое и независимое. Без drop-shadow и без переворотов: лист только
        тихо качается, не кувыркается. */
        .hero-leaf {
            position: absolute;
            top: 0;
            opacity: 0;
            will-change: transform, opacity;
            animation-name: hero-leaf-fall;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
            animation-fill-mode: both;
        }

        .hero-leaf-img {
            display: block;
            width: 100%;
            height: auto;
            user-select: none;
            -webkit-user-drag: none;
            filter: saturate(0.9);
            will-change: transform;
            animation-name: hero-leaf-sway;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
        }

        /* Падение: лист на экране 0-65% цикла (linear-спуск -15vh→110vh,
        ПОСТОЯННАЯ скорость - ни одного промежуточного keyframe, поэтому
        ничего не «подтормаживает»), затем 65.01-100% «отдыхает» вверху,
        opacity 0 (rest-gap, как jump у boat-sail). Период у всех трёх
        ОДИНАКОВЫЙ (30s) + delay ровно на треть. Видимое окно ≈половина цикла →
        одновременно то 1, то 2 листа (но НИКОГДА 3: окно < 2/3). Раньше окно
        было короче (55%) и почти всегда читался один лист. */
        @keyframes hero-leaf-fall {
            0% {
                transform: translateY(-15vh);
                opacity: 0;
            }
            5% {
                opacity: var(--leaf-op, 0.92);
            }
            58% {
                opacity: var(--leaf-op, 0.92);
            }
            65% {
                transform: translateY(110vh);
                opacity: 0;
            }
            65.01% {
                transform: translateY(-15vh);
                opacity: 0;
            }
            100% {
                transform: translateY(-15vh);
                opacity: 0;
            }
        }

        /* Качание: мягкий маятник по X + лёгкий наклон rotate. БЕЗ переворотов -
        лист не кувыркается, только тихо качается. --leaf-spin - случайный
        БАЗОВЫЙ угол (JS задаёт на каждом падении): лист появляется каждый раз
        под новым наклоном, будто это другой лист. Поверх базы - мягкий рок
        ±rot-a/rot-b. Старт == финиш → бесшовно. */
        @keyframes hero-leaf-sway {
            0% {
                transform: translateX(calc(var(--leaf-sway, 1.4vw) * -1)) rotate(calc(var(--leaf-spin, 0deg) + var(--leaf-rot-a, -10deg)));
            }
            50% {
                transform: translateX(var(--leaf-sway, 1.4vw)) rotate(calc(var(--leaf-spin, 0deg) + var(--leaf-rot-b, 10deg)));
            }
            100% {
                transform: translateX(calc(var(--leaf-sway, 1.4vw) * -1)) rotate(calc(var(--leaf-spin, 0deg) + var(--leaf-rot-a, -10deg)));
            }
        }

        .hero-leaf--1 {
            left: 46%;
            width: 32px;
            --leaf-op: 0.95;
            animation-duration: 30s;
            animation-delay: -1s;
        }

        .hero-leaf--1 .hero-leaf-img {
            --leaf-sway: 1.6vw;
            --leaf-rot-a: -11deg;
            --leaf-rot-b: 9deg;
            animation-duration: 5.6s;
            animation-delay: -1.2s;
        }

        .hero-leaf--2 {
            left: 74%;
            width: 23px;
            --leaf-op: 0.85;
            animation-duration: 30s;
            animation-delay: -11s;
        }

        .hero-leaf--2 .hero-leaf-img {
            --leaf-sway: 1.2vw;
            --leaf-rot-a: 8deg;
            --leaf-rot-b: -12deg;
            animation-duration: 6.8s;
            animation-delay: -2.5s;
        }

        .hero-leaf--3 {
            left: 60%;
            width: 28px;
            --leaf-op: 0.9;
            animation-duration: 30s;
            animation-delay: -21s;
        }

        .hero-leaf--3 .hero-leaf-img {
            --leaf-sway: 1.45vw;
            --leaf-rot-a: -9deg;
            --leaf-rot-b: 11deg;
            animation-duration: 6.1s;
            animation-delay: -0.6s;
        }

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

        .hero-wind-streak {
            position: absolute;
            left: 0;
            height: 1.5px;
            border-radius: 9999px;
            background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.55) 35%,
            rgba(255, 255, 255, 0.85) 50%,
            rgba(255, 255, 255, 0.55) 65%,
            rgba(255, 255, 255, 0) 100%);
            filter: blur(0.8px);
            opacity: 0;
            will-change: transform, opacity;
            animation-name: hero-wind-drift;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        @keyframes hero-wind-drift {
            0% {
                transform: translate3d(-30vw, 0, 0) rotate(var(--wind-rot-a, -1.5deg));
                opacity: 0;
                animation-timing-function: ease-in-out;
            }
            10% {
                opacity: var(--wind-opacity, 0.55);
                animation-timing-function: ease-in-out;
            }
            22% {
                transform: translate3d(-3vw, var(--wind-y1, -6px), 0) rotate(var(--wind-rot-a, -1.5deg));
                animation-timing-function: ease-in-out;
            }
            36% {
                transform: translate3d(15vw, var(--wind-y2, -14px), 0) rotate(var(--wind-rot-mid, 0deg));
                animation-timing-function: ease-in-out;
            }
            50% {
                transform: translate3d(38vw, var(--wind-y3, -18px), 0) rotate(var(--wind-rot-b, 2deg));
                animation-timing-function: ease-in-out;
            }
            64% {
                transform: translate3d(62vw, var(--wind-y4, -10px), 0) rotate(var(--wind-rot-mid, 0deg));
                animation-timing-function: ease-in-out;
            }
            78% {
                transform: translate3d(85vw, var(--wind-y5, -14px), 0) rotate(var(--wind-rot-a, -1.5deg));
                animation-timing-function: ease-in-out;
            }
            90% {
                transform: translate3d(105vw, var(--wind-y6, -4px), 0) rotate(var(--wind-rot-a, -1.5deg));
                opacity: var(--wind-opacity, 0.55);
                animation-timing-function: ease-in-out;
            }
            100% {
                transform: translate3d(120vw, var(--wind-y-end, 2px), 0) rotate(var(--wind-rot-a, -1.5deg));
                opacity: 0;
            }
        }

        .hero-wind-streak--1 {
            top: 13%;
            width: 28vw;
            height: 2px;
            --wind-opacity: 0.72;
            --wind-y1: -6px;
            --wind-y2: -14px;
            --wind-y3: -20px;
            --wind-y4: -14px;
            --wind-y5: -6px;
            --wind-y6: 2px;
            --wind-y-end: 4px;
            --wind-rot-a: -1.8deg;
            --wind-rot-mid: 1deg;
            --wind-rot-b: 3deg;
            animation-duration: 38s;
            animation-delay: -6s;
        }

        .hero-wind-streak--2 {
            top: 19%;
            width: 22vw;
            height: 1.4px;
            --wind-opacity: 0.52;
            --wind-y1: -4px;
            --wind-y2: 4px;
            --wind-y3: 10px;
            --wind-y4: 4px;
            --wind-y5: -6px;
            --wind-y6: -12px;
            --wind-y-end: -10px;
            --wind-rot-a: 2deg;
            --wind-rot-mid: 0.4deg;
            --wind-rot-b: -2.4deg;
            animation-duration: 54s;
            animation-delay: -28s;
        }

        .hero-wind-streak--3 {
            top: 27%;
            width: 34vw;
            height: 1.8px;
            --wind-opacity: 0.58;
            --wind-y1: -8px;
            --wind-y2: -16px;
            --wind-y3: -12px;
            --wind-y4: -2px;
            --wind-y5: 8px;
            --wind-y6: 4px;
            --wind-y-end: -2px;
            --wind-rot-a: -2.4deg;
            --wind-rot-mid: -0.4deg;
            --wind-rot-b: 2deg;
            animation-duration: 32s;
            animation-delay: -2s;
        }

        .hero-wind-streak--4 {
            top: 35%;
            width: 24vw;
            height: 1.2px;
            --wind-opacity: 0.46;
            --wind-y1: 5px;
            --wind-y2: 12px;
            --wind-y3: 6px;
            --wind-y4: -4px;
            --wind-y5: -12px;
            --wind-y6: -6px;
            --wind-y-end: 2px;
            --wind-rot-a: 1.5deg;
            --wind-rot-mid: 0.6deg;
            --wind-rot-b: -2deg;
            animation-duration: 64s;
            animation-delay: -42s;
        }

        .hero-wind-streak--5 {
            top: 43%;
            width: 30vw;
            height: 1.6px;
            --wind-opacity: 0.62;
            --wind-y1: -3px;
            --wind-y2: -10px;
            --wind-y3: -16px;
            --wind-y4: -8px;
            --wind-y5: 4px;
            --wind-y6: 10px;
            --wind-y-end: 6px;
            --wind-rot-a: -2.2deg;
            --wind-rot-mid: 0deg;
            --wind-rot-b: 2.8deg;
            animation-duration: 46s;
            animation-delay: -14s;
        }

        .hero-wind-mote {
            position: absolute;
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: radial-gradient(circle,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.55) 35%,
            rgba(255, 255, 255, 0) 75%);
            filter: blur(0.4px);
            opacity: 0;
            will-change: transform, opacity;
            animation-name: hero-mote-float;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        @keyframes hero-mote-float {
            0% {
                transform: translate3d(-5vw, 0, 0) scale(0.6);
                opacity: 0;
                animation-timing-function: ease-in-out;
            }
            12% {
                transform: translate3d(12vw, var(--mote-y1, -8px), 0) scale(0.78);
                opacity: var(--mote-opacity, 0.65);
                animation-timing-function: ease-in-out;
            }
            28% {
                transform: translate3d(28vw, var(--mote-y2, -16px), 0) scale(0.9);
                animation-timing-function: ease-in-out;
            }
            44% {
                transform: translate3d(44vw, var(--mote-y3, -22px), 0) scale(1);
                animation-timing-function: ease-in-out;
            }
            58% {
                transform: translate3d(60vw, var(--mote-y4, -16px), 0) scale(0.98);
                animation-timing-function: ease-in-out;
            }
            72% {
                transform: translate3d(76vw, var(--mote-y5, -8px), 0) scale(0.9);
                animation-timing-function: ease-in-out;
            }
            88% {
                transform: translate3d(96vw, var(--mote-y6, -2px), 0) scale(0.78);
                opacity: var(--mote-opacity, 0.65);
                animation-timing-function: ease-in-out;
            }
            100% {
                transform: translate3d(110vw, var(--mote-y-end, 4px), 0) scale(0.6);
                opacity: 0;
            }
        }

        .hero-wind-mote--1 {
            top: 17%;
            width: 3px;
            height: 3px;
            --mote-opacity: 0.82;
            --mote-y1: -6px;
            --mote-y2: -14px;
            --mote-y3: -22px;
            --mote-y4: -16px;
            --mote-y5: -8px;
            --mote-y6: -2px;
            --mote-y-end: 4px;
            animation-duration: 26s;
            animation-delay: -3s;
        }

        .hero-wind-mote--2 {
            top: 24%;
            width: 4px;
            height: 4px;
            --mote-opacity: 0.66;
            --mote-y1: -10px;
            --mote-y2: -22px;
            --mote-y3: -30px;
            --mote-y4: -24px;
            --mote-y5: -12px;
            --mote-y6: 2px;
            --mote-y-end: 10px;
            animation-duration: 36s;
            animation-delay: -20s;
        }

        .hero-wind-mote--3 {
            top: 30%;
            width: 2.5px;
            height: 2.5px;
            --mote-opacity: 0.74;
            --mote-y1: 8px;
            --mote-y2: 14px;
            --mote-y3: 10px;
            --mote-y4: 2px;
            --mote-y5: -6px;
            --mote-y6: -10px;
            --mote-y-end: -6px;
            animation-duration: 44s;
            animation-delay: -8s;
        }

        .hero-wind-mote--4 {
            top: 36%;
            width: 2.5px;
            height: 2.5px;
            --mote-opacity: 0.55;
            --mote-y1: -8px;
            --mote-y2: -18px;
            --mote-y3: -26px;
            --mote-y4: -20px;
            --mote-y5: -10px;
            --mote-y6: -2px;
            --mote-y-end: 4px;
            animation-duration: 32s;
            animation-delay: -26s;
        }

        .hero-wind-mote--5 {
            top: 42%;
            width: 3.5px;
            height: 3.5px;
            --mote-opacity: 0.70;
            --mote-y1: 4px;
            --mote-y2: -2px;
            --mote-y3: -10px;
            --mote-y4: -16px;
            --mote-y5: -10px;
            --mote-y6: -2px;
            --mote-y-end: 6px;
            animation-duration: 50s;
            animation-delay: -15s;
        }

        .hero-wind-mote--6 {
            top: 15%;
            width: 2px;
            height: 2px;
            --mote-opacity: 0.48;
            --mote-y1: -4px;
            --mote-y2: -10px;
            --mote-y3: -14px;
            --mote-y4: -10px;
            --mote-y5: -2px;
            --mote-y6: 4px;
            --mote-y-end: 8px;
            animation-duration: 40s;
            animation-delay: -32s;
        }

        .hero-prop {
            position: absolute;
            will-change: transform;
            pointer-events: none;
        }

        .hero-prop > .hero-prop-img {
            width: 100%;
            height: auto;
            display: block;
            user-select: none;
            -webkit-user-drag: none;
        }

        .hero-prop--laptop {
            right: 0;
            bottom: -50px;
            width: 56%;
            max-width: 1000px;
        }

        .hero-coffee-steam {
            position: absolute;
            left: 4.5%;
            top: 15%;
            width: 20%;
            height: 34%;
            z-index: 2;
            pointer-events: none;
            filter: blur(4.5px);
        }

        .hero-coffee-steam svg {
            width: 100%;
            height: 100%;
            overflow: visible;
            display: block;
        }

        .hero-steam-puff {
            fill: rgba(255, 255, 255, 0.92);
            opacity: 0;
            transform-origin: center;
            transform-box: fill-box;
            animation: hero-steam-puff-rise 4.2s ease-out infinite;
        }

        .hero-steam-puff--1 {
            animation-delay: 0s;
        }

        .hero-steam-puff--2 {
            animation-delay: 0.45s;
        }

        .hero-steam-puff--3 {
            animation-delay: 0.9s;
        }

        .hero-steam-puff--4 {
            animation-delay: 1.35s;
        }

        .hero-steam-puff--5 {
            animation-delay: 1.8s;
        }

        .hero-steam-puff--6 {
            animation-delay: 2.25s;
        }

        .hero-steam-puff--7 {
            animation-delay: 2.7s;
        }

        .hero-steam-puff--8 {
            animation-delay: 3.15s;
        }

        @keyframes hero-steam-puff-rise {
            0% {
                opacity: 0;
                transform: translate(0, 0) scale(0.35);
            }
            12% {
                opacity: 0.7;
                transform: translate(calc(var(--dx) * 0.2), -8px) scale(0.6);
            }
            45% {
                opacity: 0.5;
                transform: translate(calc(var(--dx) * 0.6), -34px) scale(1.3);
            }
            75% {
                opacity: 0.25;
                transform: translate(var(--dx), -58px) scale(1.9);
            }
            100% {
                opacity: 0;
                transform: translate(calc(var(--dx) * 1.4), -82px) scale(2.4);
            }
        }

        .hero-laptop-screen {
            position: absolute;
            left: 55.3%;
            top: 5%;
            width: 34.7%;
            height: 45%;
            background: linear-gradient(180deg, #fafbff 0%, #ffffff 60%);
            border-radius: 3px;
            overflow: hidden;
            z-index: 0;
        }

        .hero-prop--laptop > .hero-prop-img {
            position: relative;
            z-index: 1;
        }

        .hero-screen-inner {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            padding: clamp(5px, 1.1cqi, 10px);
            gap: clamp(3px, 0.7cqi, 6px);
        }

        @supports not (container-type: inline-size) {
            .hero-screen-inner {
                padding: clamp(5px, 0.6vw, 10px);
                gap: clamp(3px, 0.4vw, 6px);
            }
        }

        .hero-screen-image {
            position: relative;
            width: 100%;
            flex: 0 0 45%;
            min-height: 0;
            border-radius: clamp(4px, 0.5vw, 7px);
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
        }

        .hero-screen-image-photo {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-color: #eef2ff;
            transition: background-image .35s ease-in-out;
        }

        .hero-screen-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.18) 0%,
            rgba(15, 23, 42, 0) 35%);
            pointer-events: none;
        }

        .hero-screen-image-badge {
            position: absolute;
            top: clamp(3px, 0.7cqi, 6px);
            left: clamp(3px, 0.7cqi, 6px);
            display: inline-flex;
            align-items: center;
            gap: clamp(2px, 0.4cqi, 4px);
            padding: clamp(1px, 0.4cqi, 3px) clamp(4px, 0.9cqi, 7px);
            border-radius: clamp(3px, 0.6cqi, 5px);
            background: rgba(255, 255, 255, 0.22);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.35);
            color: #ffffff;
            font-size: clamp(7px, 1.0cqi, 9px);
            font-weight: 700;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .hero-screen-image-badge svg {
            width: clamp(7px, 1.1cqi, 10px);
            height: clamp(7px, 1.1cqi, 10px);
        }

        .hero-screen-title {
            font-size: clamp(10px, 1.05vw, 13px);
            font-weight: 600;
            color: #0f172a;
            line-height: 1.22;
            letter-spacing: -0.022em;
            font-feature-settings: "cv11", "ss01", "ss03";
            flex: 0 0 auto;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .hero-screen-body {
            font-size: clamp(9px, 0.85vw, 11.5px);
            font-weight: 400;
            color: #475569;
            line-height: 1.4;
            letter-spacing: -0.005em;
            flex: 1 1 auto;
            min-height: 0;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .hero-screen-caret {
            display: inline-block;
            width: 1.5px;
            height: 1em;
            background: #4f46e5;
            margin-left: 2px;
            vertical-align: -0.1em;
            animation: hero-caret-blink 1s steps(1) infinite;
            border-radius: 1px;
        }

        @keyframes hero-caret-blink {
            50% {
                opacity: 0;
            }
        }


        .hero-content-overlay {
            position: absolute;
            inset: 0;
            z-index: 10;
            display: flex;
            align-items: center;
            pointer-events: none;
        }

        .hero-content-inner {
            pointer-events: auto;
            padding: 12vh 6vw 0;
            max-width: 100%;
        }

        @media (min-width: 1024px) {
            .hero-content-inner {
                max-width: 780px;
                padding: 5vh 0 0 5.5vw;
            }
        }

        @media (min-width: 1440px) {
            .hero-content-inner {
                max-width: 920px;
                padding-left: 6.5vw;
            }
        }

        .hero-glass-card {
            position: relative;
            background: radial-gradient(85% 60% at 100% 0%, rgba(255, 225, 200, 0.18) 0%, transparent 55%),
            linear-gradient(135deg,
                    rgba(255, 255, 255, 0.22) 0%,
                    rgba(255, 255, 255, 0.10) 100%);
            -webkit-backdrop-filter: blur(10px) saturate(150%);
            backdrop-filter: blur(5px) saturate(110%);
            border: 1px solid rgba(255, 255, 255, 0.38);
            border-radius: 22px;
            padding: 1.5rem 1.9rem 1.4rem;
            box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.45) inset,
            0 0 0 1px rgba(79, 70, 229, 0.025) inset,
            0 20px 40px -22px rgba(15, 23, 42, 0.15),
            0 8px 20px -12px rgba(79, 70, 229, 0.06);
        }

        @media (max-width: 1023px) {
            .hero-glass-card {
                padding: 1.4rem 1.5rem 1.3rem;
                border-radius: 20px;
            }
        }

        @media (max-width: 1023px) and (min-width: 641px) {
            .hero-glass-card {
                padding: 1.4rem 1.5rem 1.3rem;
                border-radius: 20px;
            }
        }

        /* На mobile (<640px) glass-card сохраняем, но облегчаем:
          - меньше blur (2px вместо 5px): на маленьком экране сильный
            blur «съедает» детали сцены под ним и выглядит как пятно;
          - выше прозрачность (background alpha 0.10-0.04 вместо 0.22-0.10):
            стекло почти невидимое, только тень-обрамление даёт читаемость;
          - тоньше border, меньше padding и radius — пропорционально размеру.
        Эффект: текст «парит» над сценой, без визуальной тесноты как при
        полноценном desktop-glass на mobile. */
        @media (max-width: 640px) {
            .hero-glass-card {
                background: radial-gradient(85% 60% at 100% 0%, rgba(255, 225, 200, 0.10) 0%, transparent 55%),
                linear-gradient(135deg,
                        rgba(255, 255, 255, 0.10) 0%,
                        rgba(255, 255, 255, 0.04) 100%);
                -webkit-backdrop-filter: blur(8px) saturate(120%);
                backdrop-filter: blur(5px) saturate(108%);
                border: 1px solid rgba(255, 255, 255, 0.30);
                border-radius: 16px;
                padding: 0.95rem 1.05rem 1rem;
                box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.30) inset,
                0 10px 22px -16px rgba(15, 23, 42, 0.10);
            }
        }

        /* Градиент = фирменная CTA (.cta-brand / .c5-btn демо): индиго - фиолет
           с теплым краем #d16bd6. Полупрозрачные стопы + blur сохраняют
           стеклянность hero-оверлея. */
        .hero-cta-primary {
            background: linear-gradient(135deg,
            rgba(79, 70, 229, 0.92) 0%,
            rgba(124, 58, 237, 0.92) 62%,
            rgba(209, 107, 214, 0.92) 100%);
            -webkit-backdrop-filter: blur(8px) saturate(140%);
            backdrop-filter: blur(8px) saturate(140%);
            border: 1px solid rgba(255, 255, 255, 0.22);
            color: #ffffff;
            box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.22) inset,
            0 14px 28px -10px rgba(124, 58, 237, 0.45),
            0 4px 10px -4px rgba(15, 23, 42, 0.10);
            transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
        }

        .hero-cta-primary:hover {
            background: linear-gradient(135deg,
            rgba(79, 70, 229, 0.98) 0%,
            rgba(124, 58, 237, 0.98) 62%,
            rgba(209, 107, 214, 0.98) 100%);
            transform: translateY(-1px);
            box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.30) inset,
            0 18px 32px -10px rgba(124, 58, 237, 0.55),
            0 6px 14px -6px rgba(15, 23, 42, 0.12);
        }

        .hero-cta-secondary {
            background: rgba(255, 255, 255, 0.28);
            -webkit-backdrop-filter: blur(14px) saturate(140%);
            backdrop-filter: blur(14px) saturate(140%);
            border: 1px solid rgba(255, 255, 255, 0.48);
            color: #1f2937;
            box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.45) inset,
            0 4px 12px -6px rgba(15, 23, 42, 0.08);
            transition: transform .25s ease, box-shadow .25s ease, color .25s ease, border-color .25s ease, background .25s ease;
        }

        .hero-cta-secondary:hover {
            background: rgba(255, 255, 255, 0.55);
            border-color: rgba(79, 70, 229, 0.28);
            color: #4f46e5;
            transform: translateY(-1px);
        }

        /* Mobile-вариант primary CTA. Идея: idle-состояние — минимальное
        визуальное вмешательство (только primary-цвет текста сообщает
        что это интерактив), hover/tap — полноценная primary-кнопка.

        Idle (тач НЕ в фокусе):
          - background прозрачный (rgba 0.10 — почти невидимый stick),
          - НЕТ border'а (раньше был primary border, чанково смотрелось),
          - color: primary #4f46e5 — единственный signal что это CTA,
          - меньше padding (py-2 px-4 вместо py-3 px-5) — компактнее,
            пропорционально mobile-размеру экрана.

        Hover/focus/active:
          - primary fill 95% alpha + белый текст + primary border
            (тут border УМЕСТЕН — кнопка стала «настоящей primary»),
          - небольшой translateY и тень для feedback'а. */
        @media (max-width: 640px) {
            .hero-cta-primary {
                background: rgb(58 68 242 / 10%);
                -webkit-backdrop-filter: blur(6px) saturate(115%);
                backdrop-filter: blur(4px) saturate(108%);
                border: 0;
                color: #4f46e5;
                padding: 0.55rem 1rem;
                font-size: 0.8125rem;
                box-shadow: none;
            }

        /* Стрелка справа скрыта на mobile — компактнее. */
            .hero-cta-primary svg {
                display: none;
            }

            .hero-cta-primary:hover,
            .hero-cta-primary:focus-visible,
            .hero-cta-primary:active {
                background: linear-gradient(135deg, #4f46e5, #7c3aed 62%, #d16bd6);
                color: #ffffff;
                border: 1px solid rgba(124, 58, 237, 0.55);
                box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.25) inset,
                0 8px 18px -8px rgba(124, 58, 237, 0.5);
                transform: translateY(-1px);
            }
        }

        /* Banner позиционируется ОТНОСИТЕЛЬНО laptop prop (его containing block,
        т.к. .hero-prop position:absolute). Координаты — ТЕ ЖЕ что у
        hero-laptop-screen → banner точно повторяет ширину и горизонтальный
        span экрана, стабильно при любом resize:

          left: 72.65% + translateX(-50%) — центр banner = центр экрана
            (screen center = 55.3% + 34.7%/2). Центрирование через transform
            позволяет менять ширину banner по breakpoint'ам (mobile чуть
            шире), оставаясь по центру экрана автоматически.
          width: 34.7% — по умолчанию = screen width (на mobile override
            чуть шире, чтобы текст влезал с запасом).
          bottom: 100.5% — нижний край banner на ~5.5% выше верха экрана
            (screen top:5% → 95% от низа), banner «всплывает» НАД экраном
            с воздухом. Зазор в % от laptop height → масштабируется
            вместе с ноутбуком, стабилен при resize.

        Parallax наследуется от laptop'а (banner — его child), своего
        data-parallax у banner нет, --parallax-y в transform не нужен. */
        .hero-publish-banner {
            position: absolute;
            left: 72.55%;
            bottom: 100.5%;
            width: 34.7%;
            z-index: 20;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 0.45rem 0.7rem;
            border-radius: 12px;

            background: radial-gradient(85% 60% at 100% 0%, rgba(255, 225, 200, 0.15) 0%, transparent 55%),
            linear-gradient(135deg,
                    rgba(255, 255, 255, 0.22) 0%,
                    rgba(255, 255, 255, 0.10) 100%);
            -webkit-backdrop-filter: blur(10px) saturate(150%);
            backdrop-filter: blur(5px) saturate(110%);
            border: 1px solid rgba(255, 255, 255, 0.38);
            box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.45) inset,
            0 12px 28px -16px rgba(15, 23, 42, 0.15),
            0 4px 12px -8px rgba(16, 185, 129, 0.10);

            opacity: 0;
            transform: translate(-50%, 22px) scale(0.94);
            filter: blur(7px);
            pointer-events: none;
            transition: opacity .85s cubic-bezier(.16, 1, .3, 1),
            transform .85s cubic-bezier(.16, 1, .3, 1),
            filter .85s cubic-bezier(.16, 1, .3, 1);
            will-change: opacity, transform, filter;
        }

        .hero-publish-banner.is-visible {
            opacity: 1;
            transform: translate(-50%, 0) scale(1);
            filter: blur(0);
            animation: hero-publish-banner-float 6s ease-in-out 0.95s infinite;
        }

        @keyframes hero-publish-banner-float {
            0%, 100% {
                transform: translate(-50%, 0) scale(1);
            }
            50% {
                transform: translate(-50%, -3px) scale(1);
            }
        }


        .hero-publish-banner-text {
            font-size: 12px;
            font-weight: 600;
            color: #1f2937;
            line-height: 1.2;
            white-space: nowrap;
            flex: 1;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .hero-publish-banner-meta {
            color: #6b7280;
            font-weight: 500;
        }

        .hero-publish-banner-channels {
            display: flex;
            gap: 4px;
            flex-shrink: 0;
        }

        .hero-publish-banner-channel {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }

        .hero-publish-banner-channel img,
        .hero-publish-banner-channel svg {
            width: 11px;
            height: 11px;
            object-fit: contain;
        }

        .hero-publish-banner-channel--tg svg {
            color: #0ea5e9;
        }

        .hero-publish-banner-channel--vk svg {
            color: #2563eb;
        }

        /* Параллакс для всех слоёв через CSS-переменную --parallax-y.
        Laptop больше не имеет idle-float анимации - стол прижат к углу
        и плавать ему не положено.

        :not(.hero-publish-banner) — банер ИСКЛЮЧАЕМ из этого generic
        transform, потому что у него своя сложная transform-цепочка
        (entrance translateY + scale + blur, idle-float animation), и
        он сам встраивает var(--parallax-y) в свои transform'ы через
        calc() (см. .hero-publish-banner и .is-visible выше). Без :not
        правило [data-parallax] перекрывало бы инициальный state банера
        (translateY 22px + scale 0.94) → entrance-анимация ломалась. */
        [data-parallax]:not(.hero-publish-banner) {
            transform: translate3d(0, var(--parallax-y, 0px), 0);
            will-change: transform;
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-laptop-anim,
            .hero-screen-caret,
            .hero-publish-banner,
            .hero-steam-puff {
                animation: none !important;
                transition: none !important;
            }

            [data-parallax] {
                transform: none !important;
            }

            .hero-birds {
                display: none;
            }

            .hero-wind {
                display: none;
            }

            .hero-leaves {
                display: none;
            }

            .hero-water-glints {
                display: none;
            }

            .hero-sun-glow {
                animation: none !important;
                opacity: 0.7;
            }

            .hero-boat-drift {
                animation: none !important;
                transform: translateX(45vw) !important;
            }

            .hero-boat-img {
                animation: none !important;
            }
        }

        @media (max-width: 1023px) {
        /* На tablet+mobile parallax-Y остаётся ВКЛ для sky/water/park/birds/
        boat (fluid scene movement при скролле), но laptop ЛОКАЕМ:
        laptop-image имеет прозрачные участки в зоне экрана + chroma-key
        бордюры, и любой transform translate3d обнажает гэп между
        laptop'ом и park'ом — заметно как «дрожь» под столом.

        Banner теперь child laptop'а — двигается вместе с ним
        автоматически, отдельный --parallax-y lock не нужен. */
            .hero-prop--laptop {
                --parallax-y: 0px !important;
            }

        /* Листья - десктоп-флёр: на tablet и mobile прячем целиком (мелкий экран, лист уезжает за край + лишние vh-анимации в зоне ресайза URL-бара). */
            .hero-leaves {
                display: none;
            }

        /* .hero-content-inner правила (max-width, padding) живут в
        tablet-only блоке ниже @media (min-width:641) and (max-width:1023),
        а mobile-only — в своём @media (max-width:640). Раньше эти
        правила лежали тут общим блоком ≤1023, но «max-width:100% +
        padding:12vh 6vw» давали слишком широкий glass-card на
        tablet — он наезжал на ноутбук и publish-banner. */

        /* Tablet laptop: прижат к bottom-right edge с -20px overflow
        (раньше bottom:4% → стол визуально «висел» в воздухе с
        видимой park-полосой между низом стола и низом viewport'а).
        Width 56%, right:0 → laptop в правой половине, слева видна
        сцена (park, набережная, дальний город). */
            .hero-prop--laptop {
                right: 0;
                width: 56%;
                bottom: -20px;
            }

        /* Publish-banner на tablet: позиционирование наследуется от base
        (% от laptop prop → центр над экраном, стабильно). Здесь только
        размерные твики — компактнее padding/gap/radius. Channel-иконки
        на tablet скрыты (см. tablet-only блок ниже), поэтому banner
        сводится к тексту «Опубликовано · 1.2 с». */
            .hero-publish-banner {
                padding: 0.4rem 0.6rem;
                gap: 6px;
                border-radius: 10px;
            }

            .hero-publish-banner-text {
                font-size: 11px;
            }

            .hero-publish-banner-channel {
                width: 16px;
                height: 16px;
                border-radius: 4px;
            }

            .hero-publish-banner-channel img,
            .hero-publish-banner-channel svg {
                width: 9px;
                height: 9px;
            }

            .hero-screen-title {
                font-size: clamp(10px, 1.35vw, 12px);
            }

            .hero-screen-body {
                font-size: clamp(9px, 1.1vw, 11px);
                -webkit-line-clamp: 2;
            }

            .hero-bird--far4 {
                display: none;
            }

            .hero-wind-streak--4,
            .hero-wind-streak--5,
            .hero-wind-mote--4,
            .hero-wind-mote--5,
            .hero-wind-mote--6 {
                display: none;
            }

            .hero-glint--4,
            .hero-glint--5 {
                display: none;
            }

            .hero-boat {
                top: 51%;
                height: 4.5%;
            }
        }

        /* ── Tablet ONLY (641-1023) ──
        Glass-card на tablet раньше был max-width:100% и padding:12vh 6vw —
        контент-блок занимал почти всю ширину viewport'а (≈690px на 768
        и ≈865px на 970), наезжая на ноутбук справа и publish-banner
        над ним. Текст body «за который спокойны.» оказывался поверх
        laptop screen'a.

        Теперь:
          max-width clamp(280px, 38vw, 400px) — компактный текстовый
            блок в левой части (на 768 = ~292px, на 970 = ~369px,
            на 1023 = 389→400px), правый край glass-card касается
            laptop left edge (44vw на tablet) без наложения.
          padding-top clamp(72px, calc(64px+3vh), 120px) — поднимаем
            текст выше (раньше 12vh давало ≈92-123px, но на длинных
            tablet'ах текст уезжал слишком низко); теперь стабильно
            72-120px от top секции.
          H1 clamp(1.375rem, 3vw, 1.75rem) — 22-28px (раньше Tailwind
            sm:text-3xl = 30px), чуть меньше = меньше высоты у H1,
            glass-card компактнее в высоту, не наезжает на ноутбук. */
        @media (min-width: 641px) and (max-width: 1023px) and (min-height: 501px) {
        /* align-items: flex-start — переключаем content-overlay с
        вертикального центрирования (default desktop) на «текст идёт
        от top». Без этого padding-top работает внутри центрированного
        блока — glass-card оказывается в середине viewport'а и
        приближается к ноутбуку снизу. С flex-start padding-top
        становится реальным top-offset от секции. */
            .hero-content-overlay {
                align-items: flex-start;
            }

        /* Tablet — лёгкая адаптация (не агрессивное сужение):
          max-width clamp(440, 60vw, 580) — glass-card ~430-550px
            wide, body помещается в 4-5 строк (раньше при 100%
            ширине body было 2-3 строки но glass-card упирался
            в laptop справа; при узком 290 — body разбивалось
            на 10+ строк и glass-card вырастал по высоте,
            наезжая на ноутбук снизу).
          padding-top clamp(80, 64+4vh, 130) — текст чуть выше
            чем default 12vh (на 768 было 92px, теперь 95px,
            разница небольшая; главное — стабильный диапазон).
          H1 clamp(1.5rem, 3vw, 1.75rem) — 24-28px (раньше
            Tailwind sm:text-3xl = 30px), чуть меньше.
          padding lateral 6vw → 1.5rem (24px) — даёт glass-card
            максимально использовать выделенный max-width.

        Композиция: glass-card вверху-слева, laptop внизу-справа,
        разделены большой вертикальной зоной со сценой. Горизонтально
        glass-card right edge может быть правее laptop left edge —
        но они в разных Y-зонах (top vs bottom), визуально не наезжают. */
            .hero-content-inner {
                max-width: clamp(440px, 60vw, 580px);
            /* padding-top на tablet: clamp(96, 64+9vh, 220).
              iPad portrait 768×1024:  64+92=156;
              iPad landscape 970×700:   64+63=127;
              iPad mini 820×1180:       64+106=170;
              iPad Pro 1024×1366:       64+123=187.
            Floor 96 — safety для коротких вьюпортов (раньше тут стоял
            clamp(220, X, 220) — фактически константа 220, что ломало
            ландшафтный смартфон ~306px height: padding-top один съедал
            весь viewport и текст уезжал в зону ноутбука). Теперь
            padding-top честно скейлится по vh, при этом верхняя граница
            220 сохраняется для высоких iPad'ов. */ padding: clamp(96px, calc(64px + 9vh), 220px) 1.5rem 0;
            }

            .hero-fullscreen .hero-h3 {
                font-size: clamp(1.375rem, 2.6vw, 1.5rem);
                line-height: 1.2;
            }

        /* Body-параграф на tablet чуть меньше Tailwind sm:text-base (16px) →
        14px. На узком tablet 16px text в glass-card шириной 430-550
        «давит», 14px вписывается мягче, оставляет больше воздуха. */
            .hero-content-inner p {
                font-size: 0.875rem;
                line-height: 1.55;
            }

        /* Secondary CTA «Как это работает» — скрываем на tablet.
        В HTML стоит «hidden sm:inline-flex» (Tailwind prebuilt не
        содержит lg:inline-flex, поэтому показывать только на desktop
        через Tailwind responsive нельзя). Скрываем через CSS-override
        в tablet-only media-query — на desktop ≥1024 кнопка
        остаётся видна (display: inline-flex от sm:inline-flex). */
            .hero-cta-secondary {
                display: none !important;
            }

        /* Channel-иконки (MAX/TG/VK) в publish-banner — скрываем на tablet
        как на mobile. На узком tablet они растягивают banner до >35%
        ширины экрана, утяжеляют композицию. Сам факт публикации
        передаётся текстом «Опубликовано» + зелёной галочкой слева. */
            .hero-publish-banner-channels {
                display: none;
            }
        }

        @media (max-width: 640px) {
        /* Mobile content-overlay: flex-start (текст идёт от top).
        padding-top через clamp адаптивен к высоте viewport'а:
          min  112px — safety floor для коротких устройств,
                        ~48px воздуха под navbar (64+48);
          calc(64px + 9vh) — base: navbar + 9% viewport'а воздуха;
          max 200px — ceiling для высоких устройств (Pro Max,
                        Pixel 7 Pro), чтобы текст не уезжал в
                        центр и не наезжал на ноутбук.

        Эффект: текст-блок живёт в верхней трети, между ним и
        ноутбуком всегда есть «воздушная» зона со сценой
        (небо/вода/перила). */
        /* Текст-блок прижат НИЗОМ к линии перил (~66% высоты) и растёт
        ВВЕРХ — независимо от высоты карточки. Это ключ к корректной
        работе на узких экранах: там текст переносится сильнее и
        карточка ВЫШЕ (на 265px ~317px против ~240px на 375px), но её
        НИЗ всё равно остаётся у перил, а верх просто поднимается.
        Раньше через padding-top (фикс. высота карточки в константе)
        на узких карточка «вылезала» ниже перил.

        Механика:
          overlay bottom:34% → регион overlay = верх..66% (линия перил);
          align-items:flex-end → карточка прижата к НИЗУ региона (перила);
          padding-bottom (clamp) → зазор над перилами.
        На очень узких/коротких карточка растёт к navbar; в крайнем
        случае упирается в него (безвыходная ситуация) — overflow
        секции скрывает возможный выход за верх. */
            .hero-content-overlay {
                align-items: flex-end;
            /* bottom = max(34%, 48vw) — низ текста прижат к тому, что ВЫШЕ:
              34%  — линия перил (66% от верха) — для узких/обычных phone;
              48vw — верх ноутбука (laptop width:100% × aspect 0.48) — на
                     ШИРОКИХ phone (590-640px) ноутбук становится таким
                     большим, что его верх поднимается выше перил; тогда
                     текст садится НАД ноутбуком, а не на него.
            Так overlap с ноутбуком исключён на всём mobile-диапазоне
            без смены брейкпоинта. */ bottom: max(34%, 48vw);
            }

            .hero-content-inner {
                padding: 0 1.1rem clamp(10px, 2.4vh, 26px);
            }

        /* H1 на mobile: уменьшаем относительно desktop ladder. Tailwind
        text-2xl даёт фиксированные 24px — на узких phone (320-360)
        это занимает много места и ломается на 4 строки. Через
        clamp(17px, 5vw, 22px) размер пропорционален ширине:
          320: 16 → floor 17px;
          375: 18.75px;
          414: 20.7px;
          440+: 22px (ceil).
        Специфичность .hero-fullscreen .hero-h3 (0,2,0) перебивает
        Tailwind .text-2xl (0,1,0) без !important. font-size класса
        text-2xl снимается, line-height задан inline в html. */
            .hero-fullscreen .hero-h3 {
                font-size: clamp(1.0625rem, 5vw, 1.375rem);
                line-height: 1.15;
            }

        /* Laptop prop на mobile: width 100% — стол занимает всю ширину
        viewport'а, дальше прижат к ПРАВОМУ нижнему углу. Bottom:-20px
        (вместо -6) — laptop image «уходит» за нижний край с запасом,
        чтобы не образовался гэп между низом prop'а и нижней границей
        viewport'а (был виден разрыв-полоса под столом — артефакт
        mismatch между bottom prop'а и parent'ом). */
            .hero-prop--laptop {
                bottom: -20px;
                width: 100%;
                right: 0;
                left: auto;
            }

        /* Mobile-вариант экрана ноутбука. Вместо обрезки заголовка
        многоточием — СЖИМАЕМ фото, чтобы заголовок поместился
        полностью в 2 строки (так показывается больше текста):

          image  flex:0 0 42% — фото компактное (было 60%), отдаёт
                 место заголовку;
          title  до 2 строк (-webkit-line-clamp:2), flex:1 1 auto —
                 занимает оставшееся место; 2 строки вмещают полный
                 заголовок ниш (≤27 симв.) при ширине экрана ≥111px;
          body   скрыт (на таком экране нечитаем).

        Проверка высоты: screen 81px (375) → content 71 → image 30 +
        gap 3 + title 2 строки (~29) = 62 < 71, влезает с запасом.
        На 320 (screen 69): image 25 + gap 3 + title (~25) = 53 < 59. */
            .hero-screen-image {
                flex: 0 0 42%;
                min-height: 0;
            }

            .hero-screen-title {
                font-size: clamp(9.5px, 2.7vw, 11.5px);
                line-height: 1.28;
                white-space: normal;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                flex: 1 1 auto;
            }

            .hero-screen-body {
                display: none;
            }

        /* Publish-banner на mobile: позиционирование наследуется от base
        (центр над laptop-screen, % от laptop prop → стабильно при
        resize). Здесь только компактные размеры. Иконки 3-х каналов
        скрыты — на узком viewport они растягивали banner; остаётся
        только текст «Опубликовано · 1.2 с». */
        /* На mobile banner чуть ШИРЕ экрана (42% laptop вместо 34.7%) —
        центрирован над экраном (translateX из base), но с запасом по
        бокам, чтобы текст «Опубликовано · 1.2 с» влезал комфортно при
        читаемом шрифте. (Случай 320px — отдельная задача.) */
            .hero-publish-banner {
                width: 42%;
                padding: 0.3rem 0.5rem;
                gap: 4px;
                border-radius: 9px;
            }

            .hero-publish-banner-text {
                font-size: 10.5px;
            }

            .hero-publish-banner-channels {
                display: none;
            }

        /* Shift фоновых слоёв сцены при перезагрузке — единственный
        рандомизированный элемент композиции на mobile (laptop всегда
        справа). hero-side--right: object-position 78% — показываем
        ПРАВУЮ часть source-image (дальний горизонт: город, открытое
        небо, лес у дальнего берега). hero-side--left: 22% — ЛЕВАЯ
        часть source (foreground: деревья, цветы, кусты, park-flora).

        Эффект: при каждой перезагрузке открывается чуть другой кадр
        сцены — посетителю не кажется что страница «застряла» на
        одной картинке. Laptop при этом стабилен (всегда справа), что
        держит consistency бренда (не «прыгает» с экрана на экран). */
            html.hero-side--right .hero-bg-layer--sky > img,
            html.hero-side--right .hero-bg-layer--water > img {
                object-position: 78% 50%;
            }

            html.hero-side--right .hero-bg-layer--park > img {
                object-position: 78% 72%;
            }

            html.hero-side--left .hero-bg-layer--sky > img,
            html.hero-side--left .hero-bg-layer--water > img {
                object-position: 22% 50%;
            }

            html.hero-side--left .hero-bg-layer--park > img {
                object-position: 22% 72%;
            }

            .hero-bird--far3 {
                display: none;
            }

            .hero-bird--far2 {
                height: 1.6%;
            }

            .hero-wind {
                display: none;
            }

            .hero-leaves {
                display: none;
            }

            .hero-sun-glow,
            .hero-water-glints {
                display: none;
            }

            .hero-boat {
                top: 53%;
                height: 3.6%;
                min-height: 18px;
            }
        }

        /* ── Landscape phone (any width, height ≤ 500) ──
        Ландшафтный смартфон (iPhone Pro Max 932×430, iPhone 13 844×390,
        Pixel 7 Pro 915×412, Samsung Galaxy S24 854×393, узкие 568×320,
        и т.п.). У этого режима ДВА фундаментальных отличия от любых других:
          1. Высота КРИТИЧЕСКИ мала (300-450) — стекать вертикально как в
             портрете невозможно: текст-блок + ноутбук физически не помещаются;
          2. Ширина ВЕЛИКА (568-960) — широкоформатный laptop:100% становится
             огромным (812×450), а glass-card на полную ширину выглядит как
             баннер, а не как «карточка».

        Поэтому композиция здесь УНИКАЛЬНАЯ: side-by-side компакт, но с
        МОБИЛЬНЫМ визуальным языком (лёгкое стекло, тонкие отступы, мелкие
        шрифты). Текст — слева ~44vw, ноутбук — справа ~50%, оба вертикально
        центрированы, всё помещается в viewport БЕЗ скролла. min-height:0
        отключает универсальный floor 480, иначе ноутбук уезжает за фолд.

        MQ покрывает ВЕСЬ диапазон landscape mobile (без min-width:641),
        чтобы узкие 568-640 landscape тоже получили корректную композицию
        вместо «портретного mobile с растянутой на всю ширину карточкой»
        (max-width:640 portrait MQ туда не подходит: его bottom:max(34%,48vw)
        на широком ландшафте даёт значение больше высоты viewport'а и
        overlay-регион схлопывается).

        Tablet-only MQ выше (min-width:641, max-width:1023, min-height:501)
        landscape phone уже исключает по высоте, его правила не доезжают.
        Tablet-портрет 768×1024 не задеваем (height 1024 > 500). */
        @media (orientation: landscape) and (max-height: 500px) {
            .hero-fullscreen {
                min-height: 0;
            }

        /* Glass-card: облегчённые параметры мобильного портрета (легче blur, прозрачнее, меньше padding/radius) — копируем, чтобы перебить tablet/desktop наследование. */
            .hero-glass-card {
                background: radial-gradient(85% 60% at 100% 0%, rgba(255, 225, 200, 0.10) 0%, transparent 55%),
                linear-gradient(135deg,
                        rgba(255, 255, 255, 0.10) 0%,
                        rgba(255, 255, 255, 0.04) 100%);
                -webkit-backdrop-filter: blur(8px) saturate(120%);
                backdrop-filter: blur(5px) saturate(108%);
                border: 1px solid rgba(255, 255, 255, 0.30);
                border-radius: 14px;
                padding: 0.75rem 0.95rem 0.8rem;
                box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.30) inset,
                0 8px 18px -14px rgba(15, 23, 42, 0.10);
            }

        /* Overlay: полная высота секции, ВЕРТИКАЛЬНОЕ выравнивание flex-start
        (не center!) — на коротком ландшафте 306-360px центрирование
        прячет верх карточки под fixed-navbar (h-16=64px), пользователь
        видит только хвост H1. Flex-start + padding-top кратный navbar'у
        гарантирует, что заголовок всегда стартует ПОД navbar.
        bottom:0 нужен ОТДЕЛЬНО, иначе мобильный портрет (max-width:640)
        переопределит на max(34%,48vw), и overlay-регион схлопнется. */
            .hero-content-overlay {
                align-items: flex-start;
                bottom: 0;
            }

        /* padding-top через clamp(68, 56+4vh, 96): на 306 высоте даёт 68
        (минимальный safety зазор под navbar 64 + 4px воздуха), на 430
        высоте — 73, на 500 — 76. Карточка стабильно начинается ниже
        navbar, не «ныряет» под него при любой высоте viewport'а. */
            .hero-content-inner {
                max-width: clamp(240px, 44vw, 380px);
                padding: clamp(68px, calc(56px + 4vh), 96px) 1rem 0 4vw;
            }

        /* ДИНАМИЧЕСКИЙ скейлинг шрифтов по vh — на коротком viewport
        (300-330px) H1 и body автоматически становятся мельче, чтобы
        карточка целиком умещалась в доступную высоту (vp - padding-top).

        H1 clamp(0.8125rem, 4.4vh, 1.125rem):
          306 → 13.46 → 13.46px (~флор+small);
          360 → 15.84;
          430 → 18.92 → clamp потолок 18px (1.125rem).

        Body clamp(0.6875rem, 2.4vh+0.4vw, 0.8125rem):
          306 + 811 → 7.34+3.24 = 10.58 → флор 11px;
          360 + 725 → 8.64+2.9 = 11.54;
          430 + 932 → 10.32+3.73 = 14.05 → потолок 13px.

        Эффект: на узких ландшафтах текст плотнее (всё влезает без
        обрезки), на «нормальных» landscape phone 430×932 — комфортный
        размер. line-height снижен (1.13/1.4), margin'ы ужаты. */
            .hero-fullscreen .hero-h3 {
                font-size: clamp(0.8125rem, 4.4vh, 1.125rem);
                line-height: 1.13;
                margin-bottom: 0.3rem;
            }

            .hero-content-inner p {
                font-size: clamp(0.6875rem, calc(2.4vh + 0.4vw), 0.8125rem);
                line-height: 1.4;
                margin-bottom: 0.55rem;
            }

            .hero-cta-primary {
                padding: clamp(0.35rem, 1vh, 0.55rem) 1rem;
                font-size: clamp(0.6875rem, 2.2vh, 0.8125rem);
            }

            .hero-cta-secondary {
                display: none !important;
            }

        /* Ноутбук — снизу-справа, 50% ширины. На landscape phone (например, 811×306) это даёт ~405×222 — visible зона ≈210px высоты из 306, остаётся ~96px вверху + 96px по ширине слева под текст-карточку. Bottom:-12 — лёгкий overflow за нижний край (как в desktop), чтобы низ стола не отрывался от края viewport'а. */
            .hero-prop--laptop {
                width: 50%;
                bottom: -12px;
                right: 0;
                left: auto;
            }

            .hero-publish-banner-channels {
                display: none;
            }

        /* Декор сцены: на коротком/широком ландшафте те же причины что и в портретном mobile — сцена должна быть тихим фоном за текстом и ноутбуком, а не пытаться удивлять птицами/листьями/бликами на 306px высоты. */
            .hero-sun-glow,
            .hero-water-glints,
            .hero-wind,
            .hero-leaves {
                display: none;
            }

            .hero-bird--far3,
            .hero-bird--far2,
            .hero-bird--far4 {
                display: none;
            }
        }


        .orb-stage {
            position: relative;
        }

        .orb-panel {
            position: static;
            width: 100%;
            max-width: 26rem;
            margin: 0 auto;
            text-align: center;
        }

        .orb-panel-inner {
            animation: orb-in .46s cubic-bezier(.22, .61, .36, 1);
        }

        @keyframes orb-in {
            0% {
                opacity: 0;
                transform: translateY(-14px) scale(.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .orb-panel-inner.orb-leaving {
            animation: orb-out .26s ease forwards;
        }

        @keyframes orb-out {
            0% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            100% {
                opacity: 0;
                transform: translateY(18px) scale(.975);
            }
        }

        .orb-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
        }

        .orb-card {
            display: flex;
            justify-content: center;
        }

        .orb-card .ct-stack {
            transform: scale(.84);
            transform-origin: top center;
            margin: -.4rem 0 -.6rem;
        }

        .orb-card .ct-float,
        .orb-card .ct-behind {
            display: none;
        }

        .orb-card .ct-card {
            position: relative;
            margin: 0 auto;
        }

        .orb-role {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            font-size: .72rem;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
            background: linear-gradient(135deg, #4f46e5, #7c3aed 55%, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .orb-role-dot {
            width: .4rem;
            height: .4rem;
            border-radius: 9999px;
            background: linear-gradient(135deg, #4f46e5, #a855f7);
            flex: 0 0 auto;
            box-shadow: 0 0 0 .22rem rgba(124, 58, 237, .12);
        }

        .orb-count {
            font-size: .66rem;
            font-weight: 800;
            letter-spacing: .04em;
            color: #b9bed0;
            font-variant-numeric: tabular-nums;
        }

        .orb-count b {
            color: #6366f1;
            font-weight: 900;
        }

        .orb-title {
            font-size: 1.3rem;
            line-height: 1.18;
            font-weight: 900;
            letter-spacing: -.02em;
            color: #111827;
            margin-bottom: .5rem;
        }

        .orb-desc {
            font-size: .875rem;
            line-height: 1.55;
            color: #6b7280;
            max-width: 24rem;
            margin: 0 auto;
        }

        .orb-doing {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            margin-top: 1.3rem;
            font-size: .72rem;
            font-weight: 700;
            color: #4f46e5;
            background: linear-gradient(135deg, #eef2ff, #f5f3ff);
            border: 1px solid #e0e7ff;
            padding: .34rem .8rem;
            border-radius: 9999px;
        }

        .orb-doing svg {
            width: .9rem;
            height: .9rem;
            flex: 0 0 auto;
        }

        .orb-doing i {
            width: .42rem;
            height: .42rem;
            border-radius: 9999px;
            flex: 0 0 auto;
            background: #7c3aed;
            box-shadow: 0 0 0 .16rem rgba(124, 58, 237, .14);
        }

        .orb-btn {
            position: relative;
            width: 3.25rem;
            height: 3.25rem;
            border-radius: 9999px;
            border: 1px solid #eceef7;
            background: linear-gradient(180deg, #ffffff, #f8f9fd);
            color: #c2c8f0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
            box-shadow: 0 6px 14px -10px rgba(79, 70, 229, .35);
            transform: scale(var(--orb-s, 1));
            transition: color .5s ease, border-color .5s ease, background .5s ease,
            box-shadow .5s ease, transform 1.1s cubic-bezier(.45, .05, .2, 1);
        }

        .orb-btn svg {
            width: 1.35rem;
            height: 1.35rem;
        }

        .orb-btn svg .dt-line {
            fill: currentColor;
        }

        .orb-btn svg .dt-fill {
            fill: #312e81;
            opacity: 0;
            transition: opacity .5s ease;
        }

        .orb-btn.is-active svg .dt-fill {
            opacity: .3;
        }

        .orb-btn:hover {
            color: #6366f1;
            border-color: #c7d2fe;
        }

        .orb-btn.is-active {
            color: #fff;
            border-color: transparent;
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 55%, #a855f7 100%);
            box-shadow: 0 16px 30px -10px rgba(79, 70, 229, .55), 0 0 0 1px rgba(124, 58, 237, .2);
            transform: scale(calc(var(--orb-s, 1) * 1.18)) translateY(-7.6%);
        }

        .orb-btn.is-active::after {
            content: "";
            position: absolute;
            inset: -.55rem;
            border-radius: 9999px;
            background: radial-gradient(closest-side, rgba(124, 58, 237, .26), transparent 72%);
            z-index: -1;
            animation: orb-halo 3.2s ease-in-out infinite;
        }

        @keyframes orb-halo {
            0%, 100% {
                transform: scale(1);
                opacity: .5;
            }
            50% {
                transform: scale(1.16);
                opacity: .78;
            }
        }

        .orb-btn:focus-visible {
            outline: none;
        }

        .orb-btn:focus-visible::after {
            content: "";
            position: absolute;
            inset: -.32rem;
            border-radius: 9999px;
            box-shadow: 0 0 0 3px rgba(124, 58, 237, .4);
        }

        .orbit-ring {
            display: none;
            position: absolute;
            top: -2rem;
            left: 50%;
            width: 62rem;
            height: calc(62rem + 57px);
            transform: translateX(-50%) scale(1.12);
            transform-origin: top center;
            pointer-events: none;
            -webkit-mask: linear-gradient(180deg, #000 0%, #000 50%, transparent 55%);
            mask: linear-gradient(180deg, #000 0%, #000 50%, transparent 55%);
        }

        .orbit-dial {
            position: absolute;
            inset: 0;
            transform: rotate(0deg);
            transition: transform 1.1s cubic-bezier(.45, .05, .2, 1);
        }

        .orbit-ticks, .orbit-glow {
            position: absolute;
            inset: 0;
            border-radius: 9999px;
        }

        .orbit-ticks {
            pointer-events: none;
        }

        .orbit-ticks svg {
            width: 100%;
            height: 100%;
            display: block;
            overflow: visible;
        }

        .orbit-tick {
            stroke: rgba(99, 102, 241, .30);
            stroke-width: 1.4;
            stroke-linecap: round;
        }

        .orbit-glow {
            inset: 26%;
            background: radial-gradient(closest-side, rgba(124, 58, 237, .1), rgba(79, 70, 229, .035) 60%, transparent 76%);
            filter: blur(10px);
        }

        .orbit-orbs {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .orbit-orb {
            position: absolute;
            top: 50%;
            left: 50%;
            margin: -1.5rem;
            width: 3rem;
            height: 3rem;
            transition: opacity 1.1s ease;
        }

        .orbit-spoke {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 2px;
            height: 58px;
            margin-left: -1px;
            border-radius: 9999px;
            background: linear-gradient(180deg, #6d4ae6 0%, #6d4ae6 62%, rgba(124, 58, 237, 0) 100%);
            transition: opacity 1.1s ease, width .5s ease, background .5s ease;
        }

        .orbit-spoke.is-active {
            width: 2.6px;
            margin-left: -1.3px;
            background: linear-gradient(180deg, #7c3aed 0%, #7c3aed 66%, rgba(124, 58, 237, 0) 100%);
        }

        .orbit-orb-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 1.1s cubic-bezier(.45, .05, .2, 1);
            pointer-events: auto;
        }

        .orbit-orb .orb-btn {
            width: 100%;
            height: 100%;
        }

        .orbit-loop {
            display: none;
            position: absolute;
            left: 50%;
            bottom: 2.5rem;
            transform: translateX(-50%);
            z-index: 2;
        }

        .orb-top {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 7rem;
            margin-bottom: 1.5rem;
        }

        .orb-dial-m {
            position: relative;
            width: min(22rem, 92vw);
        }

        .orb-dial-svg {
            width: 100%;
            aspect-ratio: 360 / 76;
            height: auto;
            display: block;
            overflow: hidden;
            -webkit-mask: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
            mask: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
        }

        .orb-dial-tick {
            stroke: rgba(99, 102, 241, .30);
            stroke-width: 1.5;
            stroke-linecap: round;
        }

        .orb-dial-rot {
            transform-box: view-box;
            transform-origin: 180px 342px;
            transition: transform 1.1s cubic-bezier(.45, .05, .2, 1);
        }

        .orb-orbit-m {
            position: absolute;
            left: 50%;
            top: 0;
            width: 0;
            height: 0;
            pointer-events: none;
            transition: transform 1.1s cubic-bezier(.45, .05, .2, 1);
        }

        .orb-m-orb {
            position: absolute;
            left: 0;
            top: 0;
            width: 4.25rem;
            height: 4.25rem;
            margin: -2.125rem;
            transition: opacity 1.1s ease;
        }

        .orb-m-spoke {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 2px;
            margin-left: -1px;
            border-radius: 9999px;
            background: linear-gradient(180deg, #6d4ae6 0%, #6d4ae6 62%, rgba(124, 58, 237, 0) 100%);
            transition: opacity 1.1s ease, width .5s ease, background .5s ease;
        }

        .orb-m-spoke.is-active {
            width: 3.4px;
            margin-left: -1.7px;
            background: linear-gradient(180deg, #7c3aed 0%, #7c3aed 66%, rgba(124, 58, 237, 0) 100%);
        }

        .orb-m-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 1.1s cubic-bezier(.45, .05, .2, 1);
        }

        .orb-m-orb .orb-btn {
            width: 100%;
            height: 100%;
        }

        .orb-m-orb .orb-btn svg {
            width: 1.75rem;
            height: 1.75rem;
        }

        .orb-stepper {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: .5rem;
            margin-top: 1.6rem;
        }

        .orb-step {
            position: relative;
            width: 2.1rem;
            height: 2.1rem;
            border-radius: 9999px;
            border: 1px solid #e5e7eb;
            background: #fff;
            color: #9ca3af;
            font-size: .72rem;
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
            transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
        }

        .orb-step.is-done {
            background: #eef2ff;
            color: #6366f1;
            border-color: #c7d2fe;
        }

        .orb-step.is-active {
            color: #fff;
            border-color: transparent;
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            box-shadow: 0 6px 16px -4px rgba(79, 70, 229, .5);
        }

        .orb-step:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(124, 58, 237, .35);
        }

        .ct-mock-dot {
            width: .4rem;
            height: .4rem;
            border-radius: 9999px;
            background: #7c3aed;
            display: inline-block;
            flex: 0 0 auto;
        }

        .ct-ch {
            width: 1.5rem;
            height: 1.5rem;
            border-radius: .45rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            flex: 0 0 auto;
            overflow: hidden;
            box-shadow: 0 3px 8px -3px rgba(17, 24, 39, .35);
        }

        .ct-ch svg {
            width: .95rem;
            height: .95rem;
        }

        .ct-ch img {
            width: .96rem;
            height: .96rem;
            object-fit: contain;
            display: block;
        }

        .ct-stack {
            position: relative;
            width: 100%;
            max-width: 23rem;
            margin: 0 auto;
            padding: 1.7rem .4rem 1.4rem;
        }

        .ct-card {
            position: relative;
            z-index: 2;
            text-align: left;
            min-height: 13.5rem;
            display: flex;
            flex-direction: column;
            background: linear-gradient(180deg, #ffffff, #fbfbfe);
            border: 1px solid #ededf6;
            border-radius: 1.35rem;
            padding: 1.1rem 1.2rem 1.2rem;
            box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset,
            0 0 0 1px rgba(79, 70, 229, .025),
            0 30px 55px -28px rgba(79, 70, 229, .32),
            0 12px 26px -18px rgba(17, 24, 39, .14);
        }

        .ct-card::before {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 40%;
            border-radius: 1.35rem 1.35rem 0 0;
            background: linear-gradient(180deg, rgba(99, 102, 241, .045), transparent);
            pointer-events: none;
        }

        .ct-card-h {
            position: relative;
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            margin-bottom: .9rem;
            padding-bottom: .75rem;
            border-bottom: 1px solid #f0f1f8;
        }

        .ct-card > .ct-card-h ~ * {
            flex: 1 1 auto;
            min-height: 0;
        }

        .ct-card > .ct-card-h ~ .flex.flex-col {
            justify-content: space-evenly;
        }

        .ct-card-t {
            flex: 1 1 auto;
            min-width: 0;
            position: relative;
            padding-left: .65rem;
        }

        .ct-card-t::before {
            content: "";
            position: absolute;
            left: 0;
            top: .14rem;
            bottom: .14rem;
            width: 3px;
            border-radius: 9999px;
            background: linear-gradient(180deg, #6366f1, #7c3aed);
        }

        .ct-card-title {
            display: block;
            font-size: .86rem;
            font-weight: 800;
            letter-spacing: -.012em;
            color: #1f2937;
            line-height: 1.2;
        }

        .ct-card-sub {
            display: block;
            font-size: .63rem;
            font-weight: 600;
            color: #9aa1b1;
            margin-top: .12rem;
        }

        .ct-float {
            position: absolute;
            z-index: 3;
            background: rgba(255, 255, 255, .94);
            -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
            border: 1px solid #ece9fb;
            border-radius: 1rem;
            padding: .6rem .72rem;
            box-shadow: 0 24px 42px -16px rgba(79, 70, 229, .45),
            0 6px 14px -8px rgba(17, 24, 39, .2);
        }

        .ct-behind {
            position: absolute;
            z-index: 1;
            background: #fff;
            border: 1px solid #eef0f8;
            border-radius: .9rem;
            padding: .5rem .75rem .85rem;
            box-shadow: 0 16px 30px -22px rgba(79, 70, 229, .4);
        }

        .ct-ring {
            position: relative;
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .ct-ring span {
            position: absolute;
            font-weight: 900;
            color: #4f46e5;
        }

        .ct-bar {
            position: relative;
            height: .32rem;
            border-radius: 9999px;
            background: #eef2ff;
            overflow: hidden;
        }

        .ct-bar > i {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            border-radius: inherit;
            background: linear-gradient(90deg, #6366f1, #7c3aed);
        }

        .ct-tag {
            display: inline-flex;
            align-items: center;
            gap: .2rem;
            font-size: .54rem;
            font-weight: 700;
            letter-spacing: .03em;
            color: #6b7280;
            background: #f4f5f9;
            border: 1px solid #e9eaf1;
            padding: .08rem .35rem;
            border-radius: .35rem;
            flex: 0 0 auto;
        }

        .ct-score {
            flex: 0 0 auto;
            font-size: .6rem;
            font-weight: 800;
            color: #4f46e5;
            background: #eef2ff;
            border: 1px solid #e0e7ff;
            padding: .05rem .4rem;
            border-radius: 9999px;
            font-variant-numeric: tabular-nums;
        }

        .ct-dupe {
            flex: 0 0 auto;
            font-size: .55rem;
            font-weight: 700;
            color: #9ca3af;
            background: #f3f4f6;
            border: 1px solid #e5e7eb;
            padding: .05rem .4rem;
            border-radius: 9999px;
        }

        .ct-ok {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            gap: .2rem;
            font-size: .56rem;
            font-weight: 700;
            color: #059669;
            background: #ecfdf5;
            border: 1px solid #a7f3d0;
            padding: .05rem .4rem;
            border-radius: 9999px;
            font-variant-numeric: tabular-nums;
        }

        .ct-doc {
            display: inline-flex;
            align-items: center;
            gap: .25rem;
            font-size: .56rem;
            font-weight: 700;
            color: #4f46e5;
            background: #fff;
            border: 1px solid #e0e7ff;
            padding: .12rem .4rem;
            border-radius: .4rem;
            box-shadow: 0 2px 6px -3px rgba(79, 70, 229, .45);
        }

        .ct-doc svg {
            width: .6rem;
            height: .6rem;
            flex: 0 0 auto;
        }

        .ct-ins {
            border-radius: .2rem;
            padding: 0 .15rem;
            background: linear-gradient(180deg, #eef2ff, #e7e9ff);
            color: #4f46e5;
            font-weight: 600;
            box-shadow: inset 0 -.35rem 0 rgba(124, 58, 237, .1);
        }

        .ct-bars {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: .3rem;
            padding: 0 .05rem .35rem;
            border-bottom: 1px solid #eef0f7;
        }

        .ct-bars > i {
            flex: 0 0 1.5rem;
            border-radius: .35rem .35rem 0 0;
            display: block;
        }

        @media (min-width: 1024px) {
            #contour .orb-stage {
                min-height: 36rem;
            }

            #contour .orbit-ring {
                display: block;
            }

            #contour .orbit-loop {
                display: block;
            }

            #contour .orb-top, #contour .orb-stepper {
                display: none;
            }

            #contour .orb-panel {
                position: absolute;
                top: 10.5rem;
                left: 50%;
                transform: translateX(-50%);
                width: 32rem;
                max-width: 32rem;
                z-index: 4;
            }

            #contour .orb-eyebrow {
                margin-top: 1.6rem;
            }

            #contour .orb-desc {
                max-width: 30rem;
            }

            #contour .orb-card .ct-stack {
                transform: scale(.86);
            }

            #contour .orb-doing {
                margin-top: .9rem;
            }

            #contour .orb-btn.is-active {
                transform: scale(calc(var(--orb-s, 1) * 1.18)) translateY(-17%);
            }

            #contour .orb-panel::before {
                content: "";
                position: absolute;
                left: 50%;
                top: -2rem;
                transform: translateX(-50%);
                width: 35rem;
                height: 24rem;
                background: radial-gradient(ellipse 55% 50% at 50% 32%, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .82) 46%, transparent 78%);
                z-index: -1;
                pointer-events: none;
            }
        }

        @media (max-width: 1023px) {
            #contour .orbit-ring {
                display: none;
            }

            #contour .orb-card {
                display: none;
            }

            #contour .orb-title {
                margin-top: 1rem;
                margin-bottom: .7rem;
            }

            #contour .orb-desc {
                line-height: 1.6;
            }

            #contour .orb-doing {
                margin-top: 1.6rem;
            }

            #contour .orb-stepper {
                margin-top: 2rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .orb-panel-inner,
            .orb-btn.is-active::after {
                animation: none;
            }

            .orb-btn, .orbit-dial, .orbit-orb, .orbit-orb-inner, .orbit-spoke, .orb-dial-rot,
            .orb-orbit-m, .orb-m-orb, .orb-m-inner, .orb-m-spoke {
                transition: none;
            }
        }

        .ao-h2 .ao-cap-m { display: none; }

        @media (max-width: 640px) {
            p.text-lg.text-gray-500 {
                font-size: 15px;
                line-height: 1.5;
            }

            .ao-h2 .ao-pre { display: none; }
            .ao-h2 .ao-cap-d { display: none; }
            .ao-h2 .ao-cap-m { display: inline; }
        }

/* ============ блок 2 (был inline, строка 5641) ============ */
  .tld{--ink:#1d1444;--ink-soft:#5c4f86;--ind:#5b57ea;--vio:#7c3aed;--vio2:#a855f7;--pink:#d16bd6;
    --glass-brd:rgba(255,255,255,.92);--ease:cubic-bezier(.2,.75,.28,1);
    position:relative;padding:4.5rem 1rem 5rem;overflow:hidden;
    background:linear-gradient(180deg,#ffffff 0%,#f7f6fc 55%,#ffffff 100%);
    font-family:'Manrope',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif}
  .tld *{box-sizing:border-box}
  .tld-wrap{max-width:1280px;margin:0 auto;padding:0 16px}
  .tld-head{text-align:center;max-width:820px;margin:0 auto 2.2rem}
  .tld-eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:11px;font-weight:700;
    letter-spacing:.05em;text-transform:uppercase;color:#4f46e5;
    background:#eef2ff;border:1px solid #e0e7ff;border-radius:999px;padding:4px 12px}
  .tld-eyebrow .pip{width:6px;height:6px;border-radius:50%;background:#4f46e5}
  .tld-h2{font-size:clamp(28px,4vw,42px);line-height:1.06;font-weight:900;letter-spacing:-.03em;
    color:var(--ink);margin:16px 0 12px}
  .tld-grad{background:linear-gradient(120deg,var(--ind),var(--vio) 55%,var(--vio2));
    -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
  .tld-desc{font-size:18px;color:#6b7280;margin:0 auto;max-width:672px;line-height:1.55;font-weight:400}
  .tld-stage{position:relative;height:620px;overflow:visible}
  .tld-cglow{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:520px;height:520px;
    background:radial-gradient(circle,rgba(124,58,237,.14),transparent 68%);pointer-events:none;z-index:1}
  .tld-darkaura{position:absolute;top:4%;bottom:4%;left:50%;right:0;z-index:1;pointer-events:none;opacity:.28;
    transition:opacity .5s ease;background:radial-gradient(58% 76% at 12% 50%,rgba(17,11,44,.36),rgba(17,11,44,0) 70%)}
  .tld-stage.hovR .tld-darkaura{opacity:.66}
  .tld-stage.hovL .tld-darkaura{opacity:.14}
  .tld-lightaura{position:absolute;top:4%;bottom:4%;left:0;right:50%;z-index:1;pointer-events:none;opacity:.3;
    transition:opacity .5s ease;background:radial-gradient(58% 76% at 88% 50%,rgba(124,58,237,.26),rgba(124,58,237,0) 70%)}
  .tld-stage.hovL .tld-lightaura{opacity:.85}
  .tld-stage.hovR .tld-lightaura{opacity:.12}
  .tld-half{position:absolute;top:0;bottom:0;width:50%;overflow:visible;z-index:2}
  .tld-half.l{left:0}.tld-half.r{left:50%}
  .tld-tiles{position:absolute;inset:0;overflow:hidden;pointer-events:none;z-index:2}
  .tld-txt{position:absolute;top:50%;transform:translateY(-50%);max-width:242px;z-index:9}
  .tld-half.l .tld-txt{left:6px;max-width:270px}
  .tld-half.r .tld-txt{right:6px;max-width:270px;text-align:right;margin-left:auto}
  .tld-kick{display:inline-block;font-weight:800;font-size:11px;letter-spacing:.2em;text-transform:uppercase;margin-bottom:12px}
  .tld-half.l .tld-kick{color:var(--vio)}
  .tld-half.r .tld-kick{color:#2a2160}
  .tld-title{margin:0 0 13px;font-weight:900;font-size:clamp(26px,3.2vw,36px);line-height:1.18;letter-spacing:-.025em;padding-bottom:.12em;
    background:linear-gradient(100deg,var(--ind),var(--vio));-webkit-background-clip:text;background-clip:text;color:transparent}
  .tld-half.r .tld-title{background:linear-gradient(120deg,#1d1444,#4b3aa8);-webkit-background-clip:text;background-clip:text}
  .tld-lead{margin:0 0 22px;font-weight:500;font-size:15px;line-height:1.5;color:var(--ink-soft)}
  .tld-half.r .tld-lead{margin-left:auto}
  .tld-btn{display:inline-flex;align-items:center;justify-content:center;gap:7px;padding:13px 22px;border-radius:15px;
    color:#fff;font-weight:800;font-size:14px;letter-spacing:.01em;text-decoration:none;cursor:pointer;
    background:linear-gradient(135deg,#4f46e5,#7c3aed 62%,#d16bd6);
    box-shadow:0 16px 30px -12px rgba(124,58,237,.75),inset 0 1px 0 rgba(255,255,255,.28);transition:transform .3s var(--ease),box-shadow .3s ease}
  .tld-btn .arr{flex:none;transition:transform .3s var(--ease)}
  .tld-btn:hover{transform:translateY(-2px);box-shadow:0 20px 38px -12px rgba(124,58,237,.9),inset 0 1px 0 rgba(255,255,255,.28)}
  .tld-btn:hover .arr{transform:translateX(3px)}
  .tld-half.r .tld-btn{background:#341d65;border:1px solid rgba(178,150,255,.20);color:#efe8ff;box-shadow:0 16px 30px -12px rgba(13,8,36,.75),0 0 20px -10px rgba(124,58,237,.45)}
  .tld-half.r .tld-btn:hover{box-shadow:0 22px 40px -12px rgba(13,8,36,.9),0 0 28px -8px rgba(124,58,237,.6),inset 0 1px 0 rgba(255,255,255,.12)}
  .tld-spine{position:absolute;left:50%;top:3%;bottom:3%;width:3px;z-index:8;transform:translateX(-50%) scaleY(.14);
    transform-origin:center;transition:transform 1s var(--ease);border-radius:3px;
    background:linear-gradient(180deg,transparent,rgba(168,85,247,.95) 14%,rgba(91,87,234,.95) 50%,rgba(124,58,237,.95) 68%,rgba(209,107,214,.9) 86%,transparent)}
  .tld-spine::before{content:"";position:absolute;left:50%;top:0;bottom:0;width:26px;transform:translateX(-50%);
    filter:blur(11px);background:linear-gradient(180deg,transparent,rgba(124,58,237,.4) 30%,rgba(168,85,247,.5) 70%,transparent)}
  .tld-spine::after{content:"";position:absolute;left:50%;top:50%;width:9px;height:9px;
    transform:translate(-50%,-50%) rotate(45deg);border-radius:2.5px;
    background:linear-gradient(135deg,#ffffff,#e9d5ff);box-shadow:0 0 16px 4px rgba(168,85,247,.6)}
  .tld.tld-seen .tld-spine{transform:translateX(-50%) scaleY(1)}
  .tld-hint{position:absolute;left:50%;bottom:18px;transform:translateX(-50%);z-index:10;
    font-weight:700;font-size:12px;color:var(--vio);background:rgba(255,255,255,.72);
    padding:7px 15px;border-radius:999px;border:1px solid rgba(255,255,255,.9);
    box-shadow:0 10px 22px -12px rgba(124,58,237,.5);display:inline-flex;align-items:center;gap:7px}
  .tld-hint .dot{width:7px;height:7px;border-radius:50%;background:linear-gradient(135deg,var(--ind),var(--pink))}
  .tld-free{margin-top:2.6rem;text-align:center}
  .tld-free-note{max-width:600px;margin:0 auto;font-size:12px;line-height:1.55;color:#9ca3af;font-weight:400}
  .tld-narrow{display:none}
  @media (prefers-reduced-motion:reduce){.tld-spine{transition:none;transform:translateX(-50%) scaleY(1)}}
  @media (max-width:1044px){
    .tld-wide{display:none}
    .tld-narrow{display:block}
    .tld-stage{height:auto;overflow:visible}
  }
  @media (max-width:560px){.tld{padding:3rem 1rem 2.4rem}}
  @media (max-width:640px){.tld-desc{font-size:15px;line-height:1.5;max-width:340px}}

/* ============ блок 3 (был inline, строка 6358) ============ */
    .tk-sec {
        --tk-ink:#0f1729; --tk-ink-2:#475569; --tk-ink-3:#64748b; --tk-ink-4:#94a3b8;
        --tk-indigo:#4f46e5; --tk-indigo-2:#6366f1; --tk-violet:#7c3aed;
        --tk-line:rgba(15,23,42,.09);
        --tk-ease:cubic-bezier(.2,.7,.2,1);
        position:relative; width:100%; overflow:hidden; isolation:isolate;
        contain:paint;
        min-height:clamp(700px, 98vh, 1080px);
        display:flex; flex-direction:column; align-items:center; justify-content:center;
        padding:clamp(4rem,7.5vh,6rem) 1.25rem clamp(2rem,3.5vh,3rem);
        background:linear-gradient(180deg,#eaf0f7 0%,#e6e9f4 55%,#dfe4f1 100%);
    }
    .tk-photo { position:absolute; left:0; right:0; z-index:-3; pointer-events:none; will-change:transform; }
    .tk-photo > img { width:100%; height:100%; object-fit:cover; display:block; user-select:none; -webkit-user-drag:none; }
    .tk-photo--sky, .tk-photo--water { height:calc(50% + 120px); }
    .tk-photo--sky { top:-120px; }
    .tk-photo--sky > img { object-position:center bottom; }
    .tk-photo--water { top:calc(50% - 2px); }
    .tk-photo--water > img { object-position:center top; }

    .tk-boat { position:absolute; z-index:-1; left:clamp(1.5rem,7vw,7rem); bottom:39%;
        height:clamp(78px,8vw,118px); aspect-ratio:96 / 156; pointer-events:none;
        filter:saturate(.92) brightness(1.02); opacity:.95; will-change:transform; }
    .tk-boat-img { width:100%; height:100%; display:block; user-select:none; -webkit-user-drag:none;
        transform-origin:50% 100%; animation:tk-boat-rock 6.2s ease-in-out infinite; }
    @keyframes tk-boat-rock {
        0%   { transform:rotate(-3deg); }
        50%  { transform:rotate(3.2deg); }
        100% { transform:rotate(-3deg); }
    }
    .tk-boat-reflection { position:absolute; top:100%; left:0; width:100%; height:100%; display:block;
        transform:scaleY(-1);
        opacity:.24; filter:blur(1px) saturate(.5) brightness(1.1); pointer-events:none; user-select:none; -webkit-user-drag:none;
        animation:tk-boat-ripple 5s ease-in-out infinite;
        -webkit-mask-image:linear-gradient(to top, rgba(0,0,0,1) 6%, rgba(0,0,0,0) 68%);
        mask-image:linear-gradient(to top, rgba(0,0,0,1) 6%, rgba(0,0,0,0) 68%); }
    @keyframes tk-boat-ripple {
        0%,100% { transform:scaleY(-1) skewX(0deg); }
        50%     { transform:scaleY(-1) skewX(2.8deg); }
    }
    .tk-boat-wake { position:absolute; left:50%; top:100%; transform:translate(-50%,-50%); width:74%; height:6%;
        border-radius:50%; background:radial-gradient(ellipse, rgba(255,255,255,.38), rgba(255,255,255,0) 72%);
        opacity:.3; pointer-events:none; animation:tk-boat-wake 4.2s ease-in-out infinite; }
    @keyframes tk-boat-wake {
        0%,100% { transform:translate(-50%,-50%) scaleX(1); opacity:.35; }
        50%     { transform:translate(-50%,-50%) scaleX(1.3); opacity:.68; }
    }
    @media (max-width:1100px) { .tk-boat { display:none; } }
    @media (prefers-reduced-motion:reduce) { .tk-boat-img,.tk-boat-reflection,.tk-boat-wake { animation:none; } }

    .tk-birds { position:absolute; inset:0; z-index:-1; pointer-events:none; overflow:hidden; }
    .tk-bird { position:absolute; left:0; aspect-ratio:271 / 188; width:auto; opacity:0;
        will-change:transform, opacity; filter:drop-shadow(0 1px 2px rgba(15,23,42,.18));
        animation:tk-bird-fly linear infinite both; }
    .tk-bird-lottie { display:block; width:100%; height:100%; }
    @keyframes tk-bird-fly {
        0%   { transform:translate3d(-30vw,0,0); opacity:0; }
        18%  { opacity:var(--tk-bird-op,.5); }
        50%  { transform:translate3d(50vw,var(--tk-bird-arc,-22px),0); }
        82%  { opacity:var(--tk-bird-op,.5); }
        100% { transform:translate3d(130vw,var(--tk-bird-end,-6px),0); opacity:0; }
    }
    .tk-bird--b1 { top:15%; height:2%;   --tk-bird-op:.44; --tk-bird-arc:-26px; --tk-bird-end:-2px; animation-duration:135s; animation-delay:-22s; }
    .tk-bird--b2 { top:23%; height:1.7%; --tk-bird-op:.34; --tk-bird-arc:8px;   --tk-bird-end:-6px; animation-duration:160s; animation-delay:-55s; }
    .tk-bird--b3 { top:19%; height:1.8%; --tk-bird-op:.38; --tk-bird-arc:-10px; --tk-bird-end:4px;  animation-duration:145s; animation-delay:-90s; }

    .tk-wind { position:absolute; inset:0; z-index:-1; pointer-events:none; overflow:hidden; }
    .tk-wind-streak { position:absolute; left:0; height:1.5px; border-radius:9999px;
        background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 35%, rgba(255,255,255,.85) 50%, rgba(255,255,255,.55) 65%, rgba(255,255,255,0) 100%);
        filter:blur(.8px); opacity:0; will-change:transform, opacity;
        animation:tk-wind-drift linear infinite; }
    @keyframes tk-wind-drift {
        0%   { transform:translate3d(-30vw,0,0) rotate(var(--ws-rot-a,-1.5deg)); opacity:0; animation-timing-function:ease-in-out; }
        10%  { opacity:var(--ws-op,.55); animation-timing-function:ease-in-out; }
        22%  { transform:translate3d(-3vw,var(--ws-y1,-6px),0) rotate(var(--ws-rot-a,-1.5deg)); animation-timing-function:ease-in-out; }
        36%  { transform:translate3d(15vw,var(--ws-y2,-14px),0) rotate(var(--ws-rot-m,0deg)); animation-timing-function:ease-in-out; }
        50%  { transform:translate3d(38vw,var(--ws-y3,-18px),0) rotate(var(--ws-rot-b,2deg)); animation-timing-function:ease-in-out; }
        64%  { transform:translate3d(62vw,var(--ws-y4,-10px),0) rotate(var(--ws-rot-m,0deg)); animation-timing-function:ease-in-out; }
        78%  { transform:translate3d(85vw,var(--ws-y5,-14px),0) rotate(var(--ws-rot-a,-1.5deg)); animation-timing-function:ease-in-out; }
        90%  { transform:translate3d(105vw,var(--ws-y6,-4px),0) rotate(var(--ws-rot-a,-1.5deg)); opacity:var(--ws-op,.55); animation-timing-function:ease-in-out; }
        100% { transform:translate3d(120vw,var(--ws-y-end,2px),0) rotate(var(--ws-rot-a,-1.5deg)); opacity:0; }
    }
    .tk-wind-streak--1 { top:14%; width:28vw; height:2px;   --ws-op:.7;  --ws-y1:-6px; --ws-y2:-14px; --ws-y3:-20px; --ws-y4:-14px; --ws-y5:-6px; --ws-y6:2px;  --ws-y-end:4px;  --ws-rot-a:-1.8deg; --ws-rot-m:1deg;   --ws-rot-b:3deg;   animation-duration:38s; animation-delay:-6s; }
    .tk-wind-streak--2 { top:21%; width:22vw; height:1.4px; --ws-op:.5;  --ws-y1:-4px; --ws-y2:4px;   --ws-y3:10px;  --ws-y4:4px;   --ws-y5:-6px; --ws-y6:-12px;--ws-y-end:-10px;--ws-rot-a:2deg;    --ws-rot-m:.4deg;  --ws-rot-b:-2.4deg;animation-duration:54s; animation-delay:-28s; }
    .tk-wind-streak--3 { top:29%; width:34vw; height:1.8px; --ws-op:.56; --ws-y1:-8px; --ws-y2:-16px; --ws-y3:-12px; --ws-y4:-2px;  --ws-y5:8px;  --ws-y6:4px;  --ws-y-end:-2px; --ws-rot-a:-2.4deg; --ws-rot-m:-.4deg; --ws-rot-b:2deg;   animation-duration:32s; animation-delay:-2s; }
    .tk-wind-streak--4 { top:57%; width:26vw; height:1.6px; --ws-op:.5;  --ws-y1:5px;  --ws-y2:12px;  --ws-y3:6px;   --ws-y4:-4px;  --ws-y5:-12px;--ws-y6:-6px; --ws-y-end:2px;  --ws-rot-a:1.6deg;  --ws-rot-m:.6deg;  --ws-rot-b:-2deg;  animation-duration:44s; animation-delay:-12s; }
    .tk-wind-streak--5 { top:61%; width:20vw; height:1.3px; --ws-op:.42; --ws-y1:-3px; --ws-y2:-9px;  --ws-y3:-14px; --ws-y4:-8px;  --ws-y5:2px;  --ws-y6:8px;  --ws-y-end:4px;  --ws-rot-a:-2deg;   --ws-rot-m:0deg;   --ws-rot-b:2.4deg; animation-duration:52s; animation-delay:-33s; }

    .tk-wind-mote { position:absolute; width:3px; height:3px; border-radius:50%;
        background:radial-gradient(circle, rgba(255,255,255,.95) 0%, rgba(255,255,255,.55) 35%, rgba(255,255,255,0) 75%);
        filter:blur(.4px); opacity:0; will-change:transform, opacity; animation:tk-mote-float linear infinite; }
    @keyframes tk-mote-float {
        0%   { transform:translate3d(-5vw,0,0) scale(.6); opacity:0; animation-timing-function:ease-in-out; }
        12%  { transform:translate3d(12vw,var(--mt-y1,-8px),0) scale(.78); opacity:var(--mt-op,.65); animation-timing-function:ease-in-out; }
        28%  { transform:translate3d(28vw,var(--mt-y2,-16px),0) scale(.9); animation-timing-function:ease-in-out; }
        44%  { transform:translate3d(44vw,var(--mt-y3,-22px),0) scale(1); animation-timing-function:ease-in-out; }
        58%  { transform:translate3d(60vw,var(--mt-y4,-16px),0) scale(.98); animation-timing-function:ease-in-out; }
        72%  { transform:translate3d(76vw,var(--mt-y5,-8px),0) scale(.9); animation-timing-function:ease-in-out; }
        88%  { transform:translate3d(96vw,var(--mt-y6,-2px),0) scale(.78); opacity:var(--mt-op,.65); animation-timing-function:ease-in-out; }
        100% { transform:translate3d(110vw,var(--mt-y-end,4px),0) scale(.6); opacity:0; }
    }
    .tk-wind-mote--1 { top:17%; width:3px;   height:3px;   --mt-op:.8;  --mt-y1:-6px; --mt-y2:-14px;--mt-y3:-22px;--mt-y4:-16px;--mt-y5:-8px; --mt-y6:-2px;--mt-y-end:4px;  animation-duration:26s; animation-delay:-3s; }
    .tk-wind-mote--2 { top:25%; width:4px;   height:4px;   --mt-op:.64; --mt-y1:-10px;--mt-y2:-22px;--mt-y3:-30px;--mt-y4:-24px;--mt-y5:-12px;--mt-y6:2px; --mt-y-end:10px; animation-duration:36s; animation-delay:-20s; }
    .tk-wind-mote--3 { top:31%; width:2.5px; height:2.5px; --mt-op:.72; --mt-y1:8px;  --mt-y2:14px; --mt-y3:10px; --mt-y4:2px;  --mt-y5:-6px; --mt-y6:-10px;--mt-y-end:-6px; animation-duration:44s; animation-delay:-8s; }
    .tk-wind-mote--4 { top:59%; width:3px;   height:3px;   --mt-op:.6;  --mt-y1:-8px; --mt-y2:-18px;--mt-y3:-24px;--mt-y4:-18px;--mt-y5:-8px; --mt-y6:-2px;--mt-y-end:4px;  animation-duration:34s; animation-delay:-26s; }
    .tk-wind-mote--5 { top:63%; width:2.5px; height:2.5px; --mt-op:.5;  --mt-y1:4px;  --mt-y2:-2px; --mt-y3:-8px; --mt-y4:-12px;--mt-y5:-6px; --mt-y6:2px; --mt-y-end:6px;  animation-duration:50s; animation-delay:-15s; }

    .tk-scrim { position:absolute; inset:0; z-index:-2; pointer-events:none;
        background:
            radial-gradient(64% 60% at 50% 44%, rgba(255,255,255,.44) 0%, rgba(255,255,255,0) 74%),
            linear-gradient(180deg, rgba(255,255,255,.3), rgba(255,255,255,.08) 45%, rgba(255,255,255,.28)); }
    .tk-edge { position:absolute; left:0; right:0; height:clamp(4.5rem,9vh,7.5rem); z-index:-1; pointer-events:none; }
    .tk-edge--t { top:0; background:linear-gradient(180deg,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,.987) 8.1%,
        rgba(255,255,255,.951) 15.5%,
        rgba(255,255,255,.896) 22.5%,
        rgba(255,255,255,.825) 29%,
        rgba(255,255,255,.741) 35.3%,
        rgba(255,255,255,.648) 41.2%,
        rgba(255,255,255,.55) 47.1%,
        rgba(255,255,255,.45) 52.9%,
        rgba(255,255,255,.352) 58.8%,
        rgba(255,255,255,.259) 64.7%,
        rgba(255,255,255,.175) 71%,
        rgba(255,255,255,.104) 77.5%,
        rgba(255,255,255,.049) 84.5%,
        rgba(255,255,255,.013) 91.9%,
        rgba(255,255,255,0) 100%); }
    .tk-edge--b { bottom:0; background:linear-gradient(0deg,
        rgba(251,252,252,1) 0%,
        rgba(251,252,252,.987) 8.1%,
        rgba(251,252,252,.951) 15.5%,
        rgba(251,252,252,.896) 22.5%,
        rgba(251,252,252,.825) 29%,
        rgba(251,252,252,.741) 35.3%,
        rgba(251,252,252,.648) 41.2%,
        rgba(251,252,252,.55) 47.1%,
        rgba(251,252,252,.45) 52.9%,
        rgba(251,252,252,.352) 58.8%,
        rgba(251,252,252,.259) 64.7%,
        rgba(251,252,252,.175) 71%,
        rgba(251,252,252,.104) 77.5%,
        rgba(251,252,252,.049) 84.5%,
        rgba(251,252,252,.013) 91.9%,
        rgba(251,252,252,0) 100%); }

    .tk-head { position:relative; text-align:center; max-width:47.5rem; margin:0 auto; }
    .tk-label { display:inline-block; font-size:.75rem; font-weight:700; letter-spacing:.18em;
        text-transform:uppercase; color:#6d28d9; }
    .tk-h2 { margin:1.1rem 0 0; font-size:clamp(2rem,4.4vw,3.375rem); line-height:1.06; font-weight:700;
        letter-spacing:-.035em; color:#12123a; text-wrap:balance; }
    .tk-h2 em { font-style:normal; background:linear-gradient(92deg,var(--tk-indigo),var(--tk-violet));
        -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
    .tk-sub { margin:1.1rem auto 0; font-size:clamp(.97rem,1.6vw,1.1rem); line-height:1.6; color:#3f3a68;
        max-width:37rem; text-wrap:balance; }

    .tk-stage { position:relative; margin-top:2.75rem; width:min(38.75rem,100%); }
    .tk-cap { position:relative; display:flex; align-items:center; gap:1rem; width:100%;
        padding:.875rem .875rem .875rem 1.375rem; border-radius:999px; text-decoration:none; color:inherit; cursor:pointer;
        background:rgba(255,255,255,.86);
        -webkit-backdrop-filter:blur(22px) saturate(1.35); backdrop-filter:blur(22px) saturate(1.35);
        border:1px solid rgba(255,255,255,.95);
        box-shadow:0 34px 80px -38px rgba(40,24,110,.46), 0 8px 24px -16px rgba(40,24,110,.16);
        transition:transform .3s var(--tk-ease), box-shadow .3s ease; }
    .tk-cap:hover { transform:translateY(-2px);
        box-shadow:0 42px 90px -38px rgba(40,24,110,.55), 0 10px 28px -16px rgba(40,24,110,.2); }
    .tk-cap:focus-visible { outline:2px solid var(--tk-indigo-2); outline-offset:4px; }
    .tk-cap-ico { flex:none; width:2.75rem; height:2.75rem; border-radius:50%; background:var(--tk-indigo);
        display:flex; align-items:center; justify-content:center; box-shadow:0 12px 26px -12px rgba(63,48,190,.6); }
    .tk-cap-ico svg { width:1rem; height:1rem; color:#fff; margin-left:2px; }
    .tk-cap-tx { flex:1; min-width:0; text-align:left; }
    .tk-cap-tx b { display:block; font-size:.9375rem; font-weight:700; color:#16123a; letter-spacing:-.01em;
        white-space:nowrap; overflow:hidden; }
    .tk-cap-tx span { display:block; margin-top:2px; font-size:.78rem; color:#6f6795; white-space:nowrap; overflow:hidden; }
    .tk-cap-btn { flex:none; height:2.75rem; padding:0 1.5rem; border-radius:999px; display:inline-flex; align-items:center;
        font-size:.875rem; font-weight:600; color:#fff; background:var(--tk-indigo);
        box-shadow:0 14px 30px -14px rgba(63,48,190,.6); transition:background .2s ease; }
    .tk-cap:hover .tk-cap-btn { background:#4640d6; }

    .tk-float { animation:tk-cap-float 7s ease-in-out infinite; }
    @keyframes tk-cap-float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-5px); } }

    .tk-refl { margin-top:8px; transform:scaleY(-1); pointer-events:none; user-select:none;
        opacity:.28; filter:blur(2.5px) saturate(.8);
        -webkit-mask-image:linear-gradient(to top, rgba(0,0,0,1) 6%, rgba(0,0,0,0) 84%);
        mask-image:linear-gradient(to top, rgba(0,0,0,1) 6%, rgba(0,0,0,0) 84%);
        animation:tk-cap-wobble 6.5s ease-in-out infinite; }
    @keyframes tk-cap-wobble { 0%,100% { transform:scaleY(-1) skewX(0deg); } 50% { transform:scaleY(-1) skewX(1.7deg); } }
    .tk-refl .tk-cap { box-shadow:none; -webkit-backdrop-filter:none; backdrop-filter:none; background:rgba(255,255,255,.92); }

    .tk-rings { position:relative; height:0; width:100%; z-index:2; pointer-events:none; }
    .tk-rings::before { content:""; position:absolute; left:50%; top:4px; transform:translate(-50%,-50%);
        width:66%; height:16px; border-radius:50%;
        background:radial-gradient(ellipse, rgba(255,255,255,.42), rgba(255,255,255,0) 72%); filter:blur(1px);
        animation:tk-cap-wake 4.8s ease-in-out infinite; }
    @keyframes tk-cap-wake {
        0%,100% { transform:translate(-50%,-50%) scaleX(1); opacity:.5; }
        50% { transform:translate(-50%,-50%) scaleX(1.18); opacity:.9; } }
    .tk-rings i { position:absolute; left:50%; top:4px; width:58%; height:20px; border-radius:50%;
        border:1.5px solid rgba(255,255,255,.55); filter:blur(.5px);
        transform:translate(-50%,-50%) scale(.32); opacity:0; animation:tk-cap-ring 5.4s ease-out infinite; }
    .tk-rings i:nth-child(2) { animation-delay:1.8s; }
    .tk-rings i:nth-child(3) { animation-delay:3.6s; }
    @keyframes tk-cap-ring {
        0% { transform:translate(-50%,-50%) scale(.32); opacity:0; }
        12% { opacity:.55; }
        70% { opacity:.14; }
        100% { transform:translate(-50%,-50%) scale(1.52); opacity:0; } }

    .tk-alt { position:relative; margin-top:1.6rem; text-align:center; }
    .tk-tlink { display:inline-flex; align-items:center; gap:7px; font:inherit; font-size:.9rem; font-weight:600;
        color:var(--tk-violet); background:none; border:0; padding:6px 2px; border-radius:8px; cursor:pointer;
        -webkit-appearance:none; appearance:none;
        background-image:linear-gradient(92deg,var(--tk-indigo),var(--tk-violet));
        -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
        transition:filter .2s ease; }
    .tk-tlink:hover { filter:brightness(1.08) saturate(1.06); }
    .tk-tlink:focus-visible { outline:2px solid var(--tk-indigo-2); outline-offset:3px; }
    .tk-tlink svg { width:14px; height:14px; flex:none; transition:transform .25s var(--tk-ease); }
    .tk-tlink:hover svg { transform:translateX(3px); }
    .tk-tlink .tk-spin { display:none; width:14px; height:14px; flex:none; border-radius:50%;
        border:2px solid rgba(93,82,175,.25); border-top-color:#453a8f;
        animation:tk-tlink-spin .7s linear infinite; }
    :root.tk-tour-wait .tk-tlink svg { display:none; }
    :root.tk-tour-wait .tk-tlink .tk-spin { display:inline-block; }
    @keyframes tk-tlink-spin { to { transform:rotate(360deg); } }

    .tk-trefl { margin-top:4px; transform:scaleY(-1); pointer-events:none; user-select:none;
        opacity:.26; filter:blur(1.1px) saturate(.85);
        -webkit-mask-image:linear-gradient(to top, rgba(0,0,0,1) 8%, rgba(0,0,0,0) 80%);
        mask-image:linear-gradient(to top, rgba(0,0,0,1) 8%, rgba(0,0,0,0) 80%);
        animation:tk-cap-wobble 6.5s ease-in-out infinite; }
    .tk-trefl .tk-tlink { cursor:default; }
    .tk-trings { position:relative; height:0; z-index:2; pointer-events:none; }
    .tk-trings::before { content:""; position:absolute; left:50%; top:2px; transform:translate(-50%,-50%);
        width:8rem; height:12px; border-radius:50%;
        background:radial-gradient(ellipse, rgba(255,255,255,.4), rgba(255,255,255,0) 72%); filter:blur(1px);
        animation:tk-cap-wake 4.8s ease-in-out infinite; }
    .tk-trings i { position:absolute; left:50%; top:2px; width:6.5rem; height:14px; border-radius:50%;
        border:1.5px solid rgba(255,255,255,.5); filter:blur(.5px);
        transform:translate(-50%,-50%) scale(.32); opacity:0; animation:tk-cap-ring 5.4s ease-out infinite; }
    .tk-trings i:nth-child(2) { animation-delay:2.7s; }

    @media (prefers-reduced-motion: no-preference) {
        .tk-sec.tk-anim .tk-stag { opacity:0; transform:translateY(14px);
            transition:opacity .7s var(--tk-ease), transform .7s var(--tk-ease); }
        .tk-sec.tk-anim.tk-in .tk-stag { opacity:1; transform:none; }
        .tk-sec.tk-anim.tk-in .tk-stag.d2 { transition-delay:.12s; }
        .tk-sec.tk-anim.tk-in .tk-stag.d3 { transition-delay:.24s; }
        .tk-sec.tk-anim.tk-in .tk-stag.d4 { transition-delay:.42s; }
        .tk-sec.tk-anim.tk-in .tk-stag.d5 { transition-delay:.6s; }
    }

    @media (max-width:560px) {
        .tk-cap { border-radius:26px; flex-wrap:wrap; padding:1.1rem; }
        .tk-cap-btn { width:100%; justify-content:center; }
        .tk-cap-tx b, .tk-cap-tx span { white-space:normal; }
    }
    @media (prefers-reduced-motion:reduce) {
        .tk-photo, .tk-cap, .tk-tlink svg { transition:none; }
        .tk-float, .tk-refl, .tk-trefl, .tk-rings::before, .tk-trings::before { animation:none; }
        .tk-rings i, .tk-trings i, .tk-birds, .tk-wind { display:none; }
    }
    @media (max-width:640px) {
        .tk-birds, .tk-wind { display:none; }
    }

/* ============ блок 4 (был inline, строка 6743) ============ */
    .tk-tour-modal { position:fixed; inset:0; z-index:9999; background:#eef0f4;
        opacity:0; visibility:hidden; transition:opacity .25s ease, visibility .25s ease; }
    .tk-tour-modal.is-open { opacity:1; visibility:visible; }
    .tk-tour-modal iframe { border:0; width:100%; height:100%; display:block; }
    @media (prefers-reduced-motion: reduce){ .tk-tour-modal { transition:none; } }

/* ============ блок 5 (был inline, строка 7618) ============ */
    .sd-spot {
        position: absolute;
        border-radius: 50%;
        filter: blur(64px);
        pointer-events: none;
    }

    .sd-spot--a {
        top: -40px;
        left: -120px;
        width: 480px;
        height: 480px;
        background: rgba(79, 70, 229, .05);
    }

    .sd-spot--b {
        display: none;
        top: 520px;
        right: -100px;
        width: 420px;
        height: 420px;
        background: rgba(124, 58, 237, .05);
    }

    .sd-hall-ring {
        position: relative;
        margin: 0 0 44px;
        padding: 1px;
        border-radius: 25px;
        background: linear-gradient(135deg, rgba(99, 102, 241, .5), rgba(168, 85, 247, .25) 60%, rgba(99, 102, 241, .12));
    }

    .sd-glow {
        position: absolute;
        left: 50%;
        bottom: -64px;
        transform: translateX(-50%);
        width: 760px;
        max-width: 92vw;
        height: 140px;
        background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(79, 70, 229, .10), transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

    .sd-hall {
        position: relative;
        z-index: 1;
        border-radius: 24px;
        padding: 20px;
        overflow: visible;
        background: radial-gradient(40% 45% at 8% -6%, rgba(165, 180, 252, .10), transparent 70%),
        radial-gradient(52% 60% at 86% 108%, rgba(124, 58, 237, .22), transparent 70%),
        linear-gradient(160deg, #17133b 0%, #1e1b4b 45%, #312e81 100%);
    }

    .sd-hall-clip {
        position: absolute;
        inset: 0;
        border-radius: 24px;
        overflow: hidden;
        z-index: 0;
        pointer-events: none;
    }

    .sd-hall-clip::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1.6px);
        background-size: 26px 26px;
        -webkit-mask-image: radial-gradient(ellipse 80% 75% at 38% 42%, #000 45%, transparent 82%);
        mask-image: radial-gradient(ellipse 80% 75% at 38% 42%, #000 45%, transparent 82%);
    }

    .sd-head {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
    }

    .sd-pill {
        display: inline-flex;
        gap: 8px;
        align-items: center;
        padding: 5px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .22);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: #e0e7ff;
        white-space: nowrap;
    }

    .sd-dot {
        flex: none;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #a5b4fc;
    }

    .sd-caps {
        display: none;
        gap: 8px;
    }

    .sd-cap {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: rgba(224, 231, 255, .85);
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .10);
        border: 1px solid rgba(255, 255, 255, .18);
        white-space: nowrap;
    }

    .sd-body {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
    }

    .sd-reelcol {
        order: 1;
        position: relative;
        z-index: 5;
        display: flex;
        justify-content: center;
        margin: 8px 0 20px;
    }

    .sd-canvas {
        order: 2;
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .sd-caption {
        order: 3;
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.5;
        color: rgba(199, 210, 254, .75);
        max-width: 560px;
    }

    .sd-links {
        display: none;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .sd-link {
        fill: none;
        stroke: url(#sd-lg);
        stroke-opacity: .45;
        stroke-width: 1.5;
        stroke-dasharray: 6 8;
        vector-effect: non-scaling-stroke;
    }

    .sd-link--thin {
        stroke-opacity: .3;
        stroke-dasharray: 2 6;
    }

    .sd-imp {
        fill: none;
        stroke: #a5b4fc;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-dasharray: 12 100;
        stroke-dashoffset: 112;
        opacity: 0;
    }

    @keyframes sd-impulse {
        0% {
            stroke-dashoffset: 112;
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        88% {
            opacity: 1;
        }
        100% {
            stroke-dashoffset: 12;
            opacity: 0;
        }
    }

    .sd-port {
        fill: #1e1b4b;
        stroke: rgba(255, 255, 255, .45);
        stroke-width: 1.5;
    }

    .sd-port--2in, .sd-port--3in {
        transform-box: fill-box;
        transform-origin: center;
    }

    @keyframes sd-portflash {
        50% {
            transform: scale(1.8);
            fill: #a5b4fc;
        }
    }

    .sd-node {
        position: relative;
        min-width: 0;
        background: rgba(255, 255, 255, .13);
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: 12px;
        padding: 6px;
        box-shadow: 0 18px 40px -18px rgba(10, 8, 30, .6);
    }

    .sd-node::after {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: 12px;
        box-shadow: 0 0 0 1px rgba(165, 180, 252, .7), 0 8px 32px rgba(124, 58, 237, .38);
        opacity: 0;
        transition: opacity .3s ease;
        pointer-events: none;
    }

    .sd-node-h {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
        margin-bottom: 6px;
        min-width: 0;
    }

    .sd-node-t {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: .04em;
        text-transform: uppercase;
        color: rgba(224, 231, 255, .9);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }

    .sd-node-dot {
        display: none;
        flex: none;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .4);
    }

    .sd-node-chip {
        display: none;
        flex: none;
        font-size: 9px;
        color: rgba(199, 210, 254, .7);
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 999px;
        padding: 1px 6px;
        white-space: nowrap;
    }

    .sd-node-p {
        display: none;
    }

    .sd-timeline {
        display: none;
        position: absolute;
        left: 3.75%;
        right: 3.75%;
        bottom: 4%;
        height: 11%;
        flex-direction: column;
        gap: 4px;
        padding: 5px 6px;
        background: rgba(13, 10, 36, .55);
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 10px;
        overflow: hidden;
    }

    .sd-clips {
        flex: 1;
        display: flex;
        gap: 4px;
        min-height: 0;
    }

    .sd-clip {
        position: relative;
        flex: 1;
        border-radius: 5px;
        overflow: hidden;
    }

    .sd-clip--1 { background: linear-gradient(165deg, #2e2a72 0%, #7c3aed 55%, #f8a37e 100%); }
    .sd-clip--2 { background: linear-gradient(200deg, #172554 0%, #312e81 48%, #6d28d9 100%); }
    .sd-clip--3 { background: linear-gradient(160deg, #45200a 0%, #b45309 58%, #fbbf24 100%); }

    .sd-clip::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(23, 19, 59, .68);
        opacity: 1;
        transition: opacity .6s ease;
    }

    .sd-track {
        flex: none;
        display: block;
        height: 8px;
        border-radius: 4px;
        opacity: .7;
        background: repeating-linear-gradient(90deg, rgba(199, 210, 254, .35) 0 2px, transparent 2px 6px);
    }

    .sd-playhead {
        position: absolute;
        inset: 0;
        pointer-events: none;
        transform: translateX(0);
        transition: transform 4000ms linear;
    }

    .sd-playhead::before {
        content: '';
        position: absolute;
        left: 0;
        top: 4px;
        bottom: 4px;
        width: 2px;
        border-radius: 1px;
        background: #c7d2fe;
        box-shadow: 0 0 10px rgba(165, 180, 252, .8);
    }

    .sd-reel {
        position: relative;
        width: 184px;
        border-radius: 28px;
        padding: 10px;
        background: linear-gradient(180deg, #241f52, #17133b);
        border: 1px solid rgba(255, 255, 255, .22);
        box-shadow: 0 24px 48px -20px rgba(10, 8, 30, .6);
    }

    .sd-n {
        display: none;
        font-weight: 700;
        color: rgba(224, 231, 255, .95);
    }

    .sd-segs {
        position: absolute;
        top: 8px;
        left: 10px;
        right: 10px;
        display: flex;
        gap: 4px;
        z-index: 3;
    }

    .sd-seg {
        display: block;
        flex: 1;
        height: 2.5px;
        border-radius: 2px;
        background: rgba(255, 255, 255, .28);
        overflow: hidden;
    }

    .sd-seg b {
        display: block;
        height: 100%;
        background: rgba(255, 255, 255, .92);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 4000ms linear;
    }

    .sd-rail {
        position: absolute;
        right: 8px;
        bottom: 26px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        z-index: 3;
    }

    .sd-rico {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
        border: 1px solid rgba(255, 255, 255, .22);
    }

    .sd-rico svg {
        width: 12px;
        height: 12px;
    }

    .sd-rcap {
        position: absolute;
        left: 10px;
        right: 40px;
        bottom: 12px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        z-index: 3;
    }

    .sd-rline {
        display: block;
        height: 5px;
        border-radius: 3px;
        background: rgba(255, 255, 255, .55);
    }

    .sd-reel-cap {
        margin-top: 8px;
        text-align: center;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: rgba(199, 210, 254, .65);
    }

    .sd-slot {
        position: relative;
        overflow: hidden;
    }

    .sd-slot--frame {
        aspect-ratio: 4 / 5;
        border-radius: 8px;
    }

    .sd-slot--reel {
        aspect-ratio: 9 / 16;
        border-radius: 22px;
        background: #17133b;
    }

    .sd-slot--pola {
        aspect-ratio: 1 / 1;
        border-radius: 5px;
    }

    .sd-slot--frame::after, .sd-slot--reel::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(130% 120% at 50% 38%, transparent 42%, rgba(10, 8, 30, .55) 100%);
        pointer-events: none;
    }

    .sd-ph {
        position: absolute;
        inset: 0;
        display: block;
    }

    .sd-ph--a {
        background: radial-gradient(42% 30% at 50% 62%, rgba(255, 255, 255, .30), transparent 70%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 3px),
        linear-gradient(165deg, #2e2a72 0%, #7c3aed 55%, #f8a37e 100%);
    }

    .sd-ph--b {
        background: radial-gradient(12% 9% at 72% 24%, rgba(226, 232, 255, .5), transparent 70%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 3px),
        linear-gradient(200deg, #172554 0%, #312e81 48%, #6d28d9 100%);
    }

    .sd-ph--c {
        background: radial-gradient(50% 26% at 50% 78%, rgba(255, 244, 214, .28), transparent 70%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 3px),
        linear-gradient(160deg, #45200a 0%, #b45309 58%, #fbbf24 100%);
    }

    .sd-media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 2;
    }

    .sd-slot:has(.sd-media) .sd-ph,
    .sd-slot:has(.sd-media)::after {
        display: none;
    }

    .sd-slot.sd-has-media .sd-ph,
    .sd-slot.sd-has-media::after {
        display: none;
    }

    .sd-scene {
        opacity: 0;
        transition: opacity .8s ease;
    }

    .sd-phase-1 .sd-node--1::after { opacity: 1; }
    .sd-phase-1 .sd-node--1 .sd-node-dot { background: #a5b4fc; }
    .sd-phase-1 .sd-scene--1 { opacity: 1; }
    .sd-phase-1 .sd-clip--1::after { opacity: 0; }
    .sd-phase-1 .sd-n--1 { display: inline; }

    .sd-phase-1 .sd-playhead {
        transform: translateX(33.33%);
        transition-duration: 2000ms;
    }

    .sd-phase-1 .sd-seg--1 b {
        transform: scaleX(1);
        transition-duration: 2000ms;
    }

    .sd-phase-2 .sd-node--1::after { opacity: .3; }
    .sd-phase-2 .sd-node--2::after { opacity: 1; transition-delay: 1100ms; }
    .sd-phase-2 .sd-node--2 .sd-node-dot { background: #a5b4fc; }
    .sd-phase-2 .sd-imp--1 { animation: sd-impulse 1100ms cubic-bezier(.4, 0, .2, 1) 1 both; }
    .sd-phase-2 .sd-port--2in { animation: sd-portflash 400ms ease-out 1000ms 1 both; }
    .sd-phase-2 .sd-scene--1 { opacity: 0; transition-delay: 1200ms; }
    .sd-phase-2 .sd-scene--2 { opacity: 1; transition-delay: 1200ms; }
    .sd-phase-2 .sd-clip--1::after { opacity: 0; }
    .sd-phase-2 .sd-clip--2::after { opacity: 0; transition-delay: 1200ms; }
    .sd-phase-2 .sd-n--2 { display: inline; }
    .sd-phase-2 .sd-playhead { transform: translateX(66.66%); transition-duration: 3000ms; }
    .sd-phase-2 .sd-seg--1 b { transform: scaleX(1); transition-duration: 300ms; }
    .sd-phase-2 .sd-seg--2 b { transform: scaleX(1); transition-duration: 3000ms; }

    .sd-phase-3 .sd-node--1::after, .sd-phase-3 .sd-node--2::after { opacity: .3; }
    .sd-phase-3 .sd-node--3::after { opacity: 1; transition-delay: 1100ms; }
    .sd-phase-3 .sd-node--3 .sd-node-dot { background: #a5b4fc; }
    .sd-phase-3 .sd-imp--2 { animation: sd-impulse 1100ms cubic-bezier(.4, 0, .2, 1) 1 both; }
    .sd-phase-3 .sd-port--3in { animation: sd-portflash 400ms ease-out 1000ms 1 both; }
    .sd-phase-3 .sd-scene--2 { opacity: 0; transition-delay: 1200ms; }
    .sd-phase-3 .sd-scene--3 { opacity: 1; transition-delay: 1200ms; }
    .sd-phase-3 .sd-clip--1::after, .sd-phase-3 .sd-clip--2::after { opacity: 0; }
    .sd-phase-3 .sd-clip--3::after { opacity: 0; transition-delay: 1200ms; }
    .sd-phase-3 .sd-n--3 { display: inline; }
    .sd-phase-3 .sd-playhead { transform: translateX(calc(100% - 3px)); transition-duration: 5000ms; }
    .sd-phase-3 .sd-seg--1 b, .sd-phase-3 .sd-seg--2 b { transform: scaleX(1); transition-duration: 300ms; }
    .sd-phase-3 .sd-seg--3 b { transform: scaleX(1); transition-duration: 5000ms; }

    .sd-phase-0 .sd-node::after { opacity: 0; transition-duration: 300ms; }
    .sd-phase-0 .sd-clip::after { opacity: 1; transition-duration: 300ms; }
    .sd-phase-0 .sd-n--1 { display: inline; }

    .sd-phase-0 .sd-playhead {
        transform: translateX(0);
        transition: transform 450ms cubic-bezier(.4, 0, .2, 1);
    }

    .sd-phase-0 .sd-seg b {
        transform: scaleX(0);
        transition: transform 450ms cubic-bezier(.4, 0, .2, 1);
    }

    .sd-static .sd-node::after { opacity: .3; }
    .sd-static .sd-node--3::after { opacity: 1; }
    .sd-static .sd-node--3 .sd-node-dot { background: #a5b4fc; }
    .sd-static .sd-clip::after { opacity: 0; }
    .sd-static .sd-scene--2 { opacity: 1; }
    .sd-static .sd-n--2 { display: inline; }
    .sd-static .sd-playhead { transform: translateX(66.66%); transition: none; }
    .sd-static .sd-seg--1 b { transform: scaleX(1); transition: none; }
    .sd-static .sd-seg--2 b { transform: scaleX(.66); transition: none; }

    .sd-snap .sd-playhead { transform: translateX(0); transition: none; }
    .sd-snap .sd-seg b { transform: scaleX(0); transition: none; }

    .sd-tools {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sd-tools > article {
        overflow: hidden;
    }

    .sd-vis {
        position: relative;
        height: 150px;
        overflow: hidden;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sd-vis--float {
        overflow: visible;
    }

    .sd-vis--img {
        overflow: visible;
    }

    .sd-dots {
        position: absolute;
        inset: 0;
        background-image: radial-gradient(#dbdee6 1.5px, transparent 1.5px);
        background-size: 15px 15px;
        -webkit-mask-image: radial-gradient(ellipse 78% 82% at 50% 50%, #000 32%, transparent 80%);
        mask-image: radial-gradient(ellipse 78% 82% at 50% 50%, #000 32%, transparent 80%);
        opacity: .7;
    }

    .sd-mini {
        position: relative;
        width: 244px;
        max-width: 100%;
        background: #fff;
        border: 1px solid #eef0f4;
        border-radius: 12px;
        padding: 10px 11px;
        box-shadow: 0 14px 32px -14px rgba(23, 19, 59, .28);
        transform: scale(1.1);
        transition: transform .3s ease;
    }

    .sd-mini-top {
        display: flex;
        align-items: center;
        gap: 7px;
        min-width: 0;
    }

    .sd-ava {
        flex: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: linear-gradient(135deg, #6366f1, #a855f7);
        color: #fff;
        font-size: 9px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sd-mini-meta {
        display: flex;
        flex-direction: column;
        min-width: 0;
        line-height: 1.25;
    }

    .sd-mini-meta b {
        font-size: 9.5px;
        font-weight: 700;
        color: #1f2937;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sd-mini-body {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        margin-top: 7px;
    }

    .sd-mini-img {
        flex: none;
        width: 58px;
        height: 58px;
        border-radius: 9px;
        overflow: hidden;
        background: radial-gradient(60% 45% at 50% 18%, rgba(255, 255, 255, .28), transparent 70%),
        linear-gradient(160deg, #312e81 0%, #7c3aed 55%, #f8a37e 100%);
    }

    .sd-mini-img img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .sd-mini-text {
        flex: 1;
        min-width: 0;
        margin: 0;
        font-size: 8.5px;
        line-height: 1.45;
        color: #4b5563;
    }

    .sd-mini-foot {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 6px;
        padding-top: 6px;
        border-top: 1px solid #f3f4f6;
        font-size: 8px;
        color: #9ca3af;
        white-space: nowrap;
    }

    .sd-mini-foot i {
        margin-left: auto;
        font-style: normal;
        color: #d1d5db;
    }

    .sd-mt {
        opacity: 0;
    }

    .fade-up.visible .sd-mt {
        opacity: 1;
        transition: opacity .5s ease;
    }

    .fade-up.visible .sd-mt--1 { transition-delay: .25s; }
    .fade-up.visible .sd-mt--2 { transition-delay: .45s; }
    .fade-up.visible .sd-mt--3 { transition-delay: .65s; }


    .sd-now {
        margin-left: auto;
        flex: none;
        display: inline-flex;
        align-items: center;
        gap: 3px;
        font-size: 9px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: #4f46e5;
        background: #eef2ff;
        border: 1px solid #e0e7ff;
        border-radius: 999px;
        padding: 2px 7px;
        white-space: nowrap;
    }

    .sd-fan {
        position: absolute;
        inset: 0;
    }

    .sd-arc {
        position: absolute;
        left: 50%;
        top: 2px;
        width: 220px;
        height: 20px;
        transform: translateX(-50%);
    }

    .sd-imgdesk {
        position: absolute;
        inset: 0;
        background-image: radial-gradient(#d5d8e2 1.4px, transparent 1.4px);
        background-size: 15px 15px;
        -webkit-mask-image: radial-gradient(ellipse 84% 88% at 50% 52%, #000 34%, transparent 82%);
        mask-image: radial-gradient(ellipse 84% 88% at 50% 52%, #000 34%, transparent 82%);
        opacity: .6;
    }

    .sd-pola {
        position: absolute;
        left: 50%;
        top: 24px;
        width: 112px;
        padding: 6px 6px 5px;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        box-shadow: 0 10px 26px -10px rgba(49, 46, 129, .30);
        transform-origin: 50% 90%;
        transition: transform .4s ease;
    }

    .sd-pola--ref { transform: translateX(-96%) rotate(-8deg); z-index: 1; }
    .sd-pola--mid { transform: translateX(-50%); z-index: 2; }
    .sd-pola--new { transform: translateX(-4%) rotate(8deg); z-index: 3; }

    .sd-pola-tag {
        display: block;
        margin-top: 3px;
        font-size: 8px;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: #6b7280;
        text-align: center;
        line-height: 1.2;
        min-height: 10px;
    }

    .sd-pp--1 { background: linear-gradient(150deg, #e0e7ff, #c7d2fe); }
    .sd-pp--2 { background: linear-gradient(150deg, #ede9fe, #ddd6fe); }
    .sd-pp--3 { background: linear-gradient(150deg, #fce7f3, #e9d5ff); }

    .sd-fanshine {
        position: absolute;
        inset: 0;
        z-index: 5;
        pointer-events: none;
        background: linear-gradient(105deg, transparent 43%, rgba(255, 255, 255, .5) 50%, transparent 57%);
        transform: translateX(-140%);
    }

    .fade-up.visible .sd-fanshine {
        animation: sd-shine 1.5s ease-out .55s 1 both;
    }

    @keyframes sd-shine {
        to {
            transform: translateX(140%);
        }
    }


    .sd-vis--feed { overflow: visible; }

    .sd-feedwrap {
        position: absolute;
        inset: 0;
    }

    .sd-fdesk {
        position: absolute;
        inset: 0;
        background-image: radial-gradient(#d5d8e2 1.4px, transparent 1.4px);
        background-size: 15px 15px;
        -webkit-mask-image: radial-gradient(ellipse 84% 88% at 50% 52%, #000 34%, transparent 82%);
        mask-image: radial-gradient(ellipse 84% 88% at 50% 52%, #000 34%, transparent 82%);
        opacity: .6;
    }

    .sd-fstack {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 244px;
        max-width: 96%;
        height: 96px;
        background: #fff;
        border: 1px solid #eef0f4;
        border-radius: 12px;
        box-shadow: 0 10px 24px -16px rgba(23, 19, 59, .22);
        transition: transform .4s cubic-bezier(.22, .61, .36, 1), opacity .3s ease;
    }

    .sd-fstack--1 { transform: translate(-50%, calc(-50% + 27px)) scale(.955); opacity: .85; }
    .sd-fstack--2 { transform: translate(-50%, calc(-50% + 35px)) scale(.895); opacity: .5; }

    .sd-fpanel {
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 3;
        width: 244px;
        max-width: 100%;
        transform: translate(-50%, -50%) scale(1.1);
        background: #fff;
        border: 1px solid #eef0f4;
        border-radius: 12px;
        padding: 10px 11px;
        box-shadow: 0 14px 32px -14px rgba(23, 19, 59, .28);
        transition: transform .3s ease;
    }

    .sd-fhead {
        display: flex;
        align-items: center;
        gap: 5px;
        padding-bottom: 7px;
        margin-bottom: 6px;
        border-bottom: 1px solid #f3f4f6;
        min-width: 0;
    }

    .sd-fhico { flex: none; display: flex; }

    .sd-fchip {
        flex: none;
        font-size: 8px;
        font-weight: 700;
        color: #4f46e5;
        background: #eef2ff;
        border: 1px solid #e0e7ff;
        border-radius: 999px;
        padding: 1px 6px;
        white-space: nowrap;
    }

    .sd-fsrc {
        flex: none;
        display: inline-flex;
        align-items: center;
        gap: 3px;
        margin-left: 1px;
    }

    .sd-fsrc svg { display: block; }

    .sd-fnew {
        flex: none;
        margin-left: auto;
        font-style: normal;
        font-size: 8px;
        font-weight: 700;
        color: #4f46e5;
        background: #eef2ff;
        border: 1px solid #e0e7ff;
        border-radius: 999px;
        padding: 1px 6px;
        white-space: nowrap;
    }

    .sd-frow {
        position: relative;
        display: flex;
        align-items: center;
        gap: 7px;
        height: 22px;
        padding: 0 6px;
        border-radius: 8px;
        border: 1px solid transparent;
        min-width: 0;
    }

    .sd-frow + .sd-frow { margin-top: 2px; }

    .sd-fpv {
        flex: none;
        width: 15px;
        height: 15px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sd-fpv svg { display: block; }
    .sd-fpv--topic { background: linear-gradient(135deg, #6366f1, #a855f7); }
    .sd-fpv--tg { background: #818cf8; }
    .sd-fpv--vk { background: #a855f7; }

    .sd-ftext {
        flex: 1;
        min-width: 0;
        font-size: 9px;
        color: #4b5563;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sd-ftime {
        flex: none;
        margin-left: auto;
        font-size: 8.5px;
        color: #9ca3af;
        white-space: nowrap;
    }

    .sd-fpost {
        flex: none;
        font-size: 8.5px;
        font-weight: 700;
        color: #4f46e5;
        background: #fff;
        border: 1px solid #e0e7ff;
        border-radius: 999px;
        padding: 1px 6px;
        white-space: nowrap;
        opacity: 0;
        transform: translateX(-4px);
    }

    .fade-up.visible .sd-frow--hero {
        background: #eef2ff;
        border-color: #e0e7ff;
        transition: background-color .3s ease .9s, border-color .3s ease .9s;
    }

    .fade-up.visible .sd-frow--hero .sd-ftext {
        color: #1f2937;
        font-weight: 600;
        transition: color .3s ease .9s;
    }

    .fade-up.visible .sd-frow--hero .sd-fpost {
        opacity: 1;
        transform: translateX(0);
        transition: opacity .3s ease 1.2s, transform .3s ease 1.2s;
    }


    .sd-desk {
        position: absolute;
        inset: 0;
        background-image: radial-gradient(#d5d8e2 1.4px, transparent 1.4px);
        background-size: 15px 15px;
        -webkit-mask-image: radial-gradient(ellipse 84% 88% at 50% 52%, #000 34%, transparent 82%);
        mask-image: radial-gradient(ellipse 84% 88% at 50% 52%, #000 34%, transparent 82%);
        opacity: .6;
    }

    .sd-vis--video,
    .sd-vis--editor,
    .sd-vis--hype { overflow: visible; }

    .sd-vhalo {
        position: absolute;
        left: 50%;
        top: 51%;
        width: 150px;
        height: 150px;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, rgba(124, 58, 237, .22), transparent 66%);
        filter: blur(6px);
        pointer-events: none;
    }

    .sd-vphone {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 82px;
        height: 146px;
        padding: 4px;
        border-radius: 17px;
        background: linear-gradient(160deg, #262250, #100e28);
        box-shadow: 0 20px 38px -18px rgba(23, 19, 59, .55), inset 0 0 0 1px rgba(255, 255, 255, .06);
        z-index: 2;
    }

    .sd-vscreen {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 13px;
        overflow: hidden;
        background: #0b0a1c;
    }

    .sd-vvid {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        background: linear-gradient(165deg, #2e2a72, #7c3aed 55%, #f8a37e);
    }

    .sd-vscrim {
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(9, 7, 24, .30) 0%, transparent 24%, transparent 76%, rgba(9, 7, 24, .30) 100%);
    }

    .sd-vfade {
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: #07061a;
        opacity: 0;
    }

    .sd-vbar {
        position: absolute;
        left: 7px;
        right: 7px;
        bottom: 8px;
        height: 3px;
        border-radius: 2px;
        background: rgba(255, 255, 255, .3);
        overflow: hidden;
        z-index: 3;
    }

    .sd-vbar i {
        display: block;
        width: 0;
        height: 100%;
        border-radius: 2px;
        background: linear-gradient(90deg, #a5b4fc, #f0abfc);
    }

    .sd-vplay {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .92);
        box-shadow: 0 6px 16px -4px rgba(15, 12, 40, .5);
        z-index: 3;
        transition: opacity .3s ease, transform .3s ease;
    }

    .sd-vplay::after {
        content: "";
        position: absolute;
        left: 52%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 0 5px 9px;
        border-color: transparent transparent transparent #4f46e5;
    }

    .sd-vfmt {
        position: absolute;
        top: 7px;
        left: 7px;
        z-index: 3;
        font-size: 7px;
        font-weight: 700;
        letter-spacing: .04em;
        color: rgba(255, 255, 255, .95);
        background: linear-gradient(135deg, rgba(99, 102, 241, .9), rgba(168, 85, 247, .9));
        border-radius: 999px;
        padding: 1px 5px;
    }

    .sd-vdur {
        position: absolute;
        top: 7px;
        right: 7px;
        z-index: 3;
        font-size: 7.5px;
        font-weight: 700;
        letter-spacing: .04em;
        color: #fff;
        background: rgba(15, 12, 40, .55);
        border-radius: 999px;
        padding: 1px 5px;
    }

    .sd-edit {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(1.1);
        width: 244px;
        max-width: 100%;
        background: #fff;
        border: 1px solid #eef0f4;
        border-radius: 12px;
        padding: 10px 11px;
        box-shadow: 0 14px 32px -14px rgba(23, 19, 59, .28);
        z-index: 2;
    }

    .sd-ehead {
        display: flex;
        align-items: center;
        gap: 6px;
        padding-bottom: 5px;
        margin-bottom: 7px;
        border-bottom: 1px solid #f3f4f6;
    }

    .sd-eres {
        flex: none;
        margin-left: auto;
        font-size: 8px;
        font-weight: 700;
        color: #4f46e5;
        background: #eef2ff;
        border: 1px solid #e0e7ff;
        border-radius: 999px;
        padding: 1px 6px;
        white-space: nowrap;
    }

    .sd-ebody {
        display: flex;
        gap: 9px;
        align-items: stretch;
    }

    .sd-eprev {
        position: relative;
        flex: none;
        width: 42px;
        height: 66px;
        border-radius: 8px;
        overflow: hidden;
        background: linear-gradient(165deg, #2e2a72 0%, #7c3aed 55%, #f8a37e 100%);
    }

    .sd-eprev::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(60% 42% at 50% 30%, rgba(255, 255, 255, .18), transparent 70%),
            repeating-linear-gradient(45deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 3px);
    }

    .sd-eplay {
        position: absolute;
        left: 50%;
        top: 40%;
        transform: translate(-50%, -50%);
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .92);
        z-index: 2;
    }

    .sd-eplay::after {
        content: "";
        position: absolute;
        left: 53%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 3.5px 0 3.5px 6px;
        border-color: transparent transparent transparent #4f46e5;
    }

    .sd-ecap {
        position: absolute;
        left: 4px;
        right: 4px;
        bottom: 5px;
        z-index: 3;
        display: flex;
        gap: 2px;
        justify-content: center;
    }

    .sd-ecap b {
        height: 3px;
        border-radius: 2px;
        background: rgba(255, 255, 255, .6);
    }

    .sd-ecap b:nth-child(1) { width: 9px; }
    .sd-ecap b:nth-child(2) { width: 13px; }
    .sd-ecap b:nth-child(3) { width: 7px; }

    .sd-etracks {
        position: relative;
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }

    .sd-etrack {
        display: flex;
        align-items: center;
        gap: 3px;
        height: 16px;
    }

    .sd-eclip {
        height: 100%;
        border-radius: 4px;
    }

    .sd-eclip--1 { flex: 3; background: linear-gradient(120deg, #c7d2fe, #a5b4fc); }
    .sd-eclip--2 { flex: 4; background: linear-gradient(120deg, #ddd6fe, #c4b5fd); }
    .sd-eclip--3 { flex: 2; background: linear-gradient(120deg, #fbcfe8, #e9d5ff); }

    .sd-etrack--wave {
        gap: 2px;
        padding: 0 3px;
        border-radius: 4px;
        background: #f5f3ff;
    }

    .sd-ewave {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 2px;
        height: 100%;
    }

    .sd-ewave i {
        flex: 1;
        height: 100%;
        border-radius: 1px;
        background: #a5b4fc;
        transform: scaleY(.4);
    }

    .sd-ewave i:nth-child(2n) { transform: scaleY(.72); }
    .sd-ewave i:nth-child(3n) { transform: scaleY(1); }
    .sd-ewave i:nth-child(5n) { transform: scaleY(.55); }

    .sd-etrack--subs { gap: 4px; }

    .sd-esub {
        height: 6px;
        border-radius: 2px;
        background: #dbe1fb;
    }

    .sd-esub--1 { flex: 2; }
    .sd-esub--2 { flex: 3; }
    .sd-esub--3 { flex: 1.6; }

    .sd-ephead {
        position: absolute;
        top: -4px;
        bottom: -4px;
        left: 5%;
        width: 1.5px;
        background: #4f46e5;
        box-shadow: 0 0 0 2px rgba(79, 70, 229, .12);
    }

    .sd-ephead::before {
        content: "";
        position: absolute;
        top: -3px;
        left: 50%;
        transform: translateX(-50%);
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #4f46e5;
    }

    .sd-eexport {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        font-size: 8.5px;
        font-weight: 700;
        color: #fff;
        background: linear-gradient(135deg, #6366f1, #a855f7);
        border-radius: 999px;
        padding: 2px 8px;
    }

    .sd-eexport svg { display: block; }

    @keyframes sd-esweep { from { left: 5% } to { left: 95% } }
    @keyframes sd-ewav { 0%, 100% { transform: scaleY(.4) } 50% { transform: scaleY(1) } }
    @keyframes sd-esubkar { 0%, 100% { background: #dbe1fb } 50% { background: #818cf8 } }
    @keyframes sd-ekar { 0%, 100% { background: rgba(255, 255, 255, .6) } 50% { background: #fff } }

    .sd-hype {
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 3;
        width: 244px;
        max-width: 100%;
        transform: translate(-50%, -50%) scale(1.1);
        background: #fff;
        border: 1px solid #eef0f4;
        border-radius: 12px;
        padding: 10px 11px;
        box-shadow: 0 14px 32px -14px rgba(23, 19, 59, .28);
    }

    .sd-hhead {
        display: flex;
        align-items: center;
        gap: 6px;
        padding-bottom: 7px;
        margin-bottom: 5px;
        border-bottom: 1px solid #f3f4f6;
    }

    .sd-hico {
        flex: none;
        width: 16px;
        height: 16px;
        border-radius: 5px;
        background: linear-gradient(135deg, #4f46e5, #7c3aed 62%, #d16bd6);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sd-htitle {
        font-size: 9.5px;
        font-weight: 800;
        color: #1f2937;
    }

    .sd-hlive {
        margin-left: auto;
        display: inline-flex;
        align-items: center;
        gap: 3px;
        font-size: 8px;
        font-weight: 700;
        color: #6d28d9;
        background: #f5f3ff;
        border: 1px solid #ede9fe;
        border-radius: 999px;
        padding: 1px 6px;
    }

    .sd-hlive i {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #7c3aed;
    }

    .sd-hrow {
        position: relative;
        display: grid;
        grid-template-columns: 12px minmax(0, 1fr) auto 22px;
        align-items: center;
        gap: 7px;
        height: 22px;
        padding: 0 4px;
        border-radius: 8px;
        border: 1px solid transparent;
    }

    .sd-hrow + .sd-hrow { margin-top: 2px; }

    .sd-hrank {
        flex: none;
        width: 12px;
        text-align: center;
        font-size: 9px;
        font-weight: 800;
        color: #a855f7;
    }

    .sd-htext {
        flex: 1;
        min-width: 0;
        font-size: 9px;
        color: #4b5563;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sd-hspark {
        flex: none;
        display: flex;
        align-items: flex-end;
        gap: 2px;
        width: 22px;
        height: 16px;
    }

    .sd-hspark i {
        flex: 1;
        border-radius: 1px;
        background: linear-gradient(180deg, #a855f7, #6366f1);
        transform-origin: bottom;
    }

    .sd-hrow--hero .sd-hspark i:nth-child(1) { height: 52%; }
    .sd-hrow--hero .sd-hspark i:nth-child(2) { height: 76%; }
    .sd-hrow--hero .sd-hspark i:nth-child(3) { height: 100%; }

    .sd-hrow--r2 .sd-hspark i:nth-child(1) { height: 38%; }
    .sd-hrow--r2 .sd-hspark i:nth-child(2) { height: 58%; }
    .sd-hrow--r2 .sd-hspark i:nth-child(3) { height: 80%; }

    .sd-hrow--r3 .sd-hspark i:nth-child(1) { height: 26%; }
    .sd-hrow--r3 .sd-hspark i:nth-child(2) { height: 44%; }
    .sd-hrow--r3 .sd-hspark i:nth-child(3) { height: 62%; }

    .sd-hgrow {
        flex: none;
        display: inline-flex;
        align-items: center;
        gap: 2px;
        font-size: 8.5px;
        font-weight: 800;
        color: #7c3aed;
        white-space: nowrap;
    }

    .sd-hgrow svg { display: block; }

    .sd-hplan {
        flex: none;
        font-size: 8.5px;
        font-weight: 700;
        color: #4f46e5;
        background: #fff;
        border: 1px solid #e0e7ff;
        border-radius: 999px;
        padding: 1px 6px;
        white-space: nowrap;
        opacity: 0;
        transform: translateX(-4px);
    }

    .fade-up.visible .sd-hrow--hero {
        background: linear-gradient(90deg, #faf5ff, #eef2ff);
        border-color: #e9d5ff;
        transition: background-color .3s ease .9s, border-color .3s ease .9s;
    }

    .fade-up.visible .sd-hrow--hero .sd-htext {
        color: #1f2937;
        font-weight: 600;
        transition: color .3s ease .9s;
    }

    .fade-up.visible .sd-hrow--hero .sd-hplan {
        opacity: 1;
        transform: none;
        transition: opacity .3s ease 1.2s, transform .3s ease 1.2s;
    }

    .fade-up.visible .sd-hspark i {
        animation: sd-hbar .6s cubic-bezier(.22, .61, .36, 1) both;
    }

    .fade-up.visible .sd-hspark i:nth-child(2) { animation-delay: .06s; }
    .fade-up.visible .sd-hspark i:nth-child(3) { animation-delay: .12s; }

    @keyframes sd-hbar { from { transform: scaleY(0) } to { transform: scaleY(1) } }
    @keyframes sd-hbar-h { from { transform: scaleY(.2) } to { transform: scaleY(1) } }
    @keyframes sd-hpulse { 0%, 100% { transform: scale(1); opacity: 1 } 50% { transform: scale(1.35); opacity: .55 } }

    .sd-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-top: 48px;
    }

    .sd-cta > a {
        width: 100%;
        justify-content: center;
    }

    @media (min-width: 1024px) {
        .sd-spot--b {
            display: block;
        }

        .sd-hall-ring {
            margin-bottom: 76px;
        }

        .sd-hall {
            padding: 28px;
        }

        .sd-pill {
            font-size: 11px;
        }

        .sd-caps {
            display: flex;
        }

        .sd-body {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 260px;
            column-gap: 32px;
            row-gap: 12px;
        }

        .sd-canvas {
            order: 0;
            grid-column: 1;
            grid-row: 1;
            display: block;
            overflow: visible;
            aspect-ratio: 640 / 400;
            padding: 0;
        }

        .sd-caption {
            order: 0;
            grid-column: 1;
            grid-row: 2;
            margin-top: 0;
        }

        .sd-reelcol {
            order: 0;
            grid-column: 2;
            grid-row: 1 / span 2;
            align-self: end;
            justify-self: center;
            margin: 0;
        }

        .sd-links {
            display: block;
        }

        .sd-timeline {
            display: flex;
        }

        .sd-node {
            position: absolute;
            width: 24%;
            padding: 7px;
            background: rgba(255, 255, 255, .08);
            backdrop-filter: blur(8px);
        }

        .sd-node-t {
            font-size: 9px;
            letter-spacing: .05em;
        }

        .sd-node-dot {
            display: inline-block;
        }

        .sd-node-p {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-top: 6px;
            font-size: 10px;
            line-height: 1.35;
            color: rgba(199, 210, 254, .7);
            min-height: 27px;
        }

        .sd-node--1 {
            left: 3.75%;
            top: 4%;
            transform: rotate(-1.2deg);
        }

        .sd-node--2 {
            left: 36.25%;
            top: 21%;
            transform: rotate(1deg);
        }

        .sd-node--3 {
            left: 68.1%;
            top: 6.5%;
            transform: none;
        }

        .sd-node-chip {
            display: inline-block;
        }

        .sd-reel {
            width: 220px;
            border-radius: 32px;
            transform: translateY(56px);
            box-shadow: 0 34px 70px -24px rgba(10, 8, 30, .65);
        }

        .sd-tools {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (min-width: 640px) and (max-width: 1023px) {
        .sd-tools {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 640px) {
        .sd-cta {
            flex-direction: row;
            justify-content: center;
        }

        .sd-cta > a {
            width: auto;
        }
    }

    @keyframes sd-shine-h {
        to {
            transform: translateX(140%);
        }
    }

    @media (hover: hover) {
        .sd-tools article:hover .sd-mini {
            transform: scale(1.1) translateY(-2px);
        }

        .sd-tools article:hover .sd-pola--ref {
            transform: translateX(-96%) rotate(-14deg);
        }

        .sd-tools article:hover .sd-pola--new {
            transform: translateX(-4%) rotate(14deg);
        }

        .sd-tools article:hover .sd-fanshine {
            animation: sd-shine-h 1.1s ease-out 1 both;
        }

        .sd-tools article:hover .sd-fpanel {
            transform: translate(-50%, -50%) scale(1.1) translateY(-8px);
        }

        .sd-tools article:hover .sd-fstack--1 {
            transform: translate(-50%, calc(-50% + 31px)) scale(.955);
            opacity: .9;
        }

        .sd-tools article:hover .sd-fstack--2 {
            transform: translate(-50%, calc(-50% + 47px)) scale(.895);
            opacity: .6;
        }

        .sd-tools article:hover .sd-vplay {
            opacity: 0;
            transform: translate(-50%, -50%) scale(.7);
        }

        .sd-tools article:hover .sd-ephead { animation: sd-esweep 3s linear infinite; }

        .sd-tools article:hover .sd-ewave i {
            animation-name: sd-ewav;
            animation-duration: 1s;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
        }

        .sd-tools article:hover .sd-esub {
            animation-name: sd-esubkar;
            animation-duration: 1.4s;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
        }

        .sd-tools article:hover .sd-ecap b {
            animation-name: sd-ekar;
            animation-duration: 1.4s;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
        }

        .sd-tools article:hover .sd-hspark i {
            animation: sd-hbar-h .7s cubic-bezier(.22, .61, .36, 1) both;
        }

        .sd-tools article:hover .sd-hico { animation: sd-hpulse 1.4s ease-in-out infinite; }

        .sd-tools article:hover .sd-hrow--hero {
            background: linear-gradient(90deg, #f5ecff, #e6ecff);
            border-color: #e9d5ff;
        }

        .sd-tools article:hover .sd-hplan {
            opacity: 1;
            transform: none;
            transition: opacity .3s ease, transform .3s ease;
        }
    }

    @media (hover: none) {
        .sd-tools article.sd-live .sd-mini {
            transform: scale(1.1) translateY(-2px);
        }

        .sd-tools article.sd-live .sd-pola--ref {
            transform: translateX(-96%) rotate(-14deg);
        }

        .sd-tools article.sd-live .sd-pola--new {
            transform: translateX(-4%) rotate(14deg);
        }

        .sd-tools article.sd-live .sd-fanshine {
            animation: sd-shine-h 1.1s ease-out 1 both;
        }

        .sd-tools article.sd-live .sd-fpanel {
            transform: translate(-50%, -50%) scale(1.1) translateY(-8px);
        }

        .sd-tools article.sd-live .sd-fstack--1 {
            transform: translate(-50%, calc(-50% + 31px)) scale(.955);
            opacity: .9;
        }

        .sd-tools article.sd-live .sd-fstack--2 {
            transform: translate(-50%, calc(-50% + 47px)) scale(.895);
            opacity: .6;
        }

        .sd-tools article.sd-live .sd-vplay {
            opacity: 0;
            transform: translate(-50%, -50%) scale(.7);
        }

        .sd-tools article.sd-live .sd-ephead { animation: sd-esweep 3s linear infinite; }

        .sd-tools article.sd-live .sd-ewave i {
            animation-name: sd-ewav;
            animation-duration: 1s;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
        }

        .sd-tools article.sd-live .sd-esub {
            animation-name: sd-esubkar;
            animation-duration: 1.4s;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
        }

        .sd-tools article.sd-live .sd-ecap b {
            animation-name: sd-ekar;
            animation-duration: 1.4s;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
        }

        .sd-tools article.sd-live .sd-hspark i {
            animation: sd-hbar-h .7s cubic-bezier(.22, .61, .36, 1) both;
        }

        .sd-tools article.sd-live .sd-hico { animation: sd-hpulse 1.4s ease-in-out infinite; }

        .sd-tools article.sd-live .sd-hrow--hero {
            background: linear-gradient(90deg, #f5ecff, #e6ecff);
            border-color: #e9d5ff;
        }

        .sd-tools article.sd-live .sd-hplan {
            opacity: 1;
            transform: none;
            transition: opacity .3s ease, transform .3s ease;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        [class^="sd-"], [class*=" sd-"],
        [class^="sd-"]::before, [class*=" sd-"]::before,
        [class^="sd-"]::after, [class*=" sd-"]::after {
            animation: none !important;
            transition-duration: 1ms !important;
        }

        .sd-seg b, .sd-cta > a {
            animation: none !important;
            transition: none !important;
        }


        .sd-imp {
            display: none;
        }

        .sd-fanshine {
            display: none;
        }

        .sd-mt {
            opacity: 1;
        }

        .fade-up .sd-frow--hero {
            background: #eef2ff;
            border-color: #e0e7ff;
        }

        .fade-up .sd-frow--hero .sd-ftext {
            color: #1f2937;
            font-weight: 600;
        }

        .fade-up .sd-frow--hero .sd-fpost {
            opacity: 1;
            transform: none;
        }

        .fade-up .sd-hrow--hero {
            background: linear-gradient(90deg, #faf5ff, #eef2ff);
            border-color: #e9d5ff;
        }

        .fade-up .sd-hrow--hero .sd-htext {
            color: #1f2937;
            font-weight: 600;
        }

        .fade-up .sd-hrow--hero .sd-hplan {
            opacity: 1;
            transform: none;
        }
    }

/* ============ блок 6 (был inline, строка 11135) ============ */
            .lp-tt-icon {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 1rem;
                height: 1rem;
                flex-shrink: 0;
                margin-left: 0.125rem;
                padding: 0;
                border: none;
                background: transparent;
                color: #9ca3af;
                cursor: pointer;
                opacity: 0.85;
                font-size: 0;
                line-height: 1;
                transition: color 0.15s ease, transform 0.15s ease;
            }

            .lp-tt-icon::before {
                content: "";
                width: 100%;
                height: 100%;
                background-color: currentColor;
                -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'/><line x1='12' y1='17' x2='12.01' y2='17'/></svg>");
                mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'/><line x1='12' y1='17' x2='12.01' y2='17'/></svg>");
                -webkit-mask-size: contain;
                mask-size: contain;
                -webkit-mask-repeat: no-repeat;
                mask-repeat: no-repeat;
                -webkit-mask-position: center;
                mask-position: center;
                display: block;
            }

            .lp-tt-icon:hover {
                color: #4f46e5;
                opacity: 1;
                transform: scale(1.1);
            }

            .lp-tt-icon:active {
                transform: scale(0.95);
            }

            @media (max-width: 640px) {
                .lp-tt-icon::before {
                    display: none;
                }

                .lp-tt-icon {
                    color: #6b7280;
                    border: 1px solid #d1d5db;
                    border-radius: 50%;
                    background: #fff;
                    font-size: 0.625rem;
                }

                .lp-tt-icon:hover {
                    color: #fff;
                    background: #4f46e5;
                    border-color: #4f46e5;
                }
            }

            .lp-tt-popover {
                position: fixed;
                top: -9999px;
                left: -9999px;
                background: #111827;
                color: #fff;
                font-size: 0.75rem;
                font-weight: 400;
                line-height: 1.45;
                padding: 0.625rem 0.875rem;
                border-radius: 0.5rem;
                width: max-content;
                max-width: 18rem;
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
                z-index: 9999;
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.12s ease;
            }

            .lp-tt-popover.is-open {
                opacity: 1;
                pointer-events: auto;
            }

/* ============ блок 7 (был inline, строка 14601) ============ */
    #scroll-top-btn.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
        #scroll-top-btn {
            transition: opacity .2s linear;
        }
    }
