        /* ============================================
           QUANTIX - SaaS Landing Page Template
           Design: TemplateMo
           https://templatemo.com
        ============================================ */

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Base Background */
            --deep-space: #0B0A10; /* Extreme Dark Purple-Black */
            --surface-1: #13111C; /* Dark Tab */
            --surface-2: #1C1829; /* Lighter Tab / Interior */
            --surface-3: #262038; /* Hover States */

            /* Cloumer Purple Accents */
            --accent: #8B5CF6; /* Main Purple (Violet 500) */
            --accent-light: #A78BFA; /* Violet 400 */
            --accent-glow: rgba(139, 92, 246, 0.45); /* Button glow */
            --accent-soft: rgba(139, 92, 246, 0.12); /* Badge background */
            --accent-border: rgba(167, 139, 250, 0.3);

            /* Secondary accents */
            --neon-cyan: #06B6D4; /* Accent/escrow badge fill color */
            --text-primary: #F3F4F6; /* Pure light font */
            --text-secondary: #9CA3AF; /* Slightly muted text */
            --text-muted: #6B7280; /* Darker text */
            --border-subtle: rgba(255, 255, 255, 0.08);

            --green: #22C55E;
            --amber: #F59E0B;
            --rose: #F43F5E;
            --radius: 16px;
            --radius-sm: 10px;
            --radius-xs: 6px;
            --radius-pill: 100px;
        }

        html, body {
            overflow-x: hidden;
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
            background-color: var(--deep-space);
            color: var(--text-primary);
            line-height: 1.6;
            -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; }

        /* ===== NAVBAR ===== */

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            background: rgba(30, 30, 36, 0.8);
            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(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% 30%, black 30%, transparent 75%);
            -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
            pointer-events: none;
        }

        .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: 12px;
            flex-wrap: wrap;
        }

        .trusted-logo {
            opacity: 0.85;
            transition: all 0.3s ease;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-pill);
            padding: 6px 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .trusted-logo:hover {
            opacity: 1;
            color: #fff;
            background: rgba(139, 92, 246, 0.12);
            border-color: var(--accent-border);
            transform: translateY(-2px);
        }

        .trusted-logo svg {
            color: var(--accent-light);
            flex-shrink: 0;
        }

        /* 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%;
        }

        .mockup-dot:nth-child(1) { background: var(--rose); opacity: 0.7; }
        .mockup-dot:nth-child(2) { background: var(--amber); opacity: 0.7; }
        .mockup-dot:nth-child(3) { background: var(--green); opacity: 0.7; }

        .mockup-body { padding: 20px; }

        .mockup-metric-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 16px;
        }

        .mockup-metric {
            background: var(--surface-2);
            border-radius: 10px;
            padding: 14px;
            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%; }

        /* ===== 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; }

        /* — 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;
        }

        /* — 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; }
        }

        /* ===== CLOUMER GSAP ANIMATION CLASSES ===== */

        /* Magnetic Button Wrapper */
        .magnetic-wrap {
            display: inline-block;
            position: relative;
        }

        /* Canvas Background for Hero Blobs */
        #hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        /* 3D Tilt Cards */
        .tilt-card {
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        .tilt-card-inner {
            transform: translateZ(30px);
        }

        /* Escrow Simulator Styles */
        .escrow-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            flex-direction: column;
            gap: 20px;
            color: var(--text-primary);
        }

        .escrow-lock {
            width: 60px;
            height: 60px;
            transition: stroke 0.3s ease;
        }

        .escrow-lock.locked {
            stroke: var(--accent);
        }

        .escrow-lock.unlocked {
            stroke: var(--green);
        }

        .escrow-status-text {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* SplitText initial state */
        .split-char {
            opacity: 0;
            filter: blur(10px);
        }

        


        /* ===== PRELOADER & BRANDING ===== */
        #preloader {
            position: fixed;
            inset: 0;
            background: #0B0A10;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;
            will-change: transform, opacity;
        }
        .preloader-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }
        .preloader-logo-wrap {
            position: relative;
            display: grid;
            place-items: center;
        }
        .preloader-logo {
            width: 72px;
            height: 72px;
            border-radius: 18px;
            object-fit: cover;
            filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.75));
            box-shadow: 0 0 45px rgba(139, 92, 246, 0.5);
            animation: auraPulse 2s ease-in-out infinite alternate;
        }
        @keyframes auraPulse {
            0% { box-shadow: 0 0 30px rgba(139, 92, 246, 0.4); }
            100% { box-shadow: 0 0 60px rgba(139, 92, 246, 0.85); }
        }
        .glowing-icon {
            box-shadow: 0 0 40px var(--accent-glow);
        }
        .preloader-counter {
            font-family: 'JetBrains Mono', monospace;
            font-size: 24px;
            font-weight: 600;
            color: #A78BFA;
            letter-spacing: 2px;
            text-shadow: 0 0 12px rgba(167, 139, 250, 0.5);
        }
        .preloader-progress-track {
            width: 240px;
            height: 4px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 100px;
            overflow: hidden;
            position: relative;
            margin-top: 4px;
        }
        .preloader-progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #8B5CF6, #A78BFA);
            box-shadow: 0 0 14px #8B5CF6;
            border-radius: 100px;
        }

        /* Logo Brand Image Utilities */
        .nav-logo-img {
            height: 38px;
            width: auto;
            display: block;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
        }
        .footer-logo-img {
            height: 40px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        /* ===== CUSTOM CURSOR ===== */
        body {
            /* hide default cursor on desktop where custom cursor shows */
            cursor: none;
        }
        a, button, input, textarea, .tilt-card {
            cursor: none;
        }
        .cursor-dot {
            position: fixed;
            top: 0; left: 0;
            width: 4px;
            height: 4px;
            background-color: var(--accent-light);
            border-radius: 50%;
            pointer-events: none;
            z-index: 100000;
            transform: translate(-50%, -50%);
        }
        .cursor-ring {
            position: fixed;
            top: 0; left: 0;
            width: 30px;
            height: 30px;
            border: 1px solid var(--accent-glow);
            box-shadow: 0 0 10px var(--accent-glow);
            border-radius: 50%;
            pointer-events: none;
            z-index: 100000;
            transform: translate(-50%, -50%);
            transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
        }
        /* Disable cursor on touch devices */
        @media (hover: none) and (pointer: coarse) {
            .cursor-dot, .cursor-ring { display: none !important; }
            body, a, button, input, textarea, .tilt-card { cursor: auto; }
        }

        /* ===== HERO DARK BROWSER ===== */
        .dark-browser {
            background: #13111C;
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(139, 92, 246, 0.15);
        }
        .mockup-toolbar {
            display: flex;
            gap: 8px;
            padding: 12px 16px;
            background: #1C1829;
            border-bottom: 1px solid var(--border-subtle);
        }
        .mockup-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .mockup-dot.red { background: #FF5F56; }
        .mockup-dot.yellow { background: #FFBD2E; }
        .mockup-dot.green { background: #27C93F; }
        .hero-img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* ===== BLOG SECTION ===== */
        .blog-section { padding-top: 120px; }
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 50px;
        }
        .blog-card {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            overflow: hidden;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .blog-card:hover {
            border-color: var(--accent-border);
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
        }
        .blog-image {
            height: 200px;
            background: var(--surface-2);
            border-bottom: 1px solid var(--border-subtle);
        }
        .blog-content { padding: 24px; }
        .blog-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            background: var(--accent-soft);
            padding: 4px 10px;
            border-radius: 4px;
            margin-bottom: 12px;
        }
        .blog-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .blog-excerpt {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .blog-meta {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            display: flex;
            align-items: center;
        }
        .blog-meta::before {
            content: '';
            display: inline-block;
            width: 16px;
            height: 16px;
            background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
            background-size: contain;
            margin-right: 6px;
        }
        .blog-cta {
            margin-top: 50px;
            text-align: center;
        }

        /* ===== CONTACT SECTION ===== */
        .contact-section {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--deep-space) 0%, var(--surface-1) 100%);
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 40px;
        }
        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        .contact-method svg {
            margin-top: 4px;
        }
        .contact-method h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .contact-method a {
            color: var(--text-secondary);
            transition: color 0.3s;
        }
        .contact-method a:hover {
            color: var(--accent-light);
        }
        .social-links {
            display: flex;
            gap: 16px;
        }
        .contact-form-wrap {
            background: var(--surface-2);
            padding: 40px;
            border-radius: var(--radius);
            border: 1px solid var(--border-subtle);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        .contact-form .form-group {
            margin-bottom: 24px;
        }
        .contact-form label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            padding: 14px 16px;
            border-radius: var(--radius-xs);
            color: var(--text-primary);
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        @media (max-width: 768px) {
            .contact-grid { grid-template-columns: 1fr; gap: 40px; }
            .contact-form-wrap { padding: 24px; }
        }

        /* ===== BLOG MODAL & FILTERS ===== */
        .blog-filters {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        .filter-btn {
            background: var(--surface-2);
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
            padding: 8px 20px;
            border-radius: var(--radius-pill);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .filter-btn.active, .filter-btn:hover {
            background: var(--accent-soft);
            color: var(--accent-light);
            border-color: var(--accent-border);
            box-shadow: 0 0 15px var(--accent-glow);
        }

        /* Fullscreen Article Modal */
        #articleModal {
            position: fixed;
            inset: 0;
            background: rgba(11, 10, 16, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 100000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
        }
        .modal-content {
            background: var(--surface-1);
            width: 100%;
            max-width: 800px;
            max-height: 90vh;
            border-radius: var(--radius);
            border: 1px solid var(--border-subtle);
            box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px var(--accent-soft);
            overflow-y: auto;
            position: relative;
            transform: scale(0.95) translateY(20px);
            padding: 40px;
        }
        .close-modal {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 8px;
            transition: color 0.3s;
        }
        .close-modal:hover { color: var(--text-primary); }
        .modal-body {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.8;
            margin-top: 30px;
        }
        .modal-body p { margin-bottom: 20px; }
        .modal-body h2, .modal-body h3 {
            color: var(--text-primary);
            margin: 40px 0 20px;
        }

        /* Masterpiece Preloader */
        #preloader {
            position: fixed;
            inset: 0;
            background: #0B0A10;
            background-image: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 65%);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            overflow: hidden;
            transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .preloader-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            z-index: 2;
        }

        .preloader-logo-ring {
            position: relative;
            width: 88px;
            height: 88px;
            display: grid;
            place-items: center;
        }

        .preloader-ring-glow {
            position: absolute;
            inset: -6px;
            border-radius: 28px;
            border: 2px solid transparent;
            border-top-color: var(--accent);
            border-right-color: var(--accent-light);
            animation: spinRing 1.8s linear infinite;
            box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
        }

        @keyframes spinRing {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .preloader-logo {
            width: 66px;
            height: 66px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
            animation: pulseLogo 2s ease-in-out infinite alternate;
        }

        @keyframes pulseLogo {
            0% { transform: scale(0.96); filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.4)); }
            100% { transform: scale(1.04); filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.8)); }
        }

        .preloader-counter {
            font-family: 'JetBrains Mono', monospace;
            font-size: 15px;
            font-weight: 700;
            color: var(--accent-light);
            letter-spacing: 2px;
        }

        .preloader-progress-track {
            width: 220px;
            height: 4px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 100px;
            overflow: hidden;
            position: relative;
        }

        .preloader-progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
            border-radius: 100px;
            box-shadow: 0 0 12px var(--accent);
            transition: width 0.1s linear;
        }

        /* Glassmorphic Toast Notification */
        .cloumer-toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100000;
            background: rgba(19, 17, 28, 0.94);
            border: 1px solid var(--accent-border);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 14px 22px;
            border-radius: var(--radius);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--accent-glow);
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-size: 13.5px;
            font-weight: 600;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }

        .cloumer-toast.show {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .cloumer-toast.toast-error {
            border-color: rgba(244, 63, 94, 0.5);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(244, 63, 94, 0.3);
        }

        /* Floating Admin Live Visual Editor Toolbar */
        .admin-live-toolbar {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 99998;
            background: rgba(19, 17, 28, 0.95);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(167, 139, 250, 0.4);
            border-radius: var(--radius-pill);
            padding: 8px 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(139, 92, 246, 0.35);
            transition: all 0.3s ease;
        }

        .admin-live-toolbar .admin-badge {
            font-size: 11px;
            font-weight: 800;
            color: var(--accent-light);
            background: rgba(139, 92, 246, 0.2);
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .admin-live-toolbar button {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border-subtle);
            color: #fff;
            padding: 7px 16px;
            border-radius: var(--radius-pill);
            font-size: 12.5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .admin-live-toolbar button:hover {
            background: rgba(139, 92, 246, 0.2);
            border-color: var(--accent-light);
        }

        .admin-live-toolbar button.btn-save-live {
            background: var(--accent);
            box-shadow: 0 0 20px var(--accent-glow);
            border: none;
        }

        .admin-live-toolbar button.btn-save-live:hover {
            background: #9d70ff;
            transform: translateY(-1px);
        }

        /* Editable element styles when live edit mode is active */
        body.live-edit-active [data-editable] {
            outline: 2px dashed rgba(167, 139, 250, 0.5);
            outline-offset: 4px;
            border-radius: 4px;
            cursor: text;
            transition: outline-color 0.2s ease, background 0.2s ease;
        }

        body.live-edit-active [data-editable]:hover {
            outline-color: var(--accent);
            background: rgba(139, 92, 246, 0.08);
        }

        body.live-edit-active [data-editable]:focus {
            outline: 2px solid var(--accent);
            background: rgba(139, 92, 246, 0.15);
            box-shadow: 0 0 15px var(--accent-glow);
        }

        /* Modal for Media & Icon Picker */
        #iconPickerModal {
            position: fixed;
            inset: 0;
            background: rgba(11, 10, 16, 0.85);
            backdrop-filter: blur(16px);
            z-index: 100001;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        #iconPickerModal.active {
            opacity: 1;
            pointer-events: auto;
        }

        .icon-picker-box {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 32px;
            width: 100%;
            max-width: 520px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
        }

        .icon-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin: 20px 0;
        }

        .icon-option {
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 16px;
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: all 0.2s ease;
            color: var(--text-secondary);
        }

        .icon-option:hover, .icon-option.selected {
            background: rgba(139, 92, 246, 0.2);
            border-color: var(--accent-light);
            color: #fff;
        }

        /* Logo images retina rendering */
        .nav-logo-img {
            height: 38px;
            width: auto;
            max-width: 180px;
            object-fit: contain;
            display: block;
            filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.35));
        }

        .footer-logo-img {
            height: 34px;
            width: auto;
            max-width: 160px;
            object-fit: contain;
            display: block;
        }

        /* GDPR Cookie Consent Bar */
        .cookie-consent-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 99997;
            background: rgba(19, 17, 28, 0.95);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-top: 1px solid var(--accent-border);
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
            padding: 18px 0;
            transform: translateY(100%);
            opacity: 0;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }

        .cookie-consent-bar.show {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .cookie-consent-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .cookie-consent-text {
            font-size: 13.5px;
            color: var(--text-secondary);
            max-width: 680px;
            line-height: 1.5;
        }

        .cookie-consent-text a {
            color: var(--accent-light);
            text-decoration: underline;
        }

        .cookie-consent-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-cookie-accept {
            background: var(--accent);
            color: #fff;
            padding: 8px 20px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 16px var(--accent-glow);
            transition: all 0.2s ease;
        }

        .btn-cookie-accept:hover {
            background: #9d70ff;
            transform: translateY(-1px);
        }

        .btn-cookie-decline {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
            padding: 8px 18px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        /* ABOUT SECTION & DUAL MOCKUPS */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 64px;
        }

        .about-card {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .about-card:hover {
            border-color: var(--accent-border);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 25px var(--accent-soft);
        }

        .about-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--accent-soft);
            display: grid;
            place-items: center;
            margin-bottom: 20px;
        }

        .about-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
        }

        .about-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .about-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-top: 40px;
        }

        .showcase-window {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 30px var(--accent-soft);
            transition: transform 0.4s ease;
        }

        .showcase-window:hover {
            transform: translateY(-6px) scale(1.01);
        }

        .mockup-url {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: var(--text-muted);
            margin-left: 12px;
            background: rgba(255, 255, 255, 0.05);
            padding: 2px 10px;
            border-radius: 100px;
        }

        .showcase-img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            object-fit: cover;
        }

        /* Cookie Settings Modal */
        .cookie-settings-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(8, 7, 12, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .cookie-settings-modal.show {
            opacity: 1;
            pointer-events: auto;
        }

        .cookie-modal-content {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            max-width: 540px;
            width: 100%;
            padding: 36px;
            position: relative;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px var(--accent-soft);
        }

        .cookie-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .cookie-modal-close:hover { color: #fff; }

        .cookie-modal-content h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 8px;
            color: #fff;
        }

        .cookie-modal-desc {
            font-size: 13.5px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .cookie-cat-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 24px;
        }

        .cookie-cat-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 18px;
        }

        .cookie-cat-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .cookie-cat-header h4 {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            display: inline-block;
        }

        .cookie-badge-locked {
            font-size: 10px;
            font-weight: 700;
            background: rgba(139, 92, 246, 0.2);
            color: var(--accent-light);
            padding: 2px 8px;
            border-radius: 100px;
            margin-left: 8px;
            text-transform: uppercase;
        }

        .cookie-cat-desc {
            font-size: 12.5px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* Switch Toggle Component */
        .switch-toggle {
            position: relative;
            display: inline-block;
            width: 44px;
            height: 24px;
        }

        .switch-toggle input { opacity: 0; width: 0; height: 0; }

        .switch-toggle .slider {
            position: absolute;
            cursor: pointer;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: rgba(255, 255, 255, 0.15);
            transition: .3s;
            border-radius: 34px;
        }

        .switch-toggle .slider:before {
            position: absolute;
            content: "";
            height: 18px; width: 18px;
            left: 3px; bottom: 3px;
            background-color: white;
            transition: .3s;
            border-radius: 50%;
        }

        .switch-toggle input:checked + .slider {
            background-color: var(--accent);
            box-shadow: 0 0 12px var(--accent-glow);
        }

        .switch-toggle input:checked + .slider:before {
            transform: translateX(20px);
        }


        .lang-btn {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            font-size: 12px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .lang-btn:hover {
            color: #fff;
        }

        .lang-btn.active {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 0 12px var(--accent-glow);
        }

        /* Interactive Hover Animation for Footer Legal Links */
        .footer-legal a {
            position: relative;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-legal a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--accent);
            box-shadow: 0 0 10px var(--accent-glow);
            transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .footer-legal a:hover {
            color: #fff;
        }

        .footer-legal a:hover::after {
            width: 100%;
        }

        /* =========================================================
           HOTFIX 1: CUSTOM CURSOR POINTER EVENTS & INPUT SELECTION
           ========================================================= */
        .cursor-dot, .cursor-ring {
            pointer-events: none !important;
            user-select: none !important;
            -webkit-user-select: none !important;
        }

        input, textarea, select, [contenteditable="true"] {
            cursor: text !important;
            user-select: text !important;
            -webkit-user-select: text !important;
        }

        /* =========================================================
           HOTFIX 2: DARK MODE INPUT STYLING (FOR ADMIN & FORMS)
           ========================================================= */
        input[type="text"], input[type="password"], input[type="email"], textarea, select {
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(255, 255, 255, 0.12) !important;
            color: #fff !important;
            padding: 12px 16px !important;
            border-radius: 10px !important;
            font-size: 14px !important;
            font-family: inherit !important;
            outline: none !important;
            transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
        }

        input[type="text"]::placeholder, input[type="password"]::placeholder, input[type="email"]::placeholder, textarea::placeholder {
            color: var(--text-muted) !important;
        }

        input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
            border-color: var(--accent) !important;
            box-shadow: 0 0 14px var(--accent-glow) !important;
        }

        /* =========================================================
           HOTFIX 3: ELEGANT FLOATING COOKIE CONSENT CARD
           ========================================================= */
        .cookie-consent-bar {
            position: fixed !important;
            bottom: 24px !important;
            right: 24px !important;
            left: auto !important;
            width: 380px !important;
            max-width: calc(100vw - 32px) !important;
            z-index: 99997 !important;
            background: rgba(19, 17, 28, 0.94) !important;
            backdrop-filter: blur(24px) !important;
            -webkit-backdrop-filter: blur(24px) !important;
            border: 1px solid var(--accent-border) !important;
            border-radius: 20px !important;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px var(--accent-soft) !important;
            padding: 24px !important;
            transform: translateY(160%) !important;
            opacity: 0 !important;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
            pointer-events: none !important;
        }

        .cookie-consent-bar.show {
            transform: translateY(0) !important;
            opacity: 1 !important;
            pointer-events: auto !important;
        }

        .cookie-consent-inner {
            display: flex !important;
            flex-direction: column !important;
            gap: 16px !important;
        }

        .cookie-consent-text {
            font-size: 13.5px !important;
            color: var(--text-secondary) !important;
            line-height: 1.6 !important;
            margin: 0 !important;
        }

        .cookie-consent-actions {
            display: flex !important;
            flex-direction: column !important;
            gap: 10px !important;
        }

        .cookie-actions-top {
            display: flex !important;
            gap: 10px !important;
        }

        .btn-cookie-accept {
            background: var(--accent) !important;
            color: #fff !important;
            padding: 10px 20px !important;
            border-radius: var(--radius-pill) !important;
            font-size: 13px !important;
            font-weight: 700 !important;
            border: none !important;
            cursor: pointer !important;
            box-shadow: 0 0 16px var(--accent-glow) !important;
            transition: all 0.2s ease !important;
            flex: 1 !important;
            text-align: center !important;
        }

        .btn-cookie-accept:hover {
            background: #9d70ff !important;
            transform: translateY(-1px) !important;
        }

        .btn-cookie-decline {
            background: rgba(255, 255, 255, 0.06) !important;
            color: var(--text-secondary) !important;
            border: 1px solid var(--border-subtle) !important;
            padding: 10px 18px !important;
            border-radius: var(--radius-pill) !important;
            font-size: 13px !important;
            font-weight: 600 !important;
            cursor: pointer !important;
            transition: all 0.2s ease !important;
            flex: 1 !important;
            text-align: center !important;
        }

        .btn-cookie-decline:hover {
            color: #fff !important;
            background: rgba(255, 255, 255, 0.1) !important;
        }

        /* Modal Footer Save Button Fix */
        .cookie-modal-footer {
            display: flex !important;
            justify-content: flex-end !important;
        }

        .cookie-modal-footer .btn-primary {
            display: inline-flex !important;
            width: auto !important;
            padding: 10px 28px !important;
            border-radius: var(--radius-pill) !important;
            font-size: 14px !important;
        }

        /* =========================================================
           CURSOR CARET FIX & WYSIWYG FORMATTING TOOLBAR
           ========================================================= */
        * {
            caret-color: #a855f7 !important;
        }

        input, textarea, select, [contenteditable="true"] {
            cursor: text !important;
            caret-color: #a855f7 !important;
            user-select: text !important;
            -webkit-user-select: text !important;
        }

        body, html {
            cursor: auto !important;
        }

        a, button, .btn, [role="button"], select {
            cursor: pointer !important;
        }

        .cursor-dot, .cursor-ring {
            pointer-events: none !important;
            user-select: none !important;
            -webkit-user-select: none !important;
        }

        /* Floating Formatting Toolbar for Live Editor */
        .wysiwyg-floating-format-bar {
            position: fixed;
            z-index: 100001;
            background: rgba(19, 17, 28, 0.96);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-pill);
            padding: 6px 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px var(--accent-soft);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease;
            transform: translateY(10px);
        }

        .wysiwyg-floating-format-bar.show {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .wysiwyg-format-btn {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .wysiwyg-format-btn:hover {
            color: #fff;
            background: rgba(139, 92, 246, 0.2);
        }

        .editor-status-badge {
            font-size: 11px;
            font-weight: 700;
            color: var(--green);
            background: rgba(34, 197, 94, 0.15);
            padding: 3px 10px;
            border-radius: 100px;
            margin-left: 6px;
        }

/* ===== COMPARISON & DISCOVERY SECTIONS ===== */
.comparison-table-wrap {
    overflow-x: auto;
    margin-top: 40px;
    background: rgba(19, 17, 28, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 14.5px;
}

.comparison-table th {
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .highlight-col {
    background: rgba(139, 92, 246, 0.12);
    color: #fff;
    font-weight: 700;
    border-left: 1px solid rgba(139, 92, 246, 0.2);
    border-right: 1px solid rgba(139, 92, 246, 0.2);
}

.discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.discovery-card {
    background: rgba(19, 17, 28, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.discovery-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-border);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.discovery-num {
    font-size: 54px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.discovery-text {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* TEAM SECTION OVERHAUL */
.team-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-subtle);
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 100%);
}

.team-card {
    background: rgba(19, 17, 28, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 44px;
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 36px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(139, 92, 246, 0.08);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    border: 3px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-role {
    font-size: 14.5px;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 14px;
}

.team-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}







