        /* ============================================
           QUANTIX - SaaS Landing Page Template
           Design: TemplateMo
           https://templatemo.com
        ============================================ */

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

        :root {
            --deep-space: #F7F5FC;
            --surface-1: #FFFFFF;
            --surface-2: #F5F1FA;
            --surface-3: #ECE6F5;

            --accent: #A855F7;
            --accent-light: #a87fd4;
            --accent-glow: #a855f740;
            --accent-soft: rgba(169, 85, 247, 0.109);
            --accent-border: #a855f733;

            --text-primary: #242033;
            --text-secondary: #6B6780;
            --text-muted: #7a748b;

            --border-subtle: rgba(36, 32, 51, 0.08);

            --green: #34D399;
            --amber: #FBBF24;
            --rose: #FB7185;

            --radius: 16px;
            --radius-sm: 10px;
            --radius-xs: 6px;
            --radius-pill: 100px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
            background-color: var(--deep-space);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Grain overlay */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
            opacity: 0.5;
        }

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

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .mono { font-family: 'JetBrains Mono', monospace; }

        /* RANDOM */
        .channel-mention {
            display: inline-block;
            background: #5865f226;
            color: #5865F2;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }

        /* HIGHLIGHT */
        .highlight {
            position: relative;
            display: inline-block;
            z-index: 1;
        }

        .highlight::before {
            content: "";
            position: absolute;
            left: -4px;
            right: -4px;
            bottom: 4%;
            height: 45%;
            background: #f0c1ffda;
            border-radius: 8px;
            z-index: -1;
            transform: rotate(-2.5deg);
            animation: highlight-in 0.9s ease forwards;
            transform-origin: left;
        }

        @keyframes highlight-in {
            from {
                transform: scaleX(0) rotate(-1deg);
                border-radius: 16px;
            }
            to {
                transform: scaleX(1) rotate(-2.5deg);
                border-radius: 8px;
            }
        }

        /* DISCORD MESSAGE */

        .discord-message {
            display: flex;
            gap: 12px;
            padding: 14px;
            border-radius: 12px;
            background: #313338;
            color: #dbdee1;
            font-family: inherit;
        }

        .discord-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: transparent;
            display: grid;
            place-items: center;
            flex-shrink: 0;
        }

        .discord-content {
            flex: 1;
        }

        .discord-header {
            display: flex;
            align-items: center;
            gap: 6px;
            line-height: 1;
            margin-bottom: 5px;
        }

        .discord-username {
            color: #f2f3f5;
            font-weight: 600;
            font-size: 14px;
        }

        .discord-bot-tag {
            background: #5865f2;
            color: white;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 4px;
            border-radius: 3px;
        }

        .discord-time {
            color: #949ba4;
            font-size: 11px;
        }

        .discord-text {
            font-size: 15px;
            line-height: 1.5;
        }

        .channel {
            background: rgba(88, 101, 242, 0.25);
            color: #c9cdfb;
            padding: 2px 5px;
            border-radius: 4px;
            font-weight: 500;
        }

        /* DISCORD EMBED */

        .discord-embed {
            display: flex;
            background: #313338;
            border-radius: 8px;
            overflow: hidden;
            max-width: 450px;
            color: #dbdee1;
        }

        .embed-accent {
            width: 5px;
            background: linear-gradient(
                180deg,
                #c084fc,
                #ff9fcf
            );
        }

        .embed-content {
            padding: 16px;
            flex: 1;
        }

        .embed-author {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .embed-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #c084fc;
            display: grid;
            place-items: center;
        }

        .bot-tag {
            font-size: 10px;
            background: #5865f2;
            color: white;
            padding: 2px 4px;
            border-radius: 3px;
        }

        .discord-embed h3 {
            font-size: 16px;
            margin-bottom: 6px;
            color: white;
        }

        .discord-embed p {
            color: #b5bac1;
            margin-bottom: 16px;
        }

        .channel {
            color: #c9cdfb;
            background: rgba(88,101,242,.25);
            padding: 2px 5px;
            border-radius: 4px;
        }

        .voice-preview {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,.05);
            padding: 10px;
            border-radius: 8px;
        }

        .voice-preview button {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: none;
            background: #c084fc;
            color: white;
            cursor: pointer;
        }

        .waveform {
            display: flex;
            align-items: center;
            gap: 3px;
            height: 40px;
        }

        .waveform span {
            width: 3px;
            height: 12px;
            background: var(--accent);
            border-radius: 10px;
            animation: waveform 0.8s ease-in-out infinite;
            box-shadow: 0 0 8px var(--accent);  
        }
    

        .waveform span:nth-child(2n) {
            animation-delay: 0.1s;
        }

        .waveform span:nth-child(3n) {
            animation-delay: 0.2s;
        }

        .waveform span:nth-child(4n) {
            animation-delay: 0.3s;
        }

        @keyframes waveform {
            0%, 100% {
                height: 10px;
            }
            50% {
                height: 35px;
            }
        }

        .waveform span:nth-child(1) { animation-duration: 1.7s; }
        .waveform span:nth-child(2) { animation-duration: 1.9s; }
        .waveform span:nth-child(3) { animation-duration: 1.6s; }
        .waveform span:nth-child(4) { animation-duration: 2s; }
        .waveform span:nth-child(5) { animation-duration: 1.75s; }
        .waveform span:nth-child(6) { animation-duration: 1.85s; }
        .waveform span:nth-child(7) { animation-duration: 1.65s; }

        .waveform span {
            width: 3px;
            height: 18px;
            border-radius: 10px;
            background: #d8b4fe;
        }

        .embed-footer {
            margin-top: 14px;
            font-size: 12px;
            color: #949ba4;
        }

        /* ===== NAVBAR ===== */

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            background: var(--surface-3);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            padding: 14px 0;
            border-bottom: 1px solid var(--border-subtle);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-brand {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.04em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-icon {
            width: 30px;
            height: 30px;
            background: var(--accent);
            border-radius: 8px;
            display: grid;
            place-items: center;
            font-size: 14px;
            font-weight: 800;
            color: #fff;
            box-shadow: 0 0 24px var(--accent-glow);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text-muted);
            transition: color 0.3s;
            letter-spacing: -0.01em;
        }

        .nav-links a:hover { color: var(--text-primary); }

        .nav-mobile-actions {
            display: none;
        }

        .nav-actions { display: flex; align-items: center; gap: 10px; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: var(--radius-pill);
            font-family: inherit;
            font-size: 13.5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            letter-spacing: -0.01em;
        }

        .btn-ghost { background: transparent; color: var(--text-secondary); }
        .btn-ghost:hover { color: var(--text-primary); }

        .btn-primary {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 0 24px var(--accent-glow),
                        0 1px 0 rgba(255,255,255,0.1) inset;
        }

        .btn-primary:hover {
            background: #FF8585;
            box-shadow: 0 0 36px var(--accent-glow),
                        0 1px 0 rgba(255,255,255,0.15) inset;
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.05);
            color: var(--text-primary);
            border: 1px solid var(--border-subtle);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.1);
        }

        .btn-lg { padding: 14px 32px; font-size: 14.5px; }

        .btn-primary .btn-arrow { transition: transform 0.3s; }
        .btn-primary:hover .btn-arrow { transform: translateX(3px); }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 1001;
        }

        .nav-toggle span {
            width: 20px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .nav-toggle.active span:nth-child(2) { opacity: 0; }
        .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* ===== HERO ===== */

        .hero {
            position: relative;
            padding: 180px 24px 120px;
            overflow: hidden;
        }

        /* .hero::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            height: 700px;
            background: radial-gradient(circle at center,
                rgba(255, 107, 107, 0.12) 0%,
                rgba(255, 107, 107, 0.04) 35%,
                transparent 55%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(194, 132, 209, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(147, 93, 173, 0.035) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
            -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
            pointer-events: none;
        } */
        .hero::after {
            opacity: 0.3;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(169, 85, 247, 0.185) 1px, transparent 1px),
                linear-gradient(90deg, rgba(168,85,247,0.25) 1px, transparent 1px);
            background-size: 80px 80px;

            mask-image: radial-gradient(
                circle 250px at var(--mouse-x, 30%) var(--mouse-y, 50%),
                black,
                transparent
            );
            -webkit-mask-image: radial-gradient(
                circle 250px at var(--mouse-x, 30%) var(--mouse-y, 50%),
                black,
                transparent
            );
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-content { max-width: 560px; }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 5px 16px 5px 7px;
            background: var(--accent-soft);
            border: 1px solid rgba(255, 107, 107, 0.2);
            border-radius: var(--radius-pill);
            font-size: 12.5px;
            font-weight: 600;
            color: var(--accent-light);
            margin-bottom: 28px;
        }

        .badge-dot {
            width: 7px;
            height: 7px;
            background: var(--green);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
            animation: dotPulse 2s ease-in-out infinite;
        }

        @keyframes dotPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .hero h1 {
            font-size: clamp(40px, 5vw, 62px);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.05;
            margin-bottom: 20px;
        }

        .gradient-text {
            background: linear-gradient(135deg, #FFD4D4 0%, var(--accent) 60%, #FF9B9B 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            font-size: 16.5px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 460px;
        }

        .hero-cta {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 48px;
        }

        .trusted-row { display: flex; flex-direction: column; gap: 14px; }

        .trusted-label {
            font-size: 11.5px;
            font-weight: 500;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .trusted-logos {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
        }

        .trusted-logo {
            opacity: 0.25;
            transition: opacity 0.3s;
            font-size: 14px;
            font-weight: 700;
            color: var(--text-secondary);
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .trusted-logo:hover { opacity: 0.5; }

        .trusted-logo .t-icon {
            width: 18px;
            height: 18px;
            border-radius: 4px;
            background: rgba(255,255,255,0.15);
        }

        /* Hero mockup */
        .hero-mockup { position: relative; }

        .mockup-window {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0,0,0,0.5),
                        0 0 0 1px rgba(255,255,255,0.03) inset;
            transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
            transition: transform 0.5s ease;
        }

        .mockup-window:hover {
            transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
        }

        .mockup-toolbar {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-subtle);
        }

        .mockup-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .mockup-dot:nth-child(1) {
            background: var(--rose);
            opacity: 0.7;
            box-shadow: 0 0 10px var(--rose);
        }

        .mockup-dot:nth-child(2) {
            background: var(--amber);
            opacity: 0.7;
            box-shadow: 0 0 10px var(--amber);
        }

        .mockup-dot:nth-child(3) {
            background: var(--green);
            opacity: 0.7;
            box-shadow: 0 0 10px var(--green);
        }

        .mockup-dot:hover {
            opacity: 1;
            transform: scale(1.2);
            filter: brightness(1.2);
        }

        .mockup-body { padding: 20px; }

        .mockup-metric-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4px;
            margin-bottom: 16px;
        }

        .mockup-metric {
            background: var(--surface-2);
            border-radius: 10px;
            padding: 8px;
            border: 1px solid var(--border-subtle);
        }

        .mockup-metric .mm-label {
            font-size: 10px;
            color: var(--text-muted);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .mockup-metric .mm-value {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.04em;
        }

        .mockup-metric .mm-change {
            font-size: 10px;
            font-weight: 600;
            color: var(--green);
            margin-top: 4px;
        }

        .mockup-chart {
            background: var(--surface-2);
            border-radius: 10px;
            padding: 16px;
            border: 1px solid var(--border-subtle);
            height: 120px;
            position: relative;
            overflow: hidden;
        }

        .mockup-chart-label {
            font-size: 10px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .chart-line {
            position: absolute;
            bottom: 16px;
            left: 16px;
            right: 16px;
            height: 60px;
        }

        .chart-line svg { width: 100%; height: 100%; }

        .mockup-disclaimer {
            margin-top: 14px;
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
            line-height: 1.5;
        }

        /* ===== SECTIONS ===== */

        .section { padding: 120px 0; position: relative; }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 14px;
            font-family: 'JetBrains Mono', monospace;
        }

        .section-label::before {
            content: '';
            width: 18px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        .section-title {
            font-size: clamp(30px, 4vw, 46px);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.1;
            margin-bottom: 14px;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 480px;
            line-height: 1.7;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-header .section-desc { margin: 0 auto; }

        /* ===== TABBED FEATURES ===== */

        .features-section {
            border-top: 1px solid var(--border-subtle);
        }

        .feature-tabs {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-bottom: 56px;
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-pill);
            padding: 4px;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-tab {
            padding: 10px 24px;
            border-radius: var(--radius-pill);
            font-family: inherit;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-muted);
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            letter-spacing: -0.01em;
        }

        .feature-tab:hover {
            color: var(--text-secondary);
        }

        .feature-tab.active {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 0 20px var(--accent-glow);
        }

        .feature-panels { position: relative; }

        .feature-panel {
            display: none;
            grid-template-columns: 1fr 1.2fr;
            gap: 64px;
            align-items: center;
            animation: panelIn 0.45s ease forwards;
        }

        .feature-panel.active { display: grid; }

        @keyframes panelIn {
            from { opacity: 0; transform: translateY(16px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .feature-text { max-width: 440px; }

        .feature-text .feat-icon {
            width: 48px;
            height: 48px;
            background: var(--accent-soft);
            border: 1px solid rgba(255, 107, 107, 0.10);
            border-radius: 12px;
            display: grid;
            place-items: center;
            margin-bottom: 24px;
            color: var(--accent);
        }

        .feature-text h3 {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.04em;
            margin-bottom: 14px;
            line-height: 1.15;
        }

        .feature-text p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .feature-bullets {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .feature-bullets li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13.5px;
            color: var(--text-secondary);
        }

        .feature-bullets li svg { color: var(--accent); flex-shrink: 0; }

        /* Feature panel embedded UIs */
        .feature-visual {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            position: relative;
        }

        .fv-toolbar {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 11px 16px;
            border-bottom: 1px solid var(--border-subtle);
            background: rgba(255,255,255,0.02);
        }

        .fv-dot { width: 8px; height: 8px; border-radius: 50%; }
        .fv-dot:nth-child(1) { background: var(--rose); opacity: 0.6; }
        .fv-dot:nth-child(2) { background: var(--amber); opacity: 0.6; }
        .fv-dot:nth-child(3) { background: var(--green); opacity: 0.6; }

        .fv-body { padding: 24px; }

        /* — Panel 1: Dashboard mini-UI — */
        /* .dash-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 16px;
        }

        .dash-metric {
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 14px;
        }

        .dash-metric .dm-label {
            font-size: 9.5px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 6px;
            font-family: 'JetBrains Mono', monospace;
        }

        .dash-metric .dm-val {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.04em;
            margin-bottom: 4px;
        }

        .dash-metric .dm-change {
            font-size: 10px;
            font-weight: 600;
        }

        .dm-change.up { color: var(--green); }
        .dm-change.down { color: var(--rose); }

        .dash-chart-area {
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 16px;
            height: 140px;
            position: relative;
        }

        .dash-chart-area .dca-title {
            font-size: 10px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-family: 'JetBrains Mono', monospace;
            margin-bottom: 8px;
        }

        .dash-chart-area svg { width: 100%; height: 80px; } */
        .item-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            perspective: ;
        }

        .voice-card {
            display: flex;
            align-items: center;
            justify-content: space-between;

            padding: 18px 22px;

            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: 18px;

            transition: .25s ease;

            box-shadow: 0 40px 80px rgba(0,0,0,0.5),
                        0 0 0 1px rgba(255,255,255,0.03) inset;
            transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
            transition: transform 0.5s ease;
            cursor: default;
        }
        .voice-card:hover {
            transform: translateX(6px);
            border-color: var(--accent-border);

            box-shadow: 0 40px 80px rgba(0,0,0,0.5),
                        0 0 0 1px rgba(255,255,255,0.03) inset;
            transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
        }

        .voice-info {
            display: flex;
            flex-direction: column;
        }

        .voice-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .voice-desc {
            margin-top: 3px;
            color: var(--text-secondary);
            font-size: 14px;
        }
        .voice-wave {
            display: flex;
            align-items: center;
            gap: 3px;
            height: 26px;
        }

        .voice-wave span {
            width: 4px;
            border-radius: 999px;
            background: var(--accent);

            animation: voiceWave .9s ease-in-out infinite;
        }

        .voice-wave span:nth-child(1){height:10px;animation-delay:.00s;}
        .voice-wave span:nth-child(2){height:18px;animation-delay:.08s;}
        .voice-wave span:nth-child(3){height:12px;animation-delay:.16s;}
        .voice-wave span:nth-child(4){height:22px;animation-delay:.24s;}
        .voice-wave span:nth-child(5){height:14px;animation-delay:.32s;}
        .voice-wave span:nth-child(6){height:18px;animation-delay:.40s;}
        .voice-wave span:nth-child(7){height:10px;animation-delay:.48s;}
        .voice-wave span:nth-child(8){height:20px;animation-delay:.56s;}
        .voice-wave span:nth-child(9){height:13px;animation-delay:.64s;}
        .voice-wave span:nth-child(10){height:17px;animation-delay:.72s;}

        @keyframes voiceWave {

            0%,100% {
                transform: scaleY(.45);
                opacity: .5;
            }

            50% {
                transform: scaleY(1.4);
                opacity: 1;
            }

        }
        /* — Panel 2: Funnel visual — */
        /* .funnel-stages {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .funnel-stage {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 10px 14px;
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xs);
        }

        .funnel-bar-wrap { flex: 1; }

        .funnel-bar-label {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            margin-bottom: 5px;
        }

        .funnel-bar-label span:first-child { color: var(--text-secondary); }
        .funnel-bar-label span:last-child { font-family: 'JetBrains Mono', monospace; color: var(--text-muted); font-size: 10.5px; }

        .funnel-track {
            height: 6px;
            background: rgba(255,255,255,0.06);
            border-radius: 6px;
            overflow: hidden;
        }

        .funnel-fill {
            height: 100%;
            border-radius: 6px;
            background: var(--accent);
            transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .funnel-fill.green { background: var(--green); }
        .funnel-fill.amber { background: var(--amber); }

        .funnel-drop {
            font-size: 10px;
            font-weight: 600;
            color: var(--rose);
            font-family: 'JetBrains Mono', monospace;
            width: 44px;
            text-align: right;
            flex-shrink: 0;
        } */
        .discord-card {
            background: #2b2d31;
            border-radius: 8px;
            padding: 8px;
            color: #dbdee1;
            font-family: "gg sans", "Helvetica Neue", Arial, sans-serif;
            border: 1px solid #1e1f22;
            max-width: 500px;

            transition: .25s ease;

            box-shadow: 0 40px 80px rgba(0,0,0,0.5),
                        0 0 0 1px rgba(255,255,255,0.03) inset;
            transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
            transition: transform 0.5s ease;
        }
        .discord-card:hover {
            transform: translateX(6px);
            border-color: var(--accent-border);

            box-shadow: 0 40px 80px rgba(0,0,0,0.5),
                        0 0 0 1px rgba(255,255,255,0.03) inset;
            transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
        }
        

        .discord-card-title {
            font-size: 16px;
            font-weight: 600;
            color: #f2f3f5;
            margin-bottom: 4px;
        }

        .discord-card-content {
            font-size: 15px;
            line-height: 1.5;
            color: #b5bac1;
        }

        .discord-code {
            background: #1e1f22;
            color: #e2e5e9;
            padding: 2px 5px;
            border-radius: 4px;
            font-family: Consolas, "Courier New", monospace;
            font-weight: 500;
            font-size: 0.9em;
        }

        /* — Panel 3: Code snippet — */
        .code-block {
            background: var(--deep-space);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 20px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            line-height: 1.8;
            color: var(--text-secondary);
            /* overflow-x: auto; */

        }

        .code-block .c-key { color: var(--accent-light); }
        .code-block .c-str { color: var(--green); }
        .code-block .c-fn { color: var(--amber); }
        .code-block .c-comment { color: var(--text-muted); }
        .code-block .c-num { color: var(--rose); }

        .code-output {
            margin-top: 12px;
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 14px 16px;
        }

        .code-output .co-label {
            font-size: 9.5px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-family: 'JetBrains Mono', monospace;
            margin-bottom: 8px;
        }

        .code-output .co-result {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--green);
            font-family: 'JetBrains Mono', monospace;
        }

        .co-result .pulse-ring {
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(34,197,94,0.5);
        }

        /* — Panel 4: Session replay — */
        .replay-ui {
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            overflow: hidden;
        }

        .replay-header {
            padding: 10px 14px;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .replay-header .rh-left {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            color: var(--text-secondary);
        }

        .replay-header .rh-left .live-dot {
            width: 6px;
            height: 6px;
            background: var(--rose);
            border-radius: 50%;
            box-shadow: 0 0 6px rgba(244,63,94,0.5);
            animation: dotPulse 1.5s ease-in-out infinite;
        }

        .replay-header .rh-time {
            font-size: 10px;
            color: var(--text-muted);
            font-family: 'JetBrains Mono', monospace;
        }

        .replay-viewport {
            padding: 20px;
            min-height: 160px;
            position: relative;
        }

        /* Fake mini-page inside replay */
        .replay-page {
            background: #28282f;
            border-radius: 6px;
            padding: 14px;
            border: 1px solid var(--border-subtle);
        }

        .rp-nav {
            height: 6px;
            background: rgba(255,255,255,0.06);
            border-radius: 3px;
            margin-bottom: 12px;
            width: 60%;
        }

        .rp-hero-block {
            height: 10px;
            background: rgba(255,255,255,0.08);
            border-radius: 3px;
            margin-bottom: 6px;
            width: 80%;
        }

        .rp-hero-block:nth-child(3) { width: 50%; margin-bottom: 12px; }

        .rp-btn-block {
            display: inline-block;
            height: 8px;
            width: 48px;
            background: var(--accent);
            opacity: 0.6;
            border-radius: 4px;
            margin-bottom: 16px;
        }

        .rp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
        }

        .rp-card {
            height: 28px;
            background: rgba(255,255,255,0.04);
            border-radius: 4px;
            border: 1px solid var(--border-subtle);
        }

        /* Cursor animation */
        .replay-cursor {
            position: absolute;
            width: 12px;
            height: 12px;
            border-left: 2px solid var(--accent);
            border-top: 2px solid var(--accent);
            transform: rotate(-45deg);
            filter: drop-shadow(0 0 6px rgba(255,107,107,0.4));
            animation: cursorMove 4s ease-in-out infinite;
        }

        @keyframes cursorMove {
            0% { top: 60px; left: 40px; }
            25% { top: 80px; left: 140px; }
            50% { top: 110px; left: 100px; }
            75% { top: 70px; left: 180px; }
            100% { top: 60px; left: 40px; }
        }

        .replay-timeline {
            padding: 10px 14px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .replay-timeline .rt-play {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--accent);
            display: grid;
            place-items: center;
            flex-shrink: 0;
        }

        .rt-track {
            flex: 1;
            height: 3px;
            background: rgba(255,255,255,0.08);
            border-radius: 3px;
            overflow: hidden;
        }

        .rt-progress {
            height: 100%;
            width: 45%;
            background: var(--accent);
            border-radius: 3px;
        }

        .replay-events {
            margin-top: 12px;
            display: flex;
            gap: 8px;
        }

        .replay-event-tag {
            padding: 4px 10px;
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xs);
            font-size: 10px;
            color: var(--text-muted);
            font-family: 'JetBrains Mono', monospace;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .replay-event-tag .re-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
        }

        /* — Panel 5: Privacy — */
        .privacy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .privacy-card {
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 18px;
        }

        .privacy-card .pc-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: rgba(34,197,94,0.1);
            border: 1px solid rgba(34,197,94,0.15);
            display: grid;
            place-items: center;
            margin-bottom: 12px;
            color: var(--green);
        }

        .privacy-card h4 {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 4px;
            letter-spacing: -0.02em;
        }

        .privacy-card p {
            font-size: 11.5px;
            color: var(--text-muted);
            line-height: 1.55;
        }

        /* ===== STATS ===== */

        .stats-strip {
            padding: 80px 0;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .stats-grid {
            display: flex;
            justify-content: space-between;
        }

        .stat-item { text-align: left; flex: 1; }

        .stat-item + .stat-item {
            border-left: 1px solid var(--border-subtle);
            padding-left: 40px;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ===== PRICING ===== */

        .pricing-section {
            background: linear-gradient(180deg,
                var(--deep-space) 0%,
                rgba(255, 107, 107, 0.02) 50%,
                var(--deep-space) 100%);
        }

        .pricing-toggle-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 56px;
        }

        .pricing-toggle-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            transition: color 0.3s;
        }

        .pricing-toggle-label.active { color: var(--text-primary); }

        .pricing-toggle {
            position: relative;
            width: 48px;
            height: 26px;
            background: rgba(255,255,255,0.08);
            border-radius: 100px;
            cursor: pointer;
            border: 1px solid var(--border-subtle);
        }

        .pricing-toggle::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 18px;
            height: 18px;
            background: var(--accent);
            border-radius: 50%;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 12px var(--accent-glow);
        }

        .pricing-toggle.annual::after { transform: translateX(22px); }

        .pricing-save {
            font-size: 11px;
            font-weight: 700;
            color: var(--green);
            background: rgba(34, 197, 94, 0.1);
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(34, 197, 94, 0.2);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: center;
        }

        .pricing-card {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 40px 32px;
            position: relative;
            transition: all 0.4s;
        }

        .pricing-card:hover { border-color: rgba(255,255,255,0.08); }

        .pricing-card.featured {
            transform: scale(1.05);
            border-color: var(--accent-border);
            z-index: 2;
            box-shadow: 0 0 80px rgba(255, 107, 107, 0.06),
                        0 24px 48px rgba(0,0,0,0.4);
        }

        .pricing-card.featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: 20%;
            right: 20%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }

        .pricing-popular {
            position: absolute;
            top: -11px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: var(--radius-pill);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            box-shadow: 0 0 20px var(--accent-glow);
        }

        .pricing-plan-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .pricing-amount {
            display: flex;
            align-items: flex-start;
            gap: 2px;
            margin-bottom: 4px;
            min-height: 56px;
        }

        .pricing-currency {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-muted);
            margin-top: 8px;
        }

        .pricing-value {
            font-size: 52px;
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pricing-value.free-label {
            font-size: 44px;
            letter-spacing: -0.03em;
        }

        .pricing-value.changing {
            opacity: 0;
            transform: translateY(-6px);
        }

        .pricing-period {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 28px;
        }

        .period-yearly {
            color: var(--text-primary);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13.5px;
            color: var(--text-secondary);
            padding: 7px 0;
        }

        .pricing-features li svg { flex-shrink: 0; color: var(--accent); }

        .pricing-card .btn { width: 100%; }

        .pricing-divider {
            height: 1px;
            background: var(--border-subtle);
            margin: 24px 0;
        }

        /* ===== SUBSCRIBE ===== */

        .subscribe-section {
            padding: 100px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .subscribe-section::before {
            content: '';
            position: absolute;
            top: 30%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 400px;
            background: radial-gradient(ellipse at center,
                rgba(255, 107, 107, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }

        .subscribe-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
            pointer-events: none;
        }

        .subscribe-inner {
            position: relative;
            z-index: 1;
            max-width: 520px;
            margin: 0 auto;
        }

        .subscribe-inner .section-title {
            font-size: clamp(24px, 3.5vw, 36px);
            margin-bottom: 12px;
        }

        .subscribe-inner .section-desc {
            max-width: 380px;
            margin: 0 auto 32px;
            font-size: 15px;
        }

        .subscribe-input-group {
            display: flex;
            gap: 0;
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 5px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .subscribe-input-group:focus-within {
            border-color: var(--accent-border);
            box-shadow: 0 0 0 3px var(--accent-soft);
        }

        .subscribe-input-group input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 14px 18px;
            font-family: inherit;
            font-size: 15px;
            color: var(--text-primary);
            outline: none;
            min-width: 0;
        }

        .subscribe-input-group input::placeholder {
            color: var(--text-muted);
        }

        .subscribe-input-group .btn {
            border-radius: 12px;
            padding: 12px 28px;
        }

        .subscribe-meta {
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .subscribe-meta span {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .subscribe-meta svg {
            color: var(--accent);
            flex-shrink: 0;
        }

        /* ===== FOOTER ===== */

        .footer {
            border-top: 1px solid var(--border-subtle);
            padding: 0;
        }

        /* Row 1: Links */
        .footer-row-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
            padding: 28px 0;
            flex-wrap: wrap;
            border-bottom: 1px solid var(--border-subtle);
        }

        .footer-row-links a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color 0.3s;
            letter-spacing: -0.01em;
        }

        .footer-row-links a:hover {
            color: var(--text-primary);
        }

        .footer-link-dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            flex-shrink: 0;
        }

        /* Row 2: Copyright + socials */
        .footer-row-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0 28px;
        }

        .footer-copy {
            font-size: 12.5px;
            color: var(--text-muted);
        }

        .footer-copy a {
            color: var(--accent);
            transition: color 0.3s;
        }

        .footer-copy a:hover {
            color: var(--accent-light);
        }

        .footer-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .footer-legal {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .footer-legal a {
            font-size: 12.5px;
            color: var(--text-muted);
            transition: color 0.3s;
        }

        .footer-legal a:hover {
            color: var(--text-primary);
        }

        .footer-right .separator {
            width: 1px;
            height: 16px;
            background: var(--border-subtle);
        }

        .footer-socials {
            display: flex;
            gap: 4px;
        }

        .footer-socials a {
            width: 34px;
            height: 34px;
            display: grid;
            place-items: center;
            border-radius: 8px;
            color: var(--text-muted);
            transition: all 0.3s;
        }

        .footer-socials a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.04);
        }

        /* ===== SCROLL ANIMATIONS ===== */

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

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

        /* ===== RESPONSIVE ===== */

        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .hero-mockup { max-width: 500px; margin: 0 auto; }
            .mockup-window, .mockup-window:hover { transform: none; }

            .feature-panel, .feature-panel.active {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .feature-text { max-width: none; }

            .pricing-card.featured { transform: scale(1.02); }

            .footer-row-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .footer-right { justify-content: center; }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100dvh;
                background: rgba(30, 30, 36, 0.98);
                backdrop-filter: blur(24px);
                -webkit-backdrop-filter: blur(24px);
                flex-direction: column;
                align-items: flex-start;
                padding: 80px 28px 80px;
                gap: 0;
                border-left: 1px solid var(--border-subtle);
                transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                overflow-y: auto;
                z-index: 999;
            }

            .nav-links.open { right: 0; }
            .nav-links li { width: 100%; }

            .nav-links a {
                display: block;
                padding: 14px 0;
                font-size: 16px;
                border-bottom: 1px solid var(--border-subtle);
            }

            .nav-toggle { display: flex; }
            .nav-actions { display: none; }

            .nav-mobile-actions {
                display: flex;
                flex-direction: column;
                gap: 10px;
                padding-top: 24px;
                margin-top: 8px;
            }

            .nav-mobile-actions .btn {
                width: 100%;
                text-align: center;
                border-radius: var(--radius-pill);
                color: var(--text-primary);
            }

            .nav-mobile-actions .btn-primary {
                color: #fff;
            }

            .nav-mobile-actions a {
                border-bottom: none !important;
                padding: 10px 22px !important;
                font-size: 14px !important;
            }
            .hero { padding: 140px 24px 80px; }

            .hero-cta { flex-direction: column; align-items: stretch; }

            .feature-tabs {
                overflow-x: auto;
                justify-content: flex-start;
                width: 100%;
                border-radius: var(--radius-sm);
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .feature-tabs::-webkit-scrollbar { display: none; }

            .feature-tab { padding: 10px 18px; font-size: 12.5px; }

            .dash-metrics { grid-template-columns: 1fr; }
            .privacy-grid { grid-template-columns: 1fr; }

            .stats-grid { flex-wrap: wrap; gap: 32px; }
            .stat-item { flex: 1 1 40%; min-width: 140px; }
            .stat-item + .stat-item { border-left: none; padding-left: 0; }
            .stat-number { font-size: 36px; }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .pricing-card.featured { transform: scale(1); }

            .subscribe-input-group { flex-direction: column; border-radius: var(--radius-sm); }
            .subscribe-input-group .btn { width: 100%; border-radius: var(--radius-sm); }
            .subscribe-meta { flex-direction: column; gap: 8px; }

            .footer-row-links { gap: 20px; }

            .section { padding: 80px 0; }
        }

        @media (max-width: 480px) {
            .trusted-logos { gap: 18px; }
            .mockup-metric-row { grid-template-columns: 1fr; }
            .replay-events { flex-wrap: wrap; }
        }

        @media (prefers-reduced-motion: reduce) {
            .fade-up { opacity: 1; transform: none; transition: none; }
            .badge-dot { animation: none; }
            .pricing-value.changing { opacity: 1; transform: none; }
            .mockup-window { transform: none; }
            .replay-cursor { animation: none; top: 70px; left: 100px; }
            @keyframes panelIn { from { opacity: 1; transform: none; } }
        }
