/* ===== DESIGN TOKENS ===== */
        :root {
            --brand: #8327D2;
            --brand-dark: #6A1FB0;
            --brand-deep: #510F92;
            --brand-light: #9F45E8;
            --brand-pale: #F3EAFD;
            --brand-soft: #EAD8FA;
            --brand-mid: #C598F0;
            --surface: #FFFFFF;
            --canvas: #F9F7FD;
            --canvas-alt: #F2EEF9;
            --border: #E6DFF5;
            --border-soft: #EDE8F6;
            --ink-900: #0F0B1A;
            --ink-700: #2D2240;
            --ink-500: #5E4D78;
            --ink-400: #8474A0;
            --ink-300: #B0A2C8;
            --ink-200: #D7CEED;
            --ink-100: #EDE8F6;
            --success: #12B76A;
            --warning: #F79009;
            --danger: #F04438;
            --shadow-xs: 0 1px 2px rgba(131, 39, 210, 0.06);
            --shadow-sm: 0 2px 8px rgba(131, 39, 210, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 20px rgba(131, 39, 210, 0.12), 0 2px 6px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 12px 48px rgba(131, 39, 210, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
            --shadow-glow: 0 0 0 3px rgba(131, 39, 210, 0.16);
            --ff-heading: 'Sora', sans-serif;
            --ff-body: 'DM Sans', sans-serif;
            --r-sm: 8px;
            --r-md: 12px;
            --r-lg: 16px;
            --r-xl: 24px;
            --r-full: 999px;
        }

        /* ===== RESET ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--ff-body);
            background: var(--canvas);
            color: var(--ink-700);
            line-height: 1.7;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--canvas);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--ink-200);
            border-radius: 99px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--brand-mid);
        }

        /* ===== LAYOUT ===== */
        /* ─── LAYOUT ─────────────────────────────────────────────────── */
        .container {
            /* max-width: 1200px;
                margin-inline: auto;
                padding-inline: clamp(1.25rem, 4vw, 5rem); */
            max-width: 1600px;
            margin-inline: auto;
            padding: 0 100px 0 100px;
        }

        @media (max-width: 560px) {
            .container {
                /* max-width: 1200px; */
                margin-inline: auto;
                /* padding-inline: clamp(1.25rem, 4vw, 5rem); */
                padding: 0 20px 0 20px;
            }
        }

        .section {
            padding: 6rem 0;
        }

        .section-sm {
            padding: 4rem 0;
        }

        .section-header {
            margin-bottom: 3.5rem;
            max-width: 560px;
        }

        .section-header.centered {
            max-width: 680px;
            margin-inline: auto;
            text-align: center;
        }

        /* ===== TYPOGRAPHY ===== */
        h1 {
            font-family: var(--ff-heading);
            font-size: clamp(2.4rem, 5vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.025em;
            line-height: 1.15;
            color: var(--ink-900);
        }

        h2 {
            font-family: var(--ff-heading);
            font-size: clamp(1.8rem, 3.5vw, 2.75rem);
            font-weight: 700;
            letter-spacing: -0.025em;
            line-height: 1.2;
            color: var(--ink-900);
        }

        h3 {
            font-family: var(--ff-heading);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--ink-900);
        }

        h4 {
            font-family: var(--ff-heading);
            font-size: 1rem;
            font-weight: 600;
            color: var(--ink-900);
        }

        p {
            color: var(--ink-500);
            font-size: 1rem;
            line-height: 1.7;
        }

        .label {
            display: inline-block;
            font-family: var(--ff-heading);
            font-size: 0.6875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--brand);
            margin-bottom: 0.75rem;
        }

        em {
            font-style: normal;
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.625rem;
            border-radius: var(--r-md);
            font-family: var(--ff-heading);
            font-size: 0.9375rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            outline: none;
            transition: all 0.2s ease;
        }

        .btn-primary {
            background: var(--brand);
            color: #fff;
            box-shadow: 0 4px 20px rgba(131, 39, 210, 0.35);
        }

        .btn-primary:hover {
            background: var(--brand-dark);
            transform: translateY(-1px);
            box-shadow: 0 8px 28px rgba(131, 39, 210, 0.45);
        }

        .btn-outline {
            background: transparent;
            color: var(--ink-700);
            border: 1.5px solid var(--border);
        }

        .btn-outline:hover {
            border-color: var(--brand-mid);
            color: var(--brand);
            background: var(--brand-pale);
        }

        .btn-ghost {
            background: transparent;
            color: var(--brand);
            padding-inline: 0;
        }

        .btn-ghost:hover {
            color: var(--brand-dark);
        }

        .btn-sm {
            padding: 0.5rem 1.125rem;
            font-size: 0.875rem;
            border-radius: var(--r-sm);
        }

        .btn-lg {
            padding: 0.9375rem 2rem;
            font-size: 1rem;
        }

        /* ===== CHIP ===== */
        .chip {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.3125rem 0.875rem;
            border-radius: var(--r-full);
            background: var(--brand-pale);
            border: 1px solid var(--brand-soft);
            font-size: 0.75rem;
            font-weight: 600;
            font-family: var(--ff-heading);
            color: var(--brand-dark);
        }

        /* ===========================
       HERO SECTION
    =========================== */
        .hero {
            position: relative;
            padding: 7rem 0 5rem;
            overflow: hidden;
            background: var(--canvas);
        }

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

        .hero-orb-1 {
            position: absolute;
            top: -220px;
            right: -180px;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(131, 39, 210, 0.12) 0%, transparent 65%);
        }

        .hero-orb-2 {
            position: absolute;
            bottom: -100px;
            left: -120px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(131, 39, 210, 0.07) 0%, transparent 65%);
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(131, 39, 210, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(131, 39, 210, 0.04) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: radial-gradient(ellipse 80% 60% at 60% 30%, black 0%, transparent 80%);
        }

        .hero-inner {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {}

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem 0.4rem 0.4rem;
            background: var(--brand-pale);
            border: 1px solid var(--brand-soft);
            border-radius: var(--r-full);
            font-family: var(--ff-heading);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--brand-dark);
            margin-bottom: 1.75rem;
        }

        .hero-badge-dot {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-badge-dot svg {
            color: #fff;
        }

        .hero h1 {
            margin-bottom: 1.25rem;
        }

        .hero-desc {
            font-size: 1.0625rem;
            line-height: 1.75;
            color: var(--ink-500);
            margin-bottom: 2.25rem;
            max-width: 500px;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-soft);
        }

        .hero-stat-num {
            font-family: var(--ff-heading);
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--ink-900);
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.8125rem;
            color: var(--ink-400);
            margin-top: 0.25rem;
        }

        .hero-visual {
            position: relative;
        }

        .hero-mockup {
            background: var(--surface);
            border-radius: 24px;
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-mockup-inner {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--canvas) 0%, #ede8f6 100%);
            display: flex;
            flex-direction: column;
            padding: 1.5rem;
            gap: 1rem;
        }

        .mockup-topbar {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-soft);
        }

        .mockup-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .mockup-title-bar {
            flex: 1;
            height: 8px;
            background: var(--ink-200);
            border-radius: 99px;
            margin-left: 0.5rem;
        }

        .mockup-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            flex: 1;
        }

        .mockup-card {
            background: var(--surface);
            border-radius: 12px;
            border: 1px solid var(--border-soft);
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mockup-card-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--brand-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
        }

        .mockup-card-line {
            height: 6px;
            background: var(--ink-100);
            border-radius: 99px;
        }

        .mockup-card-line.short {
            width: 60%;
        }

        .mockup-card-num {
            font-family: var(--ff-heading);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--ink-900);
        }

        .hero-float-card {
            position: absolute;
            background: var(--surface);
            border-radius: 16px;
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow-md);
            padding: 0.875rem 1.125rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            white-space: nowrap;
        }

        .hero-float-card-1 {
            bottom: -18px;
            left: -30px;
            animation: floatB 5s ease-in-out infinite;
        }

        .hero-float-card-2 {
            top: -18px;
            right: -20px;
            animation: floatA 6s ease-in-out infinite;
        }

        .float-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .float-icon.green {
            background: #D1FAE5;
            color: #059669;
        }

        .float-icon.blue {
            background: #DBEAFE;
            color: #2563EB;
        }

        .float-text-main {
            font-family: var(--ff-heading);
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--ink-900);
        }

        .float-text-sub {
            font-size: 0.75rem;
            color: var(--ink-400);
        }

        @keyframes floatA {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes floatB {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(6px);
            }
        }

        /* ===========================
       LOGO MARQUEE
    =========================== */
        .marquee-section {
            padding: 2.5rem 0;
            background: var(--surface);
            border-top: 1px solid var(--border-soft);
            border-bottom: 1px solid var(--border-soft);
            overflow: hidden;
        }

        .marquee-label {
            text-align: center;
            font-size: 0.8125rem;
            font-family: var(--ff-heading);
            color: var(--ink-400);
            font-weight: 500;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .marquee-track-wrap {
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
        }

        .marquee-track {
            display: flex;
            gap: 3rem;
            align-items: center;
            width: max-content;
            animation: marquee 30s linear infinite;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            font-family: var(--ff-heading);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--ink-300);
            white-space: nowrap;
            transition: color 0.2s;
        }

        .marquee-item:hover {
            color: var(--brand);
        }

        .marquee-item-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--ink-200);
            flex-shrink: 0;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ===========================
       HIGHLIGHTS (4-col cards)
    =========================== */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }

        .highlight-card {
            background: var(--surface);
            border: 1.5px solid var(--border-soft);
            border-radius: 20px;
            padding: 2rem 1.75rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .highlight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            opacity: 0;
            transition: opacity 0.25s ease;
            border-radius: 20px 20px 0 0;
        }

        .highlight-card:nth-child(1)::before {
            background: linear-gradient(90deg, var(--brand), var(--brand-light));
        }

        .highlight-card:nth-child(2)::before {
            /* background: linear-gradient(90deg, #3B82F6, #60A5FA); */
            background: linear-gradient(90deg, var(--brand), var(--brand-light));
        }

        .highlight-card:nth-child(3)::before {
            /* background: linear-gradient(90deg, #8B5CF6, #A78BFA); */
            background: linear-gradient(90deg, var(--brand), var(--brand-light));
        }

        .highlight-card:nth-child(4)::before {
            /* background: linear-gradient(90deg, #10B981, #34D399); */

        }

        .highlight-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--brand-soft);
        }

        .highlight-card:hover::before {
            opacity: 1;
        }

        .highlight-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--brand-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
            margin-bottom: 1.25rem;
            transition: all 0.25s ease;
        }

        .highlight-card:hover .highlight-icon {
            background: var(--brand);
            color: #fff;
            transform: scale(1.05) rotate(-3deg);
        }

        .highlight-card h4 {
            margin-bottom: 0.5rem;
        }

        .highlight-card p {
            font-size: 0.875rem;
        }

        .highlight-num {
            font-family: var(--ff-heading);
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--brand);
            margin-top: 1rem;
        }

        /* ===========================
       TABBED FEATURES SECTION
    =========================== */
        .features-tab-section {
            background: var(--canvas);
        }

        .features-tabs {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
            background: var(--surface);
            border: 1px solid var(--border-soft);
            border-radius: 16px;
            padding: 0.5rem;
        }

        .tab-btn {
            flex: 1;
            min-width: 130px;
            padding: 0.75rem 1rem;
            border-radius: 12px;
            border: none;
            background: transparent;
            font-family: var(--ff-heading);
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--ink-400);
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            text-align: center;
        }

        .tab-btn:hover {
            color: var(--brand);
            background: var(--brand-pale);
        }

        .tab-btn.active {
            background: var(--brand);
            color: #fff;
            box-shadow: 0 4px 12px rgba(131, 39, 210, 0.3);
        }

        .tab-panel {
            display: none;
        }

        .tab-panel.active {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .tab-content-text h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .tab-content-text p {
            font-size: 1.0625rem;
            margin-bottom: 1.75rem;
        }

        .tab-feature-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .tab-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .tab-feature-check {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--brand-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .tab-feature-item span {
            font-size: 0.9375rem;
            color: var(--ink-500);
            line-height: 1.5;
        }

        .tab-visual {
            position: relative;
        }

        .tab-img-frame {
            background: var(--surface);
            border-radius: 20px;
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            max-height: 358px;
            width: 100%;
        }

        .tab-img-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--brand-pale) 0%, var(--canvas-alt) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            color: var(--brand);
        }

        .tab-img-placeholder .big-icon {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            background: var(--brand-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--brand-soft);
        }

        .tab-img-label {
            font-family: var(--ff-heading);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--ink-400);
        }

        /* subtle decorative dots */
        .tab-visual::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background-image: radial-gradient(var(--brand-soft) 1.5px, transparent 1.5px);
            background-size: 12px 12px;
            pointer-events: none;
            z-index: -1;
        }

        /* ===========================
       DARK COMPARISON / FEATURE GRID
    =========================== */
        .dark-section {
            background: var(--ink-900);
            position: relative;
            overflow: hidden;
        }

        .dark-section-glow {
            position: absolute;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(131, 39, 210, 0.18) 0%, transparent 65%);
            pointer-events: none;
        }

        .dark-grid-overlay {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
            background-size: 48px 48px;
        }

        .dark-section .label {
            color: var(--brand-mid);
        }

        .dark-section h2 {
            color: #fff;
        }

        .dark-section .section-header p {
            color: rgba(255, 255, 255, 0.55);
        }

        .dark-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            position: relative;
            z-index: 1;
        }

        .dark-feature-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 20px;
            padding: 2rem 1.75rem;
            transition: all 0.25s ease;
        }

        .dark-feature-card:hover {
            background: rgba(131, 39, 210, 0.18);
            border-color: rgba(197, 152, 240, 0.35);
            transform: translateY(-4px);
        }

        .dark-feature-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(131, 39, 210, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-mid);
            margin-bottom: 1.25rem;
            transition: all 0.25s ease;
        }

        .dark-feature-card:hover .dark-feature-icon {
            background: var(--brand);
            color: #fff;
        }

        .dark-feature-card h4 {
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .dark-feature-card p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* ===========================
       APP SHOWCASE SLIDER
    =========================== */
        .app-section {
            background: var(--surface);
        }

        .app-slider-wrap {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin-top: 3rem;
        }

        .app-slider-track {
            display: flex;
            gap: 1.25rem;
            transition: transform 0.4s ease;
            padding: 1rem 0;
        }

        .app-slide {
            min-width: calc(33.333% - 0.85rem);
            background: var(--canvas);
            border-radius: 20px;
            border: 1.5px solid var(--border-soft);
            overflow: hidden;
            aspect-ratio: 3/2;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
            flex-shrink: 0;
        }

        .app-slide:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--brand-soft);
        }

        .app-slide-inner {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--brand-pale) 0%, var(--canvas-alt) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1.5rem;
        }

        .slide-icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--brand-pale);
            border: 2px solid var(--brand-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
        }

        .slide-label {
            font-family: var(--ff-heading);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--ink-700);
            text-align: center;
        }

        .app-slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .slider-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--surface);
            border: 1.5px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--ink-500);
            transition: all 0.2s ease;
        }

        .slider-btn:hover {
            border-color: var(--brand);
            color: var(--brand);
            background: var(--brand-pale);
        }

        .slider-dots {
            display: flex;
            gap: 0.5rem;
        }

        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--ink-200);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .slider-dot.active {
            background: var(--brand);
            width: 24px;
            border-radius: 99px;
        }

        .app-store-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2.5rem;
        }

        .store-btn {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            background: var(--ink-900);
            border-radius: var(--r-md);
            color: #fff;
            transition: all 0.2s ease;
        }

        .store-btn:hover {
            background: var(--brand);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(131, 39, 210, 0.35);
        }

        .store-btn-sub {
            font-size: 0.6875rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .store-btn-name {
            font-family: var(--ff-heading);
            font-size: 0.9375rem;
            font-weight: 600;
        }

        /* ============================================================
       FAQ
    ============================================================ */
        .faq-section {
            padding: 7rem 0;
            background: var(--canvas-alt);
        }

        .faq-inner {
            display: grid;
            grid-template-columns: 340px 1fr;
            gap: 4.5rem;
            align-items: start;
        }

        .faq-left {
            position: sticky;
            top: 6.5rem;
        }

        .faq-left .chip {
            margin-bottom: 1rem;
        }

        .faq-left h2 {
            margin-bottom: 1rem;
            font-size: clamp(1.5rem, 2.5vw, 2.1rem);
        }

        .faq-left>p {
            margin-bottom: 2rem;
        }

        .faq-contact-card {
            background: var(--surface);
            border: 1.5px solid var(--border-soft);
            border-radius: 20px;
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: var(--shadow-sm);
        }

        .faq-contact-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--r-md);
            background: var(--brand-pale);
            color: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .faq-contact-title {
            font-family: var(--ff-heading);
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--ink-900);
        }

        .faq-contact-link {
            font-family: var(--ff-heading);
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--brand);
            margin-top: 2px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            max-width: none;
            margin-inline: 0;
        }

        .faq-item {
            background: var(--surface);
            border: 1.5px solid var(--border-soft);
            border-radius: var(--r-lg);
            overflow: hidden;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
            margin-bottom: 0;
        }

        .faq-item.open {
            border-color: var(--brand-soft);
            box-shadow: var(--shadow-sm);
        }

        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            user-select: none;
        }

        .faq-num {
            font-family: var(--ff-heading);
            font-size: 0.6875rem;
            font-weight: 800;
            color: var(--brand);
            background: var(--brand-pale);
            width: 28px;
            height: 28px;
            border-radius: var(--r-sm);
            display: grid;
            place-items: center;
            flex-shrink: 0;
        }

        .faq-q-text {
            font-family: var(--ff-heading);
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--ink-900);
            flex: 1;
            transition: color 0.2s;
        }

        .faq-item.open .faq-q-text {
            color: var(--brand-dark);
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--canvas) !important;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            color: var(--ink-400) !important;
            transition: background 0.2s, color 0.2s, transform 0.35s ease;
        }

        .faq-item.open .faq-icon {
            background: var(--brand) !important;
            color: #fff !important;
            transform: rotate(180deg);
        }

        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0;
        }

        .faq-item.open .faq-body {
            max-height: 500px;
            padding: 0;
        }

        .faq-body-inner {
            padding: 0 1.5rem 1.5rem 1.5rem;
            font-size: 0.9375rem;
            line-height: 1.7;
            color: var(--ink-500);
        }

        .faq-body-inner p {
            font-size: 0.9375rem;
            line-height: 1.7;
        }

        .faq-body-inner ul {
            margin-top: 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .faq-body-inner ul li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--ink-500);
        }

        .faq-body-inner ul li::before {
            content: '→';
            color: var(--brand);
            flex-shrink: 0;
        }

        .faq-body ul li::before {
            content: '→';
            color: var(--brand);
            flex-shrink: 0;
        }

        /* ===========================
       CTA BAND
    =========================== */
        .cta-band {
            background: var(--ink-900);
            position: relative;
            overflow: hidden;
            padding: 5rem 0;
        }

        .cta-band-glow {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(131, 39, 210, 0.22) 0%, transparent 65%);
            pointer-events: none;
        }

        .cta-band-inner {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .cta-band h2 {
            color: #fff;
            margin-bottom: 1rem;
        }

        .cta-band p {
            color: rgba(255, 255, 255, 0.55);
            font-size: 1.0625rem;
            margin-bottom: 2.5rem;
            max-width: 520px;
            margin-inline: auto;
            margin-bottom: 2.5rem;
        }

        .cta-band-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-white {
            background: #fff;
            color: var(--brand);
            font-family: var(--ff-heading);
            font-weight: 600;
            padding: 0.9375rem 2rem;
            border-radius: var(--r-md);
            font-size: 1rem;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(255, 255, 255, 0.2);
        }

        .btn-outline-white {
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            padding: 0.9375rem 2rem;
            border-radius: var(--r-md);
            font-family: var(--ff-heading);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
        }

        .btn-outline-white:hover {
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.07);
        }

        /* ===========================
       RESPONSIVE
    =========================== */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-visual {
                display: none;
            }

            .highlights-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .tab-panel.active {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .tab-visual {
                display: none;
            }

            .dark-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .app-slide {
                min-width: calc(50% - 0.625rem);
            }
        }

        @media (max-width: 640px) {
            .highlights-grid {
                grid-template-columns: 1fr;
            }

            .features-tabs {
                flex-direction: column;
            }

            .tab-btn {
                flex: none;
            }

            .dark-features-grid {
                grid-template-columns: 1fr;
            }

            .app-slide {
                min-width: 100%;
            }

            .hero-stats {
                flex-direction: row;
                justify-content: space-between;
                gap: 0.5rem;
                text-align: center;
            }

            .hero-stat-num {
                font-size: 1.25rem;
            }

            .hero-stat-label {
                font-size: 0.75rem;
            }
        }