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

        :root {
            /* Dark mode (default) */
            --bg-deep: #0C0F14;
            --bg-surface: #13171F;
            --bg-elevated: #1A1F2B;
            --bg-card: rgba(26, 31, 43, 0.7);
            --bg-card-solid: #1A1F2B;

            --amber: #E6A756;
            --amber-light: #F2C87D;
            --amber-dark: #C4863A;
            --amber-glow: rgba(230, 167, 86, 0.25);
            --coral: #E07B5A;
            --coral-glow: rgba(224, 123, 90, 0.3);
            --slate: #64748B;
            --slate-light: #94A3B8;
            --ice: #7DD3FC;
            --ice-glow: rgba(125, 211, 252, 0.2);

            --text-primary: #F8FAFC;
            --text-secondary: rgba(248, 250, 252, 0.7);
            --text-muted: rgba(248, 250, 252, 0.4);
            --border: rgba(248, 250, 252, 0.08);
            --border-hover: rgba(248, 250, 252, 0.15);

            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);

            --font-display: 'Newsreader', Georgia, serif;
            --font-body: 'Instrument Sans', -apple-system, sans-serif;

            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

            /* Grid and noise visibility */
            --grid-opacity: 0.03;
            --noise-opacity: 0.02;
            --orb-opacity: 0.6;
        }

        /* Light mode */
        [data-theme="light"] {
            --bg-deep: #FAFBFC;
            --bg-surface: #F1F3F5;
            --bg-elevated: #FFFFFF;
            --bg-card: rgba(255, 255, 255, 0.8);
            --bg-card-solid: #FFFFFF;

            --amber: #D4922E;
            --amber-light: #E6A756;
            --amber-dark: #B5791F;
            --amber-glow: rgba(212, 146, 46, 0.2);
            --coral: #D16A4A;
            --coral-glow: rgba(209, 106, 74, 0.2);
            --slate: #64748B;
            --slate-light: #475569;
            --ice: #0EA5E9;
            --ice-glow: rgba(14, 165, 233, 0.15);

            --text-primary: #0F172A;
            --text-secondary: rgba(15, 23, 42, 0.7);
            --text-muted: rgba(15, 23, 42, 0.5);
            --border: rgba(15, 23, 42, 0.1);
            --border-hover: rgba(15, 23, 42, 0.2);

            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

            --grid-opacity: 0.04;
            --noise-opacity: 0.015;
            --orb-opacity: 0.4;
        }

        /* Depth mode — deep navy palette */
        [data-theme="depth"] {
            --bg-deep: #0F1923;
            --bg-surface: #162231;
            --bg-elevated: #1C2C3E;
            --bg-card: rgba(28, 44, 62, 0.7);
            --bg-card-solid: #1C2C3E;

            --amber: #E6A756;
            --amber-light: #F2C87D;
            --amber-dark: #C4863A;
            --amber-glow: rgba(230, 167, 86, 0.2);
            --coral: #E07B5A;
            --coral-glow: rgba(224, 123, 90, 0.25);
            --slate: #7B8FA3;
            --slate-light: #9BB0C4;
            --ice: #38BDF8;
            --ice-glow: rgba(56, 189, 248, 0.2);

            --text-primary: #E8EDF2;
            --text-secondary: rgba(232, 237, 242, 0.7);
            --text-muted: rgba(232, 237, 242, 0.4);
            --border: rgba(232, 237, 242, 0.1);
            --border-hover: rgba(232, 237, 242, 0.18);

            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
            --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.35);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.45);

            --grid-opacity: 0.035;
            --noise-opacity: 0.02;
            --orb-opacity: 0.5;
        }

        /* Infonet mode — matches the app dashboard: navy + cyan accent */
        [data-theme="infonet"] {
            --bg-deep: #0F1923;
            --bg-surface: #162231;
            --bg-elevated: #1C2C3E;
            --bg-card: rgba(28, 44, 62, 0.7);
            --bg-card-solid: #1C2C3E;

            --amber: #0EA5E9;           /* Cyan replaces amber as primary accent */
            --amber-light: #38BDF8;
            --amber-dark: #0284C7;
            --amber-glow: rgba(14, 165, 233, 0.2);
            --coral: #06B6D4;           /* Teal replaces coral */
            --coral-glow: rgba(6, 182, 212, 0.25);
            --slate: #7B8FA3;
            --slate-light: #9BB0C4;
            --ice: #67E8F9;             /* Lighter cyan for ice */
            --ice-glow: rgba(103, 232, 249, 0.2);

            --text-primary: #E8EDF2;
            --text-secondary: rgba(232, 237, 242, 0.7);
            --text-muted: rgba(232, 237, 242, 0.4);
            --border: rgba(232, 237, 242, 0.1);
            --border-hover: rgba(232, 237, 242, 0.18);

            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
            --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.35);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.45);

            --grid-opacity: 0.035;
            --noise-opacity: 0.02;
            --orb-opacity: 0.5;
        }

        [data-theme="infolight"] {
            --bg-deep: #F4F7FB;
            --bg-surface: #EAF0F7;
            --bg-elevated: #FFFFFF;
            --bg-card: rgba(255, 255, 255, 0.85);
            --bg-card-solid: #FFFFFF;
            --amber: #0E7FC7;
            --amber-light: #38A0E0;
            --amber-dark: #075E96;
            --amber-glow: rgba(14, 127, 199, 0.14);
            --coral: #0891B2;
            --coral-glow: rgba(8, 145, 178, 0.14);
            --slate: #5B7085;
            --slate-light: #3E5468;
            --ice: #0284C7;
            --ice-glow: rgba(2, 132, 199, 0.12);
            --text-primary: #0C1929;
            --text-secondary: rgba(12, 25, 41, 0.72);
            --text-muted: rgba(12, 25, 41, 0.48);
            --border: rgba(12, 25, 41, 0.1);
            --border-hover: rgba(12, 25, 41, 0.2);
            --shadow-sm: 0 2px 8px rgba(14, 127, 199, 0.08);
            --shadow-md: 0 4px 24px rgba(14, 127, 199, 0.1);
            --shadow-lg: 0 8px 40px rgba(14, 127, 199, 0.12);
            --grid-opacity: 0.04;
            --noise-opacity: 0.012;
            --orb-opacity: 0.3;
        }

        /* Light mode component overrides */
        [data-theme="light"] body {
            background: var(--bg-deep);
        }

        [data-theme="light"] nav.scrolled {
            background: rgba(250, 251, 252, 0.9);
            border-bottom-color: var(--border);
        }

        [data-theme="light"] .btn-ghost {
            background: transparent;
            color: var(--text-secondary);
            border-color: var(--border);
        }

        [data-theme="light"] .btn-ghost:hover {
            background: rgba(0, 0, 0, 0.03);
            border-color: var(--border-hover);
        }

        [data-theme="light"] .btn-primary {
            background: linear-gradient(135deg, var(--amber) 0%, var(--coral) 100%);
            box-shadow: 0 4px 20px var(--amber-glow);
        }

        [data-theme="light"] .slide-badge {
            background: var(--bg-elevated);
            border-color: var(--border);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="light"] .slider-arrow {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="light"] .slider-dot::before {
            background: var(--bg-elevated);
            border-color: var(--border);
        }

        [data-theme="light"] .hero-trust {
            border-top-color: var(--border);
        }

        [data-theme="light"] .step {
            background: var(--bg-elevated);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="light"] .step:hover {
            box-shadow: var(--shadow-md);
        }

        [data-theme="light"] .testimonial-card {
            background: var(--bg-elevated);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="light"] .ip-option {
            background: var(--bg-elevated);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="light"] .ip-option--featured {
            background: linear-gradient(135deg, #FFFBF5 0%, rgba(212, 146, 46, 0.08) 100%);
            border-color: rgba(212, 146, 46, 0.4);
        }

        [data-theme="light"] .integration-item {
            background: var(--bg-elevated);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="light"] .pricing-card {
            background: var(--bg-elevated);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="light"] .pricing-card--featured {
            background: linear-gradient(135deg, #FFFBF5 0%, rgba(212, 146, 46, 0.1) 100%);
            box-shadow: var(--shadow-md);
        }

        [data-theme="light"] .proxybox-highlight {
            background: var(--bg-elevated);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="light"] .proxybox-device::before {
            background: radial-gradient(circle, rgba(212, 146, 46, 0.15) 0%, transparent 70%);
        }

        [data-theme="light"] .cta-box {
            background: linear-gradient(135deg, #FFFBF5 0%, rgba(212, 146, 46, 0.12) 100%);
            border-color: rgba(212, 146, 46, 0.3);
            box-shadow: var(--shadow-lg);
        }

        [data-theme="light"] .feature-card {
            background: var(--bg-elevated);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="light"] 

        [data-theme="light"] .volume-bonus {
            background: rgba(14, 165, 233, 0.06);
            border-color: rgba(14, 165, 233, 0.15);
        }

        [data-theme="light"] footer {
            background: var(--bg-surface);
            border-top-color: var(--border);
        }

        [data-theme="light"] .footer-newsletter input {
            background: var(--bg-elevated);
            border-color: var(--border);
            color: var(--text-primary);
        }

        [data-theme="light"] .footer-newsletter button {
            background: var(--amber);
        }

        [data-theme="light"] .testimonial-play-pause,
        [data-theme="light"] .slider-play-pause {
            background: var(--bg-elevated);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="light"] .explainer-card {
            background: var(--bg-elevated);
            box-shadow: var(--shadow-sm);
        }

        /* Flow nodes - keep transparent, only icon has background */
        [data-theme="light"] .flow-node {
            background: transparent;
            box-shadow: none;
        }

        [data-theme="light"] .flow-node-icon {
            background: var(--bg-elevated);
            border-color: var(--border);
        }

        [data-theme="light"] .builder-panel {
            background: var(--bg-elevated);
            box-shadow: var(--shadow-md);
        }

        [data-theme="light"] .lead-card {
            background: var(--bg-elevated);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="light"] .profile-card-demo {
            background: var(--bg-elevated);
            box-shadow: var(--shadow-md);
        }

        [data-theme="light"] .provider-item {
            background: var(--bg-surface);
        }

        [data-theme="light"] .coming-soon-badge {
            background: rgba(14, 165, 233, 0.1);
            border-color: rgba(14, 165, 233, 0.25);
        }

        /* Light mode ambient background adjustments */
        [data-theme="light"] .orb {
            filter: blur(120px);
        }

        [data-theme="light"] .orb-1 {
            background: radial-gradient(circle, rgba(212, 146, 46, 0.15), transparent);
        }

        [data-theme="light"] .orb-2 {
            background: radial-gradient(circle, rgba(209, 106, 74, 0.12), transparent);
        }

        [data-theme="light"] .orb-3 {
            background: radial-gradient(circle, rgba(14, 165, 233, 0.1), transparent);
        }

        [data-theme="light"] .slide-text {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.7) 100%);
            backdrop-filter: blur(20px);
            border-color: rgba(0, 0, 0, 0.08);
        }

        /* Proof stats - no boxes, just text */
        [data-theme="light"] .proof-stat {
            background: transparent;
            border: none;
            box-shadow: none;
        }

        [data-theme="light"] .testimonial-dots .dot::before {
            background: var(--bg-elevated);
            border-color: var(--border);
        }

        [data-theme="light"] .faq-item {
            background: var(--bg-elevated);
            border-color: var(--border);
        }

        [data-theme="light"] .faq-question:hover {
            background: var(--bg-surface);
        }

        [data-theme="light"] .guardrail-item {
            background: var(--bg-elevated);
            border-color: var(--border);
        }

        [data-theme="light"] .tech-badge {
            background: var(--bg-surface);
            border-color: var(--border);
        }

        /* Depth mode component overrides */
        [data-theme="depth"] nav.scrolled {
            background: rgba(15, 25, 35, 0.9);
            border-bottom-color: var(--border);
        }

        [data-theme="depth"] .btn-ghost {
            background: transparent;
            color: var(--text-secondary);
            border-color: var(--border);
        }

        [data-theme="depth"] .btn-ghost:hover {
            background: rgba(56, 189, 248, 0.06);
            border-color: var(--border-hover);
        }

        [data-theme="depth"] .slide-badge {
            background: var(--bg-elevated);
            border-color: var(--border);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="depth"] .slider-arrow {
            background: rgba(28, 44, 62, 0.95);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="depth"] .slider-dot::before {
            background: var(--bg-elevated);
            border-color: var(--border);
        }

        [data-theme="depth"] .ip-option--featured {
            background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(230, 167, 86, 0.1) 100%);
            border-color: rgba(230, 167, 86, 0.35);
        }

        [data-theme="depth"] .pricing-card--featured {
            background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(230, 167, 86, 0.1) 100%);
            box-shadow: var(--shadow-md);
        }

        [data-theme="depth"] .proxybox-device::before {
            background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
        }

        [data-theme="depth"] .cta-box {
            background: linear-gradient(135deg, #162231 0%, rgba(230, 167, 86, 0.1) 100%);
            border-color: rgba(230, 167, 86, 0.3);
            box-shadow: var(--shadow-lg);
        }

        [data-theme="depth"] 

        [data-theme="depth"] .volume-bonus {
            background: rgba(56, 189, 248, 0.08);
            border-color: rgba(56, 189, 248, 0.18);
        }

        [data-theme="depth"] .coming-soon-badge {
            background: rgba(56, 189, 248, 0.1);
            border-color: rgba(56, 189, 248, 0.25);
        }

        [data-theme="depth"] .orb-1 {
            background: radial-gradient(circle, rgba(230, 167, 86, 0.2), transparent);
        }

        [data-theme="depth"] .orb-2 {
            background: radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent);
        }

        [data-theme="depth"] .orb-3 {
            background: radial-gradient(circle, rgba(224, 123, 90, 0.12), transparent);
        }

        [data-theme="depth"] .slide-text {
            background: linear-gradient(135deg, rgba(22, 34, 49, 0.9) 0%, rgba(28, 44, 62, 0.8) 100%);
            backdrop-filter: blur(20px);
            border-color: var(--border);
        }

        [data-theme="depth"] 

        [data-theme="depth"] 

        [data-theme="depth"] 

        /* Infonet mode component overrides */
        [data-theme="infonet"] nav.scrolled {
            background: rgba(15, 25, 35, 0.9);
            border-bottom-color: var(--border);
        }

        [data-theme="infonet"] .btn-ghost {
            background: transparent;
            color: var(--text-secondary);
            border-color: var(--border);
        }

        [data-theme="infonet"] .btn-ghost:hover {
            background: rgba(14, 165, 233, 0.08);
            border-color: var(--border-hover);
        }

        [data-theme="infonet"] .btn-primary {
            background: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 100%);
            box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
        }

        [data-theme="infonet"] .btn-primary:hover {
            box-shadow: 0 6px 28px rgba(14, 165, 233, 0.45);
        }

        /* Info Light overrides */
        [data-theme="infolight"] nav.scrolled {
            background: rgba(244, 247, 251, 0.92);
        }
        [data-theme="infolight"] .btn-primary {
            background: linear-gradient(135deg, #0E7FC7 0%, #0891B2 100%);
            box-shadow: 0 4px 20px rgba(14, 127, 199, 0.25);
            color: #fff;
        }
        [data-theme="infolight"] .btn-primary:hover {
            box-shadow: 0 6px 28px rgba(14, 127, 199, 0.4);
        }
        [data-theme="infolight"] .btn-ghost {
            color: var(--amber);
            border-color: var(--border-hover);
        }
        [data-theme="infolight"] .btn-ghost:hover {
            border-color: var(--amber);
            background: var(--amber-glow);
        }
        [data-theme="infolight"] .badge {
            border-color: rgba(14, 127, 199, 0.25);
        }

        [data-theme="infonet"] .slide-badge {
            background: var(--bg-elevated);
            border-color: var(--border);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="infonet"] .slider-arrow {
            background: rgba(28, 44, 62, 0.95);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="infonet"] .slider-dot::before {
            background: var(--bg-elevated);
            border-color: var(--border);
        }

        [data-theme="infonet"] .ip-option--featured {
            background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(14, 165, 233, 0.1) 100%);
            border-color: rgba(14, 165, 233, 0.35);
        }

        [data-theme="infonet"] .pricing-card--featured {
            background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(14, 165, 233, 0.1) 100%);
            box-shadow: var(--shadow-md);
        }

        [data-theme="infonet"] 

        [data-theme="infonet"] 

        [data-theme="infonet"] .proxybox-device::before {
            background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
        }

        [data-theme="infonet"] .cta-box {
            background: linear-gradient(135deg, #162231 0%, rgba(14, 165, 233, 0.1) 100%);
            border-color: rgba(14, 165, 233, 0.3);
            box-shadow: var(--shadow-lg);
        }

        [data-theme="infonet"] 

        [data-theme="infonet"] .volume-bonus {
            background: rgba(14, 165, 233, 0.08);
            border-color: rgba(14, 165, 233, 0.18);
        }

        [data-theme="infonet"] .coming-soon-badge {
            background: rgba(103, 232, 249, 0.1);
            border-color: rgba(103, 232, 249, 0.25);
        }

        [data-theme="infonet"] .orb-1 {
            background: radial-gradient(circle, rgba(14, 165, 233, 0.2), transparent);
        }

        [data-theme="infonet"] .orb-2 {
            background: radial-gradient(circle, rgba(6, 182, 212, 0.18), transparent);
        }

        [data-theme="infonet"] .orb-3 {
            background: radial-gradient(circle, rgba(103, 232, 249, 0.1), transparent);
        }

        [data-theme="infonet"] .slide-text {
            background: linear-gradient(135deg, rgba(22, 34, 49, 0.9) 0%, rgba(28, 44, 62, 0.8) 100%);
            backdrop-filter: blur(20px);
            border-color: var(--border);
        }

        [data-theme="infonet"] 

        [data-theme="infonet"] 

        [data-theme="infonet"] 

        /* Infonet mode toggle icons */
        .theme-toggle .icon-infonet {
            stroke: #0EA5E9;
            fill: none;
            stroke-width: 2;
            opacity: 0;
            transform: rotate(-90deg) scale(0.5);
        }

        [data-theme="infonet"] .theme-toggle .icon-moon {
            opacity: 0;
            transform: rotate(90deg) scale(0.5);
        }

        [data-theme="infonet"] .theme-toggle .icon-sun {
            opacity: 0;
            transform: rotate(-90deg) scale(0.5);
        }

        [data-theme="infonet"] .theme-toggle .icon-depth {
            opacity: 0;
            transform: rotate(-90deg) scale(0.5);
        }

        [data-theme="infonet"] .theme-toggle .icon-infonet {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        [data-theme="infonet"] .theme-toggle:hover .icon-infonet {
            stroke: #38BDF8;
        }

        /* Info Light mode toggle icons */
        .theme-toggle .icon-infolight {
            stroke: var(--ice);
            fill: none;
            stroke-width: 2;
            opacity: 0;
            transform: rotate(-90deg) scale(0.5);
        }

        [data-theme="infolight"] .theme-toggle .icon-moon {
            opacity: 0;
            transform: rotate(90deg) scale(0.5);
        }

        [data-theme="infolight"] .theme-toggle .icon-sun {
            opacity: 0;
            transform: rotate(-90deg) scale(0.5);
        }

        [data-theme="infolight"] .theme-toggle .icon-depth {
            opacity: 0;
            transform: rotate(-90deg) scale(0.5);
        }

        [data-theme="infolight"] .theme-toggle .icon-infonet {
            opacity: 0;
            transform: rotate(-90deg) scale(0.5);
        }

        [data-theme="infolight"] .theme-toggle .icon-infolight {
            opacity: 1;
            transform: rotate(0deg) scale(1);
            stroke: var(--amber);
        }

        [data-theme="infolight"] .theme-toggle:hover .icon-infolight {
            stroke: var(--amber-dark);
        }

        /* Smooth transitions for theme change */
        body,
        nav,
        .btn,
        .pricing-card,
        .testimonial-card,
        .step,
        .ip-option,
        .feature-card,
        .cta-box,
        footer {
            transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-deep);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.65;
            min-width: 320px;
        }

        /* Global mobile overflow prevention */
        section, .hero, .container, main {
            max-width: 100vw;
            overflow-x: hidden;
        }

        /* Subtle grid background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(var(--slate) 1px, transparent 1px),
                linear-gradient(90deg, var(--slate) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: var(--grid-opacity);
            pointer-events: none;
            z-index: 0;
            transition: opacity 0.5s ease;
        }

        /* Noise texture */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            opacity: var(--noise-opacity);
            pointer-events: none;
            z-index: 1;
            transition: opacity 0.5s ease;
        }

        /* Ambient orbs */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
            z-index: 0;
            opacity: var(--orb-opacity);
            transition: opacity 0.5s ease;
            will-change: transform;
            transform: translateZ(0);
            contain: strict;
        }

        .orb-1 {
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
            top: -300px;
            right: -200px;
            animation: orb1 30s ease-in-out infinite;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--ice-glow) 0%, transparent 70%);
            bottom: 10%;
            left: -150px;
            animation: orb2 25s ease-in-out infinite;
        }

        .orb-3 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--coral-glow) 0%, transparent 70%);
            top: 60%;
            right: 5%;
            animation: orb3 20s ease-in-out infinite;
        }

        @keyframes orb1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-80px, 100px) scale(1.1); }
        }

        @keyframes orb2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(120px, -80px) scale(1.15); }
        }

        @keyframes orb3 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-60px, 60px); }
        }

        /* Network animation canvas */
        #network-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            opacity: 0.4;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.25rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s var(--ease-out-expo);
        }

        nav.scrolled {
            background: rgba(12, 15, 20, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-mark {
            width: 40px;
            height: 40px;
            position: relative;
        }

        .logo-mark svg {
            width: 100%;
            height: 100%;
        }

        .logo-text {
            font-family: var(--font-display);
            font-weight: 500;
            font-size: 1.5rem;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            letter-spacing: -0.01em;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.6rem 1rem;
            border-radius: 8px;
            background: transparent;
            border: 1px solid transparent;
        }

        .nav-links a:hover {
            color: var(--text-primary);
            background: rgba(248, 250, 252, 0.04);
            border-color: var(--border);
        }

        .nav-links a:hover::after {
            width: calc(100% - 2rem);
            left: 1rem;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 1rem;
            width: 0;
            height: 2px;
            background: var(--amber);
            transition: width 0.3s var(--ease-out-expo);
        }

        .nav-cta {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        /* Mobile toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
            padding: 4px;
            z-index: 1001;
        }

        .mobile-toggle svg {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }

        /* Mobile menu overlay */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-deep);
            z-index: 999;
            padding: 5rem 2rem 2rem;
            flex-direction: column;
            gap: 0.5rem;
            overflow-y: auto;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            font-size: 1.15rem;
            color: var(--text-secondary);
            text-decoration: none;
            padding: 0.85rem 0;
            border-bottom: 1px solid var(--border);
            transition: color 0.2s;
        }

        .mobile-menu a:hover {
            color: var(--amber);
        }

        /* Theme Toggle Button */
        .theme-toggle {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }

        .theme-toggle:hover {
            border-color: var(--amber);
            background: var(--amber-glow);
            transform: scale(1.05);
        }

        .theme-toggle svg {
            width: 20px;
            height: 20px;
            transition: all 0.4s var(--ease-out-expo);
            position: absolute;
        }

        .theme-toggle .icon-sun {
            stroke: var(--amber);
            fill: none;
            stroke-width: 2;
            opacity: 0;
            transform: rotate(-90deg) scale(0.5);
        }

        .theme-toggle .icon-moon {
            stroke: var(--text-secondary);
            fill: none;
            stroke-width: 2;
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        .theme-toggle:hover .icon-moon {
            stroke: var(--amber);
        }

        /* Light mode toggle state */
        [data-theme="light"] .theme-toggle .icon-sun {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        [data-theme="light"] .theme-toggle .icon-moon {
            opacity: 0;
            transform: rotate(90deg) scale(0.5);
        }

        [data-theme="light"] .theme-toggle:hover .icon-sun {
            stroke: var(--amber-dark);
        }

        /* Depth mode toggle icons */
        .theme-toggle .icon-depth {
            stroke: var(--ice);
            fill: none;
            stroke-width: 2;
            opacity: 0;
            transform: rotate(-90deg) scale(0.5);
        }

        [data-theme="depth"] .theme-toggle .icon-moon {
            opacity: 0;
            transform: rotate(90deg) scale(0.5);
        }

        [data-theme="depth"] .theme-toggle .icon-sun {
            opacity: 0;
            transform: rotate(-90deg) scale(0.5);
        }

        [data-theme="depth"] .theme-toggle .icon-depth {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        [data-theme="depth"] .theme-toggle:hover .icon-depth {
            stroke: var(--amber);
        }

        /* Theme picker popup */
        .theme-picker-wrapper {
            position: relative;
        }

        .theme-picker {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 6px;
            display: flex;
            flex-direction: column;
            gap: 2px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px) scale(0.95);
            transition: all 0.25s var(--ease-out-expo);
            z-index: 1001;
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-lg);
            min-width: 140px;
        }

        .theme-picker.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .theme-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 14px;
            border: none;
            background: transparent;
            color: var(--text-secondary);
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .theme-option:hover {
            background: var(--amber-glow);
            color: var(--text-primary);
        }

        .theme-option.active {
            background: var(--amber-glow);
            color: var(--amber);
        }

        .theme-option svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            flex-shrink: 0;
        }

        .btn {
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.875rem;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: all 0.3s var(--ease-out-expo);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-ghost {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border);
        }

        .btn-ghost:hover {
            color: var(--text-primary);
            border-color: var(--border-hover);
            background: rgba(255, 255, 255, 0.03);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--amber) 0%, var(--coral) 100%);
            color: var(--bg-deep);
            box-shadow: 0 4px 24px var(--amber-glow);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px var(--amber-glow);
        }

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

        /* Main content */
        main {
            position: relative;
            z-index: 2;
        }

        section {
            padding: 0 5%;
        }

        /* Hero Slider - Cinematic Edition */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding-top: 100px;
            padding-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .hero-slider {
            position: relative;
            width: 100%;
            max-width: 900px;
            min-height: 380px;
            padding: 0 1rem;
            cursor: pointer;
        }

        .slider-paused .hero-slider {
            cursor: pointer;
        }

        /* Subtle pause indicator overlay */
        .hero-slider::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .slider-paused .hero-slider::after {
            opacity: 0;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 2.2s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 1rem;
        }

        .hero-slide.active {
            opacity: 1;
            visibility: visible;
            position: relative;
        }

        /* Poetic phrase animations - like a poetry reading (50% faster) */
        .hero-slide.active .slide-badge {
            animation: softFadeUp 0.8s var(--ease-out-expo) 0.15s both;
        }

        /* Phrase group 1 - the opening line, appears first */
        .hero-slide.active .phrase-1 {
            animation: phraseReveal 0.7s var(--ease-out-expo) 0.4s both;
        }

        /* Phrase group 2 - dramatic pause, then the key message */
        .hero-slide.active .phrase-2 {
            animation: phraseReveal 0.8s var(--ease-out-expo) 1.2s both;
        }

        /* Phrase group 3 - final emphasis with longest pause */
        .hero-slide.active .phrase-3 {
            animation: phraseReveal 0.8s var(--ease-out-expo) 1.9s both;
        }

        .hero-slide.active .slide-subtitle {
            animation: softFadeUp 0.8s var(--ease-out-expo) 2.4s both;
        }

        .hero-slide.active .slide-features {
            animation: softFadeUp 0.6s var(--ease-out-expo) 2.7s both;
        }

        .hero-slide.active .slide-cta {
            animation: softFadeUp 0.6s var(--ease-out-expo) 2.9s both;
        }

        /* First slide preloaded - show content instantly on page load */
        .hero-slide.preloaded.active .slide-badge,
        .hero-slide.preloaded.active .phrase-1,
        .hero-slide.preloaded.active .phrase-2,
        .hero-slide.preloaded.active .phrase-3,
        .hero-slide.preloaded.active .slide-subtitle,
        .hero-slide.preloaded.active .slide-features,
        .hero-slide.preloaded.active .slide-cta {
            animation: none;
            opacity: 1;
            transform: translateY(0);
            filter: none;
        }

        .hero-slide.preloaded.active .phrase-2 em {
            animation: none;
            background-size: 100% 100%;
        }

        .hero-slide.preloaded.active .slide-title::after {
            animation: none;
        }

        /* Longer progress ring for initial preloaded slide */
        .hero-slider.first-load .slider-dot.active .progress-ring-fill {
            animation: fillProgress 14s linear forwards;
        }

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

        @keyframes phraseReveal {
            0% {
                opacity: 0;
                transform: translateY(35px);
                filter: blur(4px);
            }
            60% {
                filter: blur(0);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
                filter: blur(0);
            }
        }

        .slide-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 100px;
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .slide-badge .dot {
            width: 8px;
            height: 8px;
            background: var(--amber);
            border-radius: 50%;
            animation: pulse 2.5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.85); }
        }

        .slide-title {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 6vw, 4rem);
            font-weight: 400;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 1.75rem;
            max-width: 800px;
            position: relative;
        }

        /* Phrase spans for grouped animation */
        .slide-title .phrase {
            display: inline;
            opacity: 0;
            position: relative;
        }

        .slide-title .phrase-break {
            display: block;
            height: 0.3em;
        }

        .slide-title em {
            font-style: italic;
            color: var(--amber);
        }

        /* Luminous sweep effect - flashlight moving through text */
        .hero-slide.active .slide-title::after {
            content: '';
            position: absolute;
            top: -20%;
            left: -20%;
            width: 35%;
            height: 140%;
            background: radial-gradient(
                ellipse 100% 100% at center,
                rgba(230, 167, 86, 0.15) 0%,
                rgba(230, 167, 86, 0.08) 30%,
                transparent 70%
            );
            filter: blur(20px);
            pointer-events: none;
            animation: luminousSweep 14s ease-in-out 3s infinite;
            opacity: 0;
        }

        @keyframes luminousSweep {
            0% {
                left: -30%;
                opacity: 0;
            }
            5% {
                opacity: 1;
            }
            50% {
                left: 100%;
                opacity: 1;
            }
            55% {
                opacity: 0;
            }
            100% {
                left: 100%;
                opacity: 0;
            }
        }

        /* Subtle text glow on emphasized words */
        .slide-title em {
            font-style: italic;
            color: var(--amber);
            position: relative;
            text-shadow: 0 0 30px rgba(230, 167, 86, 0);
            animation: none;
        }

        .hero-slide.active .phrase-2 em {
            animation: subtleGlow 4s ease-in-out 1s infinite;
        }

        @keyframes subtleGlow {
            0%, 100% {
                text-shadow: 0 0 20px rgba(230, 167, 86, 0);
            }
            50% {
                text-shadow: 0 0 40px rgba(230, 167, 86, 0.4), 0 0 80px rgba(230, 167, 86, 0.2);
            }
        }

        .slide-subtitle {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 560px;
            margin-bottom: 2rem;
            line-height: 1.7;
            opacity: 0;
        }

        .slide-features {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
            opacity: 0;
        }

        .slide-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .slide-feature svg {
            width: 20px;
            height: 20px;
            stroke: var(--amber);
            stroke-width: 2;
            fill: none;
        }

        .slide-cta {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
        }

        /* Slider Navigation */
        .slider-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2.5rem;
            position: relative;
        }

        .slider-dots {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .slider-dot {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .slider-dot::before {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 50%;
            transition: all 0.4s ease;
        }

        .slider-dot.active::before {
            background: var(--amber);
            border-color: var(--amber);
            box-shadow: 0 0 8px rgba(230, 167, 86, 0.5);
        }

        .slider-dot:hover::before {
            border-color: var(--amber);
        }

        /* Progress ring SVG */
        .progress-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .slider-dot.active .progress-ring {
            opacity: 1;
        }

        .progress-ring-bg {
            fill: none;
            stroke: rgba(230, 167, 86, 0.15);
            stroke-width: 2;
        }

        .progress-ring-fill {
            fill: none;
            stroke: var(--amber);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-dasharray: 100.53;
            stroke-dashoffset: 100.53;
        }

        .slider-dot.active .progress-ring-fill {
            animation: fillProgress 10s linear forwards;
        }

        /* Pause state */
        .slider-paused .slider-dot.active .progress-ring-fill {
            animation-play-state: paused;
        }

        .slider-paused .slide-badge .dot {
            animation-play-state: paused;
        }

        @keyframes fillProgress {
            from { stroke-dashoffset: 100.53; }
            to { stroke-dashoffset: 0; }
        }

        /* Play/Pause button */
        .slider-play-pause {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            margin-left: 0.5rem;
        }

        .slider-play-pause:hover {
            border-color: var(--amber);
            background: rgba(230, 167, 86, 0.1);
        }

        .slider-play-pause svg {
            width: 14px;
            height: 14px;
            fill: var(--text-secondary);
            transition: fill 0.3s ease;
        }

        .slider-play-pause:hover svg {
            fill: var(--amber);
        }

        .slider-play-pause .icon-play {
            display: none;
        }

        .slider-paused .slider-play-pause .icon-pause {
            display: none;
        }

        .slider-paused .slider-play-pause .icon-play {
            display: block;
        }

        /* Subtle glow on play button when paused */
        .slider-paused .slider-play-pause {
            border-color: var(--amber);
            box-shadow: 0 0 16px rgba(230, 167, 86, 0.3);
        }

        .slider-paused .slider-play-pause svg {
            fill: var(--amber);
        }

        /* Slider arrows - positioned at edges but only in hero */
        .slider-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0;
            pointer-events: none;
            z-index: 50;
        }

        .slider-arrow.slider-prev {
            position: fixed;
            left: clamp(1.5rem, 6vw, 8rem);
            top: 50%;
            transform: translateY(-50%);
        }

        .slider-arrow.slider-next {
            position: fixed;
            right: clamp(1.5rem, 6vw, 8rem);
            top: 50%;
            transform: translateY(-50%);
        }

        /* Hide arrows when scrolled past hero */
        .arrows-hidden .slider-arrow {
            opacity: 0 !important;
            pointer-events: none !important;
        }

        .slider-arrow {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(26, 31, 43, 0.9);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            pointer-events: auto;
            transition: all 0.4s var(--ease-out-expo);
            opacity: 0.6;
        }

        .slider-arrow:hover {
            opacity: 1;
            border-color: var(--amber);
            background: rgba(26, 31, 43, 0.95);
            transform: translateY(-50%) scale(1.05);
        }

        .slider-arrow:active {
            transform: translateY(-50%) scale(0.98);
        }

        .slider-arrow svg {
            width: 22px;
            height: 22px;
            stroke: var(--text-primary);
            stroke-width: 2;
            fill: none;
            transition: stroke 0.3s ease;
        }

        .slider-arrow:hover svg {
            stroke: var(--amber);
        }

        /* Trust bar - completely static, isolated from slider */
        .hero-trust {
            position: relative;
            display: flex;
            justify-content: center;
            gap: 3.5rem;
            margin-top: 3rem;
            padding-top: 2.5rem;
            border-top: 1px solid var(--border);
            flex-wrap: wrap;
            width: 100%;
            max-width: 700px;
            /* Ensure absolute stability */
            z-index: 10;
            transform: translateZ(0);
            will-change: auto;
            contain: layout style;
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .trust-value {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 500;
            color: var(--amber);
            letter-spacing: -0.02em;
        }

        .trust-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        @media (max-width: 768px) {
            .slider-arrows {
                display: none;
            }

            .slide-features {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-trust {
                gap: 2rem;
            }

            .slide-title {
                font-size: clamp(1.8rem, 7vw, 2.5rem);
            }

            .slider-play-pause {
                width: 32px;
                height: 32px;
            }
        }

        @media (min-width: 1400px) {
            .slider-arrows {
                padding: 0 6vw;
            }
        }

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

        /* Safety section */
        .safety {
            padding-top: 120px;
            padding-bottom: 120px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--amber);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .coming-soon-badge {
            display: inline-block;
            font-size: 0.6rem;
            background: rgba(125, 211, 252, 0.15);
            color: var(--ice);
            padding: 0.25rem 0.6rem;
            border-radius: 100px;
            border: 1px solid rgba(125, 211, 252, 0.3);
            margin-left: 0.75rem;
            vertical-align: middle;
            letter-spacing: 0.08em;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 400;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        /* Lighthouse sweep effect on section titles */
        .section-title::after {
            content: '';
            position: absolute;
            top: -30%;
            left: -40%;
            width: 40%;
            height: 160%;
            background: radial-gradient(
                ellipse 100% 100% at center,
                rgba(230, 167, 86, 0.18) 0%,
                rgba(230, 167, 86, 0.08) 35%,
                transparent 70%
            );
            filter: blur(25px);
            pointer-events: none;
            opacity: 0;
            z-index: 1;
        }

        .reveal.visible .section-title::after {
            animation: sectionSweep 11s ease-in-out 0.5s infinite;
        }

        @keyframes sectionSweep {
            0% {
                left: -40%;
                opacity: 0;
            }
            6% {
                opacity: 1;
            }
            44% {
                left: 110%;
                opacity: 0.8;
            }
            51% {
                left: 110%;
                opacity: 0;
            }
            /* Hold invisible at end - 3 second pause */
            72% {
                left: 110%;
                opacity: 0;
            }
            /* Reset position for next cycle */
            73% {
                left: -40%;
                opacity: 0;
            }
            100% {
                left: -40%;
                opacity: 0;
            }
        }

        .section-title em {
            font-style: italic;
            color: var(--amber);
        }

        .section-desc {
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* IP Options Grid */
        .ip-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto 4rem;
            align-items: stretch;
        }

        .ip-option {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            transition: all 0.4s var(--ease-out-expo);
            display: flex;
            flex-direction: column;
            min-height: 380px;
        }

        .ip-option:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
        }

        .ip-option--featured {
            background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(230, 167, 86, 0.08) 100%);
            border-color: rgba(230, 167, 86, 0.3);
            transform: scale(1.02);
        }

        .ip-option--featured:hover {
            border-color: var(--amber);
            transform: scale(1.02) translateY(-4px);
            box-shadow: 0 20px 60px rgba(230, 167, 86, 0.15);
        }

        /* Selected state for IP options */
        .ip-option.selected {
            border-color: var(--ice);
            box-shadow: 0 0 0 2px rgba(125, 211, 252, 0.3);
        }

        .ip-option--featured.selected {
            border-color: var(--amber);
            box-shadow: 0 0 0 2px rgba(230, 167, 86, 0.4), 0 20px 60px rgba(230, 167, 86, 0.15);
        }

        .ip-option-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--amber) 0%, var(--coral) 100%);
            color: var(--bg-deep);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.4rem 1rem;
            border-radius: 100px;
        }

        .ip-option-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.25rem;
        }

        .ip-option-icon {
            width: 56px;
            height: 56px;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ip-option-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--slate-light);
            stroke-width: 1.5;
            fill: none;
        }

        .ip-option--featured .ip-option-icon {
            border-color: rgba(230, 167, 86, 0.3);
        }

        .ip-option--featured .ip-option-icon svg {
            stroke: var(--amber);
        }

        .ip-option-tier {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            background: var(--bg-surface);
            padding: 0.3rem 0.75rem;
            border-radius: 100px;
        }

        .ip-option--featured .ip-option-tier {
            background: rgba(230, 167, 86, 0.15);
            color: var(--amber);
        }

        .ip-option-title {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }

        .ip-option-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .ip-option-desc strong {
            color: var(--amber);
            font-weight: 600;
        }

        .ip-option-features {
            list-style: none;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .ip-option-features li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 0.6rem;
        }

        .ip-option-features svg {
            width: 16px;
            height: 16px;
            stroke: var(--slate);
            stroke-width: 2;
            fill: none;
            flex-shrink: 0;
        }

        .ip-option--featured .ip-option-features svg {
            stroke: var(--amber);
        }

        .ip-option-footer {
            padding-top: 1rem;
            border-top: 1px solid var(--border);
            margin-top: auto;
        }

        .ip-option-risk {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--coral);
            font-weight: 600;
        }

        .ip-option-risk--medium {
            color: var(--slate-light);
        }

        .ip-option-risk--safe {
            color: #4ade80;
        }

        /* Explainer Container - switches based on IP option selection */
        .explainer-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            min-height: 480px;
        }

        .ip-explainer {
            display: none;
            padding: 3.5rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 32px;
            position: relative;
            overflow: hidden;
            animation: explainerFadeIn 0.4s ease;
            min-height: 420px;
        }

        .ip-explainer.active {
            display: block;
        }

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

        /* Featured explainer (Home IP) gets special treatment */
        .ip-explainer--featured {
            background: linear-gradient(135deg, var(--bg-card), rgba(230, 167, 86, 0.03));
            border-color: rgba(230, 167, 86, 0.3);
        }

        .ip-explainer--featured::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(230, 167, 86, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        /* The "boom" element for Home IP */
        .explainer-boom {
            margin-top: 2.5rem;
            padding: 1.5rem 2rem;
            background: linear-gradient(135deg, rgba(230, 167, 86, 0.08), rgba(230, 167, 86, 0.02));
            border: 1px solid rgba(230, 167, 86, 0.2);
            border-radius: 16px;
            text-align: center;
            position: relative;
        }

        .boom-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--amber), var(--coral));
            color: var(--bg-deep);
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.35rem 0.75rem;
            border-radius: 100px;
        }

        .explainer-boom p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        /* Cloud IP boom box - neutral/blue tint */
        .explainer-boom--cloud {
            background: linear-gradient(135deg, rgba(125, 211, 252, 0.06), rgba(125, 211, 252, 0.02));
            border-color: rgba(125, 211, 252, 0.2);
        }

        .explainer-boom--cloud .boom-badge {
            background: linear-gradient(135deg, var(--ice), var(--slate-light));
        }

        /* BYOP boom box - neutral/slate tint */
        .explainer-boom--byop {
            background: linear-gradient(135deg, rgba(148, 163, 184, 0.08), rgba(148, 163, 184, 0.02));
            border-color: rgba(148, 163, 184, 0.2);
        }

        .explainer-boom--byop .boom-badge {
            background: linear-gradient(135deg, var(--slate-light), var(--slate));
        }

        /* Featured flow diagram has 4 nodes instead of 3 */
        .flow-diagram--featured .flow-node-icon.hardware {
            background: linear-gradient(135deg, var(--bg-elevated), rgba(230, 167, 86, 0.15));
            border-color: rgba(230, 167, 86, 0.4);
            box-shadow: 0 0 20px rgba(230, 167, 86, 0.1);
        }

        .explainer-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .explainer-title {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 400;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }

        .explainer-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        /* Visual Flow Diagram */
        .flow-diagram {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-bottom: 2.5rem;
            position: relative;
            padding: 2rem 0;
        }

        .flow-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .flow-node-icon {
            width: 80px;
            height: 80px;
            background: var(--bg-elevated);
            border: 2px solid var(--border);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
        }

        .flow-node:hover .flow-node-icon {
            transform: translateY(-4px) scale(1.05);
            border-color: var(--amber);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 0 30px rgba(230, 167, 86, 0.15);
        }

        .flow-node-icon svg {
            width: 36px;
            height: 36px;
            stroke: var(--text-secondary);
            stroke-width: 1.5;
            fill: none;
            transition: stroke 0.3s ease;
        }

        .flow-node:hover .flow-node-icon svg {
            stroke: var(--amber);
        }

        .flow-node-icon.hardware {
            background: linear-gradient(135deg, var(--bg-elevated), rgba(230, 167, 86, 0.1));
            border-color: rgba(230, 167, 86, 0.3);
        }

        .flow-node-icon.hardware svg {
            stroke: var(--amber);
        }

        .flow-node-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .flow-node-desc {
            font-size: 0.7rem;
            color: var(--text-muted);
            max-width: 100px;
        }

        /* Animated connection arrows */
        .flow-arrow {
            width: 80px;
            height: 40px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .flow-arrow-line {
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--border), var(--amber), var(--border));
            position: relative;
        }

        .flow-arrow-line::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            border: 5px solid transparent;
            border-left: 8px solid var(--amber);
        }

        /* Animated data packet */
        .data-packet {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--amber);
            border-radius: 50%;
            box-shadow: 0 0 15px var(--amber);
            animation: packetFlow 2s ease-in-out infinite;
        }

        .flow-arrow:nth-child(2) .data-packet { animation-delay: 0s; }
        .flow-arrow:nth-child(4) .data-packet { animation-delay: 0.5s; }
        .flow-arrow:nth-child(6) .data-packet { animation-delay: 1s; }

        @keyframes packetFlow {
            0%, 100% { left: 0; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { left: calc(100% - 10px); opacity: 0; }
        }

        /* Step cards below diagram */
        .explainer-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .explainer-step {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.4s var(--ease-out-expo);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .explainer-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--amber), var(--coral));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .explainer-step:hover::before {
            transform: scaleX(1);
        }

        .explainer-step:hover {
            border-color: rgba(230, 167, 86, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
        }

        .step-number {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--amber) 0%, var(--coral) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 500;
            color: var(--bg-deep);
            margin: 0 auto 1rem;
        }

        .step-content h4 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .step-content p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        @media (max-width: 900px) {
            .ip-options {
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .ip-option--featured {
                transform: none;
                order: -1;
            }

            .ip-option--featured:hover {
                transform: translateY(-4px);
            }

            .flow-diagram {
                flex-direction: column;
                gap: 0.5rem;
            }

            .flow-arrow {
                transform: rotate(90deg);
                width: 40px;
            }

            .explainer-steps {
                grid-template-columns: 1fr;
            }
        }

        /* Integrations - Flow Grid */
        .integrations {
            padding-top: 100px;
            padding-bottom: 140px;
            position: relative;
            overflow: hidden;
        }

        .integrations-flow {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
        }

        /* Main flow container with animated lines */
        .flow-container {
            display: grid;
            grid-template-columns: 1fr 140px 1fr;
            gap: 1.5rem;
            align-items: center;
            position: relative;
        }

        /* Left channels */
        .flow-left {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        /* Center hub */
        .flow-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        /* Right channels */
        .flow-right {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        /* LinkedIn central hub */
        .linkedin-hub {
            width: 140px;
            height: 140px;
            background: linear-gradient(135deg, var(--bg-elevated), rgba(10, 102, 194, 0.15));
            border: 2px solid #0A66C2;
            border-radius: 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow:
                0 0 60px rgba(10, 102, 194, 0.25),
                inset 0 0 30px rgba(10, 102, 194, 0.05);
        }

        .linkedin-hub::before {
            content: '';
            position: absolute;
            inset: -20px;
            border: 1px solid rgba(10, 102, 194, 0.2);
            border-radius: 40px;
            animation: hubRing 3s ease-in-out infinite;
        }

        .linkedin-hub::after {
            content: '';
            position: absolute;
            inset: -40px;
            border: 1px solid rgba(10, 102, 194, 0.1);
            border-radius: 52px;
            animation: hubRing 3s ease-in-out infinite 0.5s;
        }

        @keyframes hubRing {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.05); opacity: 1; }
        }

        .linkedin-hub svg {
            width: 48px;
            height: 48px;
            stroke: #0A66C2;
            stroke-width: 1.5;
            fill: none;
            margin-bottom: 0.5rem;
        }

        .linkedin-hub span {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 500;
            color: #0A66C2;
        }

        /* Flow lines from center */
        .flow-lines {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200%;
            height: 2px;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .flow-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }

        .flow-line-left {
            right: 50%;
            width: 50%;
        }

        .flow-line-right {
            left: 50%;
            width: 50%;
        }

        /* Channel cards */
        .channel-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.4s var(--ease-out-expo);
            cursor: pointer;
            position: relative;
            overflow: visible;
            z-index: 1;
        }

        .channel-card:hover {
            border-color: var(--amber);
            border-radius: 16px 16px 0 0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            z-index: 30;
        }

        /* Animated data dot shooting out (amber - outbound to LinkedIn) */
        .channel-card::after {
            content: '';
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--amber);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--amber);
            opacity: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Animated data dot coming in (cyan - inbound from LinkedIn) */
        .channel-card::before {
            content: '';
            position: absolute;
            width: 5px;
            height: 5px;
            background: #22d3ee;
            border-radius: 50%;
            box-shadow: 0 0 10px #22d3ee, 0 0 20px rgba(34, 211, 238, 0.4);
            opacity: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
        }

        .flow-left .channel-card::after {
            right: -4px;
            animation: dotShootRight 4s ease-in-out infinite;
        }

        .flow-right .channel-card::after {
            left: -4px;
            animation: dotShootLeft 4s ease-in-out infinite;
        }

        /* Inbound dots from LinkedIn */
        .flow-left .channel-card::before {
            right: -80px;
            animation: dotReceiveLeft 4.5s ease-in-out infinite;
        }

        .flow-right .channel-card::before {
            left: -80px;
            animation: dotReceiveRight 4.5s ease-in-out infinite;
        }

        /* Staggered timing for outbound dots */
        .channel-card:nth-child(1)::after { animation-delay: 0s; }
        .channel-card:nth-child(2)::after { animation-delay: 1.3s; }
        .channel-card:nth-child(3)::after { animation-delay: 2.6s; }

        /* Staggered timing for inbound dots (offset from outbound) */
        .channel-card:nth-child(1)::before { animation-delay: 2s; }
        .channel-card:nth-child(2)::before { animation-delay: 0.7s; }
        .channel-card:nth-child(3)::before { animation-delay: 1.5s; }

        /* Outbound animations (to LinkedIn) */
        @keyframes dotShootRight {
            0%, 65%, 100% { opacity: 0; right: -4px; }
            8% { opacity: 1; right: -4px; }
            55% { opacity: 1; right: -85px; }
            60% { opacity: 0; right: -85px; }
        }

        @keyframes dotShootLeft {
            0%, 65%, 100% { opacity: 0; left: -4px; }
            8% { opacity: 1; left: -4px; }
            55% { opacity: 1; left: -85px; }
            60% { opacity: 0; left: -85px; }
        }

        /* Inbound animations (from LinkedIn) */
        @keyframes dotReceiveLeft {
            0%, 60%, 100% { opacity: 0; right: -85px; }
            5% { opacity: 1; right: -85px; }
            50% { opacity: 1; right: -4px; }
            55% { opacity: 0; right: -4px; }
        }

        @keyframes dotReceiveRight {
            0%, 60%, 100% { opacity: 0; left: -85px; }
            5% { opacity: 1; left: -85px; }
            50% { opacity: 1; left: -4px; }
            55% { opacity: 0; left: -4px; }
        }

        .channel-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .channel-icon svg {
            width: 24px;
            height: 24px;
            stroke-width: 1.5;
            fill: none;
        }

        .channel-icon.email { background: rgba(234, 67, 53, 0.15); }
        .channel-icon.email svg { stroke: #EA4335; }

        .channel-icon.whatsapp { background: rgba(37, 211, 102, 0.15); }
        .channel-icon.whatsapp svg { stroke: #25D366; }

        .channel-icon.telegram { background: rgba(0, 136, 204, 0.15); }
        .channel-icon.telegram svg { stroke: #0088CC; }

        .channel-icon.sms { background: rgba(156, 39, 176, 0.15); }
        .channel-icon.sms svg { stroke: #9C27B0; }

        .channel-icon.enrichment { background: rgba(255, 152, 0, 0.15); }
        .channel-icon.enrichment svg { stroke: #FF9800; }

        .channel-icon.api { background: rgba(103, 58, 183, 0.15); }
        .channel-icon.api svg { stroke: #673AB7; }

        .channel-card:hover .channel-icon {
            transform: scale(1.1);
        }

        .channel-info {
            flex: 1;
        }

        .channel-info h4 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 0.25rem;
            color: var(--text-primary);
        }

        .channel-info p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* Expanded content on hover - positioned as overlay */
        .channel-expand {
            position: absolute;
            top: calc(100% - 1px);
            left: -1px;
            right: -1px;
            background: var(--bg-card);
            border: 1px solid var(--amber);
            border-top: 1px solid var(--border);
            border-radius: 0 0 16px 16px;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 20;
        }

        .channel-card:hover .channel-expand {
            max-height: 100px;
            padding: 1rem 1.25rem;
            opacity: 1;
        }

        .channel-expand p {
            font-size: 0.8rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        /* Sync indicator */
        .sync-badge {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 100px;
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
            color: var(--text-muted);
            white-space: nowrap;
        }

        .sync-dot {
            width: 6px;
            height: 6px;
            background: #10B981;
            border-radius: 50%;
            animation: syncPulse 2s ease-in-out infinite;
        }

        @keyframes syncPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        @media (max-width: 900px) {
            .flow-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .flow-left, .flow-right {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }

            .channel-card {
                flex: 1 1 280px;
                max-width: 350px;
            }

            .linkedin-hub {
                order: -1;
                margin-bottom: 1rem;
            }

            .flow-center {
                order: -1;
            }
        }

        /* Works Seamlessly - Integration Carousel */
        .works-seamlessly {
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .works-seamlessly .section-header {
            margin-bottom: 3rem;
        }

        .logos-container {
            position: relative;
            overflow: hidden;
            padding: 1rem 0;
        }

        .logos-container::before,
        .logos-container::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            z-index: 10;
            pointer-events: none;
        }

        .logos-container::before {
            left: 0;
            background: linear-gradient(90deg, var(--bg-deep) 0%, transparent 100%);
        }

        .logos-container::after {
            right: 0;
            background: linear-gradient(90deg, transparent 0%, var(--bg-deep) 100%);
        }

        .logos-marquee {
            display: flex;
            animation: marquee 50s linear infinite;
            width: max-content;
        }

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

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

        .logos-track {
            display: flex;
            gap: 1.5rem;
            padding-right: 1.5rem;
        }

        .logo-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 0.875rem 1.25rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .logo-item:hover {
            border-color: var(--amber);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .logo-item.active {
            border-color: var(--amber);
            background: rgba(230, 167, 86, 0.08);
        }

        .logo-icon {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            font-size: 1rem;
        }

        .logo-icon svg {
            width: 20px;
            height: 20px;
        }

        .logo-name {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        /* Logo icons - subtle, professional styling */
        .logo-icon {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
        }

        .logo-icon svg {
            stroke: var(--text-secondary);
            stroke-width: 1.5;
            fill: none;
        }

        .logo-item:hover .logo-icon {
            border-color: var(--amber);
        }

        .logo-item:hover .logo-icon svg {
            stroke: var(--amber);
        }

        /* Fun fact tooltip */
        .fun-fact-container {
            max-width: 700px;
            margin: 2rem auto 0;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fun-fact {
            background: var(--bg-elevated);
            border: 1px solid var(--amber);
            border-radius: 16px;
            padding: 1.25rem 1.75rem;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s var(--ease-out-expo);
            text-align: center;
        }

        .fun-fact.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fun-fact-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--amber);
            margin-bottom: 0.5rem;
        }

        .fun-fact-label svg {
            width: 14px;
            height: 14px;
            stroke: var(--amber);
            stroke-width: 2;
            fill: none;
        }

        .fun-fact-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .fun-fact-hint {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        @media (max-width: 768px) {
            .logos-container::before,
            .logos-container::after {
                width: 60px;
            }

            .logo-item {
                padding: 0.75rem 1rem;
            }

            .logo-name {
                font-size: 0.85rem;
            }
        }

        /* Features - Bento Box Style */
        .features {
            padding-top: 100px;
            padding-bottom: 140px;
            background: linear-gradient(180deg, transparent 0%, var(--bg-surface) 50%, transparent 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: minmax(200px, auto);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 2rem;
            transition: all 0.5s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* Default: spans 4 columns */
        .feature-card {
            grid-column: span 4;
        }

        /* Featured cards span 8 columns */
        .feature-card.featured {
            grid-column: span 8;
            background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(230, 167, 86, 0.08) 100%);
            border-color: rgba(230, 167, 86, 0.2);
        }

        /* Corner accent on hover */
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle at top right, rgba(230, 167, 86, 0.15), transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

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

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--border-hover);
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(230, 167, 86, 0.1);
        }

        /* Feature icon */
        .feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(230, 167, 86, 0.15), rgba(230, 167, 86, 0.05));
            border: 1px solid rgba(230, 167, 86, 0.3);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, rgba(230, 167, 86, 0.25), rgba(230, 167, 86, 0.1));
            transform: scale(1.05);
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--amber);
            stroke-width: 1.5;
            fill: none;
        }

        .feature-number {
            font-family: var(--font-display);
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
            font-style: italic;
            letter-spacing: 0.1em;
        }

        .feature-card h3 {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 400;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
            flex: 1;
        }

        .feature-visual {
            margin-top: 1.5rem;
            padding: 1.25rem;
            background: var(--bg-surface);
            border-radius: 16px;
            border: 1px solid var(--border);
        }

        .inbox-preview {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .inbox-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.6rem 0.75rem;
            background: var(--bg-elevated);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .inbox-item:hover {
            background: rgba(230, 167, 86, 0.1);
            transform: translateX(4px);
        }

        .inbox-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--slate) 0%, var(--slate-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            font-weight: 600;
            color: var(--bg-deep);
        }

        .inbox-content {
            flex: 1;
            min-width: 0;
        }

        .inbox-name {
            font-size: 0.8rem;
            font-weight: 500;
        }

        .inbox-msg {
            font-size: 0.7rem;
            color: var(--text-muted);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .inbox-platform {
            font-size: 0.6rem;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            background: var(--bg-surface);
            color: var(--text-muted);
            font-weight: 500;
        }

        .inbox-platform.linkedin { background: rgba(10, 102, 194, 0.2); color: #7DB8E8; }
        .inbox-platform.email { background: rgba(234, 67, 53, 0.2); color: #F08080; }
        .inbox-platform.whatsapp { background: rgba(37, 211, 102, 0.2); color: #7DE8A5; }

        /* White label visual */
        .whitelabel-visual {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .brand-preview {
            flex: 1;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1rem;
            text-align: center;
        }

        .brand-preview .brand-logo {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            margin: 0 auto 0.5rem;
        }

        .brand-preview:nth-child(1) .brand-logo { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
        .brand-preview:nth-child(2) .brand-logo { background: linear-gradient(135deg, #10B981, #059669); }
        .brand-preview:nth-child(3) .brand-logo { background: linear-gradient(135deg, #F59E0B, #D97706); }

        .brand-preview .brand-name {
            font-size: 0.7rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(6, 1fr);
            }

            .feature-card {
                grid-column: span 3;
            }

            .feature-card.featured {
                grid-column: span 6;
            }
        }

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

            .feature-card,
            .feature-card.featured {
                grid-column: span 1;
            }
        }

        /* Social proof */
        .proof {
            padding-top: 80px;
            padding-bottom: 120px;
        }

        .proof-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            opacity: 0.5;
            margin-bottom: 4rem;
        }

        .proof-logos span {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: -0.02em;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .testimonial {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
        }

        .testimonial-quote {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--amber) 0%, var(--coral) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--bg-deep);
        }

        .testimonial-info h4 {
            font-weight: 600;
            font-size: 0.95rem;
        }

        .testimonial-info span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ============================================
           PRICING SECTION
           ============================================ */
        .pricing {
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
        }

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

        .pricing-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        
        

        

        

        

        

        .pricing-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 400;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .pricing-title em {
            font-style: italic;
            color: var(--amber);
        }

        .pricing-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Pricing grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 780px;
            margin: 0 auto 4rem;
            align-items: stretch;
        }

        .pricing-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 2.5rem;
            position: relative;
            display: flex;
            flex-direction: column;
            transition: all 0.4s var(--ease-out-expo);
        }

        .pricing-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
        }

        /* Featured card - ProxyBox */
        .pricing-card--featured {
            background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(230, 167, 86, 0.12) 100%);
            border: 2px solid rgba(230, 167, 86, 0.4);
            transform: scale(1.02);
            z-index: 2;
        }

        .pricing-card--featured:hover {
            transform: scale(1.02) translateY(-4px);
            border-color: var(--amber);
        }

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

        .card-popular {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--amber), var(--coral));
            color: var(--bg-deep);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.4rem 1rem;
            border-radius: 100px;
            white-space: nowrap;
        }

        .card-tier {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }

        .card-name {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
        }

        .card-price {
            display: flex;
            align-items: baseline;
            gap: 0.25rem;
            margin-bottom: 0.5rem;
        }

        .price-amount {
            font-family: var(--font-display);
            font-size: 2.75rem;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1;
        }

        .price-period {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        
        .card-price-highlight {
            text-align: center;
            margin-bottom: 0.75rem;
        }

        

        @keyframes freeForeverPulse {
            0%, 100% {
                filter: brightness(1);
                transform: scale(1);
            }
            50% {
                filter: brightness(1.15);
                transform: scale(1.02);
            }
        }

        

        .free-forever-subtext {
            display: block;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        .card-price-highlight--muted .free-forever-subtext {
            color: var(--text-muted);
        }

        [data-theme="light"] 

        .price-note {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .price-note s {
            color: var(--coral);
            text-decoration: line-through;
        }

        .card-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
            flex-grow: 0;
        }

        .card-features {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .card-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 0.85rem;
        }

        .card-features li svg {
            width: 18px;
            height: 18px;
            stroke: var(--amber);
            stroke-width: 2.5;
            fill: none;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .card-features li strong {
            color: var(--text-primary);
        }

        .card-cta {
            margin-top: auto;
        }

        .card-cta .btn {
            width: 100%;
            justify-content: center;
        }

        /* Volume bonus callout */
        .volume-bonus {
            background: rgba(125, 211, 252, 0.08);
            border: 1px solid rgba(125, 211, 252, 0.2);
            border-radius: 12px;
            padding: 1rem;
            margin-top: 1.5rem;
        }

        .volume-bonus-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--ice);
            margin-bottom: 0.5rem;
        }

        .volume-bonus-title svg {
            width: 16px;
            height: 16px;
            stroke: var(--ice);
            stroke-width: 2;
            fill: none;
        }

        .volume-bonus p {
            font-size: 0.8rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* ProxyBox highlight section */
        .proxybox-highlight {
            max-width: 900px;
            margin: 3rem auto 0;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: center;
        }

        .proxybox-visual {
            position: relative;
        }

        .proxybox-device {
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .proxybox-device::before {
            content: '';
            position: absolute;
            inset: -30px;
            background: radial-gradient(circle, rgba(230, 167, 86, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
        }

        .proxybox-device img {
            display: block;
            width: 100%;
            max-width: 280px;
            height: auto;
            object-fit: contain;
            transition: transform 0.4s var(--ease-out-expo);
        }

        .proxybox-device:hover img {
            transform: scale(1.05) translateY(-5px);
        }

        .proxybox-info h3 {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .proxybox-info h3 em {
            font-style: italic;
            color: var(--amber);
        }

        .proxybox-tagline {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .proxybox-benefits {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .proxybox-benefits li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 0.6rem;
        }

        .proxybox-benefits li svg {
            width: 16px;
            height: 16px;
            stroke: var(--amber);
            stroke-width: 2.5;
            fill: none;
        }

        .proxybox-price {
            display: flex;
            align-items: baseline;
            gap: 0.75rem;
        }

        .proxybox-price .current {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 600;
            color: var(--amber);
        }

        .proxybox-price .original {
            font-size: 1rem;
            color: var(--text-muted);
            text-decoration: line-through;
        }

        .proxybox-addon-badge {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--amber);
            border: 1px solid rgba(230, 167, 86, 0.4);
            padding: 0.35rem 0.9rem;
            border-radius: 100px;
            margin-bottom: 1rem;
        }

        .proxybox-price .proxybox-wave-note {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .proxybox-price .savings {
            font-size: 0.8rem;
            color: var(--coral);
            background: rgba(224, 123, 90, 0.15);
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
        }

        /* Pricing FAQ toggle */
        .pricing-note {
            text-align: center;
            margin-top: 3rem;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .pricing-note a {
            color: var(--amber);
            text-decoration: none;
        }

        .pricing-note a:hover {
            text-decoration: underline;
        }

        /* Mobile responsive */
        @media (max-width: 900px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
            }

            .proxybox-highlight {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 2rem;
            }

            .proxybox-benefits {
                display: inline-block;
                text-align: left;
            }

            .proxybox-price {
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
            

            

            .pricing-card {
                padding: 2rem;
            }
        }

        /* CTA Section */
        .cta {
            padding-top: 100px;
            padding-bottom: 140px;
        }

        .cta-box {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(230, 167, 86, 0.1) 100%);
            border: 2px solid rgba(230, 167, 86, 0.3);
            border-radius: 40px;
            padding: 5rem 3rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }

        .cta-box:hover {
            transform: translateY(-4px);
            border-color: rgba(230, 167, 86, 0.5);
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.3),
                0 0 100px rgba(230, 167, 86, 0.15);
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background:
                radial-gradient(circle at 30% 30%, var(--amber-glow) 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, var(--coral-glow) 0%, transparent 40%);
            opacity: 0.4;
            animation: ctaGlow 15s ease-in-out infinite;
            transition: opacity 0.5s ease;
        }

        .cta-box:hover::before {
            opacity: 0.6;
        }

        .cta-box::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, transparent 0%, var(--bg-elevated) 100%);
            pointer-events: none;
        }

        @keyframes ctaGlow {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(3%, -3%) rotate(2deg); }
            66% { transform: translate(-3%, 3%) rotate(-2deg); }
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(230, 167, 86, 0.2), rgba(230, 167, 86, 0.1));
            border: 1px solid rgba(230, 167, 86, 0.3);
            border-radius: 100px;
            padding: 0.5rem 1.25rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--amber);
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: badgeShimmer 3s ease-in-out infinite;
        }

        @keyframes badgeShimmer {
            0%, 100% { left: -100%; }
            50% { left: 100%; }
        }

        .cta-badge:hover {
            background: linear-gradient(135deg, rgba(230, 167, 86, 0.3), rgba(230, 167, 86, 0.15));
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(230, 167, 86, 0.3);
        }

        .cta-badge svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
            animation: starPulse 2s ease-in-out infinite;
        }

        @keyframes starPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .cta h2 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            font-weight: 400;
            letter-spacing: -0.03em;
            margin-bottom: 1.25rem;
            line-height: 1.15;
        }

        .cta h2 em {
            color: var(--amber);
            font-style: italic;
        }

        .cta-desc {
            color: var(--text-secondary);
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .cta-social-proof {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .cta-avatars {
            display: flex;
        }

        .cta-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid var(--bg-elevated);
            margin-left: -10px;
            background: linear-gradient(135deg, var(--slate), var(--slate-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--bg-deep);
            transition: all 0.3s var(--ease-out-expo);
            cursor: pointer;
        }

        .cta-avatar:hover {
            transform: translateY(-4px) scale(1.1);
            z-index: 10;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .cta-avatars:hover .cta-avatar {
            margin-left: -5px;
        }

        .cta-avatars:hover .cta-avatar:first-child {
            margin-left: 0;
        }

        .cta-avatar:first-child {
            margin-left: 0;
        }

        .cta-avatar.more {
            background: var(--amber);
            color: var(--bg-deep);
            font-size: 0.65rem;
        }

        .cta-avatar.more:hover {
            background: var(--amber-light);
        }

        .cta-social-text {
            text-align: left;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .cta-social-text strong {
            display: block;
            color: var(--text-primary);
            font-weight: 500;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .cta-note {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .cta-note svg {
            width: 14px;
            height: 14px;
            stroke: var(--text-muted);
            stroke-width: 2;
            fill: none;
        }

        @media (max-width: 768px) {
            .cta-box {
                padding: 3rem 1.5rem;
                border-radius: 24px;
            }

            .cta-social-proof {
                flex-direction: column;
                gap: 0.75rem;
            }

            .cta-social-text {
                text-align: center;
            }
        }


        /* ---- Live Activity Counter (#2) ---- */
        .live-activity {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2.5rem 2rem 1rem;
            position: relative;
            z-index: 2;
        }
        .live-activity-inner {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            padding: 1.5rem 1.75rem;
            background: rgba(20, 23, 32, 0.55);
            border: 1px solid var(--border);
            border-radius: 16px;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        [data-theme="light"] .live-activity-inner,
        [data-theme="infolight"] .live-activity-inner {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 1px 2px rgba(0,0,0,0.03);
        }
        .live-activity-stat {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            position: relative;
        }
        .live-activity-stat + .live-activity-stat {
            padding-left: 1.5rem;
            border-left: 1px solid var(--border);
        }
        .live-activity-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-secondary);
            margin-bottom: 0.15rem;
        }
        .live-activity-pill .pulse-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #22c55e;
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
            animation: liveDotPulse 2.2s ease-out infinite;
        }
        @keyframes liveDotPulse {
            0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
            70% { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0); }
            100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }
        .live-activity-num {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 600;
            line-height: 1.1;
            color: var(--text-primary);
            font-variant-numeric: tabular-nums;
            transition: color 0.4s ease;
        }
        .live-activity-num.bump { color: var(--amber); }
        .live-activity-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        @media (max-width: 720px) {
            .live-activity-inner {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .live-activity-stat + .live-activity-stat {
                padding-left: 0;
                padding-top: 1rem;
                border-left: 0;
                border-top: 1px solid var(--border);
            }
            .live-activity-num { font-size: 1.6rem; }
        }

        /* ---- Dashboard Screenshot Gallery (#1) ---- */
        .dashboard-gallery {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            position: relative;
            z-index: 2;
        }
        .dashboard-gallery .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .dashboard-gallery-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 1.25rem;
        }
        .dashboard-mock {
            position: relative;
            background: linear-gradient(180deg, rgba(20,23,32,0.6) 0%, rgba(15,17,24,0.85) 100%);
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            transition: transform 0.5s var(--ease-out-expo), border-color 0.4s ease;
        }
        [data-theme="light"] .dashboard-mock,
        [data-theme="infolight"] .dashboard-mock {
            background: linear-gradient(180deg, #FFFFFF 0%, #F7F8FA 100%);
        }
        .dashboard-mock:hover {
            transform: translateY(-4px);
            border-color: rgba(230, 167, 86, 0.35);
        }
        .dashboard-mock-bar {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 14px;
            border-bottom: 1px solid var(--border);
            background: rgba(0,0,0,0.18);
        }
        [data-theme="light"] .dashboard-mock-bar,
        [data-theme="infolight"] .dashboard-mock-bar {
            background: rgba(0,0,0,0.03);
        }
        .dashboard-mock-bar i {
            width: 9px; height: 9px; border-radius: 50%;
            background: rgba(255,255,255,0.18);
        }
        [data-theme="light"] .dashboard-mock-bar i,
        [data-theme="infolight"] .dashboard-mock-bar i {
            background: rgba(0,0,0,0.12);
        }
        .dashboard-mock-bar .url {
            margin-left: 10px;
            font-family: var(--font-mono, ui-monospace, monospace);
            font-size: 0.68rem;
            color: var(--text-secondary);
        }
        .dashboard-mock svg {
            display: block;
            width: 100%;
            height: auto;
        }
        .dashboard-mock-caption {
            padding: 0.85rem 1.1rem 1rem;
            border-top: 1px solid var(--border);
        }
        .dashboard-mock-caption h4 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 0.2rem;
        }
        .dashboard-mock-caption p {
            font-size: 0.78rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.45;
        }
        @media (max-width: 980px) {
            .dashboard-gallery-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ---- Case Studies (#4) ---- */
        .case-studies {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            position: relative;
            z-index: 2;
        }
        .case-studies .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .case-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .case-card {
            display: flex;
            flex-direction: column;
            background: rgba(20,23,32,0.45);
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: transform 0.45s var(--ease-out-expo), border-color 0.3s ease;
        }
        [data-theme="light"] .case-card,
        [data-theme="infolight"] .case-card {
            background: #FFFFFF;
        }
        .case-card:hover {
            transform: translateY(-3px);
            border-color: rgba(230,167,86,0.4);
        }
        .case-card-art {
            position: relative;
            aspect-ratio: 16 / 9;
            background: #0e1117;
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }
        .case-card-art svg {
            width: 100%;
            height: 100%;
            display: block;
        }
        .case-card-body {
            padding: 1.4rem 1.4rem 1.6rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }
        .case-card-meta {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-secondary);
        }
        .case-card-customer {
            font-weight: 600;
            color: var(--amber);
        }
        .case-card h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 600;
            line-height: 1.3;
            color: var(--text-primary);
            margin: 0;
        }
        .case-card-metric {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            padding-top: 0.4rem;
            border-top: 1px solid var(--border);
            margin-top: auto;
        }
        .case-card-metric strong {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-primary);
        }
        .case-card-metric span {
            font-size: 0.78rem;
            color: var(--text-secondary);
        }
        .case-card-link {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--amber);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        @media (max-width: 980px) {
            .case-grid { grid-template-columns: 1fr; }
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--border);
            padding: 5rem 5% 2rem;
            position: relative;
            z-index: 2;
            background: linear-gradient(180deg, transparent, var(--bg-surface) 50%);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            max-width: 1200px;
            margin: 0 auto;
            gap: 3rem;
        }

        .footer-brand {
            max-width: 320px;
        }

        .footer-brand .logo {
            margin-bottom: 1.25rem;
        }

        .footer-brand > p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        /* Newsletter form */
        .footer-newsletter {
            margin-top: 1.5rem;
        }

        .footer-newsletter label {
            display: block;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 0.75rem;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-form input {
            flex: 1;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
            color: var(--text-primary);
            outline: none;
            transition: border-color 0.3s ease;
        }

        .newsletter-form input::placeholder {
            color: var(--text-muted);
        }

        .newsletter-form input:focus {
            border-color: var(--amber);
        }

        .newsletter-form button {
            background: var(--amber);
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.25rem;
            color: var(--bg-deep);
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-form button:hover {
            background: var(--amber-light);
            transform: translateY(-1px);
        }

        .footer-links {
            display: contents;
        }

        .footer-col h4 {
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.25rem;
            color: var(--text-primary);
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .footer-col a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-col a:hover {
            color: var(--amber);
            transform: translateX(3px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-bottom-left {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-bottom span {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #10B981;
            border-radius: 50%;
            animation: statusPulse 2s ease-in-out infinite;
        }

        @keyframes statusPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            border: 1px solid var(--border);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: all 0.3s ease;
        }

        .footer-social a svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            stroke-width: 1.5;
            fill: none;
        }

        .footer-social a:hover {
            border-color: var(--amber);
            color: var(--amber);
            transform: translateY(-2px);
        }

        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .footer-brand {
                grid-column: span 2;
                max-width: 100%;
            }
        }

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

            .footer-brand {
                grid-column: span 1;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-left {
                flex-direction: column;
                gap: 1rem;
            }
        }

        .footer-social svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            stroke-width: 1.5;
            fill: none;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: 1fr;
            }

            .feature-card.featured {
                grid-column: span 1;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .nav-cta .btn-ghost,
            .nav-cta .btn-primary {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .hero-stats {
                flex-direction: column;
                gap: 2rem;
            }

            .safety-diagram {
                flex-direction: column;
                gap: 2rem;
            }

            .safety-connector {
                width: 2px;
                height: 40px;
                background: linear-gradient(180deg, var(--border), var(--amber), var(--border));
            }

            .footer-content {
                flex-direction: column;
            }

            .footer-links {
                flex-wrap: wrap;
                gap: 2rem;
            }
        }

        /* ============================================
           HOW IT WORKS SECTION
           ============================================ */
        .how-it-works {
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }

        .steps-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 0;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
        }

        .step {
            flex: 1;
            text-align: center;
            padding: 2rem;
            position: relative;
            max-width: 320px;
            border-radius: 20px;
            background: transparent;
            border: 1px solid transparent;
            transition: background 0.4s ease, border-color 0.4s ease;
        }

        /* Connecting line between steps */
        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 60px;
            right: -10%;
            width: 20%;
            height: 2px;
            background: var(--border);
            z-index: 1;
        }

        /* Animated pulse traveling along the line */
        .step:not(:last-child)::before {
            content: '';
            position: absolute;
            top: 56px;
            right: -10%;
            width: 10px;
            height: 10px;
            background: var(--amber);
            border-radius: 50%;
            box-shadow: 0 0 15px var(--amber), 0 0 30px rgba(230, 167, 86, 0.4);
            z-index: 2;
            opacity: 0;
        }

        .reveal.visible .step:nth-child(1)::before {
            animation: travelPulse 3s ease-in-out 1s infinite;
        }

        .reveal.visible .step:nth-child(2)::before {
            animation: travelPulse 3s ease-in-out 2s infinite;
        }

        @keyframes travelPulse {
            0% { right: -10%; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { right: 10%; opacity: 0; }
        }

        .step-number {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-number-inner {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
            border: 2px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--amber);
            position: relative;
            z-index: 2;
            transition: all 0.5s var(--ease-out-expo);
        }

        .step:hover .step-number-inner {
            border-color: var(--amber);
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(230, 167, 86, 0.3);
        }

        /* Rotating ring around step number */
        .step-ring {
            position: absolute;
            inset: 0;
            border: 1px dashed var(--border);
            border-radius: 50%;
            animation: stepRingSpin 20s linear infinite;
        }

        .step:nth-child(2) .step-ring {
            animation-direction: reverse;
        }

        @keyframes stepRingSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .step-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }

        .step-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .step-time {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 1rem;
            padding: 0.4rem 0.8rem;
            background: rgba(230, 167, 86, 0.1);
            border-radius: 20px;
            font-size: 0.75rem;
            color: var(--amber);
            font-weight: 500;
        }

        .step-time svg {
            width: 12px;
            height: 12px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }

        /* Step click interactivity */
        .step {
            cursor: pointer;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .step:hover {
            transform: translateY(-4px);
        }

        .step.expanded {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 194, 255, 0.15),
                        0 8px 25px rgba(0, 0, 0, 0.3);
            background: var(--bg-card);
            border-color: var(--border);
        }

        .step.expanded .step-ring {
            animation-duration: 1.5s;
            box-shadow: 0 0 30px rgba(0, 194, 255, 0.4);
        }

        .step-hint {
            display: block;
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 1rem;
            opacity: 0.6;
            transition: opacity 0.3s, transform 0.3s;
        }

        .step:hover .step-hint {
            opacity: 1;
        }

        .step.expanded .step-hint {
            opacity: 0;
            transform: translateY(-10px);
            pointer-events: none;
        }

        .step-expand {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                        opacity 0.4s ease,
                        margin 0.4s ease;
            opacity: 0;
            margin-top: 0;
        }

        .step.expanded .step-expand {
            max-height: 300px;
            opacity: 1;
            margin-top: 1.5rem;
        }

        .step-expand-content {
            padding-top: 1rem;
            border-top: 1px solid var(--border);
        }

        .step-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .step-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 0.6rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .step.expanded .step-features li {
            opacity: 1;
            transform: translateX(0);
        }

        .step.expanded .step-features li:nth-child(1) { transition-delay: 0.1s; }
        .step.expanded .step-features li:nth-child(2) { transition-delay: 0.2s; }
        .step.expanded .step-features li:nth-child(3) { transition-delay: 0.3s; }

        .feature-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--amber);
            stroke-width: 1.5;
            fill: none;
        }

        @media (max-width: 768px) {
            .steps-container {
                flex-direction: column;
                gap: 3rem;
            }

            .step:not(:last-child)::after,
            .step:not(:last-child)::before {
                display: none;
            }

            .step {
                max-width: 100%;
            }
        }

        /* ============================================
           SOCIAL PROOF SECTION
           ============================================ */
        .social-proof {
            padding: 5rem 2rem;
            background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
            position: relative;
            overflow: hidden;
        }

        .social-proof::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }

        .proof-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .proof-stat {
            text-align: center;
        }

        .proof-stat-value {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--amber);
            display: block;
            line-height: 1;
            min-width: 80px;
        }

        /* Counter animation - numbers roll into place */
        .proof-stat-value[data-target] {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .proof-stat-value.counting {
            opacity: 1;
            transform: translateY(0);
        }

        .proof-stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }

        .testimonials-container {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .testimonials-track {
            position: relative;
            min-height: 320px;
        }

        .testimonial-card {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 2.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                        visibility 0.9s ease,
                        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .testimonial-card.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Staggered reveal for testimonial content */
        .testimonial-card .testimonial-stars {
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .testimonial-card.active .testimonial-stars {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }

        .testimonial-card .testimonial-quote {
            opacity: 0;
            transform: translateY(20px);
            filter: blur(4px);
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                        filter 0.8s ease;
        }

        .testimonial-card.active .testimonial-quote {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
            transition-delay: 0.35s;
        }

        .testimonial-card .testimonial-author {
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .testimonial-card.active .testimonial-author {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.7s;
        }

        .testimonial-card .testimonial-result {
            opacity: 0;
            transform: translateY(10px) scale(0.95);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .testimonial-card.active .testimonial-result {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 0.9s;
        }

        .testimonial-stars {
            color: var(--amber);
            font-size: 1.1rem;
            letter-spacing: 2px;
            margin-bottom: 1.25rem;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 2rem;
            font-family: var(--font-display);
            font-size: 8rem;
            color: var(--amber);
            opacity: 0.1;
            line-height: 1;
        }

        .testimonial-quote {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 400;
            font-style: italic;
            color: var(--text-primary);
            line-height: 1.6;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--amber), var(--coral));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--bg-deep);
        }

        .testimonial-info h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .testimonial-info p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .testimonial-result {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            background: rgba(230, 167, 86, 0.1);
            border: 1px solid rgba(230, 167, 86, 0.3);
            border-radius: 12px;
            padding: 1rem 1.5rem;
            text-align: center;
        }

        .testimonial-result-value {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--amber);
            display: block;
        }

        .testimonial-result-label {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .testimonials-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .testimonial-dots {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .testimonial-dot {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .testimonial-dot::before {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 50%;
            transition: all 0.4s ease;
        }

        .testimonial-dot.active::before {
            background: var(--amber);
            border-color: var(--amber);
            box-shadow: 0 0 8px rgba(230, 167, 86, 0.5);
        }

        .testimonial-dot:hover::before {
            border-color: var(--amber);
        }

        /* Progress ring for testimonials */
        .testimonial-progress-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .testimonial-dot.active .testimonial-progress-ring {
            opacity: 1;
        }

        .testimonial-progress-ring .progress-ring-bg {
            fill: none;
            stroke: rgba(230, 167, 86, 0.15);
            stroke-width: 2;
        }

        .testimonial-progress-ring .progress-ring-fill {
            fill: none;
            stroke: var(--amber);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-dasharray: 100.53;
            stroke-dashoffset: 100.53;
        }

        .testimonial-dot.active .testimonial-progress-ring .progress-ring-fill {
            animation: testimonialProgress 10s linear forwards;
        }

        /* Pause state for testimonials */
        .testimonials-paused .testimonial-dot.active .testimonial-progress-ring .progress-ring-fill {
            animation-play-state: paused;
        }

        @keyframes testimonialProgress {
            from { stroke-dashoffset: 100.53; }
            to { stroke-dashoffset: 0; }
        }

        /* Play/Pause button for testimonials */
        .testimonial-play-pause {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            margin-left: 0.5rem;
        }

        .testimonial-play-pause:hover {
            border-color: var(--amber);
            background: rgba(230, 167, 86, 0.1);
        }

        .testimonial-play-pause svg {
            width: 14px;
            height: 14px;
            fill: var(--text-secondary);
            transition: fill 0.3s ease;
        }

        .testimonial-play-pause:hover svg {
            fill: var(--amber);
        }

        .testimonial-play-pause .icon-play {
            display: none;
        }

        .testimonials-paused .testimonial-play-pause .icon-pause {
            display: none;
        }

        .testimonials-paused .testimonial-play-pause .icon-play {
            display: block;
        }

        /* Glow when paused */
        .testimonials-paused .testimonial-play-pause {
            border-color: var(--amber);
            box-shadow: 0 0 16px rgba(230, 167, 86, 0.3);
        }

        .testimonials-paused .testimonial-play-pause svg {
            fill: var(--amber);
        }

        @media (max-width: 768px) {
            .proof-stats {
                gap: 2rem;
            }

            .testimonial-card {
                padding: 2rem;
            }

            .testimonial-quote {
                font-size: 1.1rem;
            }

            .testimonial-result {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 1.5rem;
                display: inline-block;
            }

            .testimonial-play-pause {
                width: 32px;
                height: 32px;
            }

            .testimonial-dot {
                width: 24px;
                height: 24px;
            }
        }

        /* ============================================
           SEQUENCE BUILDER SECTION
           ============================================ */
        .sequence-builder {
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .sequence-builder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }

        .builder-showcase {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: center;
        }

        .builder-content {
            padding-right: 2rem;
        }

        .builder-content h3 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .builder-content h3 em {
            font-style: italic;
            color: var(--amber);
        }

        .builder-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .builder-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            transition: all 0.4s ease;
        }

        .builder-feature:hover {
            border-color: var(--amber);
            transform: translateX(8px);
        }

        .builder-feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(230, 167, 86, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .builder-feature-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--amber);
            stroke-width: 1.5;
            fill: none;
        }

        .builder-feature h4 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .builder-feature p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        /* Visual Canvas */
        .builder-canvas {
            position: relative;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 2rem;
            min-height: 480px;
            overflow: hidden;
        }

        .builder-canvas::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 1px 1px, var(--border) 1px, transparent 0);
            background-size: 24px 24px;
            opacity: 0.5;
        }

        .canvas-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .canvas-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .canvas-dot:nth-child(1) { background: #ff5f57; }
        .canvas-dot:nth-child(2) { background: #febc2e; }
        .canvas-dot:nth-child(3) { background: #28c840; }

        .canvas-title {
            flex: 1;
            font-size: 0.85rem;
            color: var(--text-muted);
            text-align: center;
        }

        /* Sequence Flow Visualization */
        .sequence-flow {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .seq-node {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.25rem;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            transition: all 0.4s ease;
            position: relative;
        }

        .seq-node:hover {
            border-color: var(--amber);
            transform: translateX(4px);
        }

        .seq-node-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .seq-node-icon svg {
            width: 18px;
            height: 18px;
            stroke-width: 1.5;
            fill: none;
        }

        .seq-node-icon.linkedin {
            background: rgba(10, 102, 194, 0.15);
        }
        .seq-node-icon.linkedin svg { stroke: #0A66C2; }

        .seq-node-icon.email {
            background: rgba(234, 67, 53, 0.15);
        }
        .seq-node-icon.email svg { stroke: #EA4335; }

        .seq-node-icon.sms {
            background: rgba(156, 39, 176, 0.15);
        }
        .seq-node-icon.sms svg { stroke: #9C27B0; }

        .seq-node-icon.condition {
            background: rgba(230, 167, 86, 0.15);
        }
        .seq-node-icon.condition svg { stroke: var(--amber); }

        .seq-node-content {
            flex: 1;
        }

        .seq-node-title {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        .seq-node-meta {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 0.2rem;
        }

        .seq-node-badge {
            padding: 0.25rem 0.6rem;
            background: rgba(230, 167, 86, 0.1);
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--amber);
        }

        /* Branching visualization */
        .seq-branch {
            display: flex;
            gap: 1rem;
            margin-left: 2rem;
            position: relative;
        }

        .seq-branch::before {
            content: '';
            position: absolute;
            left: -1rem;
            top: 0;
            bottom: 50%;
            width: 2px;
            background: var(--border);
        }

        .seq-branch::after {
            content: '';
            position: absolute;
            left: -1rem;
            top: 50%;
            width: 1rem;
            height: 2px;
            background: var(--border);
        }

        .seq-branch-path {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .seq-branch-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            color: var(--text-muted);
            padding: 0.3rem 0.6rem;
            background: var(--bg-card);
            border-radius: 4px;
            border: 1px solid var(--border);
            width: fit-content;
        }

        .seq-branch-label.yes { color: #28c840; border-color: rgba(40, 200, 64, 0.3); }
        .seq-branch-label.no { color: var(--coral); border-color: rgba(224, 123, 90, 0.3); }

        /* Animated data particles in canvas */
        .canvas-particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--amber);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--amber);
            opacity: 0;
            z-index: 3;
        }

        .reveal.visible .canvas-particle:nth-child(1) {
            top: 120px;
            left: 60px;
            animation: particleFlow1 4s ease-in-out 1s infinite;
        }

        .reveal.visible .canvas-particle:nth-child(2) {
            top: 200px;
            left: 60px;
            animation: particleFlow2 4s ease-in-out 2s infinite;
        }

        @keyframes particleFlow1 {
            0%, 100% { opacity: 0; left: 60px; top: 120px; }
            10% { opacity: 1; }
            50% { left: 200px; top: 180px; opacity: 1; }
            60% { opacity: 0; }
        }

        @keyframes particleFlow2 {
            0%, 100% { opacity: 0; left: 60px; top: 200px; }
            10% { opacity: 1; }
            50% { left: 250px; top: 300px; opacity: 1; }
            60% { opacity: 0; }
        }

        @media (max-width: 968px) {
            .builder-showcase {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .builder-content {
                padding-right: 0;
                text-align: center;
            }

            .builder-feature {
                text-align: left;
            }
        }

        /* ============================================
           LEAD SOURCING SECTION
           ============================================ */
        .lead-sourcing {
            padding: 8rem 2rem;
            background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 100%);
            position: relative;
            overflow: hidden;
        }

        .lead-sourcing::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }

        .sourcing-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        /* Enrichment Demo Card */
        .enrichment-demo {
            position: relative;
        }

        .profile-card-demo {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            overflow: visible;
        }

        .profile-card-demo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(135deg, rgba(10, 102, 194, 0.15), rgba(230, 167, 86, 0.1));
            border-radius: 20px 20px 0 0;
        }

        .profile-header {
            display: flex;
            align-items: flex-end;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .profile-avatar-large {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--amber), var(--coral));
            border-radius: 50%;
            border: 4px solid var(--bg-card);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 600;
            color: var(--bg-deep);
        }

        .profile-basic h4 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .profile-basic p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .profile-enriched {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .enriched-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            opacity: 0;
            transform: translateY(10px);
        }

        .reveal.visible .enriched-item {
            animation: enrichAppear 0.5s ease forwards;
        }

        .reveal.visible .enriched-item:nth-child(1) { animation-delay: 0.5s; }
        .reveal.visible .enriched-item:nth-child(2) { animation-delay: 0.7s; }
        .reveal.visible .enriched-item:nth-child(3) { animation-delay: 0.9s; }
        .reveal.visible .enriched-item:nth-child(4) { animation-delay: 1.1s; }
        .reveal.visible .enriched-item:nth-child(5) { animation-delay: 1.3s; }
        .reveal.visible .enriched-item:nth-child(6) { animation-delay: 1.5s; }

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

        .enriched-icon {
            width: 32px;
            height: 32px;
            background: rgba(230, 167, 86, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .enriched-icon svg {
            width: 16px;
            height: 16px;
            stroke: var(--amber);
            stroke-width: 1.5;
            fill: none;
        }

        .enriched-icon.verified {
            background: rgba(40, 200, 64, 0.1);
        }
        .enriched-icon.verified svg { stroke: #28c840; }

        .enriched-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-muted);
        }

        .enriched-value {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        /* Enrichment badge that floats */
        .enrichment-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, var(--amber), var(--coral));
            color: var(--bg-deep);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(230, 167, 86, 0.4);
            display: flex;
            align-items: center;
            gap: 0.4rem;
            z-index: 10;
        }

        .enrichment-badge svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }

        /* Waterfall indicator */
        .waterfall-demo {
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 16px;
        }

        .waterfall-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .waterfall-header h5 {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        .waterfall-status {
            font-size: 0.75rem;
            color: #28c840;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .waterfall-status::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #28c840;
            border-radius: 50%;
        }

        .waterfall-providers {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .waterfall-provider {
            padding: 0.4rem 0.8rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: 0.75rem;
            color: var(--text-muted);
            transition: all 0.3s ease;
        }

        .waterfall-provider.active {
            border-color: var(--amber);
            color: var(--amber);
            background: rgba(230, 167, 86, 0.1);
        }

        .reveal.visible .waterfall-provider:nth-child(1) { animation: providerPulse 20s ease 0s infinite; }
        .reveal.visible .waterfall-provider:nth-child(2) { animation: providerPulse 20s ease 1.2s infinite; }
        .reveal.visible .waterfall-provider:nth-child(3) { animation: providerPulse 20s ease 2.4s infinite; }
        .reveal.visible .waterfall-provider:nth-child(4) { animation: providerPulse 20s ease 3.6s infinite; }
        .reveal.visible .waterfall-provider:nth-child(5) { animation: providerPulse 20s ease 4.8s infinite; }
        .reveal.visible .waterfall-provider:nth-child(6) { animation: providerPulse 20s ease 6s infinite; }
        .reveal.visible .waterfall-provider:nth-child(7) { animation: providerPulse 20s ease 7.2s infinite; }
        .reveal.visible .waterfall-provider:nth-child(8) { animation: providerPulse 20s ease 8.4s infinite; }
        .reveal.visible .waterfall-provider:nth-child(9) { animation: providerPulse 20s ease 9.6s infinite; }
        .reveal.visible .waterfall-provider:nth-child(10) { animation: providerPulse 20s ease 10.8s infinite; }
        .reveal.visible .waterfall-provider:nth-child(11) { animation: providerPulse 20s ease 12s infinite; }
        .reveal.visible .waterfall-provider:nth-child(12) { animation: providerPulse 20s ease 13.2s infinite; }
        .reveal.visible .waterfall-provider:nth-child(13) { animation: providerPulse 20s ease 14.4s infinite; }

        @keyframes providerPulse {
            0%, 12%, 100% { border-color: var(--border); color: var(--text-muted); background: var(--bg-card); }
            3%, 9% { border-color: var(--amber); color: var(--amber); background: rgba(230, 167, 86, 0.1); }
        }

        /* Sourcing content */
        .sourcing-content h3 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .sourcing-content h3 em {
            font-style: italic;
            color: var(--amber);
        }

        .sourcing-content > p {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .sourcing-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .sourcing-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            transition: all 0.4s ease;
        }

        .sourcing-item:hover {
            border-color: var(--amber);
            transform: translateX(8px);
        }

        .sourcing-item-icon {
            width: 40px;
            height: 40px;
            background: rgba(230, 167, 86, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .sourcing-item-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--amber);
            stroke-width: 1.5;
            fill: none;
        }

        .sourcing-item span {
            font-size: 0.95rem;
            color: var(--text-primary);
        }

        @media (max-width: 968px) {
            .sourcing-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .sourcing-content {
                text-align: center;
            }

            .sourcing-item {
                text-align: left;
            }

            .profile-enriched {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           GUARDRAILS EXPANSION (in safety section)
           ============================================ */
        .guardrails-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 900px;
            margin: 3rem auto 0;
        }

        .guardrail-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.25rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 14px;
            transition: all 0.4s ease;
        }

        .guardrail-item:hover {
            border-color: rgba(230, 167, 86, 0.4);
            transform: translateY(-2px);
        }

        .guardrail-icon {
            width: 36px;
            height: 36px;
            background: rgba(40, 200, 64, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .guardrail-icon svg {
            width: 18px;
            height: 18px;
            stroke: #28c840;
            stroke-width: 1.5;
            fill: none;
        }

        .guardrail-text h5 {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .guardrail-text p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

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

        /* Scroll animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s var(--ease-out-expo);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

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

        ::-webkit-scrollbar-thumb {
            background: var(--bg-elevated);
            border-radius: 5px;
            border: 2px solid var(--bg-deep);
        }

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

        /* ============================================
           COMPREHENSIVE MOBILE STYLES
           ============================================ */
        @media (max-width: 768px) {
            /* Global mobile padding */
            section {
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }

            /* Hero mobile adjustments */
            .hero {
                padding-top: 80px;
                padding-bottom: 40px;
                min-height: auto;
            }

            .hero-slider {
                min-height: 320px;
                padding: 0 0.5rem;
            }

            .slide-title {
                font-size: clamp(1.6rem, 8vw, 2.2rem);
                padding: 0 0.5rem;
            }

            .slide-subtitle {
                font-size: 0.95rem;
                padding: 0 0.5rem;
            }

            .slide-cta {
                flex-direction: column;
                gap: 0.75rem;
                width: 100%;
                padding: 0 1rem;
            }

            .slide-cta .btn {
                width: 100%;
                justify-content: center;
            }

            /* Trust bar mobile */
            .hero-trust {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .trust-item {
                min-width: 80px;
            }

            .trust-value {
                font-size: 1.4rem;
            }

            /* How It Works mobile */
            .how-it-works {
                padding: 3rem 1rem;
            }

            .steps-container {
                flex-direction: column;
                gap: 2rem;
            }

            .step {
                max-width: 100%;
                min-height: auto;
            }

            .step:not(:last-child)::after,
            .step:not(:last-child)::before {
                display: none;
            }

            /* Social Proof mobile */
            .proof-stats {
                flex-direction: column;
                gap: 1.5rem;
                align-items: center;
            }

            .proof-logos {
                flex-wrap: wrap;
                gap: 1rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            /* IP Options / Three Ways mobile */
            .ip-options {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .ip-option {
                min-height: auto;
                padding: 1.5rem;
            }

            .ip-option--featured {
                transform: none;
            }

            .ip-option--featured:hover {
                transform: translateY(-4px);
            }

            /* Explainer container mobile */
            .explainer-container {
                min-height: auto;
            }

            .ip-explainer {
                padding: 1.5rem;
                min-height: auto;
            }

            .flow-diagram {
                flex-direction: column;
                gap: 1rem;
            }

            .flow-arrow {
                transform: rotate(90deg);
                width: 40px;
                height: 30px;
            }

            .flow-node {
                min-width: auto;
            }

            .explainer-steps {
                flex-direction: column;
                gap: 1rem;
            }

            .explainer-boom {
                padding: 1.25rem;
            }

            .explainer-boom p {
                font-size: 0.85rem;
            }

            /* Guardrails mobile */
            .guardrails-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            /* Sequence Builder mobile */
            .builder-showcase {
                flex-direction: column;
                gap: 2rem;
            }

            .builder-content {
                padding: 0;
            }

            .sequence-canvas {
                height: 300px;
                padding: 1rem;
            }

            /* Lead Sourcing mobile */
            .sourcing-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .profile-card-demo {
                padding: 1.5rem;
            }

            .profile-enriched {
                grid-template-columns: 1fr;
            }

            .waterfall-providers {
                gap: 0.4rem;
            }

            .waterfall-provider {
                font-size: 0.65rem;
                padding: 0.3rem 0.6rem;
            }

            /* Features grid mobile */
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .feature-card {
                padding: 1.5rem;
            }

            .feature-card.featured {
                grid-column: span 1;
            }

            /* Multi-channel section mobile */
            .multichannel-visual {
                flex-direction: column;
                gap: 2rem;
            }

            .channel-list {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.75rem;
            }

            .linkedin-center {
                width: 120px;
                height: 120px;
            }

            .linkedin-center svg {
                width: 48px;
                height: 48px;
            }

            /* Integrations flow mobile */
            .integrations {
                padding: 3rem 1rem;
            }

            .flow-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .channel-card {
                flex: 1 1 100%;
                max-width: 100%;
            }

            .linkedin-hub {
                width: 100px;
                height: 100px;
            }

            .linkedin-hub::before,
            .linkedin-hub::after {
                display: none;
            }

            /* Works seamlessly carousel mobile */
            .works-seamlessly {
                padding: 3rem 1rem;
            }

            .logos-container::before,
            .logos-container::after {
                width: 40px;
            }

            .logo-item {
                min-width: 100px;
                padding: 0.75rem;
            }

            .logo-item span {
                font-size: 0.7rem;
            }

            /* CTA section mobile */
            .cta-section {
                padding: 3rem 1rem;
            }

            .cta-title {
                font-size: clamp(1.8rem, 6vw, 2.5rem);
            }

            .cta-buttons {
                flex-direction: column;
                gap: 0.75rem;
            }

            .cta-buttons .btn {
                width: 100%;
                justify-content: center;
            }

            /* Footer mobile */
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }

            /* Section headers mobile */
            .section-title {
                font-size: clamp(1.6rem, 6vw, 2.5rem);
            }

            .section-desc {
                font-size: 0.95rem;
                padding: 0 0.5rem;
            }

            /* Navigation mobile */
            nav {
                padding: 0.75rem 1rem;
            }

            .nav-links {
                display: none;
            }

            .nav-cta {
                gap: 0.5rem;
            }

            .nav-cta .btn {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }

            .theme-toggle {
                width: 36px;
                height: 36px;
            }

            .theme-toggle svg {
                width: 18px;
                height: 18px;
            }

            /* Hide decorative elements on mobile */
            .orb {
                display: none;
            }

            #network-canvas {
                opacity: 0.3;
            }
        }

        /* Extra small screens */
        @media (max-width: 480px) {
            .slide-title {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .step-number {
                width: 60px;
                height: 60px;
            }

            .step-number-inner {
                font-size: 1.25rem;
            }

            .flow-node-icon {
                width: 48px;
                height: 48px;
            }

            .flow-node-label {
                font-size: 0.75rem;
            }

            .flow-node-desc {
                font-size: 0.65rem;
            }

            .ip-option-title {
                font-size: 1.1rem;
            }

            .hero-trust {
                gap: 1rem;
            }

            .trust-value {
                font-size: 1.2rem;
            }

            .trust-label {
                font-size: 0.7rem;
            }

            .theme-toggle {
                width: 32px;
                height: 32px;
            }

            .theme-toggle svg {
                width: 16px;
                height: 16px;
            }

            .nav-cta .btn-ghost {
                display: none;
            }
        }

        @keyframes progressGlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes progressShine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        

        @keyframes barGlow {
            0%, 100% { opacity: 0.6; transform: translate(50%, -50%) scale(1); }
            50% { opacity: 1; transform: translate(50%, -50%) scale(1.2); }
        }

        

        

        

        

        

        

        

        

        

        

        
        

        

        @keyframes freeBadgePulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(230, 167, 86, 0.3); }
            50% { box-shadow: 0 0 20px 4px rgba(230, 167, 86, 0.2); }
        }

        

        

        

        

        /* Value Props */
        

        

        

        /* Mini Toast - appears when scrolling past main section */

        @keyframes numberThrob {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.85; transform: scale(1.02); }
        }

        /* ============================================
           SOCIAL PROOF TOAST NOTIFICATIONS
           ============================================ */
        

        /* When mini-toast is not visible, lower the social proof toasts */
        

        

        

        

        

        

        

        

        @keyframes toastPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(0.8); }
        }

        

        

        [data-theme="light"] 

        @media (max-width: 600px) {
            

            

            
        }

        /* ============================================
           3-COLUMN PRICING REDESIGN
           ============================================ */
        /* Pricing grid */
        .pricing-grid {
            grid-template-columns: repeat(3, 1fr);
            max-width: 1100px;
            gap: 1.25rem;
        }

        
        

        

        

        [data-theme="light"] 

        
        

        

        
        

        

        @keyframes pulseBadge {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.7); }
        }

        

        

        

        
        

        

        /* Emphasized feature */
        .card-features li.emphasized {
            color: var(--amber);
            font-weight: 600;
        }

        .card-features li.emphasized span {
            color: var(--amber);
        }

        .card-features li.muted {
            color: var(--text-muted);
        }

        /* Responsive pricing for tablets */
        @media (max-width: 1100px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 780px;
            }

            
            

            
        }

        @media (max-width: 900px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
            }

            
        }
    
        /* Mobile theme picker fix */
        @media (max-width: 768px) {
            .theme-picker-wrapper {
                position: static;
            }
            .theme-picker {
                position: fixed;
                top: auto;
                bottom: 80px;
                right: 16px;
                left: auto;
                min-width: 150px;
            }
            .theme-picker.open {
                transform: translateY(0) scale(1);
            }
            .nav-cta .btn-ghost {
                display: none;
            }
            nav {
                padding: 0.75rem 1rem;
            }
            .nav-brand img {
                height: 22px;
            }
        }

        /* Prevent horizontal scroll */
        html, body {
            overflow-x: hidden;
        }

        /* Better touch targets */
        @media (max-width: 768px) {
            .mobile-menu a {
                min-height: 44px;
                display: flex;
                align-items: center;
            }
            .btn, button {
                min-height: 44px;
            }
        }

    
        /* Reach logos strip */
        .reach-strip {
            padding: 3rem 2rem 3.5rem;
            border-top: 1px solid var(--border, rgba(248,250,252,0.08));
            border-bottom: 1px solid var(--border, rgba(248,250,252,0.08));
            text-align: center;
            background: rgba(12,15,20,0.3);
        }
        .reach-strip-label {
            font-family: 'Instrument Sans', -apple-system, sans-serif;
            font-size: 0.75rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-muted, rgba(248,250,252,0.4));
            margin-bottom: 1.5rem;
        }
        .reach-strip-label em {
            color: var(--amber, #E6A756);
            font-style: normal;
            font-weight: 600;
        }
        .reach-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2.5rem 3.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        .reach-logos .reach-logo-item {
            font-family: 'Instrument Sans', sans-serif;
            font-weight: 700;
            font-size: 1.35rem;
            letter-spacing: -0.02em;
            color: rgba(248,250,252,0.45);
            transition: color 0.3s ease, transform 0.3s ease;
            white-space: nowrap;
        }
        .reach-logos .reach-logo-item:hover {
            color: rgba(248,250,252,0.85);
            transform: translateY(-2px);
        }
        .reach-strip-foot {
            margin-top: 1.75rem;
            font-size: 0.85rem;
            color: var(--text-muted, rgba(248,250,252,0.4));
            font-style: italic;
        }
        @media (max-width: 768px) {
            .reach-logos { gap: 1.5rem 2.25rem; }
            .reach-logos .reach-logo-item { font-size: 1.05rem; }
        }

        /* Risk-reversal microcopy */
        .hero-cta-microcopy,
        .pricing-microcopy {
            font-size: 0.78rem;
            color: var(--text-muted, rgba(248,250,252,0.5));
            text-align: center;
            margin-top: 0.65rem;
            letter-spacing: 0.02em;
        }
        .pricing-microcopy { margin-top: 0.75rem; }

        /* Homepage FAQ */
        .home-faq {
            padding: 5rem 2rem;
            max-width: 860px;
            margin: 0 auto;
        }
        .home-faq-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .home-faq-header .section-label {
            font-size: 0.75rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--amber, #E6A756);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        .home-faq-header h2 {
            font-family: var(--font-display, 'Newsreader', serif);
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--text-primary, #F8FAFC);
            font-weight: 400;
            letter-spacing: -0.02em;
        }
        .home-faq-header h2 em {
            color: var(--amber, #E6A756);
            font-style: italic;
        }
        .home-faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .home-faq-item {
            background: var(--bg-card-solid, rgba(26,31,43,0.7));
            border: 1px solid var(--border, rgba(248,250,252,0.08));
            border-radius: 14px;
            overflow: hidden;
            transition: border-color 0.2s;
        }
        .home-faq-item[open] {
            border-color: var(--amber, #E6A756);
        }
        .home-faq-item summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 1.5rem;
            cursor: pointer;
            font-weight: 600;
            color: var(--text-primary, #F8FAFC);
            font-size: 1.02rem;
            list-style: none;
        }
        .home-faq-item summary::-webkit-details-marker { display: none; }
        .home-faq-item summary::after {
            content: "+";
            font-size: 1.5rem;
            color: var(--amber, #E6A756);
            font-weight: 400;
            line-height: 1;
            transition: transform 0.2s;
        }
        .home-faq-item[open] summary::after {
            content: "−";
        }
        .home-faq-body {
            padding: 0 1.5rem 1.4rem;
            color: var(--text-secondary, rgba(248,250,252,0.7));
            line-height: 1.65;
            font-size: 0.98rem;
        }
        .home-faq-body a {
            color: var(--amber, #E6A756);
            text-decoration: none;
            border-bottom: 1px dashed var(--amber, #E6A756);
        }

        /* ICP breadth line */
        .hero-icp-line {
            font-size: 0.78rem;
            color: var(--text-muted, rgba(248,250,252,0.42));
            text-align: center;
            margin-top: 0.35rem;
            letter-spacing: 0.01em;
        }
        /* Pricing hint under Pro card */
        .pricing-hint {
            font-size: 0.82rem;
            text-align: center;
            color: var(--text-muted, rgba(248,250,252,0.5));
            margin-top: 0.5rem;
        }
        .pricing-hint a {
            color: var(--amber, #E6A756);
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px dashed var(--amber, #E6A756);
        }
        /* Volume calculator */
        .pricing-calc {
            max-width: 820px;
            margin: 3.5rem auto 1rem;
            padding: 2.5rem 2rem;
            background: var(--bg-card-solid, rgba(26,31,43,0.7));
            border: 1px solid var(--border, rgba(248,250,252,0.08));
            border-radius: 20px;
            text-align: center;
        }
        .pricing-calc-header { margin-bottom: 1.75rem; }
        .pricing-calc-label {
            font-size: 0.7rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--amber, #E6A756);
            font-weight: 600;
            margin-bottom: 0.6rem;
        }
        .pricing-calc-header h3 {
            font-family: var(--font-display, 'Newsreader', serif);
            font-size: 1.6rem;
            color: var(--text-primary, #F8FAFC);
            font-weight: 400;
            letter-spacing: -0.01em;
            margin-bottom: 0.65rem;
        }
        .pricing-calc-sub {
            color: var(--text-secondary, rgba(248,250,252,0.7));
            font-size: 0.95rem;
        }
        .pricing-calc-table {
            max-width: 600px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border, rgba(248,250,252,0.08));
        }
        .calc-row {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1.6fr;
            padding: 0.85rem 1.25rem;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid var(--border, rgba(248,250,252,0.06));
            font-size: 0.95rem;
            color: var(--text-secondary, rgba(248,250,252,0.75));
        }
        .calc-row:last-child { border-bottom: none; }
        .calc-row > span:first-child {
            text-align: left;
            color: var(--text-primary, #F8FAFC);
            font-weight: 500;
        }
        .calc-row > span:nth-child(2) {
            font-weight: 700;
            color: var(--amber, #E6A756);
            font-variant-numeric: tabular-nums;
        }
        .calc-row > span:last-child {
            text-align: right;
            font-size: 0.85rem;
        }
        .calc-head {
            font-size: 0.72rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: rgba(230,167,86,0.06);
            color: var(--text-muted, rgba(248,250,252,0.55)) !important;
        }
        .calc-head > span {
            font-weight: 600 !important;
            color: var(--text-muted, rgba(248,250,252,0.55)) !important;
        }
        .calc-break {
            background: rgba(230,167,86,0.08);
            border-top: 1px solid rgba(230,167,86,0.25) !important;
            border-bottom: 1px solid rgba(230,167,86,0.25) !important;
        }
        .pricing-calc-foot {
            margin-top: 1.25rem;
            font-size: 0.85rem;
            color: var(--text-muted, rgba(248,250,252,0.5));
            font-style: italic;
        }
        @media (max-width: 640px) {
            .calc-row { grid-template-columns: 1fr 0.8fr; font-size: 0.85rem; }
            .calc-row > span:last-child { display: none; }
        }

/* Phase A — Typography & Accessibility Polish */
:root {
    --focus-ring: 2px solid #E6A756;
    --focus-offset: 3px;
    /* Contrast-boosted muted text (was 0.4 → now 0.58 to hit WCAG AA) */
}
html { font-optical-sizing: auto; }
body {
    font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
}
h1, h2, h3,
.slide-title,
.section-title,
.hero-title,
.card-name,
.pricing-title,
.pricing-header h2 {
    font-variation-settings: "opsz" 72;
    letter-spacing: -0.022em;
}
h3, .card-title {
    font-variation-settings: "opsz" 36;
    letter-spacing: -0.012em;
}
.slide-badge span:last-child,
.hero-badge span:last-child,
.section-label,
.reach-strip-label,
.pricing-calc-label,
.featured-label {
    font-variation-settings: "opsz" 14;
    letter-spacing: 0.18em !important;
}
p, li, .card-summary, .card-desc, .slide-subtitle {
    font-variation-settings: "opsz" 14;
}
/* Focus ring (respects keyboard nav) */
*:focus { outline: none; }
*:focus-visible {
    outline: var(--focus-ring);
    outline-offset: var(--focus-offset);
    border-radius: 4px;
}
/* Skip-to-content link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: #E6A756;
    color: #0C0F14;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    transition: top 0.18s;
}
.skip-to-content:focus-visible {
    top: 0;
    outline: none;
}
/* Lift low-contrast muted text to pass WCAG AA on dark backgrounds */
.text-muted, .pricing-calc-foot, .hero-cta-microcopy,
.reach-strip-foot, .hero-icp-line {
    color: rgba(248,250,252,0.58) !important;
}

        /* AI Personalization Demo */
        .ai-demo {
            padding: 4.5rem 1.5rem 5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .ai-demo-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 3rem;
        }
        .ai-demo-header .section-label {
            font-size: 0.75rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--amber, #E6A756);
            font-weight: 600;
            margin-bottom: 0.8rem;
            display: inline-block;
        }
        .ai-demo-header h2 {
            font-family: var(--font-display, 'Newsreader', serif);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            letter-spacing: -0.025em;
            color: var(--text-primary, #F8FAFC);
            margin-bottom: 0.9rem;
            line-height: 1.15;
        }
        .ai-demo-header h2 em {
            color: var(--amber, #E6A756);
            font-style: italic;
        }
        .ai-demo-header p {
            color: var(--text-secondary, rgba(248,250,252,0.68));
            font-size: 1.05rem;
            line-height: 1.55;
        }
        .ai-demo-stage {
            max-width: 1080px;
            margin: 0 auto;
        }
        .ai-demo-panel {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            background: var(--bg-card-solid, rgba(26,31,43,0.7));
            border: 1px solid var(--border, rgba(248,250,252,0.08));
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
        .ai-demo-panel::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--amber, #E6A756), transparent);
            opacity: 0.4;
        }
        .ai-card-label {
            font-size: 0.7rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--text-muted, rgba(248,250,252,0.5));
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .ai-profile {
            padding: 0.25rem;
        }
        .ai-profile-head {
            display: flex;
            gap: 0.9rem;
            align-items: center;
            margin-bottom: 1rem;
        }
        .ai-avatar {
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--amber, #E6A756), var(--coral, #E07B5A));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0C0F14;
            font-weight: 700;
            font-size: 1rem;
        }
        .ai-profile-name {
            font-weight: 700;
            font-size: 1.02rem;
            color: var(--text-primary, #F8FAFC);
            margin-bottom: 0.1rem;
        }
        .ai-profile-role {
            font-size: 0.9rem;
            color: var(--text-secondary, rgba(248,250,252,0.72));
        }
        .ai-profile-headline {
            color: var(--text-secondary, rgba(248,250,252,0.7));
            font-size: 0.92rem;
            line-height: 1.5;
            margin: 0.8rem 0 1.2rem;
            padding: 0.8rem 0.9rem;
            background: rgba(12,15,20,0.3);
            border-left: 2px solid var(--amber, #E6A756);
            border-radius: 6px;
        }
        .ai-profile-post {
            font-size: 0.9rem;
            color: var(--text-secondary, rgba(248,250,252,0.75));
            line-height: 1.55;
        }
        .ai-post-header {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            margin-bottom: 0.55rem;
            font-size: 0.75rem;
            color: var(--text-muted, rgba(248,250,252,0.5));
            letter-spacing: 0.04em;
        }
        .ai-post-header svg {
            width: 13px;
            height: 13px;
        }
        .ai-post-body {
            font-style: italic;
        }
        .ai-opener {
            position: relative;
        }
        .ai-reasoning {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin-bottom: 1rem;
        }
        .ai-reasoning-chip {
            font-size: 0.72rem;
            padding: 0.25rem 0.6rem;
            background: rgba(230,167,86,0.1);
            color: var(--amber, #E6A756);
            border-radius: 6px;
            font-weight: 500;
        }
        .ai-reasoning-chip::before {
            content: "→ ";
            opacity: 0.7;
        }
        .ai-message {
            font-size: 0.98rem;
            color: var(--text-primary, #F8FAFC);
            line-height: 1.6;
            padding: 1.1rem 1.2rem;
            background: rgba(12,15,20,0.4);
            border: 1px solid rgba(230,167,86,0.15);
            border-radius: 10px;
            margin-bottom: 1rem;
            min-height: 140px;
        }
        .ai-message em {
            color: var(--amber-light, #F2C87D);
            font-style: italic;
            font-weight: 500;
        }
        .ai-confidence {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.82rem;
            color: var(--text-secondary, rgba(248,250,252,0.7));
            padding-top: 0.75rem;
            border-top: 1px solid var(--border, rgba(248,250,252,0.06));
        }
        .ai-confidence-bar {
            flex-grow: 1;
            height: 5px;
            background: rgba(248,250,252,0.08);
            border-radius: 99px;
            overflow: hidden;
        }
        .ai-confidence-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--amber, #E6A756), var(--amber-light, #F2C87D));
            border-radius: 99px;
            transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .ai-confidence-value {
            font-variation-settings: 'opsz' 14;
            font-weight: 700;
            color: var(--amber-light, #F2C87D);
            font-variant-numeric: tabular-nums;
        }
        .ai-demo-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1080px;
            margin: 1.5rem auto 0;
            padding: 0 0.5rem;
        }
        .ai-demo-nav {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .ai-demo-nav button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-card-solid, rgba(26,31,43,0.7));
            border: 1px solid var(--border, rgba(248,250,252,0.12));
            color: var(--text-primary, #F8FAFC);
            cursor: pointer;
            transition: all 0.18s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .ai-demo-nav button:hover {
            border-color: var(--amber, #E6A756);
            color: var(--amber, #E6A756);
        }
        .ai-demo-nav svg { width: 16px; height: 16px; }
        .ai-demo-dots {
            display: flex;
            gap: 0.4rem;
            margin: 0 0.5rem;
        }
        .ai-demo-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(248,250,252,0.2);
            cursor: pointer;
            transition: all 0.18s;
        }
        .ai-demo-dot.active {
            background: var(--amber, #E6A756);
            transform: scale(1.3);
        }
        .ai-demo-counter {
            font-size: 0.82rem;
            color: var(--text-muted, rgba(248,250,252,0.55));
            min-width: 55px;
            text-align: center;
            font-variant-numeric: tabular-nums;
        }
        .ai-demo-foot {
            text-align: center;
            margin-top: 1.5rem;
        }
        .ai-demo-disclaimer {
            font-size: 0.8rem;
            color: var(--text-muted, rgba(248,250,252,0.5));
            font-style: italic;
            margin-top: 0.8rem;
        }
        .ai-demo-panel.transitioning {
            opacity: 0.55;
            transition: opacity 0.18s;
        }
        @media (max-width: 760px) {
            .ai-demo-panel { grid-template-columns: 1fr; padding: 1.25rem; gap: 1rem; }
            .ai-demo-panel > div:first-child {
                padding-bottom: 1rem;
                border-bottom: 1px solid var(--border, rgba(248,250,252,0.06));
            }
        }


        /* Animated safety diagram */
        .safety-diagram {
            max-width: 1000px;
            margin: 2.5rem auto 3rem;
            padding: 1.75rem 1.5rem;
            background: var(--bg-card-solid, rgba(26,31,43,0.5));
            border: 1px solid var(--border, rgba(248,250,252,0.08));
            border-radius: 18px;
        }
        .safety-diagram-title {
            text-align: center;
            font-size: 0.78rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--text-muted, rgba(248,250,252,0.55));
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        .safety-paths {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .safety-path {
            display: grid;
            grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
            align-items: center;
            gap: 0;
        }
        .safety-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 72px;
            height: 72px;
            border-radius: 16px;
            background: var(--bg-elevated, #1A1F2B);
            border: 1px solid var(--border, rgba(248,250,252,0.1));
            position: relative;
            z-index: 2;
        }
        .safety-node svg { width: 24px; height: 24px; color: var(--text-primary, #F8FAFC); }
        .safety-node-label {
            font-size: 0.7rem;
            margin-top: 0.35rem;
            color: var(--text-muted, rgba(248,250,252,0.6));
            letter-spacing: 0.04em;
        }
        .safety-path .safety-node:first-child svg { color: var(--amber, #E6A756); }
        .safety-path .safety-node:last-child svg { color: var(--ice, #7DD3FC); }
        .safety-middle {
            width: 86px; height: 86px;
            border-width: 2px;
        }
        .safety-middle.cloud {
            border-color: rgba(230, 167, 86, 0.3);
            background: rgba(230, 167, 86, 0.06);
        }
        .safety-middle.cloud svg { color: var(--amber, #E6A756); width: 30px; height: 30px; }
        .safety-middle.datacenter {
            border-color: rgba(246, 193, 95, 0.28);
            background: rgba(246, 193, 95, 0.06);
        }
        .safety-middle.datacenter svg { color: #FBBF24; width: 30px; height: 30px; }
        .safety-middle.home {
            border-color: rgba(34, 197, 94, 0.4);
            background: rgba(34, 197, 94, 0.08);
            box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.08), 0 8px 24px -6px rgba(34,197,94,0.35);
        }
        .safety-middle.home svg { color: #86EFAC; width: 30px; height: 30px; }
        .safety-wire {
            height: 2px;
            background: linear-gradient(90deg, rgba(248,250,252,0.08), rgba(248,250,252,0.22), rgba(248,250,252,0.08));
            position: relative;
            overflow: hidden;
            min-width: 30px;
        }
        .safety-wire::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--amber, #E6A756);
            transform: translate(-3px, -3px);
            animation: wireFlow 2.5s linear infinite;
            box-shadow: 0 0 8px var(--amber, #E6A756);
        }
        .safety-path-home .safety-wire::after {
            background: #22C55E;
            box-shadow: 0 0 8px #22C55E;
            animation-duration: 2.1s;
        }
        .safety-path-datacenter .safety-wire::after {
            animation-duration: 3.2s;
            opacity: 0.7;
        }
        @keyframes wireFlow {
            0% { left: 0; opacity: 0; }
            8% { opacity: 1; }
            92% { opacity: 1; }
            100% { left: 100%; opacity: 0; }
        }
        .safety-verdict {
            min-width: 150px;
            font-size: 0.82rem;
            margin-left: 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }
        .safety-verdict-label {
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-size: 0.68rem;
        }
        .safety-verdict-text {
            color: var(--text-muted, rgba(248,250,252,0.55));
            font-size: 0.78rem;
        }
        .safety-path-cloud .safety-verdict-label { color: var(--amber, #E6A756); }
        .safety-path-datacenter .safety-verdict-label { color: #FBBF24; }
        .safety-path-home .safety-verdict-label { color: #22C55E; }
        .safety-path-home {
            padding: 0.5rem;
            border-radius: 12px;
            background: rgba(34, 197, 94, 0.04);
            position: relative;
        }
        .safety-winner-badge {
            position: absolute;
            top: -9px;
            left: 1rem;
            font-size: 0.65rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            background: #22C55E;
            color: #0C0F14;
            padding: 0.2rem 0.6rem;
            border-radius: 999px;
            font-weight: 700;
        }
        @media (max-width: 820px) {
            .safety-path {
                grid-template-columns: auto 1fr auto 1fr auto;
                font-size: 0.85rem;
            }
            .safety-verdict {
                grid-column: 1 / -1;
                margin-left: 0;
                margin-top: 0.5rem;
                text-align: center;
                align-items: center;
            }
            .safety-node { width: 52px; height: 52px; }
            .safety-middle { width: 58px; height: 58px; }
            .safety-node svg { width: 20px; height: 20px; }
            .safety-middle svg { width: 24px; height: 24px; }
        }


        /* Pricing toggle */
        .pricing-toggle-wrap {
            display: flex;
            justify-content: center;
            margin: 1.25rem 0 2rem;
        }
        .pricing-toggle {
            display: inline-flex;
            position: relative;
            padding: 0.3rem;
            background: var(--bg-card-solid, rgba(26,31,43,0.7));
            border: 1px solid var(--border, rgba(248,250,252,0.12));
            border-radius: 999px;
        }
        .pricing-toggle-option {
            position: relative;
            padding: 0.58rem 1.5rem;
            background: none;
            border: none;
            color: var(--text-secondary, rgba(248,250,252,0.65));
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 999px;
            transition: color 0.2s;
            font-family: inherit;
            z-index: 2;
            white-space: nowrap;
        }
        .pricing-toggle-option.active {
            color: #0C0F14;
        }
        .pricing-toggle-indicator {
            position: absolute;
            top: 0.3rem;
            left: 0.3rem;
            height: calc(100% - 0.6rem);
            background: var(--amber, #E6A756);
            border-radius: 999px;
            transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), width 0.3s;
            z-index: 1;
        }
        .pricing-toggle-savings {
            display: inline-block;
            margin-left: 0.35rem;
            padding: 0.1rem 0.5rem;
            background: rgba(34, 197, 94, 0.18);
            color: #86EFAC;
            border-radius: 6px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.02em;
        }
        .pricing-toggle-option.active .pricing-toggle-savings {
            background: rgba(12, 15, 20, 0.15);
            color: #0C0F14;
        }
        .price-savings-note {
            display: none;
            margin-top: 0.4rem;
            font-size: 0.75rem;
            color: #86EFAC;
            font-weight: 600;
        }
        body.pricing-annual .price-savings-note { display: block; }
        body.pricing-annual .price-billed {
            font-size: 0.75rem;
            color: var(--text-muted, rgba(248,250,252,0.5));
            margin-top: 0.15rem;
            display: block;
        }
        .price-billed { display: none; }
        .price-amount { transition: opacity 0.18s; }
        .price-amount.flip { opacity: 0.4; }