        :root {
            --bg-deep: #080d14;
            --bg-surface: #0a1220;
            --bg-elevated: #0f1a2a;
            --cyan-primary: #4fb8c4;
            --cyan-glow: #6dd5e1;
            --cyan-dim: #2a7a85;
            --cyan-subtle: rgba(79, 184, 196, 0.08);
            --text-primary: #e8f4f5;
            --text-secondary: #9cb8c0;
            --text-muted: #5a7a87;
            --border-subtle: rgba(79, 184, 196, 0.12);
            --border-glow: rgba(79, 184, 196, 0.35);
            --font-classical: 'Cormorant Garamond', Georgia, serif;
            --font-modern: 'Manrope', system-ui, sans-serif;
            --font-tech: 'JetBrains Mono', monospace;
            
            --aurora-indigo: #1e1b4b;
            --aurora-violet: #7c3aed;
            --aurora-purple: #a855f7;
            --aurora-cyan: #22d3ee;
            --aurora-teal: #14b8a6;
        }

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

        body {
            font-family: var(--font-modern);
            background: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            cursor: none;
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9998;
            opacity: 0.035;
            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");
        }

        /* Scroll Progress */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: linear-gradient(90deg, var(--cyan-dim), var(--cyan-primary), var(--cyan-glow));
            z-index: 10001;
            transition: width 0.1s ease-out;
            box-shadow: 0 0 10px var(--cyan-primary), 0 0 20px var(--cyan-primary);
        }

        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border: 1px solid var(--cyan-primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s ease, opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
        }

        .cursor-dot {
            position: fixed;
            width: 4px;
            height: 4px;
            background: var(--cyan-glow);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            box-shadow: 0 0 10px var(--cyan-glow);
            transform: translate(-50%, -50%);
        }

        .cursor.hovering {
            width: 50px;
            height: 50px;
            background: rgba(79, 184, 196, 0.1);
            border-color: var(--cyan-glow);
        }

        /* Canvas Background */
        #bg-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        /* Gradient Mesh */
        .gradient-mesh {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .gradient-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: blobFloat 20s ease-in-out infinite;
        }

        .gradient-blob:nth-child(1) {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(79, 184, 196, 0.15) 0%, transparent 70%);
            top: -200px;
            left: -200px;
        }

        .gradient-blob:nth-child(2) {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(42, 122, 133, 0.12) 0%, transparent 70%);
            bottom: -150px;
            right: -150px;
            animation-delay: -7s;
            animation-duration: 25s;
        }

        .gradient-blob:nth-child(3) {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(109, 213, 225, 0.08) 0%, transparent 70%);
            top: 50%;
            left: 60%;
            animation-delay: -14s;
            animation-duration: 30s;
        }

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

        /* Aurora Breathing Orbs */
        .aurora-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.55;
            mix-blend-mode: screen;
            pointer-events: none;
            will-change: transform;
        }

        .aurora-orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--aurora-violet) 0%, rgba(124, 58, 237, 0.3) 50%, transparent 70%);
            top: -15%;
            left: -10%;
            animation: auroraFloat1 28s ease-in-out infinite;
        }

        .aurora-orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--aurora-cyan) 0%, rgba(34, 211, 238, 0.3) 50%, transparent 70%);
            top: 20%;
            right: -10%;
            animation: auroraFloat2 32s ease-in-out infinite;
            animation-delay: -8s;
        }

        .aurora-orb-3 {
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, var(--aurora-purple) 0%, rgba(168, 85, 247, 0.3) 50%, transparent 70%);
            bottom: 10%;
            left: 15%;
            animation: auroraFloat3 35s ease-in-out infinite;
            animation-delay: -4s;
        }

        .aurora-orb-4 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, var(--aurora-teal) 0%, rgba(20, 184, 166, 0.3) 50%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: auroraFloat4 30s ease-in-out infinite;
            animation-delay: -12s;
        }

        .aurora-orb-5 {
            width: 480px;
            height: 480px;
            background: radial-gradient(circle, var(--aurora-indigo) 0%, rgba(30, 27, 75, 0.4) 40%, transparent 65%);
            bottom: -10%;
            right: 20%;
            animation: auroraFloat5 26s ease-in-out infinite;
            animation-delay: -16s;
        }

        .aurora-orb-6 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.6) 0%, rgba(168, 85, 247, 0.3) 40%, transparent 65%);
            top: 70%;
            left: -5%;
            animation: auroraFloat6 33s ease-in-out infinite;
            animation-delay: -20s;
        }

        @keyframes auroraFloat1 {
            0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
            25% { transform: translate(60px, 40px) scale(1.08) rotate(3deg); }
            50% { transform: translate(20px, -50px) scale(0.95) rotate(-2deg); }
            75% { transform: translate(-40px, 30px) scale(1.05) rotate(1deg); }
        }

        @keyframes auroraFloat2 {
            0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
            25% { transform: translate(-70px, 50px) scale(1.1) rotate(-4deg); }
            50% { transform: translate(30px, -40px) scale(0.92) rotate(3deg); }
            75% { transform: translate(50px, 60px) scale(1.03) rotate(-1deg); }
        }

        @keyframes auroraFloat3 {
            0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
            25% { transform: translate(40px, -60px) scale(1.06) rotate(2deg); }
            50% { transform: translate(-50px, 30px) scale(0.97) rotate(-3deg); }
            75% { transform: translate(20px, -20px) scale(1.04) rotate(1deg); }
        }

        @keyframes auroraFloat4 {
            0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
            25% { transform: translate(calc(-50% + 30px), calc(-50% - 40px)) scale(1.12) rotate(-2deg); }
            50% { transform: translate(calc(-50% - 40px), calc(-50% + 50px)) scale(0.9) rotate(4deg); }
            75% { transform: translate(calc(-50% + 50px), calc(-50% + 20px)) scale(1.05) rotate(-1deg); }
        }

        @keyframes auroraFloat5 {
            0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
            25% { transform: translate(-30px, -50px) scale(1.08) rotate(3deg); }
            50% { transform: translate(60px, 30px) scale(0.94) rotate(-4deg); }
            75% { transform: translate(-20px, 40px) scale(1.02) rotate(2deg); }
        }

        @keyframes auroraFloat6 {
            0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
            25% { transform: translate(50px, 30px) scale(1.07) rotate(-3deg); }
            50% { transform: translate(-30px, -60px) scale(0.96) rotate(2deg); }
            75% { transform: translate(40px, -20px) scale(1.04) rotate(-1deg); }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to bottom, rgba(8, 13, 20, 0.8) 0%, transparent 100%);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        nav.scrolled {
            padding: 1rem 3rem;
            background: rgba(8, 13, 20, 0.65);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(79, 184, 196, 0.15);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            cursor: none;
            background: none;
            border: none;
        }

        .nav-logo-img {
            height: 50px;
            width: 50px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .nav-logo:hover .nav-logo-img { transform: scale(1.05); }

        .nav-logo-text {
            font-family: var(--font-tech);
            font-size: 1.1rem;
            font-weight: 400;
            letter-spacing: 0.25em;
            color: var(--text-primary);
        }

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

        .nav-link {
            font-family: var(--font-modern);
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
            background: none;
            border: none;
            cursor: none;
            display: inline-block;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--cyan-primary);
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .nav-link:hover,
        .nav-link.active { color: var(--cyan-primary); }
        
        .nav-link:hover::before,
        .nav-link.active::before { width: 100%; }

        /* Navigation Dropdown */
        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 0.5rem;
            min-width: 240px;
            background: rgba(8, 13, 20, 0.95);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 0.75rem 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            pointer-events: none;
        }

        .nav-dropdown:hover .nav-dropdown-menu,
        .nav-dropdown-menu:hover {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .nav-dropdown-item {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--text-secondary);
            text-decoration: none;
            font-family: var(--font-modern);
            font-size: 0.85rem;
            transition: all 0.2s ease;
            cursor: pointer;
            pointer-events: auto;
        }

        .nav-dropdown-item:hover {
            color: var(--cyan-primary);
            background: rgba(79, 184, 196, 0.08);
        }

        .nav-dropdown-divider {
            height: 1px;
            background: var(--border-subtle);
            margin: 0.5rem 0;
        }

        /* Results Section */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .result-card {
            background: rgba(10, 18, 32, 0.55);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(79, 184, 196, 0.15);
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .result-card:hover {
            border-color: rgba(79, 184, 196, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .result-metric {
            font-family: var(--font-tech);
            font-size: 0.75rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--cyan-primary);
            margin-bottom: 0.5rem;
        }

        .result-description {
            font-family: var(--font-modern);
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .results-note {
            font-style: italic;
            color: var(--text-muted);
            margin-top: 2rem;
        }

        /* Early Results Section */
        .early-results-section blockquote {
            border-left: 2px solid var(--cyan-dim);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-family: var(--font-classical);
            font-size: 1.25rem;
            font-style: italic;
            color: var(--text-primary);
            line-height: 1.7;
        }

        .quote-attribution {
            font-family: var(--font-tech);
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            color: var(--text-muted);
        }

        /* Tier taglines for AI Ops */
        .tier-tagline {
            font-family: var(--font-tech);
            font-size: 0.7rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--cyan-primary);
            margin-bottom: 0.5rem;
        }

        .tier-ideal {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-style: italic;
            margin-top: 1rem;
        }

        /* Investment structure for AI Executive */
        .investment-structure {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .investment-block {
            background: rgba(10, 18, 32, 0.55);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(79, 184, 196, 0.15);
            padding: 2rem;
        }

        .investment-label {
            font-family: var(--font-tech);
            font-size: 0.7rem;
            letter-spacing: 0.3em;
            color: var(--cyan-dim);
            margin-bottom: 0.5rem;
        }

        .investment-connector {
            text-align: center;
            font-size: 1.5rem;
            color: var(--cyan-primary);
        }

        .investment-note {
            background: rgba(79, 184, 196, 0.08);
            border-left: 2px solid var(--cyan-dim);
            padding: 1.5rem;
            margin-top: 2rem;
        }

        /* Context cards for FDE */
        .context-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .context-card {
            background: rgba(10, 18, 32, 0.55);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(79, 184, 196, 0.12);
            padding: 1.5rem;
        }

        .context-title {
            font-family: var(--font-classical);
            font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

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

        /* Scenario list for FDE */
        .scenarios-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .scenario {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            padding-left: 1.5rem;
            border-left: 2px solid var(--cyan-dim);
        }

        .scenario-trigger {
            font-family: var(--font-classical);
            font-size: 1.15rem;
            font-style: italic;
            color: var(--text-primary);
        }

        .scenario-response {
            font-size: 0.95rem;
            color: var(--text-secondary);
        }

        /* Case study service links */
        .case-service-link {
            margin-top: 1.5rem;
            font-family: var(--font-tech);
            font-size: 0.8rem;
            letter-spacing: 0.1em;
        }

        .case-service-link a {
            color: var(--cyan-primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .case-service-link a:hover {
            color: var(--cyan-glow);
        }

        /* Metrics grid component */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .metric-card {
            background: rgba(10, 18, 32, 0.55);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(79, 184, 196, 0.15);
            padding: 1.5rem;
            text-align: center;
        }

        .metric-value {
            font-family: var(--font-classical);
            font-size: 2rem;
            color: var(--cyan-primary);
            margin-bottom: 0.25rem;
        }

        .metric-label {
            font-family: var(--font-tech);
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        .metric-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* Week method subtitle */
        .week-method {
            font-family: var(--font-classical);
            font-style: italic;
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        /* Pathway visual */
        .pathway-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .pathway-step {
            background: rgba(10, 18, 32, 0.55);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(79, 184, 196, 0.15);
            padding: 1rem 1.5rem;
            text-align: center;
        }

        .pathway-arrow {
            color: var(--cyan-primary);
            font-size: 1.5rem;
        }

        .step-label {
            font-family: var(--font-tech);
            font-size: 0.65rem;
            letter-spacing: 0.3em;
            color: var(--cyan-dim);
        }

        /* Challenge amplifier */
        .challenge-amplifier {
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 0.5rem;
        }

        /* Timeline grid for AI Executive */
        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .timeline-week {
            background: rgba(10, 18, 32, 0.55);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(79, 184, 196, 0.15);
            padding: 1.5rem;
        }

        .week-number {
            font-family: var(--font-tech);
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--cyan-primary);
            margin-bottom: 0.5rem;
        }

        .week-title {
            font-family: var(--font-classical);
            font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

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

        .nav-cta {
            padding: 0.75rem 1.5rem;
            background: rgba(79, 184, 196, 0.1);
            border: 1px solid rgba(79, 184, 196, 0.3);
            color: var(--cyan-primary);
            font-family: var(--font-modern);
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            cursor: none;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: rgba(79, 184, 196, 0.2);
            border-color: var(--cyan-primary);
        }

        .nav-mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: none;
        }

        /* Page Container */
        .page {
            display: none;
            position: relative;
            z-index: 1;
        }

        .page.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero-banner {
            position: absolute;
            top: 12%;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            min-width: 1600px;
            height: auto;
            opacity: 0.95;
            pointer-events: none;
            z-index: 1;
            will-change: transform;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: 
                linear-gradient(to bottom, 
                    var(--bg-deep) 0%, 
                    rgba(8, 13, 20, 0.4) 8%,
                    transparent 18%,
                    transparent 42%,
                    rgba(8, 13, 20, 0.85) 52%,
                    var(--bg-deep) 60%,
                    var(--bg-deep) 100%
                ),
                linear-gradient(to right,
                    var(--bg-deep) 0%,
                    rgba(8, 13, 20, 0.8) 10%,
                    transparent 25%,
                    transparent 75%,
                    rgba(8, 13, 20, 0.8) 90%,
                    var(--bg-deep) 100%
                );
            pointer-events: none;
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 900px;
            margin-top: 380px;
        }

        .hero h1 {
            font-family: var(--font-classical);
            font-size: clamp(2.8rem, 6vw, 4.5rem);
            font-weight: 500;
            line-height: 1.15;
            margin-bottom: 2.5rem;
            letter-spacing: -0.02em;
        }

        .hero h1 .accent {
            color: var(--cyan-primary);
            font-style: italic;
        }

        .hero h1 .tech-line {
            font-family: var(--font-tech);
            font-weight: 400;
            letter-spacing: 0.02em;
            color: var(--aurora-purple);
        }

        .hero-tagline {
            font-family: var(--font-modern);
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto 3rem;
            font-weight: 300;
            line-height: 1.8;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            animation: fadeInUp 1s ease 1.5s forwards;
            opacity: 0;
        }

        .scroll-indicator span {
            font-family: var(--font-tech);
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .scroll-indicator .chevron {
            animation: scrollBounce 2s ease-in-out infinite;
        }

        .scroll-indicator .chevron svg {
            stroke: var(--cyan-primary);
            stroke-width: 2;
            fill: none;
        }

        @keyframes scrollBounce {
            0%, 100% { transform: translateY(0); opacity: 1; }
            50% { transform: translateY(8px); opacity: 0.5; }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translate(-50%, 20px); }
            to { opacity: 1; transform: translate(-50%, 0); }
        }

        /* Buttons */
        .btn {
            padding: 1rem 2.5rem;
            font-family: var(--font-modern);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            border-radius: 0;
            cursor: none;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            display: inline-block;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover::before { left: 100%; }

        .btn-primary {
            background: var(--cyan-primary);
            color: var(--bg-deep);
            border: 1px solid var(--cyan-primary);
        }

        .btn-primary:hover {
            background: var(--cyan-glow);
            border-color: var(--cyan-glow);
            box-shadow: 0 0 40px rgba(79, 184, 196, 0.4), inset 0 0 20px rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }

        .btn-secondary {
            background: rgba(8, 13, 20, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: var(--text-primary);
            border: 1px solid var(--border-glow);
        }

        .btn-secondary:hover {
            background: rgba(79, 184, 196, 0.12);
            border-color: var(--cyan-primary);
            box-shadow: 0 0 30px rgba(79, 184, 196, 0.2);
            transform: translateY(-3px);
        }

        .btn-text {
            background: none;
            border: none;
            color: var(--cyan-primary);
            padding: 0;
            cursor: none;
            font-family: var(--font-modern);
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }

        .btn-text:hover {
            color: var(--cyan-glow);
        }

        /* Sections */
        section {
            position: relative;
            z-index: 1;
            padding: 6rem 2rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .container-narrow {
            max-width: 900px;
            margin: 0 auto;
        }

        .section-label {
            font-family: var(--font-tech);
            font-size: 0.75rem;
            font-weight: 400;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--cyan-primary);
            margin-bottom: 1.5rem;
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(79, 184, 196, 0.06);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(79, 184, 196, 0.18);
        }

        .section-title {
            font-family: var(--font-classical);
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 500;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

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

        /* Cards */
        .card {
            padding: 2rem;
            background: rgba(10, 18, 32, 0.5);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            transition: all 0.4s ease;
        }

        .card:hover {
            border-color: rgba(79, 184, 196, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .card-highlight {
            background: linear-gradient(135deg, rgba(79, 184, 196, 0.08), transparent);
            border-color: rgba(79, 184, 196, 0.2);
        }

        /* Promo Band */
        .promo-band a {
            color: var(--cyan-primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .promo-band a:hover {
            color: var(--cyan-glow);
            text-decoration: underline;
        }

        /* Grid */
        .grid {
            display: grid;
            gap: 1.5rem;
        }

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

        /* Problem Section */
        .problem-card {
            padding: 1.5rem;
            background: rgba(10, 18, 32, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
        }

        .problem-card .problem {
            color: var(--text-muted);
            font-size: 0.875rem;
            text-decoration: line-through;
            margin-bottom: 0.5rem;
        }

        .problem-card .solution {
            color: var(--cyan-primary);
        }

        /* Trigger Cards */
        .trigger-card {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            background: rgba(10, 18, 32, 0.4);
            border: 1px solid var(--border-subtle);
        }

        .trigger-card .arrow {
            color: var(--cyan-primary);
        }

        /* Week Cards */
        .week-card {
            padding: 1.5rem;
            background: rgba(10, 18, 32, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            transition: all 0.3s ease;
        }

        .week-card:hover {
            border-color: rgba(79, 184, 196, 0.3);
        }

        .week-card .week-label {
            font-family: var(--font-tech);
            color: var(--cyan-primary);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .week-card .week-title {
            color: var(--text-primary);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .week-card .week-output {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        /* Founder Section */
        .founder-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(79, 184, 196, 0.3);
            box-shadow: 0 0 40px rgba(79, 184, 196, 0.2);
        }

        .founder-photo-large {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(79, 184, 196, 0.3);
            box-shadow: 0 0 50px rgba(79, 184, 196, 0.25);
        }

        .founder-teaser {
            padding: 3rem;
            background: rgba(10, 18, 32, 0.5);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(79, 184, 196, 0.2);
        }

        .founder-teaser-inner {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        /* Stoic Pillars */
        .pillar-card {
            padding: 2rem;
            background: rgba(10, 18, 32, 0.5);
            backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            text-align: center;
        }

        .pillar-card h3 {
            font-family: var(--font-classical);
            font-size: 1.5rem;
            color: var(--cyan-primary);
            margin-bottom: 1rem;
        }

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

        /* Differentiator Cards */
        .diff-card {
            padding: 1.5rem;
            background: rgba(10, 18, 32, 0.4);
            border: 1px solid var(--border-subtle);
        }

        .diff-card h3 {
            color: var(--cyan-primary);
            font-family: var(--font-modern);
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

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

        /* Collapsible */
        .collapsible {
            border: 1px solid var(--border-subtle);
            overflow: hidden;
        }

        .collapsible-header {
            width: 100%;
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(10, 18, 32, 0.3);
            border: none;
            color: var(--text-secondary);
            font-family: var(--font-modern);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: none;
            transition: all 0.3s ease;
        }

        .collapsible-header:hover {
            background: rgba(10, 18, 32, 0.5);
            color: var(--text-primary);
        }

        .collapsible-icon {
            color: var(--cyan-primary);
            transition: transform 0.3s ease;
        }

        .collapsible.open .collapsible-icon {
            transform: rotate(180deg);
        }

        .collapsible-content {
            display: none;
            padding: 1.5rem;
            background: rgba(8, 13, 20, 0.5);
        }

        .collapsible.open .collapsible-content {
            display: block;
        }

        /* Trait Table */
        .trait-table {
            width: 100%;
            border-collapse: collapse;
        }

        .trait-table th {
            text-align: left;
            padding: 0.75rem 1rem;
            background: rgba(10, 18, 32, 0.5);
            color: var(--cyan-primary);
            font-family: var(--font-modern);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.05em;
        }

        .trait-table td {
            padding: 0.75rem 1rem;
            border-top: 1px solid var(--border-subtle);
            font-size: 0.875rem;
        }

        .trait-table td:first-child {
            color: var(--text-primary);
            font-weight: 500;
        }

        .trait-table td:last-child {
            color: var(--text-secondary);
        }

        .trait-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: rgba(79, 184, 196, 0.15);
            color: var(--cyan-primary);
            font-family: var(--font-tech);
            font-size: 0.7rem;
            letter-spacing: 0.05em;
        }

        /* Working Style Tags */
        .style-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(10, 18, 32, 0.4);
            border: 1px solid var(--border-subtle);
            margin: 0.25rem;
        }

        .style-tag .style-name {
            color: var(--cyan-primary);
            font-weight: 500;
        }

        .style-tag .style-sep {
            color: var(--text-muted);
        }

        .style-tag .style-desc {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        /* Role Cards */
        .role-card {
            padding: 1.5rem;
            background: rgba(10, 18, 32, 0.4);
            border: 1px solid var(--border-subtle);
            margin-bottom: 1rem;
        }

        .role-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.75rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .role-title {
            color: var(--cyan-primary);
            font-weight: 500;
        }

        .role-company {
            color: var(--text-muted);
        }

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

        .role-description {
            color: var(--text-secondary);
            font-size: 0.875rem;
            line-height: 1.6;
        }

        /* Enterprise List */
        .enterprise-list {
            list-style: none;
        }

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

        .enterprise-list .arrow {
            color: var(--cyan-primary);
            flex-shrink: 0;
        }

        /* Connect Box */
        .connect-box {
            text-align: center;
            padding: 2.5rem;
            background: linear-gradient(90deg, rgba(79, 184, 196, 0.08), transparent, rgba(79, 184, 196, 0.08));
            border: 1px solid rgba(79, 184, 196, 0.2);
        }

        /* Forms */
        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-label {
            display: block;
            color: var(--text-secondary);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 1rem 1.25rem;
            background: rgba(8, 13, 20, 0.6);
            border: 1px solid var(--border-subtle);
            color: var(--text-primary);
            font-family: var(--font-modern);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: rgba(79, 184, 196, 0.5);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

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

        /* Contact Form Box */
        .contact-form-box {
            padding: 2.5rem;
            background: rgba(10, 18, 32, 0.5);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-subtle);
        }

        /* Check List */
        .check-list {
            list-style: none;
        }

        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .check-list .check {
            color: var(--cyan-primary);
            flex-shrink: 0;
        }

        .check-list span {
            color: var(--text-secondary);
        }

        /* Bullet List */
        .bullet-list {
            list-style: none;
        }

        .bullet-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            color: var(--text-muted);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .bullet-list .bullet {
            color: rgba(79, 184, 196, 0.6);
        }

        /* Method Steps */
        .method-step {
            text-align: center;
            padding: 1rem;
        }

        .method-step-number {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(79, 184, 196, 0.1);
            border: 1px solid rgba(79, 184, 196, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.75rem;
            font-family: var(--font-tech);
            color: var(--cyan-primary);
        }

        .method-step-title {
            color: var(--text-primary);
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .method-step-desc {
            color: var(--text-muted);
            font-size: 0.75rem;
        }

        /* Sprint Box */
        .sprint-box {
            padding: 3rem;
            background: linear-gradient(135deg, rgba(79, 184, 196, 0.08), transparent);
            border: 1px solid rgba(79, 184, 196, 0.2);
        }

        .sprint-week {
            padding: 1.25rem;
            background: rgba(10, 18, 32, 0.4);
            border: 1px solid var(--border-subtle);
        }

        .sprint-week .week-label {
            font-family: var(--font-tech);
            color: var(--cyan-primary);
            font-size: 0.85rem;
            margin-bottom: 0.25rem;
        }

        .sprint-week .week-title {
            color: var(--text-primary);
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

        .sprint-week ul {
            list-style: none;
        }

        .sprint-week li {
            color: var(--text-muted);
            font-size: 0.75rem;
            margin-bottom: 0.25rem;
        }

        .sprint-week li::before {
            content: "→ ";
            color: var(--cyan-dim);
        }

        /* Footer */
        footer {
            padding: 3rem 2rem;
            text-align: center;
            background: rgba(8, 13, 20, 0.5);
            backdrop-filter: blur(16px);
            border-top: 1px solid rgba(79, 184, 196, 0.12);
            position: relative;
            z-index: 1;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-logo-img {
            height: 32px;
            width: 32px;
        }

        .footer-tagline {
            color: rgba(79, 184, 196, 0.6);
            font-family: var(--font-classical);
            font-style: italic;
            font-size: 0.9rem;
        }

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

        .footer-link {
            color: var(--text-muted);
            font-size: 0.85rem;
            background: none;
            border: none;
            cursor: none;
            transition: color 0.3s ease;
            text-decoration: none;
            text-align: left;
        }

        .footer-link:hover {
            color: var(--cyan-primary);
        }

        .footer-bottom {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-copyright {
            font-family: var(--font-tech);
            color: var(--text-muted);
            font-size: 0.7rem;
            letter-spacing: 0.1em;
        }

        /* Utilities */
        .text-center { text-align: center; }
        .text-cyan { color: var(--cyan-primary); }
        .text-muted { color: var(--text-secondary); }
        .text-sm { font-size: 0.875rem; }
        .text-lg { font-size: 1.125rem; }
        .text-xl { font-size: 1.25rem; }
        .text-2xl { font-size: 1.5rem; }
        .text-3xl { font-size: 1.875rem; }
        .text-4xl { font-size: 2.25rem; }

        .font-medium { font-weight: 500; }
        .font-serif { font-family: var(--font-classical); }
        .font-mono { font-family: var(--font-tech); }

        .tracking-wider { letter-spacing: 0.15em; }
        .uppercase { text-transform: uppercase; }
        .italic { font-style: italic; }

        .mb-2 { margin-bottom: 0.5rem; }
        .mb-3 { margin-bottom: 0.75rem; }
        .mb-4 { margin-bottom: 1rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }
        .mb-10 { margin-bottom: 2.5rem; }
        .mb-12 { margin-bottom: 3rem; }
        .mb-16 { margin-bottom: 4rem; }

        .mt-4 { margin-top: 1rem; }
        .mt-6 { margin-top: 1.5rem; }
        .mt-8 { margin-top: 2rem; }
        .mt-12 { margin-top: 3rem; }

        .py-8 { padding-top: 2rem; padding-bottom: 2rem; }
        .py-12 { padding-top: 3rem; padding-bottom: 3rem; }
        .pt-32 { padding-top: 8rem; }

        .leading-relaxed { line-height: 1.7; }

        .max-w-xl { max-width: 36rem; }
        .max-w-2xl { max-width: 42rem; }
        .mx-auto { margin-left: auto; margin-right: auto; }

        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .flex-wrap { flex-wrap: wrap; }
        .items-center { align-items: center; }
        .items-start { align-items: flex-start; }
        .justify-center { justify-content: center; }
        .justify-between { justify-content: space-between; }
        .gap-2 { gap: 0.5rem; }
        .gap-3 { gap: 0.75rem; }
        .gap-4 { gap: 1rem; }
        .gap-6 { gap: 1.5rem; }
        .gap-8 { gap: 2rem; }
        .gap-12 { gap: 3rem; }

        /* Responsive */
        @media (max-width: 1024px) {
            .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
            .founder-teaser-inner { flex-direction: column; text-align: center; }
            
            .aurora-orb { filter: blur(100px); opacity: 0.45; }
            .aurora-orb-1 { width: 450px; height: 450px; }
            .aurora-orb-2 { width: 380px; height: 380px; }
            .aurora-orb-3 { width: 420px; height: 420px; }
            .aurora-orb-4 { width: 350px; height: 350px; }
            .aurora-orb-5 { width: 380px; height: 380px; }
            .aurora-orb-6 { width: 320px; height: 320px; }
        }

        @media (max-width: 768px) {
            body { cursor: auto; }
            body::after { opacity: 0; }
            .cursor, .cursor-dot { display: none; }
            
            nav { padding: 1rem 1.5rem; }
            nav.scrolled { padding: 0.75rem 1.5rem; }
            .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(8, 13, 20, 0.95); backdrop-filter: blur(24px); padding: 1.5rem; gap: 1rem; border-bottom: 1px solid var(--border-subtle); }
            .nav-links.open { display: flex; }
            .nav-mobile-toggle { display: block; }
            .nav-logo-text { font-size: 0.9rem; }
            
            .nav-dropdown-menu {
                position: static;
                transform: none;
                margin-top: 0.5rem;
                margin-left: 1rem;
                opacity: 1;
                visibility: visible;
                display: none;
            }
            
            .nav-dropdown.open .nav-dropdown-menu {
                display: block;
            }
            
            .hero { padding: 6rem 1.5rem 3rem; }
            .hero-banner { min-width: 1000px; opacity: 0.7; }
            .hero-content { margin-top: 220px; }
            
            .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
            
            .aurora-orb { filter: blur(80px); opacity: 0.35; }
            .aurora-orb-1 { width: 300px; height: 300px; }
            .aurora-orb-2 { width: 260px; height: 260px; }
            .aurora-orb-3 { width: 280px; height: 280px; }
            .aurora-orb-4 { width: 240px; height: 240px; }
            .aurora-orb-5 { width: 260px; height: 260px; }
            .aurora-orb-6 { width: 220px; height: 220px; }

            .footer-content { text-align: center; }
            .footer-links { flex-wrap: wrap; justify-content: center; }
        }

        @media (min-width: 768px) {
            .footer-content {
                flex-direction: row;
                justify-content: space-between;
            }
        }

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