        /* ========== CSS VARIABLES ========== */
        :root {
            /* Colors - Purple Theme */
            --bg-carbon: #0a0a0a;
            --bg-carbon-light: #121212;
            --bg-card: #161616;
            --bg-elevated: #1e1e1e;
            --text-white: #ededed;
            --text-gray: #a1a1aa;
            --text-muted: #71717a;
            --accent-primary: #a855f7;
            --accent-secondary: #c084fc;
            --accent-glow: rgba(168, 85, 247, 0.3);
            --accent-soft: rgba(168, 85, 247, 0.15);
            --accent-red: #ef4444;
            --border: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(255, 255, 255, 0.15);

            /* Typography */
            --font-display: 'Space Grotesk', sans-serif;
            --font-body: 'Manrope', sans-serif;

            /* Spacing */
            --container: 1200px;
        }

        /* ========== RESET & BASE ========== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            /* Enable scroll snapping on the document */
            scroll-snap-type: y proximity;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-carbon);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
            width: 100%;
            cursor: none;
        }

        @media (max-width: 768px) {
            html {
                scroll-snap-type: none;
            }
        }

        /* ========== UNIFIED PAGE BACKGROUND ========== */
        .page-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -10;
            background: var(--bg-carbon);
            pointer-events: none;
        }

        /* Dot pattern overlay */
        .page-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(168, 85, 247, 0.15) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.4;
        }

        /* ========== PARALLAX ORB LAYERS ========== */
        .bg-orbs-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: -5;
        }

        .bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            will-change: transform;
            transition: transform 0.1s ease-out;
        }

        /* Far layer - slowest parallax */
        .bg-orb.layer-far {
            filter: blur(100px);
            opacity: 0.25;
        }

        /* Mid layer - medium parallax */
        .bg-orb.layer-mid {
            filter: blur(80px);
            opacity: 0.35;
        }

        /* Near layer - fastest parallax */
        .bg-orb.layer-near {
            filter: blur(60px);
            opacity: 0.4;
        }

        /* Individual orb positions and sizes */
        .bg-orb-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, transparent 70%);
            top: -100px;
            left: 10%;
        }

        .bg-orb-2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, transparent 70%);
            top: 30%;
            right: -50px;
        }

        .bg-orb-3 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
            bottom: 20%;
            left: -100px;
        }

        .bg-orb-4 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(192, 132, 252, 0.5) 0%, transparent 70%);
            top: 60%;
            right: 20%;
        }

        .bg-orb-5 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, transparent 70%);
            bottom: -50px;
            right: 30%;
        }

        .bg-orb-6 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.5) 0%, transparent 70%);
            top: 15%;
            left: 40%;
        }

        @media (max-width: 768px) {
            .bg-orb {
                filter: blur(40px);
                opacity: 0.15;
            }
            .bg-orb-1, .bg-orb-3, .bg-orb-5 {
                display: none;
            }
        }

        /* ========== PROGRESS BAR ========== */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: var(--accent-primary);
            width: 0%;
            z-index: 10001;
            transition: width 0.1s linear;
        }

        /* ========== STICKY NAVIGATION ========== */
        .sticky-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid transparent;
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .sticky-nav.visible {
            transform: translateY(0);
            opacity: 1;
            border-bottom-color: var(--border);
        }

        .nav-container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .nav-logo-icon {
            width: 32px;
            height: 32px;
        }

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

        .nav-logo-text {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-white);
            letter-spacing: 0.05em;
        }

        .nav-logo-text span {
            color: var(--accent-primary);
        }

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

        .nav-link {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .nav-link:hover {
            color: var(--text-white);
        }

        .nav-cta {
            padding: 10px 20px;
            background: var(--accent-primary);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.25s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px var(--accent-glow);
        }

        /* Mobile menu */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .nav-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text-white);
            transition: all 0.3s ease;
        }

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

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

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

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 24px;
                gap: 20px;
                transform: translateY(-20px);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .nav-links.open {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-link {
                font-size: 16px;
            }

            .nav-cta {
                width: 100%;
                text-align: center;
                padding: 14px 24px;
            }
        }

        /* ========== FULL VIEWPORT SECTIONS WITH SCROLL SNAP ========== */
        .section-full {
            min-height: 100vh;
            min-height: 100svh; /* Better mobile support */
            scroll-snap-align: start;
            scroll-snap-stop: normal;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 40px;
            padding-bottom: 40px;
        }

        .section-full > .container {
            width: 100%;
        }

        /* Override regular section padding when full viewport */
        .section.section-full {
            padding: 40px 0;
        }

        /* Sticky content within sections */
        .section-sticky-content {
            position: sticky;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Light scroll snap - proximity based */
        .section-snap {
            scroll-snap-align: start;
            scroll-snap-stop: normal;
        }

        @media (max-width: 768px) {
            .section-full {
                min-height: auto;
                scroll-snap-align: none;
            }
        }

        /* ========== CUSTOM CURSOR (Purple Dot) ========== */
        .cursor-dot {
            position: fixed;
            width: 12px;
            height: 12px;
            background: var(--accent-primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            transform: translate(-50%, -50%);
            transition: transform 0.15s ease, box-shadow 0.2s ease;
            box-shadow: 0 0 15px var(--accent-primary), 0 0 30px rgba(168, 85, 247, 0.4);
        }

        .cursor-dot.hover {
            transform: translate(-50%, -50%) scale(2);
            box-shadow: 0 0 20px var(--accent-primary), 0 0 40px rgba(168, 85, 247, 0.5);
        }

        .cursor-dot.clicking {
            transform: translate(-50%, -50%) scale(0.8);
        }

        @media (max-width: 768px) {
            body {
                cursor: auto;
            }

            .cursor-dot {
                display: none;
            }
        }

        /* ========== CINEMATIC REVEAL SCROLL ANIMATIONS ========== */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(60px) scale(0.95);
            filter: blur(8px);
            transition:
                opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        /* Staggered delays for cinematic effect */
        .delay-1 {
            transition-delay: 0.15s;
        }

        .delay-2 {
            transition-delay: 0.3s;
        }

        .delay-3 {
            transition-delay: 0.45s;
        }

        .delay-4 {
            transition-delay: 0.6s;
        }

        .delay-5 {
            transition-delay: 0.75s;
        }

        /* Slide from left/right variants */
        .animate-slide-left {
            opacity: 0;
            transform: translateX(-80px) scale(0.95);
            filter: blur(6px);
            transition:
                opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .animate-slide-right {
            opacity: 0;
            transform: translateX(80px) scale(0.95);
            filter: blur(6px);
            transition:
                opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .animate-slide-left.visible,
        .animate-slide-right.visible {
            opacity: 1;
            transform: translateX(0) scale(1);
            filter: blur(0);
        }

        /* Scale up from center */
        .animate-scale-up {
            opacity: 0;
            transform: scale(0.8);
            filter: blur(10px);
            transition:
                opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .animate-scale-up.visible {
            opacity: 1;
            transform: scale(1);
            filter: blur(0);
        }

        /* ========== UTILITIES ========== */
        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .accent {
            color: var(--accent-primary);
        }

        .section {
            padding: 100px 0;
        }

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

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .section-sub {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ========== TOOLTIPS (properly sized) ========== */
        .tooltip {
            position: relative;
            border-bottom: 1px dotted var(--accent-primary);
            cursor: help;
        }

        .tooltip::after {
            content: attr(data-tip);
            position: absolute;
            bottom: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%);
            background: var(--bg-carbon);
            color: var(--text-white);
            padding: 14px 18px;
            border-radius: 12px;
            font-size: 14px;
            line-height: 1.5;
            white-space: normal;
            width: 320px;
            text-align: center;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--accent-primary);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, transform 0.25s ease;
            z-index: 1000;
            pointer-events: none;
        }

        /* Arrow for tooltip */
        .tooltip::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 8px solid transparent;
            border-top-color: var(--accent-primary);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease;
            z-index: 1001;
        }

        .tooltip:hover::after,
        .tooltip:hover::before {
            opacity: 1;
            visibility: visible;
        }

        .tooltip:hover::after {
            transform: translateX(-50%) translateY(-4px);
        }

        /* Mobile tooltips */
        @media (max-width: 600px) {
            .tooltip::after {
                width: 260px;
                font-size: 13px;
                padding: 12px 14px;
                left: 0;
                transform: translateX(-20%);
            }

            .tooltip:hover::after {
                transform: translateX(-20%) translateY(-4px);
            }

            .tooltip::before {
                left: 20%;
            }
        }

        /* ========== SUBTLE GRADIENT OVERLAY (replaced TV static) ========== */
        .noise-overlay {
            display: none;
        }

        /* ========== SPLASH SCREEN ========== */
        .splash-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            height: 100svh;
            background: var(--bg-carbon);
            z-index: 50;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            /* Allow scrolling through on mobile */
            pointer-events: none;
        }

        .splash-screen.active {
            pointer-events: auto;
        }

        .splash-content {
            display: flex;
            align-items: center;
            gap: 32px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .splash-logo-icon {
            width: 140px;
            height: 140px;
            filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.6)) drop-shadow(0 0 50px rgba(168, 85, 247, 0.3));
        }

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

        .splash-logo-text {
            font-family: var(--font-display);
            font-size: clamp(68px, 15vw, 120px);
            font-weight: 700;
            line-height: 1;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .splash-logo-text .gate {
            color: var(--text-white);
        }

        .splash-logo-text .keeper {
            color: var(--accent-primary);
        }

        @media (max-width: 600px) {
            .splash-content {
                flex-direction: column;
                gap: 20px;
            }

            .splash-logo-icon {
                width: 100px;
                height: 100px;
            }

            .splash-logo-text {
                font-size: clamp(40px, 13vw, 68px);
            }
        }

        .scroll-prompt {
            position: absolute;
            bottom: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            opacity: 0.6;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(8px); }
        }

        .scroll-text {
            font-size: 11px;
            letter-spacing: 0.15em;
            color: var(--text-gray);
            text-transform: uppercase;
        }

        .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--accent-primary), transparent);
        }

        /* ========== ANIMATION STAGE ========== */
        .animation-stage {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10;
            pointer-events: none;
        }

        canvas {
            width: 100%;
            height: 100%;
        }

        /* Splash gradient orbs overlay */
        .splash-orbs {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 5;
        }

        .splash-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.4;
            animation: splashOrbFloat 12s infinite ease-in-out;
        }

        .splash-orb:nth-child(1) {
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .splash-orb:nth-child(2) {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(200,200,200,0.3) 0%, transparent 70%);
            top: 20%;
            right: 10%;
            animation-delay: 2s;
        }

        .splash-orb:nth-child(3) {
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(168,85,247,0.3) 0%, transparent 70%);
            bottom: 30%;
            left: 15%;
            animation-delay: 4s;
        }

        .splash-orb:nth-child(4) {
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            top: 40%;
            right: 5%;
            animation-delay: 1s;
        }

        .splash-orb:nth-child(5) {
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(168,85,247,0.4) 0%, transparent 70%);
            bottom: 20%;
            right: 20%;
            animation-delay: 3s;
        }

        .splash-orb:nth-child(6) {
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(200,200,200,0.25) 0%, transparent 70%);
            top: 60%;
            left: 8%;
            animation-delay: 5s;
        }

        @keyframes splashOrbFloat {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(30px, -20px) scale(1.1);
            }
            50% {
                transform: translate(calc(50vw - 100%), calc(50vh - 100%)) scale(0.8);
            }
            75% {
                transform: translate(-20px, 30px) scale(0.9);
            }
        }

        /* ========== CONTENT LAYOUT ========== */
        .content-wrapper {
            position: relative;
            z-index: 20;
        }

        .scroll-spacer {
            height: 150vh;
        }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(40px, 6vw, 80px);
            line-height: 1.1;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .hero-sub {
            font-size: clamp(18px, 2vw, 24px);
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto 50px;
        }

        .hero-cta-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ========== BUTTONS ========== */
        .btn {
            padding: 16px 32px;
            border: 1px solid transparent;
            border-radius: 10px;
            font-family: var(--font-body);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: none;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary {
            background: var(--accent-primary);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px var(--accent-glow);
        }

        .btn-secondary {
            border-color: var(--text-gray);
            color: var(--text-white);
            background: transparent;
        }

        .btn-secondary:hover {
            border-color: var(--text-white);
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
        }

        /* ========== VSL SECTION ========== */
        .vsl-section {
            background: transparent;
        }

        .vsl-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .vsl-placeholder {
            aspect-ratio: 16/9;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            color: var(--text-gray);
            font-family: var(--font-display);
            letter-spacing: 0.1em;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: none;
        }

        .vsl-placeholder:hover {
            border-color: var(--accent-primary);
            transform: scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .play-button {
            width: 72px;
            height: 72px;
            background: var(--accent-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px var(--accent-glow);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 20px solid white;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }

        .vsl-placeholder:hover .play-button {
            transform: scale(1.15);
        }

        /* ========== SPLIT REALITY ========== */
        .split-reality {
            background: transparent;
        }

        .split-grid {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        @media (max-width: 700px) {
            .split-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        .split-card {
            padding: 32px;
            border-radius: 20px;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        /* Cursor-tracking tilt handled by JavaScript */

        .noise-card {
            background: rgba(22, 22, 22, 0.8);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .noise-card:hover {
            border-color: var(--accent-red);
            box-shadow: 0 20px 60px rgba(239, 68, 68, 0.15), 0 0 30px rgba(239, 68, 68, 0.1);
        }

        .signal-card {
            background: rgba(168, 85, 247, 0.1);
            border-color: var(--accent-primary);
            box-shadow: 0 10px 40px rgba(168, 85, 247, 0.1);
        }

        .signal-card:hover {
            box-shadow: 0 20px 60px rgba(168, 85, 247, 0.25), 0 0 30px rgba(168, 85, 247, 0.15);
        }

        .split-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .signal-card .split-label {
            color: var(--accent-primary);
        }

        .card-title {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .noise-card .card-title {
            color: var(--accent-red);
        }

        .signal-card .card-title {
            color: var(--accent-primary);
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: var(--text-gray);
            border-bottom: 1px solid var(--border);
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.5s ease;
        }

        .split-card.in-view .feature-list li {
            opacity: 1;
            transform: translateX(0);
        }

        .split-card.in-view .feature-list li:nth-child(1) { transition-delay: 0.1s; }
        .split-card.in-view .feature-list li:nth-child(2) { transition-delay: 0.2s; }
        .split-card.in-view .feature-list li:nth-child(3) { transition-delay: 0.3s; }
        .split-card.in-view .feature-list li:nth-child(4) { transition-delay: 0.4s; }
        .split-card.in-view .feature-list li:nth-child(5) { transition-delay: 0.5s; }
        .split-card.in-view .feature-list li:nth-child(6) { transition-delay: 0.6s; }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list.good li {
            color: var(--text-white);
        }

        .split-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 12px;
        }

        .noise-card .split-icon {
            background: rgba(239, 68, 68, 0.15);
            color: var(--accent-red);
        }

        .signal-card .split-icon {
            background: var(--accent-soft);
            color: var(--accent-primary);
        }

        /* ========== FOUNDER SECTION ========== */
        .founder-section {
            background: transparent;
        }

        .founder-card {
            max-width: 800px;
            margin: 0 auto;
            padding: 48px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        /* Background photo placeholder - uncomment and add image when ready */
        .founder-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(22, 22, 22, 0.8) 100%);
            /* Replace with: background: url('founder-photo.jpg') center/cover, ... */
            z-index: 0;
        }

        .founder-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-family: Georgia, serif;
            font-size: 150px;
            color: var(--accent-primary);
            opacity: 0.15;
            line-height: 1;
            z-index: 1;
            transition: transform 0.3s ease-out;
            will-change: transform;
        }

        .founder-card .parallax-quote {
            position: absolute;
            bottom: -20px;
            right: 30px;
            font-family: Georgia, serif;
            font-size: 150px;
            color: var(--accent-primary);
            opacity: 0.1;
            line-height: 1;
            z-index: 1;
            transform: rotate(180deg);
            transition: transform 0.3s ease-out;
            will-change: transform;
        }

        .founder-title {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .founder-content {
            position: relative;
            z-index: 2;
        }

        .founder-content p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-gray);
            margin-bottom: 20px;
        }

        .founder-content strong {
            color: var(--accent-primary);
        }

        .founder-sig {
            font-family: var(--font-display);
            font-size: 16px;
            color: var(--accent-secondary);
            margin-top: 30px;
        }

        /* ========== HOW IT WORKS (with integrated stats) ========== */
        .how-it-works {
            background: transparent;
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            align-items: center;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .how-it-works-layout {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .how-it-works-main {
            flex: 1;
        }

        .how-it-works-stats {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 48px;
            margin-top: 48px;
        }

        @media (max-width: 768px) {
            .how-it-works-stats {
                flex-wrap: wrap;
                gap: 24px;
            }
        }

        .mini-stat {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mini-stat:hover {
            border-color: var(--accent-primary);
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .mini-stat-value {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 700;
            color: var(--accent-primary);
            line-height: 1;
            margin-bottom: 6px;
        }

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

        .flow-diagram {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            position: relative;
        }

        @media (max-width: 800px) {
            .flow-diagram {
                flex-direction: column;
                gap: 40px;
            }
        }

        .flow-step {
            flex: 0 0 200px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .flow-step::before {
            content: attr(data-step);
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 28px;
            height: 28px;
            background: var(--accent-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 700;
            color: white;
            z-index: 10;
            box-shadow: 0 4px 15px var(--accent-glow);
        }

        .flow-icon {
            width: 100px;
            height: 100px;
            background: var(--bg-card);
            border: 2px solid var(--border);
            border-radius: 24px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .flow-icon::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 28px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            opacity: 0;
            z-index: -1;
            transition: opacity 0.4s ease;
        }

        .flow-step:hover .flow-icon::after,
        .flow-step.active .flow-icon::after {
            opacity: 0.3;
        }

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

        .flow-step:hover .flow-icon svg,
        .flow-step.active .flow-icon svg {
            stroke: var(--accent-primary);
        }

        .flow-step:hover .flow-icon {
            border-color: var(--accent-primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px var(--accent-glow);
        }

        .flow-step.active .flow-icon {
            border-color: var(--accent-primary);
            background: var(--accent-soft);
        }

        .flow-title {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .flow-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .flow-connector {
            flex: 1;
            height: 4px;
            background: var(--border);
            position: relative;
            max-width: 120px;
            overflow: hidden;
        }

        @media (max-width: 800px) {
            .flow-connector {
                width: 4px;
                height: 60px;
                max-width: none;
            }
        }

        .flow-connector::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 30px;
            background: var(--accent-primary);
            animation: flowDot 2s ease-in-out infinite;
        }

        @keyframes flowDot {
            0% {
                transform: translateX(-100%);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateX(400%);
                opacity: 0;
            }
        }

        @media (max-width: 800px) {
            .flow-connector::after {
                width: 100%;
                height: 30px;
                animation: flowDotVertical 2s ease-in-out infinite;
            }

            @keyframes flowDotVertical {
                0% {
                    transform: translateY(-100%);
                    opacity: 0;
                }

                10% {
                    opacity: 1;
                }

                90% {
                    opacity: 1;
                }

                100% {
                    transform: translateY(300%);
                    opacity: 0;
                }
            }
        }

        .flow-highlight {
            margin-top: 60px;
            text-align: center;
            padding: 24px 32px;
            background: var(--accent-soft);
            border: 1px solid var(--accent-primary);
            border-radius: 12px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .flow-highlight p {
            font-size: 15px;
            color: var(--accent-primary);
        }

        /* ========== STATS SECTION ========== */
        .stats {
            background: transparent;
            padding: 100px 0;
        }

        .stats-grid {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        @media (max-width: 600px) {
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        .stat-card {
            text-align: center;
            padding: 36px;
            background: var(--bg-card);
            border-radius: 20px;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .stat-card:hover {
            border-color: var(--accent-primary);
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .stat-value {
            font-family: var(--font-display);
            font-size: 52px;
            font-weight: 700;
            color: var(--accent-primary);
            line-height: 1;
            margin-bottom: 8px;
        }

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

        /* ========== TESTIMONIALS (Masonry) ========== */
        .testimonials {
            background: transparent;
            padding: 100px 0;
            overflow: hidden;
        }

        .testimonials-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 24px;
            justify-content: center;
        }

        .testimonial-card {
            flex: 1;
            max-width: 360px;
            padding: 28px;
            background: rgba(22, 22, 22, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: default;
        }

        .testimonial-card:hover {
            border-color: var(--accent-primary);
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(168, 85, 247, 0.15);
        }

        @media (max-width: 900px) {
            .testimonials-grid {
                flex-wrap: wrap;
            }

            .testimonial-card {
                flex: 1 1 280px;
            }
        }

        @media (max-width: 600px) {
            .testimonials-grid {
                flex-direction: column;
                align-items: center;
            }

            .testimonial-card {
                width: 100%;
                max-width: 100%;
            }
        }

        .testimonial-stars {
            color: #fbbf24;
            font-size: 14px;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.65;
            color: var(--text-white);
            margin-bottom: 20px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 42px;
            height: 42px;
            background: var(--accent-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            color: white;
        }

        .author-info .author-name {
            font-weight: 600;
            font-size: 14px;
        }

        .author-info .author-role {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ========== WHO THIS IS FOR ========== */
        .for-section {
            background: transparent;
            padding: 100px 0;
        }

        .for-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .for-subtitle {
            color: var(--text-gray);
            margin-bottom: 48px;
        }

        .for-list {
            list-style: none;
            text-align: left;
            max-width: 500px;
            margin: 0 auto;
        }

        .for-list li {
            padding: 16px 0;
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 16px;
            color: var(--text-white);
            border-bottom: 1px solid var(--border);
        }

        .for-list li:last-child {
            border-bottom: none;
        }

        .for-icon {
            width: 28px;
            height: 28px;
            background: var(--accent-soft);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--accent-primary);
            font-size: 14px;
        }

        .for-icon svg {
            width: 16px;
            height: 16px;
            stroke: var(--accent-primary);
            stroke-width: 2;
            fill: none;
        }

        .for-icon svg path {
            stroke-dasharray: 20;
            stroke-dashoffset: 20;
            transition: stroke-dashoffset 0.5s ease;
        }

        .for-list li.visible .for-icon svg path {
            stroke-dashoffset: 0;
        }

        /* Staggered reveal for for-list items */
        .for-list li {
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.5s ease;
        }

        .for-list li.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .for-list li:nth-child(1) { transition-delay: 0.1s; }
        .for-list li:nth-child(2) { transition-delay: 0.2s; }
        .for-list li:nth-child(3) { transition-delay: 0.3s; }
        .for-list li:nth-child(4) { transition-delay: 0.4s; }
        .for-list li:nth-child(5) { transition-delay: 0.5s; }
        .for-list li:nth-child(6) { transition-delay: 0.6s; }

        .for-list li:hover {
            transform: translateX(8px);
            background: rgba(168, 85, 247, 0.05);
            border-radius: 8px;
            padding-left: 16px;
            margin-left: -16px;
        }

        .for-note {
            margin-top: 48px;
            padding: 24px;
            background: var(--accent-soft);
            border: 1px solid var(--accent-primary);
            border-radius: 16px;
            font-size: 15px;
            color: var(--accent-primary);
        }

        /* ========== CTA + FAQ SIDE BY SIDE ========== */
        .cta-faq {
            background: transparent;
            padding: 120px 0;
        }

        .cta-faq-grid {
            max-width: 600px;
            margin: 0 auto;
        }

        /* Form Side */
        .cta-side {
            text-align: center;
        }

        .cta-side h2 {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .cta-sub {
            color: var(--text-gray);
            margin-bottom: 32px;
        }

        .form-card {
            background: var(--bg-card);
            padding: 32px;
            border-radius: 20px;
            border: 1px solid var(--border);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        @media (max-width: 500px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        .form-group label {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            background: var(--bg-carbon);
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--text-white);
            font-size: 15px;
            font-family: inherit;
            transition: all 0.2s ease;
            cursor: none;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px var(--accent-soft);
        }

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

        .form-card .btn {
            width: 100%;
            margin-top: 16px;
            padding: 18px;
        }

        .form-note {
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 16px;
        }

        .guarantee-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 24px;
            padding: 16px 20px;
            background: var(--accent-soft);
            border: 1px solid var(--accent-primary);
            border-radius: 12px;
            font-size: 14px;
            color: var(--accent-primary);
        }

        /* Form Steps Progress */
        .form-steps {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 24px;
        }

        .step-indicator {
            width: 40px;
            height: 4px;
            background: var(--border);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .step-indicator.active {
            background: var(--accent-primary);
        }

        .step-indicator.completed {
            background: var(--accent-secondary);
        }

        /* Form validation styles */
        .form-group input.error,
        .form-group select.error {
            border-color: var(--accent-red);
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
        }

        .error-message {
            color: var(--accent-red);
            font-size: 12px;
            margin-top: 4px;
            display: none;
        }

        .error-message.show {
            display: block;
            animation: fadeUp 0.3s ease;
        }

        /* Legal checkbox */
        .legal-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 16px;
            font-size: 13px;
            color: var(--text-gray);
        }

        .legal-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            accent-color: var(--accent-primary);
            cursor: pointer;
        }

        .legal-checkbox a {
            color: var(--accent-primary);
            text-decoration: underline;
        }

        /* Calendar Booking Step */
        .calendar-step {
            display: none;
            margin-top: 24px;
        }

        .calendar-step.show {
            display: block;
            animation: fadeUp 0.5s ease;
        }

        .calendar-step h4 {
            font-family: var(--font-display);
            font-size: 22px;
            margin-bottom: 8px;
            color: var(--accent-primary);
            text-align: center;
        }

        .calendar-step>p {
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 24px;
            text-align: center;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
            margin-bottom: 24px;
        }

        .calendar-day-header {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            padding: 8px 0;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .calendar-day:hover:not(.disabled):not(.empty) {
            border-color: var(--accent-primary);
            background: var(--accent-soft);
        }

        .calendar-day.selected {
            background: var(--accent-primary);
            border-color: var(--accent-primary);
            color: white;
        }

        .calendar-day.disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .calendar-day.empty {
            background: transparent;
            border: none;
            cursor: default;
        }

        .time-slots {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 24px;
        }

        @media (max-width: 500px) {
            .time-slots {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .time-slot {
            padding: 14px;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 14px;
        }

        .time-slot:hover {
            border-color: var(--accent-primary);
            background: var(--accent-soft);
        }

        .time-slot.selected {
            background: var(--accent-primary);
            border-color: var(--accent-primary);
            color: white;
        }

        .calendar-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .calendar-nav button {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 8px 16px;
            color: var(--text-white);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .calendar-nav button:hover {
            border-color: var(--accent-primary);
        }

        .calendar-month {
            font-family: var(--font-display);
            font-size: 18px;
        }

        /* Booking Confirmation Step */
        .confirmation-step {
            display: none;
            text-align: center;
            padding: 48px 32px;
        }

        .confirmation-step.show {
            display: block;
            animation: fadeUp 0.5s ease;
        }

        .confirmation-icon {
            width: 80px;
            height: 80px;
            background: var(--accent-soft);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .confirmation-icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--accent-primary);
            stroke-width: 2;
        }

        .confirmation-step h4 {
            font-family: var(--font-display);
            font-size: 28px;
            margin-bottom: 12px;
            color: var(--accent-primary);
        }

        .confirmation-step p {
            font-size: 16px;
            color: var(--text-gray);
            margin-bottom: 8px;
        }

        .confirmation-details {
            background: var(--bg-elevated);
            border-radius: 12px;
            padding: 24px;
            margin: 24px 0;
            text-align: left;
        }

        .confirmation-details .detail-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }

        .confirmation-details .detail-row:last-child {
            border-bottom: none;
        }

        .detail-label {
            color: var(--text-muted);
            font-size: 14px;
        }

        .detail-value {
            color: var(--text-white);
            font-size: 14px;
            font-weight: 500;
        }

        /* Not Qualified - redirects to value add */
        .not-qualified {
            display: none;
        }

        /* FAQ Section */
        .faq-section {
            background: transparent;
            padding: 100px 0;
        }

        .faq-grid {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

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

        .faq-item {
            background: rgba(22, 22, 22, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--accent-primary);
            transform: translateY(-4px);
        }

        .faq-question {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 12px;
        }

        .faq-answer {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-gray);
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== FOOTER ========== */
        footer {
            padding: 80px 0 40px;
            border-top: 1px solid var(--border);
            background: transparent;
        }

        .footer-content {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        @media (max-width: 768px) {
            .footer-columns {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
        }

        .footer-column h4 {
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s ease;
        }

        .footer-column a:hover {
            color: var(--accent-primary);
        }

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

        @media (max-width: 768px) {
            .footer-socials {
                justify-content: center;
            }
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social-link:hover {
            border-color: var(--accent-primary);
            color: var(--accent-primary);
            transform: translateY(-3px);
        }

        .footer-social-link svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .footer-large-logo {
            text-align: center;
            margin-bottom: 30px;
        }

        .footer-large-logo span {
            font-family: var(--font-display);
            font-size: clamp(60px, 15vw, 140px);
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--text-white);
            opacity: 0.05;
            text-transform: uppercase;
        }

        .footer-bottom {
            text-align: center;
            color: var(--text-muted);
            font-size: 13px;
            padding-top: 30px;
            border-top: 1px solid var(--border);
        }

        /* ========== MODAL SYSTEM ========== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow: hidden;
            transform: scale(0.9) translateY(20px);
            transition: transform 0.3s ease;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1) translateY(0);
        }

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

        .modal-header h2 {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 600;
        }

        .modal-close {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            color: var(--text-gray);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            border-color: var(--accent-primary);
            color: var(--accent-primary);
        }

        .modal-body {
            padding: 24px;
            max-height: 60vh;
            overflow-y: auto;
            color: var(--text-gray);
            font-size: 14px;
            line-height: 1.7;
        }

        .modal-body h3 {
            color: var(--text-white);
            font-family: var(--font-display);
            font-size: 16px;
            margin: 20px 0 10px;
        }

        .modal-body h3:first-child {
            margin-top: 0;
        }

        .modal-body ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .modal-body li {
            margin-bottom: 8px;
        }

        .modal-body p {
            margin-bottom: 15px;
        }

        /* ========== MOBILE RESPONSIVENESS ========== */
        @media (max-width: 768px) {

            /* Base */
            .section {
                padding: 60px 0;
            }

            .container {
                padding: 0 16px;
            }

            /* Splash */
            .splash-content {
                padding: 0 20px;
            }

            .scroll-spacer {
                height: 100vh;
            }

            /* Hero */
            .hero {
                min-height: auto;
                padding: 100px 0 60px;
            }

            .hero-title {
                font-size: clamp(28px, 8vw, 40px);
                margin-bottom: 20px;
            }

            .hero-sub {
                font-size: 16px;
                margin-bottom: 30px;
            }

            .hero-cta-group {
                flex-direction: column;
                gap: 12px;
            }

            .hero-cta-group .btn {
                width: 100%;
            }

            /* Sections */
            .section-title {
                font-size: clamp(24px, 6vw, 32px);
            }

            .section-sub {
                font-size: 16px;
            }

            .section-header {
                margin-bottom: 40px;
            }

            /* VSL */
            .vsl-wrapper {
                padding: 0;
            }

            .vsl-placeholder {
                border-radius: 12px;
            }

            .play-button {
                width: 56px;
                height: 56px;
            }

            .play-button::after {
                border-left-width: 16px;
                border-top-width: 10px;
                border-bottom-width: 10px;
            }

            /* Split Cards */
            .split-card {
                padding: 24px;
            }

            .card-title {
                font-size: 20px;
            }

            .feature-list li {
                font-size: 14px;
                padding: 10px 0;
            }

            /* Founder */
            .founder-card {
                padding: 32px 24px;
            }

            .founder-card::before {
                font-size: 80px;
                top: 10px;
                left: 15px;
            }

            .founder-title {
                font-size: 22px;
            }

            .founder-content p {
                font-size: 16px;
            }

            /* How It Works */
            .how-it-works {
                padding: 80px 0;
            }

            .flow-step {
                flex: 0 0 auto;
                width: 100%;
            }

            /* Responsive icon + copy positioning */
            .flow-step .flow-icon {
                width: 80px;
                height: 80px;
            }

            .flow-step .flow-title,
            .flow-step .flow-desc {
                max-width: 180px;
                margin: 0 auto;
            }

            .flow-icon svg {
                width: 32px;
                height: 32px;
            }

            .flow-highlight {
                margin-top: 40px;
                padding: 20px;
            }

            .flow-highlight p {
                font-size: 14px;
            }

            /* Split cards - stack icon and text */
            .split-card {
                text-align: center;
            }

            .feature-list li {
                justify-content: center;
                flex-wrap: wrap;
                text-align: left;
            }

            /* Stats */
            .stats {
                padding: 60px 0;
            }

            .stat-card {
                padding: 28px 20px;
            }

            .stat-value {
                font-size: 40px;
            }

            /* Testimonials */
            .testimonial-card {
                padding: 24px;
            }

            .testimonial-text {
                font-size: 14px;
            }

            /* Who This Is For */
            .for-content {
                padding: 0;
            }

            .for-list li {
                font-size: 15px;
                padding: 14px 0;
            }

            .for-note {
                padding: 20px;
                font-size: 14px;
            }

            /* Calculator */
            .calc-wrapper {
                padding: 32px 24px;
            }

            .calc-header h3 {
                font-size: 20px;
            }

            .result-number {
                font-size: 36px;
            }

            /* CTA + FAQ */
            .cta-faq {
                padding: 80px 0;
            }

            .cta-side h2 {
                font-size: 24px;
            }

            .form-card {
                padding: 24px;
            }

            /* Tooltips - hide on mobile */
            .tooltip::after {
                display: none;
            }

            .tooltip {
                border-bottom: none;
            }

            /* Animation stage - lower on mobile */
            .animation-stage {
                opacity: 0.5;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 26px;
            }

            .btn {
                padding: 14px 24px;
                font-size: 13px;
            }

            .split-card {
                padding: 20px;
            }

            .founder-card {
                padding: 24px 20px;
            }

            .calc-wrapper {
                padding: 24px 20px;
            }

            .form-card {
                padding: 20px;
            }

            .form-group input,
            .form-group select {
                padding: 12px 14px;
                font-size: 14px;
            }
        }

        /* ========== RESPONSIVE ICON + COPY POSITIONING ========== */
        /* Large screens - icons and text side by side where appropriate */
        @media (min-width: 1200px) {
            .flow-step {
                flex: 0 0 220px;
            }

            .flow-step .flow-title,
            .flow-step .flow-desc {
                max-width: none;
            }

            .split-card {
                text-align: left;
            }

            .feature-list li {
                justify-content: flex-start;
            }
        }

        /* Medium screens - balanced layout */
        @media (min-width: 769px) and (max-width: 1199px) {
            .flow-step {
                flex: 0 0 180px;
            }

            .flow-connector {
                max-width: 80px;
            }
        }

        /* Container queries for more granular control (modern browsers) */
        @supports (container-type: inline-size) {
            .flow-diagram {
                container-type: inline-size;
            }

            @container (max-width: 600px) {
                .flow-step {
                    flex: 0 0 100%;
                }
            }
        }
