        :root {
            /* Rich, sophisticated palette */
            --bg-deepest: #0a0f1a;
            --bg-deep: #0d1320;
            --bg-elevated: #141c2b;
            --bg-card: rgba(20, 28, 43, 0.7);
            --bg-card-solid: #1a2332;
            --bg-hover: rgba(30, 40, 60, 0.8);

            /* Accent colors - warmer, more sophisticated */
            --accent-primary: #6366f1;      /* Indigo */
            --accent-secondary: #8b5cf6;    /* Purple */
            --accent-warm: #f59e0b;         /* Amber */
            --accent-success: #10b981;      /* Emerald */
            --accent-rose: #f43f5e;         /* Rose */

            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
            --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
            --gradient-subtle: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);

            /* Text */
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --text-tertiary: #64748b;
            --text-muted: #475569;

            /* Borders */
            --border-subtle: rgba(148, 163, 184, 0.08);
            --border-medium: rgba(148, 163, 184, 0.15);
            --border-accent: rgba(99, 102, 241, 0.3);

            /* Effects */
            --glow-primary: rgba(99, 102, 241, 0.4);
            --glow-secondary: rgba(139, 92, 246, 0.3);
            --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

            /* Typography */
            --font-display: 'Outfit', system-ui, sans-serif;
            --font-body: 'Inter', system-ui, sans-serif;
            --font-mono: 'JetBrains Mono', monospace;

            /* Spacing */
            --space-xs: 0.25rem;
            --space-sm: 0.5rem;
            --space-md: 1rem;
            --space-lg: 1.5rem;
            --space-xl: 2rem;
            --space-2xl: 3rem;
            --space-3xl: 4rem;
            --space-4xl: 6rem;
            --space-5xl: 8rem;

            --max-width: 1200px;
            --header-height: 72px;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-deepest);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* ========================================
           HERO BACKGROUND WITH PHOTOGRAPHY
           ======================================== */
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }

        .hero-bg-image {
            position: absolute;
            inset: 0;
            background-image: url('seattle-aerial.jpg');
            background-size: cover;
            background-position: center 30%;
            filter: grayscale(0.2) contrast(1.2) brightness(0.55) saturate(1.2);
            transform: scale(1.05);
            transition: transform 20s ease-out, opacity 2s ease;
        }

        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg,
                    rgba(10, 15, 26, 0.4) 0%,
                    rgba(10, 15, 26, 0.6) 40%,
                    rgba(10, 15, 26, 0.85) 70%,
                    var(--bg-deepest) 100%
                ),
                radial-gradient(ellipse at 20% 30%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
        }

        /* Animated grain texture for premium feel */
        .hero-bg-grain {
            position: absolute;
            inset: 0;
            opacity: 0.03;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        /* Page background gradient - more vibrant */
        .page-bg {
            position: fixed;
            inset: 0;
            z-index: -1;
            background: var(--bg-deepest);
        }

        /* Animated gradient orbs that follow scroll */
        .bg-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.7;
            pointer-events: none;
            z-index: -1;
            animation: orb-drift 30s ease-in-out infinite;
        }

        .bg-orb-1 {
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.55) 0%, transparent 65%);
            top: -15%;
            left: -15%;
            animation-delay: 0s;
        }

        .bg-orb-2 {
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, transparent 65%);
            top: 20%;
            right: -10%;
            animation-delay: -10s;
        }

        .bg-orb-3 {
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 65%);
            top: 50%;
            left: 5%;
            animation-delay: -20s;
        }

        .bg-orb-4 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 65%);
            top: 90%;
            right: 15%;
            animation-delay: -5s;
        }

        .bg-orb-5 {
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 65%);
            top: 130%;
            left: -5%;
            animation-delay: -15s;
        }

        @keyframes orb-drift {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -20px) scale(1.05); }
            50% { transform: translate(-20px, 30px) scale(0.95); }
            75% { transform: translate(20px, 20px) scale(1.02); }
        }

        /* Grid pattern overlay */
        .bg-grid {
            position: fixed;
            inset: 0;
            z-index: -1;
            background-image:
                linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, black 0%, transparent 70%);
            animation: grid-pulse 8s ease-in-out infinite;
        }

        @keyframes grid-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Floating particles */
        .particles {
            position: fixed;
            inset: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(99, 102, 241, 0.6);
            border-radius: 50%;
            animation: particle-float 20s linear infinite;
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 25s; }
        .particle:nth-child(2) { left: 20%; animation-delay: -5s; animation-duration: 20s; background: rgba(139, 92, 246, 0.6); }
        .particle:nth-child(3) { left: 30%; animation-delay: -10s; animation-duration: 28s; }
        .particle:nth-child(4) { left: 40%; animation-delay: -15s; animation-duration: 22s; background: rgba(168, 85, 247, 0.5); }
        .particle:nth-child(5) { left: 50%; animation-delay: -3s; animation-duration: 26s; }
        .particle:nth-child(6) { left: 60%; animation-delay: -8s; animation-duration: 24s; background: rgba(99, 102, 241, 0.5); }
        .particle:nth-child(7) { left: 70%; animation-delay: -12s; animation-duration: 21s; }
        .particle:nth-child(8) { left: 80%; animation-delay: -18s; animation-duration: 27s; background: rgba(139, 92, 246, 0.5); }
        .particle:nth-child(9) { left: 90%; animation-delay: -7s; animation-duration: 23s; }
        .particle:nth-child(10) { left: 95%; animation-delay: -14s; animation-duration: 29s; background: rgba(168, 85, 247, 0.6); }

        @keyframes particle-float {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 1; transform: translateY(90vh) scale(1); }
            90% { opacity: 1; transform: translateY(10vh) scale(1); }
            100% { transform: translateY(-10vh) scale(0); opacity: 0; }
        }

        /* Animated lines */
        .bg-lines {
            position: fixed;
            inset: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .bg-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
            animation: line-scan 8s linear infinite;
        }

        .bg-line:nth-child(1) { top: 20%; width: 60%; left: 20%; animation-delay: 0s; }
        .bg-line:nth-child(2) { top: 40%; width: 40%; left: 30%; animation-delay: -2s; background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.25), transparent); }
        .bg-line:nth-child(3) { top: 60%; width: 50%; left: 25%; animation-delay: -4s; }
        .bg-line:nth-child(4) { top: 80%; width: 35%; left: 40%; animation-delay: -6s; background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.2), transparent); }

        @keyframes line-scan {
            0%, 100% { opacity: 0; transform: scaleX(0.5); }
            50% { opacity: 1; transform: scaleX(1); }
        }

        /* Glassmorphism card style */
        .glass {
            background: rgba(20, 28, 43, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .glass-strong {
            background: rgba(20, 28, 43, 0.8);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Glowing border effect */
        .glow-border {
            position: relative;
        }

        .glow-border::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.5), rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.5));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .glow-border:hover::before {
            opacity: 1;
        }

        /* Section photography backgrounds */
        .section-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }

        .section-bg-image {
            position: absolute;
            inset: -50px;
            background-size: cover;
            background-position: center;
            filter: grayscale(0.3) brightness(0.2) saturate(1.2);
            opacity: 0.4;
            transition: transform 0.5s ease-out;
        }

        .section-bg-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                var(--bg-deepest) 0%,
                rgba(10, 15, 26, 0.85) 20%,
                rgba(10, 15, 26, 0.8) 80%,
                var(--bg-deepest) 100%
            );
        }

        /* Decorative shapes */
        .deco-circle {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(99, 102, 241, 0.15);
            pointer-events: none;
            animation: rotate-slow 60s linear infinite;
        }

        .deco-circle-1 {
            width: 400px;
            height: 400px;
            top: -100px;
            right: -100px;
        }

        .deco-circle-2 {
            width: 300px;
            height: 300px;
            bottom: -50px;
            left: -50px;
            animation-direction: reverse;
            border-color: rgba(139, 92, 246, 0.1);
        }

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

        /* Animated gradient border */
        @keyframes border-dance {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .animated-border {
            position: relative;
        }

        .animated-border::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 2px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7, #8b5cf6, #6366f1);
            background-size: 300% 100%;
            animation: border-dance 4s linear infinite;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        /* Floating geometric shapes */
        .geo-shape {
            position: fixed;
            pointer-events: none;
            z-index: -1;
        }

        .geo-hexagon {
            width: 150px;
            height: 150px;
            top: 35%;
            right: 5%;
            opacity: 0.06;
            animation: float-spin 45s linear infinite;
        }

        .geo-hexagon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--accent-primary);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }

        .geo-diamond {
            width: 80px;
            height: 80px;
            top: 70%;
            left: 8%;
            opacity: 0.05;
            animation: float-spin 35s linear infinite reverse;
        }

        .geo-diamond::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--accent-secondary);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        }

        .geo-triangle {
            width: 100px;
            height: 100px;
            top: 85%;
            right: 15%;
            opacity: 0.04;
            animation: float-spin 50s linear infinite;
        }

        .geo-triangle::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--accent-warm);
            clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
        }

        @keyframes float-spin {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }

        /* Sparkle effect for cards */
        .sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: white;
            border-radius: 50%;
            animation: sparkle-fade 2s ease-in-out infinite;
            pointer-events: none;
            opacity: 0;
        }

        @keyframes sparkle-fade {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 0.8; transform: scale(1); }
        }

        /* Animated connecting lines between sections */
        .section-connector {
            position: absolute;
            left: 50%;
            bottom: -40px;
            width: 2px;
            height: 80px;
            transform: translateX(-50%);
            background: linear-gradient(180deg, rgba(99, 102, 241, 0.3) 0%, transparent 100%);
            z-index: 10;
        }

        .section-connector::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background: var(--accent-primary);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--glow-primary);
            animation: connector-pulse 2s ease-in-out infinite;
        }

        @keyframes connector-pulse {
            0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
            50% { transform: translateX(-50%) scale(1.5); opacity: 0.5; }
        }

        /* Hover shimmer effect */
        .hover-shimmer {
            position: relative;
            overflow: hidden;
        }

        .hover-shimmer::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .hover-shimmer:hover::after {
            left: 100%;
        }

        /* Enhanced icon animations */
        .icon-bounce {
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .icon-bounce:hover {
            transform: scale(1.15) translateY(-2px);
        }

        /* Gradient text accent */
        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--space-xl);
        }

        /* ========================================
           ANNOUNCEMENT RIBBON
           ======================================== */
        .announcement-ribbon {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
            color: white;
            padding: 0.625rem 1rem;
            font-size: 0.875rem;
            z-index: 1001;
            text-align: center;
        }

        .ribbon-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: nowrap;
        }

        .ribbon-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.2rem 0.6rem;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 100px;
            font-family: var(--font-mono);
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        .ribbon-text {
            color: rgba(255, 255, 255, 0.95);
        }

        .ribbon-text strong {
            color: white;
        }

        .ribbon-cta {
            display: inline-flex;
            align-items: center;
            padding: 0.375rem 0.875rem;
            background: white;
            color: #6366f1;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.8rem;
            text-decoration: none;
            transition: all 0.2s;
        }

        .ribbon-cta:hover {
            background: #f8fafc;
            transform: translateY(-1px);
        }

        .ribbon-close {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.25rem;
            cursor: pointer;
            padding: 0.25rem;
            line-height: 1;
        }

        .ribbon-close:hover {
            color: white;
        }

        /* Adjust header and hero when ribbon is visible */
        body.has-ribbon header {
            top: 52px;
        }

        body.has-ribbon .hero {
            padding-top: calc(var(--header-height) + 52px + var(--space-5xl));
        }

        @media (max-width: 768px) {
            .announcement-ribbon {
                padding: 0.5rem 2.5rem 0.5rem 0.75rem;
            }

            .ribbon-container {
                gap: 0.5rem;
            }

            .ribbon-badge {
                display: none;
            }

            .ribbon-text {
                font-size: 0.75rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            /* Hide subtitle on mobile - show only title */
            .ribbon-text::after {
                content: none;
            }

            .ribbon-cta {
                flex-shrink: 0;
                padding: 0.25rem 0.5rem;
                font-size: 0.7rem;
                white-space: nowrap;
            }

            body.has-ribbon header {
                top: 40px;
            }

            body.has-ribbon .hero {
                padding-top: calc(var(--header-height) + 40px + var(--space-4xl));
            }
        }

        @media (max-width: 480px) {
            .ribbon-text {
                font-size: 0.7rem;
            }

            /* On very narrow screens, hide the subtitle portion */
            .ribbon-subtitle {
                display: none;
            }
        }

        /* ========================================
           HEADER
           ======================================== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--header-height);
            background: rgba(10, 15, 26, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
            z-index: 1000;
            transition: all 0.3s;
        }

        header.scrolled {
            background: rgba(10, 15, 26, 0.95);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

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

        .logo-icon {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
        }

        .logo-text {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--text-primary);
        }

        .logo-tm {
            font-size: 0.2em;
            font-weight: 500;
            opacity: 0.4;
            margin-left: 0.15em;
            position: relative;
            top: -0.9em;
        }

        nav { display: flex; align-items: center; gap: var(--space-xl); }
        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s;
        }
        nav a:hover { color: var(--text-primary); }

        /* ========================================
           BUTTONS
           ======================================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-sm);
            padding: 0.625rem 1.25rem;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 0.875rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
        }

        .btn-primary:hover {
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
            transform: translateY(-1px);
        }

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

        .btn-secondary:hover {
            border-color: var(--accent-primary);
            color: var(--text-primary);
            background: rgba(99, 102, 241, 0.1);
        }

        .btn-ghost {
            background: transparent;
            color: var(--text-secondary);
            padding: 0.5rem 1rem;
        }

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

        .btn-large {
            padding: 0.875rem 1.75rem;
            font-size: 0.95rem;
        }

        /* ========================================
           SVG ICON SYSTEM
           ======================================== */
        .icon {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
            flex-shrink: 0;
        }

        .icon-sm { width: 18px; height: 18px; }
        .icon-lg { width: 32px; height: 32px; }
        .icon-xl { width: 40px; height: 40px; }

        /* ========================================
           TYPOGRAPHY
           ======================================== */
        .label {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent-primary);
        }

        h1, h2, h3, h4 {
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: var(--space-lg); }
        h3 { font-size: 1.25rem; margin-bottom: var(--space-md); }

        /* ========================================
           HERO SECTION
           ======================================== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-4xl);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-4xl);
            align-items: center;
            position: relative;
            z-index: 1;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            padding: 0.375rem 0.875rem;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 100px;
            margin-bottom: var(--space-xl);
        }

        .hero-badge-dot {
            width: 6px;
            height: 6px;
            background: var(--accent-success);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero-badge span {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--text-secondary);
            letter-spacing: 0.02em;
        }

        .hero h1 {
            margin-bottom: var(--space-xl);
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: var(--space-2xl);
            line-height: 1.7;
        }

        .hero-subtitle strong {
            color: var(--text-primary);
            font-weight: 500;
        }

        .hero-ctas {
            display: flex;
            gap: var(--space-md);
            margin-bottom: var(--space-3xl);
            flex-wrap: wrap;
        }

        .hero-metrics {
            display: flex;
            gap: var(--space-3xl);
            padding-top: var(--space-xl);
            border-top: 1px solid var(--border-subtle);
        }

        .metric { display: flex; flex-direction: column; }

        .metric-value {
            font-family: var(--font-mono);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
        }

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

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

        .terminal {
            background: rgba(13, 19, 32, 0.95);
            border: 1px solid var(--border-medium);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-xl), 0 0 60px rgba(99, 102, 241, 0.1);
        }

        .terminal-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: rgba(20, 28, 43, 0.8);
            border-bottom: 1px solid var(--border-subtle);
        }

        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .terminal-dot.red { background: #ff5f57; }
        .terminal-dot.yellow { background: #febc2e; }
        .terminal-dot.green { background: #28c840; }

        .terminal-title {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-left: 8px;
        }

        .terminal-body {
            padding: var(--space-xl);
            font-family: var(--font-mono);
            font-size: 0.8rem;
            line-height: 1.8;
        }

        .terminal-body .comment { color: var(--text-muted); }
        .terminal-body .command { color: var(--accent-success); }
        .terminal-body .output { color: var(--text-secondary); }
        .terminal-body .highlight { color: var(--accent-primary); }
        .terminal-body .warn { color: var(--accent-warm); }

        /* ========================================
           TRUST BAR
           ======================================== */
        .trust-bar {
            padding: var(--space-2xl) 0;
            background: linear-gradient(180deg,
                rgba(20, 28, 43, 0.8) 0%,
                rgba(20, 28, 43, 0.6) 100%
            );
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(99, 102, 241, 0.1);
            border-bottom: 1px solid rgba(99, 102, 241, 0.1);
            position: relative;
        }

        .trust-bar::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
        }

        .trust-inner {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: var(--space-4xl);
            flex-wrap: wrap;
            position: relative;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            font-size: 0.85rem;
            color: var(--text-tertiary);
            text-decoration: none;
            transition: all 0.3s;
            padding: var(--space-sm) var(--space-md);
            border-radius: 8px;
        }

        .trust-item:hover {
            color: var(--text-secondary);
            background: rgba(99, 102, 241, 0.1);
        }

        .trust-item svg {
            width: 20px;
            height: 20px;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .trust-item:hover svg {
            opacity: 1;
            color: var(--accent-primary);
        }

        /* ========================================
           SECTIONS
           ======================================== */
        .section {
            padding: var(--space-5xl) 0;
            position: relative;
            overflow: hidden;
        }

        /* Section-specific accent backgrounds */
        .section::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }

        .section > * {
            position: relative;
            z-index: 1;
        }

        /* Alternating section accents */
        .section:nth-child(odd)::before {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
        }

        .section:nth-child(even)::before {
            background: linear-gradient(225deg, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
        }

        /* Section divider lines with gradient */
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3), transparent);
            margin: 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto var(--space-4xl);
        }

        .section-header .label {
            margin-bottom: var(--space-md);
            display: block;
        }

        .section-desc {
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ========================================
           PROBLEM SECTION
           ======================================== */
        #problem {
            position: relative;
            overflow: hidden;
        }

        .problem-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .problem-bg-image {
            position: absolute;
            inset: -50px;
            background-image: url('seattle-aerial.jpg');
            background-size: cover;
            background-position: center 60%;
            filter: grayscale(0.5) brightness(0.15) saturate(1.4);
            opacity: 0.5;
            animation: subtle-drift 30s ease-in-out infinite alternate;
        }

        @keyframes subtle-drift {
            0% { transform: scale(1.05) translateX(0); }
            100% { transform: scale(1.05) translateX(-20px); }
        }

        .problem-bg-overlay {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 30% 20%, rgba(244, 63, 94, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
                linear-gradient(180deg,
                    var(--bg-deepest) 0%,
                    rgba(10, 15, 26, 0.85) 15%,
                    rgba(10, 15, 26, 0.8) 85%,
                    var(--bg-deepest) 100%
                );
        }

        /* Animated alert/warning pulse for problem section */
        .problem-pulse {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 1px solid rgba(244, 63, 94, 0.2);
            top: 20%;
            right: 10%;
            animation: problem-pulse 4s ease-out infinite;
            pointer-events: none;
        }

        .problem-pulse:nth-child(2) {
            animation-delay: 1.3s;
        }

        .problem-pulse:nth-child(3) {
            animation-delay: 2.6s;
        }

        @keyframes problem-pulse {
            0% { transform: scale(0.5); opacity: 0; }
            20% { opacity: 0.6; }
            100% { transform: scale(2); opacity: 0; }
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
            position: relative;
            z-index: 1;
        }

        .problem-card {
            padding: var(--space-2xl);
            background: rgba(20, 28, 43, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-rose), var(--accent-warm), var(--accent-rose));
            background-size: 200% 100%;
            border-radius: 20px 20px 0 0;
            opacity: 0;
            transition: opacity 0.3s;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .problem-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, rgba(244, 63, 94, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .problem-card:hover {
            border-color: rgba(244, 63, 94, 0.2);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(244, 63, 94, 0.1);
        }

        .problem-card:hover::before { opacity: 1; }
        .problem-card:hover::after { opacity: 1; }

        .problem-icon {
            width: 48px;
            height: 48px;
            background: rgba(244, 63, 94, 0.1);
            border: 1px solid rgba(244, 63, 94, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-lg);
            color: var(--accent-rose);
        }

        .problem-card h3 {
            font-size: 1.1rem;
            margin-bottom: var(--space-sm);
        }

        .problem-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ========================================
           SOLUTION SECTION WITH PHOTOGRAPHY
           ======================================== */
        .solution-section {
            position: relative;
            overflow: hidden;
        }

        .solution-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .solution-bg-image {
            position: absolute;
            inset: 0;
            background-image: url('london-aerial.jpg');
            background-size: cover;
            background-position: center;
            filter: grayscale(0.3) brightness(0.25) saturate(1.3);
            opacity: 0.5;
        }

        .solution-bg-overlay {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                linear-gradient(180deg,
                    var(--bg-deepest) 0%,
                    rgba(10, 15, 26, 0.8) 20%,
                    rgba(10, 15, 26, 0.75) 80%,
                    var(--bg-deepest) 100%
                );
        }

        .solution-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), rgba(139, 92, 246, 0.4), transparent);
            z-index: 1;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-4xl);
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .flow-diagram {
            background: rgba(20, 28, 43, 0.6);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(99, 102, 241, 0.15);
            border-radius: 20px;
            padding: var(--space-2xl);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 60px rgba(99, 102, 241, 0.1);
            position: relative;
            overflow: hidden;
        }

        .flow-diagram::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .flow-step {
            display: flex;
            align-items: center;
            gap: var(--space-lg);
            padding: var(--space-lg);
            background: rgba(10, 15, 26, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 14px;
            margin-bottom: var(--space-md);
            transition: all 0.3s;
            position: relative;
        }

        .flow-step:hover {
            border-color: rgba(99, 102, 241, 0.3);
            background: rgba(99, 102, 241, 0.08);
            transform: translateX(4px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .flow-step:last-child { margin-bottom: 0; }

        .flow-number {
            width: 36px;
            height: 36px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-mono);
            font-size: 0.8rem;
            font-weight: 600;
            color: white;
            flex-shrink: 0;
        }

        .flow-content h4 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .flow-content p {
            font-size: 0.8rem;
            color: var(--text-tertiary);
            margin: 0;
        }

        .solution-features { display: grid; gap: var(--space-lg); }

        .feature-item {
            display: flex;
            gap: var(--space-lg);
            padding: var(--space-lg);
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            transition: all 0.3s;
        }

        .feature-item:hover {
            border-color: var(--border-medium);
            transform: translateX(4px);
        }

        .feature-icon {
            width: 44px;
            height: 44px;
            background: var(--gradient-subtle);
            border: 1px solid var(--border-accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--accent-primary);
        }

        .feature-content h4 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .feature-content p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }

        /* ========================================
           STATS SECTION
           ======================================== */
        #stats {
            position: relative;
            overflow: hidden;
        }

        .stats-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .stats-bg-image {
            position: absolute;
            inset: -30px;
            background-image: url('london-aerial.jpg');
            background-size: cover;
            background-position: center;
            filter: grayscale(0.5) brightness(0.1) saturate(1.5);
            opacity: 0.6;
        }

        .stats-bg-overlay {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 50% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 60%),
                linear-gradient(180deg,
                    var(--bg-deepest) 0%,
                    rgba(10, 15, 26, 0.7) 30%,
                    rgba(10, 15, 26, 0.7) 70%,
                    var(--bg-deepest) 100%
                );
        }

        /* Animated counter backdrop */
        .stats-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
            animation: stats-pulse 4s ease-in-out infinite;
            pointer-events: none;
        }

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

        #stats .container {
            position: relative;
            z-index: 1;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-xl);
        }

        .stat-card {
            text-align: center;
            padding: var(--space-2xl);
            background: rgba(20, 28, 43, 0.5);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .stat-card:hover {
            border-color: rgba(99, 102, 241, 0.3);
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(99, 102, 241, 0.15);
        }

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

        .stat-card:nth-child(1) { --stat-color: var(--accent-rose); }
        .stat-card:nth-child(2) { --stat-color: var(--accent-warm); }
        .stat-card:nth-child(3) { --stat-color: var(--accent-secondary); }
        .stat-card:nth-child(4) { --stat-color: var(--accent-success); }

        .stat-value {
            font-family: var(--font-mono);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--stat-color, var(--accent-primary));
            margin-bottom: var(--space-sm);
            position: relative;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: var(--space-xs);
        }

        .stat-context {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ========================================
           USE CASES
           ======================================== */
        #use-cases {
            position: relative;
            overflow: hidden;
        }

        .usecases-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .usecases-bg-image {
            position: absolute;
            inset: -50px;
            background-image: url('newyork-aerial.jpg');
            background-size: cover;
            background-position: center 30%;
            filter: grayscale(0.4) brightness(0.12) saturate(1.3);
            opacity: 0.5;
            animation: subtle-drift 35s ease-in-out infinite alternate-reverse;
        }

        .usecases-bg-overlay {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 20% 30%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                linear-gradient(180deg,
                    var(--bg-deepest) 0%,
                    rgba(10, 15, 26, 0.85) 15%,
                    rgba(10, 15, 26, 0.8) 85%,
                    var(--bg-deepest) 100%
                );
        }

        /* Floating industry icons decoration */
        .usecases-deco {
            position: absolute;
            width: 120px;
            height: 120px;
            border: 1px dashed rgba(99, 102, 241, 0.15);
            border-radius: 20px;
            pointer-events: none;
            animation: float-rotate 20s ease-in-out infinite;
        }

        .usecases-deco-1 {
            top: 15%;
            left: 5%;
            animation-delay: 0s;
        }

        .usecases-deco-2 {
            bottom: 20%;
            right: 8%;
            animation-delay: -7s;
            width: 80px;
            height: 80px;
        }

        @keyframes float-rotate {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        #use-cases::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
            z-index: 1;
        }

        #use-cases .container {
            position: relative;
            z-index: 1;
        }

        .usecases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
        }

        .usecase-card {
            padding: var(--space-2xl);
            background: rgba(20, 28, 43, 0.5);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .usecase-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--card-accent, rgba(99, 102, 241, 0.1)) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .usecase-card:nth-child(1) { --card-accent: rgba(99, 102, 241, 0.15); }
        .usecase-card:nth-child(2) { --card-accent: rgba(139, 92, 246, 0.15); }
        .usecase-card:nth-child(3) { --card-accent: rgba(168, 85, 247, 0.15); }

        .usecase-card:hover {
            border-color: rgba(99, 102, 241, 0.2);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(99, 102, 241, 0.1);
        }

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

        .usecase-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-lg);
            color: var(--accent-primary);
            position: relative;
            z-index: 1;
        }

        .usecase-card.purple .usecase-icon {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
            border-color: rgba(139, 92, 246, 0.3);
            color: var(--accent-secondary);
        }

        .usecase-card.warm .usecase-icon {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
            border-color: rgba(245, 158, 11, 0.3);
            color: var(--accent-warm);
        }

        .usecase-card h3 {
            font-size: 1.2rem;
            margin-bottom: var(--space-sm);
        }

        .usecase-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: var(--space-lg);
            line-height: 1.6;
        }

        .usecase-tags { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

        .usecase-tag {
            font-family: var(--font-mono);
            font-size: 0.65rem;
            padding: 0.25rem 0.5rem;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 4px;
            color: var(--accent-primary);
        }

        .usecase-card.purple .usecase-tag {
            background: rgba(139, 92, 246, 0.1);
            border-color: rgba(139, 92, 246, 0.2);
            color: var(--accent-secondary);
        }

        .usecase-card.warm .usecase-tag {
            background: rgba(245, 158, 11, 0.1);
            border-color: rgba(245, 158, 11, 0.2);
            color: var(--accent-warm);
        }

        /* ========================================
           PRICING
           ======================================== */
        #pricing {
            position: relative;
            overflow: hidden;
        }

        .pricing-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .pricing-bg-image {
            position: absolute;
            inset: -30px;
            background-image: url('seattle-aerial.jpg');
            background-size: cover;
            background-position: center 80%;
            filter: grayscale(0.6) brightness(0.08) saturate(1.2);
            opacity: 0.5;
            animation: subtle-drift 40s ease-in-out infinite alternate;
        }

        .pricing-bg-overlay {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 50% 30%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
                linear-gradient(180deg,
                    var(--bg-deepest) 0%,
                    rgba(10, 15, 26, 0.85) 20%,
                    rgba(10, 15, 26, 0.8) 80%,
                    var(--bg-deepest) 100%
                );
        }

        /* Animated pricing tier indicators */
        .pricing-beam {
            position: absolute;
            width: 2px;
            height: 200px;
            background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.4), transparent);
            animation: beam-rise 5s ease-in-out infinite;
            pointer-events: none;
        }

        .pricing-beam:nth-child(1) { left: 25%; animation-delay: 0s; }
        .pricing-beam:nth-child(2) { left: 50%; animation-delay: -1.5s; }
        .pricing-beam:nth-child(3) { left: 75%; animation-delay: -3s; }

        @keyframes beam-rise {
            0% { transform: translateY(100%); opacity: 0; }
            30% { opacity: 1; }
            70% { opacity: 1; }
            100% { transform: translateY(-100%); opacity: 0; }
        }

        #pricing::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
            z-index: 1;
        }

        #pricing .container {
            position: relative;
            z-index: 1;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
            align-items: start;
        }

        .pricing-card {
            padding: var(--space-2xl);
            background: rgba(20, 28, 43, 0.5);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: rgba(139, 92, 246, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(139, 92, 246, 0.1);
        }

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

        .pricing-card.featured {
            border-color: rgba(99, 102, 241, 0.4);
            box-shadow: 0 0 60px rgba(99, 102, 241, 0.2), 0 20px 40px rgba(0, 0, 0, 0.3);
            background: rgba(30, 38, 60, 0.6);
        }

        .pricing-card.featured::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            padding: 0.25rem 0.75rem;
            background: var(--gradient-primary);
            color: white;
            font-family: var(--font-mono);
            font-size: 0.65rem;
            font-weight: 600;
            border-radius: 100px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .pricing-tier {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--accent-primary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: var(--space-sm);
        }

        .pricing-name {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: var(--space-md);
        }

        .pricing-price {
            display: flex;
            align-items: baseline;
            gap: var(--space-xs);
            margin-bottom: var(--space-lg);
        }

        .price-amount {
            font-family: var(--font-mono);
            font-size: 2.25rem;
            font-weight: 600;
        }

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

        .pricing-desc {
            color: var(--text-primary);
            font-size: 0.9rem;
            margin-bottom: var(--space-xl);
            padding-bottom: var(--space-xl);
            border-bottom: 1px solid var(--border-subtle);
        }

        .pricing-features { list-style: none; margin-bottom: var(--space-xl); }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: var(--space-sm);
            margin-bottom: var(--space-md);
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .pricing-features li svg {
            width: 18px;
            height: 18px;
            color: var(--accent-success);
            flex-shrink: 0;
            margin-top: 2px;
        }

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

        /* ========================================
           PRESS SECTION
           ======================================== */
        .press-section {
            padding: var(--space-4xl) 0;
            position: relative;
        }

        .press-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
        }

        .press-section .section-header {
            margin-bottom: var(--space-2xl);
        }

        .press-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-4xl);
            flex-wrap: wrap;
        }

        .press-logo {
            text-decoration: none;
            padding: var(--space-xl) var(--space-3xl);
            background: rgba(30, 40, 60, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(99, 102, 241, 0.15);
            border-radius: 16px;
            transition: all 0.3s;
        }

        .press-logo:hover {
            background: rgba(40, 50, 75, 0.7);
            border-color: rgba(99, 102, 241, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(99, 102, 241, 0.1);
        }

        .press-name {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            transition: color 0.3s;
        }

        .press-logo:hover .press-name {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* ========================================
           CTA SECTION
           ======================================== */
        .cta-section {
            padding: var(--space-5xl) 0;
            position: relative;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .cta-bg-image {
            position: absolute;
            inset: 0;
            background-image: url('newyork-aerial.jpg');
            background-size: cover;
            background-position: center 40%;
            filter: grayscale(0.3) brightness(0.2) saturate(1.2);
            opacity: 0.7;
        }

        .cta-bg-overlay {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 30% 30%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                linear-gradient(180deg,
                    var(--bg-deepest) 0%,
                    rgba(10, 15, 26, 0.6) 30%,
                    rgba(10, 15, 26, 0.6) 70%,
                    var(--bg-deepest) 100%
                );
        }

        .cta-box {
            max-width: 640px;
            margin: 0 auto;
            text-align: center;
            padding: var(--space-3xl);
            background: rgba(20, 28, 43, 0.7);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 24px;
            position: relative;
            z-index: 1;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(99, 102, 241, 0.15);
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }

        .cta-box::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-box h2 {
            font-size: 1.75rem;
            margin-bottom: var(--space-md);
        }

        .cta-box > p {
            color: var(--text-secondary);
            font-size: 1rem;
            margin-bottom: var(--space-xl);
        }

        .cta-form {
            display: flex;
            gap: var(--space-md);
            max-width: 440px;
            margin: 0 auto var(--space-lg);
        }

        .cta-form input {
            flex: 1;
            padding: 0.875rem 1.25rem;
            background: rgba(10, 15, 26, 0.8);
            border: 1px solid var(--border-medium);
            border-radius: 10px;
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 0.95rem;
            transition: all 0.2s;
        }

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

        .cta-form input:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
        }

        .cta-note {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ========================================
           FOOTER
           ======================================== */
        footer {
            padding: var(--space-4xl) 0 var(--space-2xl);
            border-top: 1px solid var(--border-subtle);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: var(--space-3xl);
            margin-bottom: var(--space-3xl);
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-top: var(--space-lg);
            max-width: 280px;
            line-height: 1.6;
        }

        .footer-col h4 {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: var(--space-lg);
        }

        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: var(--space-sm); }

        .footer-col a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

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

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: var(--space-xl);
            border-top: 1px solid var(--border-subtle);
        }

        .footer-legal { display: flex; gap: var(--space-xl); }
        .footer-legal a { color: var(--text-muted); text-decoration: none; font-size: 0.8rem; }
        .footer-copyright { color: var(--text-muted); font-size: 0.8rem; }

        /* ========================================
           MOBILE MENU
           ======================================== */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            padding: var(--space-sm);
        }

        /* ========================================
           RESPONSIVE
           ======================================== */
        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; }
            .hero-visual { display: none; }
            .hero-content { max-width: 100%; }
            .solution-grid { grid-template-columns: 1fr; }
            .solution-visual { order: 2; }
            .problem-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .usecases-grid { grid-template-columns: 1fr; }
            .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
            nav { display: none; }
            nav.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 15, 26, 0.98);
                backdrop-filter: blur(20px);
                padding: var(--space-xl);
                border-bottom: 1px solid var(--border-subtle);
                gap: var(--space-md);
            }
            .trust-inner { gap: var(--space-xl); }
        }

        @media (max-width: 640px) {
            .container { padding: 0 var(--space-md); }
            .hero {
                padding-top: calc(var(--header-height) + var(--space-2xl));
                min-height: auto;
            }
            .hero-ctas { flex-direction: column; }
            .hero-metrics { flex-direction: column; gap: var(--space-lg); }
            .stats-grid { grid-template-columns: 1fr; }
            .cta-form { flex-direction: column; }
            .trust-inner { flex-direction: column; gap: var(--space-md); }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom {
                flex-direction: column;
                gap: var(--space-md);
                text-align: center;
            }
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
