:root {
            --landing-ease: cubic-bezier(.22, 1, .36, 1);
        }

        body.frontpage-landing {
            margin: 0;
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }

        .landing-shell {
            min-height: 100vh;
            overflow-x: hidden;
        }

        .landing-shell [data-landing-reveal] {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .6s var(--landing-ease), transform .6s var(--landing-ease);
        }

        .landing-shell [data-landing-reveal].is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .landing-toast-stack {
            position: fixed;
            top: 18px;
            right: 18px;
            z-index: 80;
            display: grid;
            gap: 10px;
            pointer-events: none;
        }

        .landing-toast {
            pointer-events: auto;
            min-width: 260px;
            max-width: min(420px, calc(100vw - 36px));
            border-radius: 14px;
            padding: 12px 14px;
            box-shadow: 0 18px 40px rgba(5, 7, 15, .25);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            transform: translateY(-8px);
            opacity: 0;
            transition: transform .22s ease, opacity .22s ease;
        }

        .landing-toast.is-visible {
            transform: translateY(0);
            opacity: 1;
        }

        .landing-toast-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            margin-top: 6px;
            flex: 0 0 auto;
        }

        .landing-toast-copy {
            font-size: 13px;
            line-height: 1.45;
            font-weight: 600;
        }

        html[data-landing-theme="dark"] .landing-toast {
            background: rgba(11, 14, 26, .94);
            color: rgba(245, 247, 255, .96);
            border: 1px solid rgba(255, 255, 255, .08);
        }

        html[data-landing-theme="light"] .landing-toast {
            background: rgba(255, 255, 255, .96);
            color: #1c2446;
            border: 1px solid rgba(69, 79, 133, .14);
            box-shadow: 0 18px 36px rgba(66, 74, 120, .2);
        }

        .landing-toast.is-success .landing-toast-dot {
            background: #22c55e;
        }

        .landing-toast.is-error .landing-toast-dot {
            background: #ef4444;
        }

        .landing-wrap {
            width: min(1180px, calc(100% - 48px));
            margin: 0 auto;
        }

        html[data-landing-theme="dark"] body.frontpage-landing,
        html[data-landing-theme="dark"] .landing-shell {
            background: #06070c;
            color: #ffffff;
        }

        html[data-landing-theme="light"] body.frontpage-landing,
        html[data-landing-theme="light"] .landing-shell {
            background: #f3edff;
            color: #14192f;
        }

        .landing-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            transition: background .25s var(--landing-ease), box-shadow .25s var(--landing-ease), backdrop-filter .25s var(--landing-ease), border-color .25s var(--landing-ease);
            border-bottom: 1px solid transparent;
        }

        .landing-header.is-scrolled {
            backdrop-filter: blur(18px);
        }

        html[data-landing-theme="dark"] .landing-header.is-scrolled {
            background: rgba(7, 8, 16, .74);
            box-shadow: 0 12px 42px rgba(0, 0, 0, .18);
            border-bottom-color: rgba(255, 255, 255, .05);
        }

        html[data-landing-theme="light"] .landing-header.is-scrolled {
            background: rgba(245, 238, 255, .8);
            box-shadow: 0 12px 42px rgba(114, 87, 179, .12);
            border-bottom-color: rgba(73, 51, 125, .08);
        }

        .landing-header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0;
        }

        .landing-brand {
            display: inline-flex;
            align-items: center;
            font-size: 2rem;
            line-height: 1;
            font-weight: 700;
            letter-spacing: -.04em;
            text-decoration: none;
            background: linear-gradient(90deg, #8fd3ff 0%, #8c82ff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .landing-brand img {
            height: 34px;
            width: auto;
            display: none;
        }

        html[data-landing-theme="light"] .landing-brand img.logo-light {
            display: block;
        }

        html[data-landing-theme="dark"] .landing-brand img.logo-dark {
            display: block;
        }

        .landing-header-actions {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .landing-nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .landing-nav a {
            position: relative;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color .2s ease;
        }

        html[data-landing-theme="dark"] .landing-nav a {
            color: rgba(255, 255, 255, .85);
        }

        html[data-landing-theme="light"] .landing-nav a {
            color: rgba(20, 25, 47, .82);
        }

        .landing-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 100%;
            height: 2px;
            border-radius: 999px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .22s ease;
            background: #b43dff;
        }

        .landing-nav a:hover::after,
        .landing-nav a.is-active::after {
            transform: scaleX(1);
        }

        .landing-nav a.is-active,
        .landing-nav a:hover {
            color: #cc74ff;
        }

        .landing-header-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 136px;
            height: 48px;
            padding: 0 22px;
            text-decoration: none;
            border-radius: 12px;
            background: #ffffff;
            color: #111827;
            font-size: 15px;
            font-weight: 700;
            box-shadow: 0 0 30px rgba(91, 170, 255, .22);
            white-space: nowrap;
        }

        .landing-theme-toggle {
            width: 40px;
            height: 40px;
            border: 0;
            background: transparent;
            border-radius: 999px;
            cursor: pointer;
            transition: background .2s ease, transform .2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .landing-language-switcher {
            position: relative;
        }

        .landing-language-button {
            border: 0;
            border-radius: 14px;
            padding: 6px 10px 6px 8px;
            font-size: 13px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            white-space: nowrap;
            transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        .landing-language-button:hover {
            transform: translateY(-1px);
        }

        .landing-language-flag {
            width: 24px;
            height: 24px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            overflow: hidden;
            background: rgba(255, 255, 255, .92);
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .04);
        }

        .landing-language-flag img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        html[data-landing-theme="dark"] .landing-language-button {
            background: rgba(255, 255, 255, .1);
            color: #fff;
        }

        html[data-landing-theme="light"] .landing-language-button {
            background: rgba(255, 255, 255, .75);
            color: #151833;
        }

        .landing-language-menu {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            min-width: 190px;
            padding: 6px;
            border-radius: 16px;
            box-shadow: 0 22px 52px rgba(0, 0, 0, .22);
            border: 1px solid transparent;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px) scale(.98);
            transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
            z-index: 20;
        }

        .landing-language-switcher.is-open .landing-language-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        html[data-landing-theme="dark"] .landing-language-menu {
            background: rgba(12, 14, 24, .98);
            border-color: rgba(255, 255, 255, .08);
        }

        html[data-landing-theme="light"] .landing-language-menu {
            background: rgba(255, 255, 255, .98);
            border-color: rgba(20, 25, 47, .08);
        }

        .landing-language-option {
            display: flex;
            align-items: center;
            gap: 8px;
            width: 100%;
            padding: 8px 10px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            transition: background .2s ease, transform .2s ease;
        }

        html[data-landing-theme="dark"] .landing-language-option {
            color: rgba(255, 255, 255, .9);
        }

        html[data-landing-theme="light"] .landing-language-option {
            color: #171c37;
        }

        html[data-landing-theme="dark"] .landing-language-option:hover {
            background: rgba(255, 255, 255, .06);
        }

        html[data-landing-theme="light"] .landing-language-option:hover {
            background: rgba(91, 69, 143, .08);
        }

        .landing-language-option.is-active {
            pointer-events: none;
        }

        html[data-landing-theme="dark"] .landing-theme-toggle {
            color: rgba(255, 255, 255, .58);
        }

        html[data-landing-theme="light"] .landing-theme-toggle {
            color: rgba(20, 25, 47, .62);
        }

        .landing-theme-toggle:hover {
            transform: translateY(-1px);
        }

        html[data-landing-theme="dark"] .landing-theme-toggle:hover {
            background: rgba(255, 255, 255, .05);
        }

        html[data-landing-theme="light"] .landing-theme-toggle:hover {
            background: rgba(75, 55, 130, .06);
        }

        .landing-hero {
            position: relative;
            overflow: hidden;
            padding: 136px 0 96px;
            min-height: 760px;
        }

        .landing-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: .4;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.09'%3E%3Ccircle cx='7' cy='7' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        html[data-landing-theme="dark"] .landing-hero {
            background:
                radial-gradient(circle at 6% 14%, rgba(125, 139, 255, .18), transparent 0 20%),
                radial-gradient(circle at 94% 22%, rgba(202, 92, 255, .16), transparent 0 16%),
                linear-gradient(90deg, #1a234f 0%, #2d1f57 46%, #36133e 100%);
        }

        html[data-landing-theme="light"] .landing-hero {
            background:
                radial-gradient(circle at 6% 14%, rgba(125, 139, 255, .18), transparent 0 20%),
                radial-gradient(circle at 94% 22%, rgba(202, 92, 255, .14), transparent 0 16%),
                linear-gradient(90deg, #e7efff 0%, #efe6ff 46%, #f2dff2 100%);
        }

        .landing-hero-inner {
            position: relative;
            text-align: center;
        }

        .landing-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 8px 18px 8px 10px;
            border-radius: 999px;
            backdrop-filter: blur(12px);
            box-shadow: 0 16px 30px rgba(0, 0, 0, .16);
        }

        html[data-landing-theme="dark"] .landing-badge {
            background: rgba(8, 8, 8, .84);
            color: rgba(255, 255, 255, .72);
        }

        html[data-landing-theme="light"] .landing-badge {
            background: rgba(255, 255, 255, .94);
            color: rgba(33, 35, 56, .62);
        }

        .landing-badge-avatars {
            display: flex;
            margin-right: 2px;
        }

        .landing-badge-avatars img {
            width: 28px;
            height: 28px;
            border-radius: 999px;
            object-fit: cover;
            margin-left: -8px;
            box-shadow: 0 0 0 2px rgba(0, 0, 0, .55);
        }

        .landing-badge-avatars img:first-child {
            margin-left: 0;
        }

        .landing-title {
            margin: 34px auto 0;
            max-width: 980px;
            font-size: clamp(4.2rem, 8vw, 5.3rem);
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -.06em;
        }

        html[data-landing-theme="dark"] .landing-title {
            color: #eef3ff;
        }

        html[data-landing-theme="light"] .landing-title {
            color: #1a2140;
        }

        .landing-title-rotating {
            display: inline-block;
            min-width: 2.8ch;
            background: linear-gradient(90deg, #4f7cff 0%, #994bff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: opacity .24s ease, transform .24s ease;
        }

        .landing-title-rotating.is-changing {
            opacity: .15;
            transform: translateY(10px);
        }

        .landing-subtitle {
            max-width: 760px;
            margin: 34px auto 0;
            font-size: clamp(1.15rem, 1.7vw, 1.6rem);
            line-height: 1.5;
        }

        html[data-landing-theme="dark"] .landing-subtitle {
            color: rgba(255, 255, 255, .46);
        }

        html[data-landing-theme="light"] .landing-subtitle {
            color: rgba(28, 31, 56, .55);
        }

        .landing-hero-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-top: 34px;
        }

        .landing-main-button,
        .landing-secondary-button {
            height: 48px;
            padding: 0 22px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: transform .2s ease, background .2s ease, color .2s ease;
        }

        .landing-main-button {
            background: #ffffff;
            color: #111827;
            box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
        }

        .landing-secondary-button {
            backdrop-filter: blur(8px);
        }

        html[data-landing-theme="dark"] .landing-secondary-button {
            background: rgba(255, 255, 255, .05);
            color: rgba(255, 255, 255, .86);
        }

        html[data-landing-theme="light"] .landing-secondary-button {
            background: rgba(255, 255, 255, .72);
            color: rgba(21, 24, 43, .84);
        }

        .landing-main-button:hover,
        .landing-secondary-button:hover {
            transform: translateY(-1px);
        }

        .landing-hero-shot {
            position: relative;
            margin: 54px auto 0;
            width: min(1200px, calc(100% - 36px));
            overflow: hidden;
        }

        .landing-hero-shot.is-slider {
            width: 100vw;
            max-width: none;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
        }

        .landing-hero-shot::before {
            content: "";
            position: absolute;
            left: 10%;
            right: 10%;
            bottom: -28px;
            height: 54px;
            border-radius: 999px;
            filter: blur(36px);
            background: rgba(117, 73, 255, .28);
            pointer-events: none;
        }

        .landing-hero-static-list {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }

        .landing-hero-static-list.count-1 {
            grid-template-columns: 1fr;
            max-width: min(860px, 100%);
            margin: 0 auto;
        }

        .landing-hero-static-list.count-2 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .landing-hero-static-list.count-3 {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .landing-hero-static-list .landing-hero-mockup {
            border-radius: 16px;
        }

        .landing-hero-static-list.count-1 .landing-hero-mockup img {
            aspect-ratio: 16 / 9;
        }

        .landing-hero-shot.is-slider .landing-hero-static-list {
            display: none;
        }

        .landing-hero-marquee {
            width: 100%;
            overflow: hidden;
        }

        .landing-hero-track {
            display: flex;
            align-items: stretch;
            gap: 14px;
            width: max-content;
            animation: landingHeroSlide 34s linear infinite;
        }

        .landing-hero-track .landing-hero-mockup {
            width: min(560px, 78vw);
            flex: 0 0 auto;
        }

        @keyframes landingHeroSlide {
            from { transform: translateX(0); }
            to { transform: translateX(calc(-50% - 7px)); }
        }

        .landing-mockup {
            position: relative;
            overflow: hidden;
            border-radius: 22px;
            box-shadow: 0 36px 80px rgba(6, 6, 14, .5);
            background: rgba(0, 0, 0, .12);
        }

        .landing-mockup img {
            display: block;
            width: 100%;
            height: auto;
        }

        .landing-hero-mockup img {
            aspect-ratio: 16 / 10;
            object-fit: cover;
        }

        .landing-section {
            padding: 20px 0;
        }

        html[data-landing-theme="dark"] .landing-section,
        html[data-landing-theme="dark"] .landing-footer {
            background: #06070c;
        }

        html[data-landing-theme="light"] .landing-section,
        html[data-landing-theme="light"] .landing-footer {
            background: #fbf8ff;
        }

        .landing-section-label {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: #b43dff;
            padding-bottom: 6px;
            border-bottom: 2px solid rgba(180, 61, 255, .8);
        }

        .landing-heading {
            margin: 18px 0 0;
            font-size: clamp(2.8rem, 4vw, 4.6rem);
            line-height: .98;
            letter-spacing: -.045em;
            font-weight: 800;
        }

        .landing-section-copy {
            max-width: 760px;
            margin: 24px auto 0;
            font-size: 1.32rem;
            line-height: 1.55;
        }

        .landing-inline-gradient {
            background: linear-gradient(90deg, #4f7cff 0%, #994bff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }

        html[data-landing-theme="dark"] .landing-heading,
        html[data-landing-theme="dark"] .landing-card-title,
        html[data-landing-theme="dark"] .landing-panel-title,
        html[data-landing-theme="dark"] .landing-faq-question,
        html[data-landing-theme="dark"] .landing-footer-title {
            color: #ffffff;
        }

        html[data-landing-theme="dark"] .landing-section-copy,
        html[data-landing-theme="dark"] .landing-card-copy,
        html[data-landing-theme="dark"] .landing-muted-text,
        html[data-landing-theme="dark"] .landing-footer-copy,
        html[data-landing-theme="dark"] .landing-footer-list li {
            color: rgba(255, 255, 255, .48);
        }

        html[data-landing-theme="light"] .landing-heading,
        html[data-landing-theme="light"] .landing-card-title,
        html[data-landing-theme="light"] .landing-panel-title,
        html[data-landing-theme="light"] .landing-faq-question,
        html[data-landing-theme="light"] .landing-footer-title {
            color: #171c37;
        }

        html[data-landing-theme="light"] .landing-section-copy,
        html[data-landing-theme="light"] .landing-card-copy,
        html[data-landing-theme="light"] .landing-muted-text,
        html[data-landing-theme="light"] .landing-footer-copy,
        html[data-landing-theme="light"] .landing-footer-list li {
            color: rgba(23, 28, 55, .58);
        }

        .landing-brands-stage {
            width: 100%;
            margin: 50px auto 0;
        }

        .landing-brands-shot {
            border-radius: 24px;
            padding: 14px 16px;
            overflow: hidden;
            border: 1px solid transparent;
        }

        html[data-landing-theme="dark"] .landing-brands-shot {
            background: linear-gradient(180deg, rgba(16, 16, 25, .88) 0%, rgba(11, 11, 18, .88) 100%);
            border-color: rgba(255, 255, 255, .06);
            box-shadow: 0 20px 52px rgba(0, 0, 0, .26);
        }

        html[data-landing-theme="light"] .landing-brands-shot {
            background: linear-gradient(180deg, rgba(255, 255, 255, .92) 0%, rgba(248, 243, 255, .92) 100%);
            border-color: rgba(85, 62, 134, .1);
            box-shadow: 0 18px 46px rgba(110, 88, 154, .14);
        }

        .landing-brands-marquee {
            width: 100%;
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        }

        .landing-brands-track {
            display: flex;
            align-items: center;
            gap: 24px;
            width: max-content;
            animation: landingBrandsSlide 28s linear infinite;
        }

        .landing-brands-item {
            height: 92px;
            width: min(220px, 24vw);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
        }

        .landing-brands-item img {
            display: block;
            width: auto;
            max-height: 66px;
            max-width: 100%;
            margin: 0 auto;
            opacity: .75;
            filter: saturate(.9);
        }

        @keyframes landingBrandsSlide {
            from { transform: translateX(0); }
            to { transform: translateX(calc(-50% - 12px)); }
        }

        .landing-setup-grid {
            display: grid;
            grid-template-columns: 1.02fr 1fr;
            gap: 44px;
            align-items: center;
            margin-top: 64px;
        }

        .landing-step-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .landing-step-item {
            padding: 18px 18px 22px;
            border-radius: 20px;
            transition: background .2s ease, transform .2s ease;
        }

        .landing-step-item.is-active {
            background: rgba(255, 255, 255, .03);
        }

        html[data-landing-theme="light"] .landing-step-item.is-active {
            background: rgba(255, 255, 255, .56);
        }

        .landing-step-progress {
            margin-top: 16px;
            height: 4px;
            width: 100%;
            border-radius: 999px;
            overflow: hidden;
        }

        html[data-landing-theme="dark"] .landing-step-progress {
            background: rgba(255, 255, 255, .06);
        }

        html[data-landing-theme="light"] .landing-step-progress {
            background: rgba(53, 47, 81, .08);
        }

        .landing-step-progress > span {
            display: block;
            width: 100%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, #2b76ff 0%, #b53dff 100%);
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 4.2s linear;
        }

        .landing-step-item.is-active .landing-step-progress > span {
            transform: scaleX(1);
        }

        .landing-panel {
            background: rgba(255, 255, 255, .025);
            border-radius: 24px;
            padding: 14px;
            box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
        }

        html[data-landing-theme="light"] .landing-panel {
            background: rgba(255, 255, 255, .72);
            box-shadow: 0 24px 60px rgba(100, 84, 151, .16);
        }

        .landing-panel img {
            width: 100%;
            display: block;
            border-radius: 18px;
            transition: opacity .22s ease, transform .22s ease;
        }

        .landing-panel img.is-changing {
            opacity: .35;
            transform: scale(.985);
        }

        .landing-card-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 28px;
            margin-top: 68px;
        }

        .landing-features-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 28px;
            margin-top: 68px;
            align-items: start;
        }

        .landing-feature-column {
            overflow: hidden;
            --feature-column-height: auto;
        }

        .landing-feature-track {
            display: flex;
            flex-direction: column;
            gap: 28px;
            will-change: transform;
            --feature-loop-distance: 0px;
        }

        .landing-feature-set {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .landing-feature-card {
            position: relative;
            overflow: hidden;
            /* min-height: 260px; */
        }

        .landing-feature-icon {
            position: absolute;
            top: 26px;
            right: 26px;
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            background: linear-gradient(135deg, rgba(59, 130, 246, .18), rgba(168, 85, 247, .18));
            color: #7c3aed;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
        }

        html[data-landing-theme="light"] .landing-feature-icon {
            background: linear-gradient(135deg, rgba(59, 130, 246, .12), rgba(168, 85, 247, .12));
            color: #5b4dd6;
        }

        @keyframes feature-scroll-up {
            from {
                transform: translate3d(0, 0, 0);
            }

            to {
                transform: translate3d(0, calc(-1 * var(--feature-loop-distance, 0px)), 0);
            }
        }

        @keyframes feature-scroll-down {
            from {
                transform: translate3d(0, calc(-1 * var(--feature-loop-distance, 0px)), 0);
            }

            to {
                transform: translate3d(0, 0, 0);
            }
        }

        @keyframes feature-scroll-left {
            from {
                transform: translate3d(0, 0, 0);
            }

            to {
                transform: translate3d(calc(-1 * var(--feature-loop-distance, 0px)), 0, 0);
            }
        }

        @keyframes feature-scroll-right {
            from {
                transform: translate3d(calc(-1 * var(--feature-loop-distance, 0px)), 0, 0);
            }

            to {
                transform: translate3d(0, 0, 0);
            }
        }

        @media (min-width: 1024px) {
            .landing-feature-column {
                height: var(--feature-column-height, auto);
            }

            .landing-feature-track.is-up {
                animation: feature-scroll-up 64s linear infinite;
            }

            .landing-feature-track.is-down {
                animation: feature-scroll-down 64s linear infinite;
            }
        }

        @media (max-width: 1023px) {
            .landing-features-grid {
                grid-template-columns: 1fr;
            }

            .landing-shell [data-landing-reveal] {
                opacity: 1;
                transform: none;
            }

            .landing-feature-track {
                display: inline-flex;
                flex-direction: row;
                align-items: stretch;
                width: auto;
                min-width: 100%;
            }

            .landing-feature-set {
                display: inline-flex;
                flex-direction: row;
                flex-wrap: nowrap;
                flex: 0 0 auto;
            }

            .landing-feature-card {
                width: min(84vw, 380px);
                flex: 0 0 auto;
            }

            .landing-feature-track.is-up {
                animation: feature-scroll-left 56s linear infinite;
            }

            .landing-feature-track.is-down {
                animation: feature-scroll-right 62s linear infinite;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .landing-feature-track.is-up,
            .landing-feature-track.is-down {
                animation: none !important;
            }

            .landing-shell [data-landing-reveal] {
                opacity: 1;
                transform: none;
                transition: none;
            }

            .landing-toast {
                transition: none;
            }
        }

        .landing-card {
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
            transition: transform .2s ease, box-shadow .2s ease;
        }

        html[data-landing-theme="dark"] .landing-card {
            background: #0d0d12;
        }

        html[data-landing-theme="light"] .landing-card {
            background: rgba(255, 255, 255, .78);
            box-shadow: 0 16px 44px rgb(251 248 255);
        }

        .landing-card:hover {
            transform: translateY(-2px);
        }

        .landing-card-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 18px;
            margin-bottom: 28px;
        }

        .landing-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .landing-card-stat {
            text-align: right;
        }

        .landing-card-stat strong {
            display: block;
            font-size: 28px;
            line-height: 1;
            font-weight: 800;
        }

        .landing-card-stat span {
            display: block;
            margin-top: 8px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .16em;
        }

        .landing-card-link {
            margin-top: 32px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 700;
        }

        .landing-platform-stage {
            position: relative;
            margin-top: 62px;
        }

        .landing-platform-title {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            font-size: clamp(3rem, 5vw, 5.9rem);
            font-weight: 800;
            line-height: .98;
            letter-spacing: -.05em;
        }

        .landing-platform-title .gradient {
            background: linear-gradient(90deg, #7b2dff 0%, #ff36b6 50%, #ff9b2f 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .landing-platform-shot {
            margin-top: 56px;
            border-radius: 34px;
            overflow: hidden;
            box-shadow: 0 32px 78px rgba(0, 0, 0, .4);
        }

        .landing-projects-title {
            font-size: clamp(2.35rem, 4.2vw, 4.3rem);
        }

        .landing-projects-copy {
            max-width: 900px;
            text-align: center;
        }

        .landing-projects-grid {
            display: grid;
            gap: 22px;
            margin-top: 58px;
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .landing-projects-grid.is-single {
            grid-template-columns: 1fr;
            max-width: 980px;
            margin-left: auto;
            margin-right: auto;
        }

        .landing-projects-grid.is-two {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .landing-projects-grid.is-three {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .landing-project-card {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            min-height: 320px;
            transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
            border: 1px solid transparent;
        }

        html[data-landing-theme="dark"] .landing-project-card {
            background: linear-gradient(180deg, rgba(18, 18, 27, .98) 0%, rgba(11, 11, 18, .98) 100%);
            box-shadow: 0 20px 52px rgba(0, 0, 0, .22);
            border-color: rgba(255, 255, 255, .05);
        }

        html[data-landing-theme="light"] .landing-project-card {
            background: linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(250, 245, 255, .96) 100%);
            box-shadow: 0 18px 48px rgba(110, 88, 154, .14);
            border-color: rgba(91, 69, 143, .09);
        }

        .landing-project-card:hover {
            transform: translateY(-4px);
        }

        html[data-landing-theme="dark"] .landing-project-card:hover {
            box-shadow: 0 30px 74px rgba(0, 0, 0, .32);
            border-color: rgba(136, 94, 255, .28);
        }

        html[data-landing-theme="light"] .landing-project-card:hover {
            box-shadow: 0 30px 70px rgba(107, 74, 175, .2);
            border-color: rgba(120, 87, 196, .3);
        }

        .landing-project-media {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }

        .landing-project-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .35s ease;
        }

        .landing-project-card:hover .landing-project-media img {
            transform: scale(1.03);
        }

        .landing-project-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
            background: linear-gradient(135deg, rgba(59, 130, 246, .25), rgba(168, 85, 247, .24));
            color: #f5f3ff;
        }

        .landing-project-body {
            padding: 20px 20px 22px;
        }

        .landing-project-title {
            margin: 0;
            font-size: clamp(1.3rem, 1.9vw, 1.8rem);
            line-height: 1.2;
            font-weight: 750;
        }

        .landing-project-desc {
            margin: 12px 0 0;
            font-size: 1rem;
            line-height: 1.55;
        }

        .landing-project-link {
            margin-top: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: .9rem;
            font-weight: 700;
            letter-spacing: .02em;
            color: #8b5cf6;
        }

        .landing-projects-grid.is-single .landing-project-card {
            min-height: 440px;
        }

        .landing-projects-grid.is-single .landing-project-body {
            padding: 28px 28px 30px;
        }

        .landing-projects-grid.is-single .landing-project-title {
            font-size: clamp(1.8rem, 2.8vw, 2.6rem);
        }

        .landing-projects-grid.is-single .landing-project-desc {
            font-size: 1.08rem;
            max-width: 70ch;
        }

        .landing-pricing-toggle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 46px;
            padding: 8px;
            border-radius: 18px;
        }

        html[data-landing-theme="dark"] .landing-pricing-toggle {
            background: rgba(255, 255, 255, .06);
        }

        html[data-landing-theme="light"] .landing-pricing-toggle {
            background: rgba(90, 73, 146, .08);
        }

        .landing-pricing-toggle .active {
            background: rgba(0, 0, 0, .68);
            color: #fff;
            padding: 10px 18px;
            border-radius: 12px;
            font-weight: 700;
        }

        .landing-pricing-toggle .ghost {
            padding: 10px 14px;
        }

        .landing-chip {
            padding: 8px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 700;
            background: rgba(180, 61, 255, .22);
            color: #f2dcff;
        }

        .landing-pricing-grid,
        .landing-testimonial-grid,
        .landing-footer-grid,
        .landing-contact-grid {
            display: grid;
            gap: 28px;
        }

        .landing-pricing-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            margin-top: 60px;
        }

        .landing-pricing-card {
            position: relative;
            border-radius: 26px;
            padding: 34px 30px;
            box-shadow: 0 18px 54px rgba(0, 0, 0, .16);
        }

        html[data-landing-theme="dark"] .landing-pricing-card {
            background: #1a1a1d;
        }

        html[data-landing-theme="light"] .landing-pricing-card {
            background: rgba(255, 255, 255, .82);
            box-shadow: 0 18px 54px rgba(110, 88, 154, .12);
        }

        .landing-pricing-card.is-featured {
            box-shadow: 0 0 0 1px rgba(180, 61, 255, .3), 0 26px 70px rgba(117, 54, 255, .14);
        }

        .landing-pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            padding: 8px 14px;
            border-radius: 12px;
            background: linear-gradient(90deg, #3c84ff 0%, #a946ff 100%);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
        }

        .landing-price {
            margin-top: 34px;
            font-size: 60px;
            line-height: 1;
            font-weight: 800;
            text-align: center;
            letter-spacing: -.05em;
            background: linear-gradient(90deg, #3e78ff 0%, #a73cff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .landing-price small {
            color: inherit;
            font-size: 24px;
            opacity: .72;
        }

        .landing-pricing-list {
            margin: 34px 0 0;
            padding: 0;
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .landing-pricing-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 18px;
        }

        .landing-pricing-list li::before {
            content: "✓";
            color: #22c55e;
            font-weight: 700;
            line-height: 1.2;
            margin-top: 2px;
        }

        .landing-testimonial-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            margin-top: 62px;
        }

        .landing-testimonial {
            border-radius: 24px;
            padding: 28px;
            background: linear-gradient(180deg, rgba(66, 28, 100, .18) 0%, rgba(43, 18, 60, .34) 100%);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
        }

        html[data-landing-theme="light"] .landing-testimonial {
            background: linear-gradient(180deg, rgba(235, 221, 255, .88) 0%, rgba(247, 239, 255, .9) 100%);
            box-shadow: 0 16px 40px rgba(110, 88, 154, .12);
        }

        .landing-testimonial p {
            margin: 0;
            font-size: 1.25rem;
            line-height: 1.6;
        }

        .landing-person {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 24px;
        }

        .landing-person img {
            width: 48px;
            height: 48px;
            border-radius: 999px;
            object-fit: cover;
        }

        .landing-faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 920px;
            margin: 62px auto 0;
        }

        .landing-faq {
            border-radius: 18px;
            padding: 0 24px;
        }

        html[data-landing-theme="dark"] .landing-faq {
            background: rgba(255, 255, 255, .02);
        }

        html[data-landing-theme="light"] .landing-faq {
            background: rgba(255, 255, 255, .72);
            box-shadow: 0 10px 28px rgba(110, 88, 154, .08);
        }

        .landing-faq summary {
            list-style: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 24px 0;
            font-size: 18px;
            font-weight: 700;
        }

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

        .landing-faq-answer {
            padding: 0 0 22px;
            font-size: 17px;
            line-height: 1.7;
        }

        .landing-cta-section {
            position: relative;
            overflow: hidden;
            padding: 110px 0;
        }

        html[data-landing-theme="dark"] .landing-cta-section {
            background: linear-gradient(90deg, #432260 0%, #6e22a6 52%, #532b67 100%);
        }

        html[data-landing-theme="light"] .landing-cta-section {
            background: linear-gradient(90deg, #ead6ff 0%, #debfff 52%, #ead5ff 100%);
        }

        .landing-cta-section::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: .18;
            background-image: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 90 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.22'%3E%3Ccircle cx='5' cy='5' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .landing-contact-grid {
            grid-template-columns: 1fr 1.04fr;
            margin-top: 68px;
            align-items: start;
        }

        .landing-contact-copy {
            max-width: 540px;
        }

        .landing-contact-list {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 26px;
        }

        .landing-contact-list strong {
            display: block;
            font-size: 20px;
            margin-bottom: 6px;
        }

        .landing-contact-form {
            border-radius: 28px;
            padding: 32px;
            box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
        }

        html[data-landing-theme="dark"] .landing-contact-form {
            background: #1a1a1d;
        }

        html[data-landing-theme="light"] .landing-contact-form {
            background: rgba(255, 255, 255, .84);
        }

        .landing-form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .landing-field label {
            display: block;
            margin-bottom: 10px;
            font-size: 14px;
            font-weight: 600;
        }

        .landing-field input,
        .landing-field textarea {
            width: 100%;
            border: 0;
            border-radius: 14px;
            padding: 14px 16px;
            font: inherit;
            box-sizing: border-box;
            outline: none;
            transition: box-shadow .2s ease, background .2s ease;
        }

        html[data-landing-theme="dark"] .landing-field input,
        html[data-landing-theme="dark"] .landing-field textarea {
            background: rgba(255, 255, 255, .04);
            color: #fff;
        }

        html[data-landing-theme="dark"] .landing-field input::placeholder,
        html[data-landing-theme="dark"] .landing-field textarea::placeholder {
            color: rgba(255, 255, 255, .24);
        }

        html[data-landing-theme="light"] .landing-field input,
        html[data-landing-theme="light"] .landing-field textarea {
            background: rgba(72, 58, 112, .05);
            color: #171c37;
        }

        html[data-landing-theme="light"] .landing-field input::placeholder,
        html[data-landing-theme="light"] .landing-field textarea::placeholder {
            color: rgba(23, 28, 55, .34);
        }

        .landing-field input:focus,
        .landing-field textarea:focus {
            box-shadow: 0 0 0 2px rgba(163, 66, 255, .25);
        }

        .landing-field textarea {
            min-height: 148px;
            resize: vertical;
        }

        .landing-form-submit {
            width: 100%;
            height: 52px;
            border: 0;
            border-radius: 14px;
            background: #ffffff;
            color: #111827;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 8px;
        }

        .landing-footer {
            padding: 72px 0 48px;
        }

        .landing-footer-grid {
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            align-items: start;
        }

        .landing-footer-bottom {
            margin-top: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            flex-wrap: wrap;
        }

        .landing-footer-list {
            list-style: none;
            margin: 22px 0 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
            font-size: 18px;
        }

        .landing-footer-copy-html .logo-light,
        .landing-footer-copy-html .logo-dark {
            display: none;
            height: 26px;
            width: auto;
            vertical-align: middle;
        }

        html[data-landing-theme="light"] .landing-footer-copy-html .logo-light {
            display: inline-block;
        }

        html[data-landing-theme="dark"] .landing-footer-copy-html .logo-dark {
            display: inline-block;
        }

        .landing-footer-list a,
        .landing-socials a {
            color: inherit;
            text-decoration: none;
        }

        .landing-socials {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .landing-socials span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 12px;
        }

        html[data-landing-theme="dark"] .landing-socials span {
            background: rgba(255, 255, 255, .06);
        }

        html[data-landing-theme="light"] .landing-socials span {
            background: rgba(86, 65, 130, .08);
        }

        @media (max-width: 1100px) {
            .landing-pricing-grid,
            .landing-testimonial-grid,
            .landing-footer-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .landing-projects-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .landing-projects-grid.is-three {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .landing-setup-grid,
            .landing-contact-grid {
                grid-template-columns: 1fr;
            }

            .landing-hero-shot {
                width: calc(100% - 24px);
            }

            .landing-hero-track .landing-hero-mockup {
                width: min(460px, 84vw);
            }

            .landing-brands-item {
                width: min(200px, 28vw);
            }
        }

        @media (max-width: 820px) {
            .landing-header-actions {
                gap: 12px;
            }

            .landing-nav {
                display: none;
            }

            .landing-title {
                font-size: clamp(3.2rem, 14vw, 4.9rem);
            }

            .landing-hero {
                min-height: auto;
                padding: 124px 0 74px;
            }

            .landing-card-grid,
            .landing-pricing-grid,
            .landing-testimonial-grid,
            .landing-footer-grid,
            .landing-form-grid {
                grid-template-columns: 1fr;
            }

            .landing-projects-grid,
            .landing-projects-grid.is-two,
            .landing-projects-grid.is-three,
            .landing-projects-grid.is-single {
                grid-template-columns: 1fr;
                max-width: 100%;
            }

            .landing-footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .landing-section {
                padding: 10px 0;
            }

            .landing-hero-static-list {
                grid-template-columns: 1fr;
            }

            .landing-hero-track {
                animation-duration: 28s;
            }

            .landing-brands-stage {
                width: 100%;
            }

            .landing-brands-item {
                width: min(180px, 42vw);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .landing-brands-track {
                animation: none !important;
            }
        }
