    <style>
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --bg: #ffffff;
            --bg-alt: #f7f8fc;
            --bg-card: #ffffff;
            --text: #1a1a2e;
            --text-secondary: #4b4b6b;
            --text-muted: #6b7280;
            --primary: #4f46e5;
            --primary-light: #6366f1;
            --primary-bg: #eef2ff;
            --primary-border: #c7d2fe;
            --border: #e5e7eb;
            --border-light: #f3f4f6;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
            --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
            --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.12);
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
        }

        body {
            font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* ── Scrollbar ── */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg); }
        ::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

        /* ── Reveal Animation ── */
        .reveal {
            opacity: 0; transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }

        /* ── Reduced motion ── */
        @media (prefers-reduced-motion: reduce) {
            .reveal { opacity: 1; transform: none; transition: none; }
            .delay-1, .delay-2, .delay-3, .delay-4, .delay-5 { transition-delay: 0s; }
        }

        /* ── Container ── */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .container-lg { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

        /* ── Header ── */
        .site-header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-light);
            transition: box-shadow 0.3s;
        }
        .site-header.scrolled { box-shadow: var(--shadow); }
        .header-inner {
            max-width: 1200px; margin: 0 auto; padding: 0 24px;
            display: flex; align-items: center; justify-content: space-between;
            height: 64px;
        }
        .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
        .logo-mark {
            width: 34px; height: 34px; border-radius: 8px;
            display: flex;
            align-items: center; justify-content: center;
            overflow: hidden; flex-shrink: 0;
        }
        .logo-mark img {
            width: 100%; height: 100%; object-fit: contain;
        }
        .logo-text { font-weight: 700; font-size: 1.1rem; color: var(--text); letter-spacing: -0.01em; }
        .nav-links { display: flex; align-items: center; gap: 4px; }
        .nav-link {
            padding: 8px 14px; font-size: 0.875rem; font-weight: 500;
            color: var(--text-secondary); border-radius: 8px;
            text-decoration: none; transition: all 0.2s;
        }
        .nav-link:hover { color: var(--text); background: var(--bg-alt); }
        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 9px 20px; font-size: 0.875rem; font-weight: 600;
            border-radius: 8px; text-decoration: none;
            transition: all 0.2s; border: none; cursor: pointer;
            line-height: 1.4;
        }
        .btn-primary {
            color: #fff; background: var(--primary);
            box-shadow: 0 1px 3px rgba(79,70,229,0.3);
        }
        .btn-primary:hover { background: #4338ca; box-shadow: 0 4px 12px rgba(79,70,229,0.35); transform: translateY(-1px); }
        .btn-outline {
            color: var(--text); background: var(--bg);
            border: 1px solid var(--border);
        }
        .btn-outline:hover { border-color: var(--primary); color: var(--primary); }
        .btn-lg { padding: 12px 28px; font-size: 0.95rem; border-radius: 10px; }
        .btn-white {
            color: var(--primary); background: #fff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
        .btn-ghost {
            color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.25);
        }
        .btn-ghost:hover { background: rgba(255,255,255,0.25); color: #fff; }

        /* ── Hero ── */
        .hero {
            padding: 120px 0 80px;
            background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
            position: relative; overflow: hidden;
        }
        .hero::before {
            content: ''; position: absolute; top: 0; right: 0;
            width: 600px; height: 600px; border-radius: 50%;
            background: radial-gradient(circle, rgba(79,70,229,0.06) 0%, transparent 70%);
            transform: translate(30%, -30%);
        }
        .hero-grid {
            display: grid; grid-template-columns: 0.7fr 1.3fr;
            gap: 60px; align-items: center;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 5px 14px 5px 6px; border-radius: 50px;
            font-size: 0.8rem; font-weight: 600;
            color: var(--primary); background: var(--primary-bg);
            border: 1px solid var(--primary-border);
            margin-bottom: 20px;
        }
        .hero-badge-dot {
            width: 20px; height: 20px; border-radius: 50%;
            background: var(--primary); display: flex; align-items: center;
            justify-content: center; font-size: 0.6rem; color: #fff;
        }
        .hero-title {
            font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800;
            line-height: 1.15; letter-spacing: -0.025em;
            color: var(--text); margin-bottom: 20px;
        }
        .hero-title span { color: var(--primary); }
        .hero-desc {
            font-size: 1.1rem; line-height: 1.7; color: var(--text-secondary);
            margin-bottom: 32px; max-width: 480px;
        }
        .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
        .hero-stats { display: flex; gap: 40px; }
        .stat-item {}
        .stat-number { font-size: 1.5rem; font-weight: 800; color: var(--text); }
        .stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
        .hero-visual { position: relative; }
        .hero-screenshot {
            width: 100%; border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--border);
        }
        .hero-screenshot-float {
            position: absolute; border-radius: var(--radius);
            /* box-shadow: var(--shadow-xl); border: 1px solid var(--border);
            background: #fff; overflow: hidden; */
        }
        .hero-screenshot-float img {
            width: 100%; height: 100%; object-fit: cover;
        }
        .float-1 { width: 150px; bottom: -30px; right: -10px; }
        .float-2 { width: 180px; top: -20px; right: -30px; }

        /* ── Logo Bar ── */
        .logo-bar {
            padding: 48px 0; border-bottom: 1px solid var(--border-light);
            text-align: center;
        }
        .logo-bar-title {
            font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
            letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px;
        }
        .logo-bar-logos {
            display: flex; justify-content: center; align-items: center;
            gap: 48px; flex-wrap: wrap; opacity: 0.45;
        }
        .logo-bar-logos span {
            font-size: 1.15rem; font-weight: 700; color: var(--text-secondary);
            white-space: nowrap;
        }

        /* ── Section Headers ── */
        .section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
        .section-overline {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.8rem; font-weight: 600; color: var(--primary);
            text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
        }
        .section-title {
            font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800;
            line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px;
        }
        .section-desc { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; }

        /* ── Stacked Sections ── */
        .stacked-wrapper { position: relative; padding: 0 24px; }
        .stacked-section {
            position: sticky; border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
            will-change: transform;
            transform-origin: center top;
            transition: transform 0.15s ease-out, box-shadow 0.3s ease;
            border: 1px solid var(--border);
        }
        .stacked-section.s1 { top: 76px; z-index: 10; background: #f8f9ff; }
        .stacked-section.s2 { top: 106px; z-index: 11; background: #f0fdf9; }
        .stacked-section.s3 { top: 136px; z-index: 12; background: #fefce8; }
        .stacked-section.s4 { top: 166px; z-index: 13; background: #fdf2f8; }
        .stack-spacer { height: 50px; }

        /* Peek Label */
        .peek-label {
            display: flex; align-items: center; gap: 10px;
            padding: 12px 36px;
            font-size: 0.85rem; font-weight: 600;
            color: var(--text); line-height: 1;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .peek-counter {
            display: inline-flex; align-items: center; padding: 3px 12px;
            border-radius: 50px; font-size: 0.75rem; font-weight: 700;
            background: var(--primary-bg); border: 1px solid var(--primary-border);
            color: var(--primary); white-space: nowrap; flex-shrink: 0;
        }
        .peek-title {
            font-weight: 700; color: var(--text); font-size: 0.88rem;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }

        /* Section Body — two-column layout with screenshot */
        .section-body {
            padding: 28px 36px 40px;
            display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
            align-items: start;
        }
        .section-left {}
        .section-icon-row { margin-bottom: 12px; }
        .section-icon-row span {
            width: 42px; height: 42px; border-radius: 10px;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 1.3rem; background: rgba(255,255,255,0.7);
            border: 1px solid rgba(0,0,0,0.06);
        }
        .section-title-text {
            font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 800;
            margin-bottom: 10px; color: var(--text); letter-spacing: -0.01em;
        }
        .section-desc-text {
            font-size: 0.92rem; color: var(--text-secondary);
            line-height: 1.6; margin-bottom: 20px; max-width: 500px;
        }

        /* Feature mini cards inside stacked sections */
        .feat-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
        }
        .feat-card {
            padding: 16px; border-radius: var(--radius);
            background: rgba(255,255,255,0.75); border: 1px solid rgba(0,0,0,0.06);
            transition: all 0.3s ease; backdrop-filter: blur(4px);
        }
        .feat-card:hover {
            border-color: var(--primary-border);
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }
        .feat-card .fc-icon {
            width: 34px; height: 34px; border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem; margin-bottom: 8px;
        }
        .feat-card h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
        .feat-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

        /* Screenshot Slider inside stacked section */
        .section-right { position: relative; }
        .screenshot-slider {
            position: relative; border-radius: var(--radius-lg);
            overflow: hidden; background: #0d0d1a;
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--border);
        }
        .screenshot-slides {
            display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .screenshot-slide {
            min-width: 100%; position: relative;
        }
        .screenshot-slide img {
            width: 100%; display: block;
        }
        .slider-nav {
            position: absolute; bottom: 12px; left: 50%;
            transform: translateX(-50%);
            display: flex; gap: 6px; z-index: 5;
        }
        .slider-dot {
            width: 28px; height: 4px; border-radius: 2px;
            background: rgba(255,255,255,0.3); border: none;
            cursor: pointer; transition: all 0.3s;
        }
        .slider-dot.active { background: #fff; width: 40px; }
        .slider-arrows {
            position: absolute; top: 50%; right: 12px;
            transform: translateY(-50%);
            display: flex; flex-direction: column; gap: 6px; z-index: 5;
        }
        .slider-arrow {
            width: 32px; height: 32px; border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
            cursor: pointer; display: flex; align-items: center;
            justify-content: center; color: #fff; font-size: 0.85rem;
            transition: all 0.2s;
        }
        .slider-arrow:hover { background: var(--primary); border-color: var(--primary); }
        .screenshot-label {
            position: absolute; top: 12px; left: 12px; z-index: 5;
            padding: 4px 12px; border-radius: 6px;
            background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
            color: #fff; font-size: 0.72rem; font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Reveal for stacked */
        .reveal-scale { opacity: 0; transform: scale(0.95); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal-scale.active { opacity: 1; transform: scale(1); }
        .stagger-1 { transition-delay: 0.1s; } .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; } .stagger-4 { transition-delay: 0.4s; }

        /* ── How It Works ── */
        .how-it-works { padding: 80px 0; background: var(--bg-alt); }
        .steps-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
        }
        .step-card {
            text-align: center; padding: 36px 28px;
            border-radius: var(--radius-lg); background: var(--bg);
            border: 1px solid var(--border);
            transition: all 0.3s;
        }
        .step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
        .step-number {
            width: 48px; height: 48px; border-radius: 50%;
            background: var(--primary-bg); color: var(--primary);
            font-size: 1.1rem; font-weight: 800;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 20px;
        }
        .step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
        .step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

        /* ── Stats Banner ── */
        .stats-banner { padding: 60px 0; background: var(--text); }
        .stats-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
            text-align: center;
        }
        .stats-grid .s-number {
            font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 4px;
        }
        .stats-grid .s-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

        /* ── Pricing ── */
        .pricing-section { padding: 80px 0; }
        .pricing-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px; max-width: 1000px; margin: 0 auto;
        }
        .price-card {
            padding: 36px 32px; border-radius: var(--radius-lg);
            background: var(--bg); border: 1px solid var(--border);
            transition: all 0.3s; position: relative;
        }
        .price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
        .price-card.featured {
            border: 2px solid var(--primary);
            box-shadow: 0 0 0 4px rgba(79,70,229,0.08);
        }
        .popular-badge {
            position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
            padding: 4px 14px; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
            background: var(--primary); color: #fff; text-transform: uppercase;
            letter-spacing: 0.5px; white-space: nowrap;
        }
        .price-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
        .price-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
        .price-amount { font-size: 2.5rem; font-weight: 800; color: var(--text); }
        .price-amount .currency { font-size: 1.5rem; vertical-align: top; margin-right: 2px; }
        .price-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
        .price-features { list-style: none; margin: 24px 0; }
        .price-features li {
            display: flex; align-items: center; gap: 10px;
            padding: 7px 0; font-size: 0.88rem; color: var(--text-secondary);
        }
        .price-features li svg { color: #059669; flex-shrink: 0; }

        /* ── CTA ── */
        .cta-section { padding: 80px 0; }
        .cta-box {
            max-width: 900px; margin: 0 auto; border-radius: var(--radius-xl);
            padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
            background: var(--primary);
        }
        .cta-box::before {
            content: ''; position: absolute; width: 500px; height: 500px;
            border-radius: 50%; background: rgba(255,255,255,0.08);
            top: -200px; right: -100px;
        }
        .cta-box h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
            color: #fff; margin-bottom: 12px; position: relative; z-index: 1;
        }
        .cta-box p {
            font-size: 1.05rem; color: rgba(255,255,255,0.8);
            margin-bottom: 32px; max-width: 500px;
            margin-left: auto; margin-right: auto; position: relative; z-index: 1;
        }
        .cta-btns {
            display: flex; gap: 12px; justify-content: center;
            flex-wrap: wrap; position: relative; z-index: 1;
        }

        /* ── Footer ── */
        .site-footer {
            padding: 40px 0; border-top: 1px solid var(--border-light);
        }
        .footer-inner {
            max-width: 1200px; margin: 0 auto; padding: 0 24px;
            display: flex; align-items: center;
            justify-content: space-between; flex-wrap: wrap; gap: 16px;
        }
        .footer-brand { display: flex; align-items: center; gap: 10px; }
        .footer-brand span { font-weight: 600; font-size: 0.95rem; color: var(--text); }
        .footer-text { font-size: 0.82rem; color: var(--text-muted); }
        .footer-text a {
            color: var(--primary); text-decoration: none; font-weight: 500;
        }
        .footer-text a:hover { text-decoration: underline; }
        .footer-links { display: flex; gap: 24px; }
        .footer-links a {
            font-size: 0.82rem; color: var(--text-muted); text-decoration: none;
        }
        .footer-links a:hover { color: var(--primary); }

        .logo-bar,
        .stacked-wrapper,
        .how-it-works,
        .stats-banner,
        .pricing-section,
        .cta-section,
        .site-footer {
            content-visibility: auto;
            contain-intrinsic-size: auto 500px;
        }

        /* ── Responsive ── */
        @media (max-width: 1024px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .section-body { grid-template-columns: 1fr; }
            .feat-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
            .hero-desc { margin-left: auto; margin-right: auto; }
            .hero-cta { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-visual { max-width: 500px; margin: 0 auto; }
            .float-1, .float-2 { display: none; }

            /* Stacking stays active on mobile — tighter offsets */
            .stacked-wrapper { padding: 0 12px; }
            .stacked-section { border-radius: 14px; }
            .stacked-section.s1 { top: 66px; }
            .stacked-section.s2 { top: 90px; }
            .stacked-section.s3 { top: 114px; }
            .stacked-section.s4 { top: 138px; }
            .stack-spacer { height: 30px; }
            .peek-label { padding: 8px 16px; gap: 8px; font-size: 0.78rem; }
            .peek-counter { padding: 2px 10px; font-size: 0.7rem; }
            .peek-title { font-size: 0.78rem; }
            .section-body { padding: 16px 16px 28px; grid-template-columns: 1fr; gap: 24px; }
            .section-icon-row span { width: 36px; height: 36px; font-size: 1.1rem; }
            .section-title-text { font-size: 1.15rem; }
            .section-desc-text { font-size: 0.85rem; margin-bottom: 16px; }
            .feat-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                gap: 8px;
                padding-bottom: 8px;
                scrollbar-width: none; /* Firefox */
            }
            .feat-grid::-webkit-scrollbar { display: none; } /* Chrome/Safari */
            .feat-card {
                flex: 0 0 calc(50% - 4px);
                min-width: calc(50% - 4px);
                scroll-snap-align: start;
                padding: 12px;
            }
            .feat-card .fc-icon { width: 28px; height: 28px; font-size: 0.85rem; margin-bottom: 6px; }
            .feat-card h4 { font-size: 0.78rem; }
            .feat-card p { font-size: 0.72rem; }

            /* Slider adjusts for mobile */
            .slider-arrows { right: 8px; }
            .slider-arrow { width: 28px; height: 28px; font-size: 0.75rem; }
            .screenshot-label { font-size: 0.65rem; padding: 3px 8px; }

            .steps-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr 1fr; }
            .pricing-grid { grid-template-columns: 1fr; }
            .nav-links .nav-link { display: none; }
            .cta-box { padding: 40px 24px; }
            .logo-bar-logos { gap: 28px; }
        }
        @media (max-width: 420px) {
            /* Extra-small phones — keep 2-col feat grid but tighter */
            .feat-grid {
                gap: 6px;
            }
            .feat-card {
                flex: 0 0 calc(50% - 3px);
                min-width: calc(50% - 3px);
                padding: 10px;
            }
            .feat-card h4 { font-size: 0.72rem; }
            .feat-card p { font-size: 0.68rem; line-height: 1.4; }
            .section-title-text { font-size: 1.05rem; }
            .stacked-section.s1 { top: 62px; }
            .stacked-section.s2 { top: 82px; }
            .stacked-section.s3 { top: 102px; }
            .stacked-section.s4 { top: 122px; }
            .stack-spacer { height: 24px; }
            .stacked-wrapper .section-right{
                max-width: 95%;
            }
        }
    </style>
