        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --bg: #0a0a0a;
            --fg: #fafafa;
            --accent: #7cf3c6;
            --grid: #1a1a1a;
            --wire: #333333;
            --subtle: #a0a0a0;
        }
        
        body {
            font-family: 'IBM Plex Mono', monospace;
            background: var(--bg);
            color: var(--fg);
            overflow-x: hidden;
            font-weight: 300;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        /* Sticky Navigation */
        .nav-sticky {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 4rem;
            background: rgba(10, 10, 10, 0);
            border-bottom: 1px solid transparent;
            backdrop-filter: blur(0px);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            transform: translateY(0);
        }
        
        .nav-sticky.scrolled {
            background: rgba(10, 10, 10, 0.95);
            border-bottom-color: var(--wire);
            backdrop-filter: blur(20px);
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
        }

        .nav-logo img {
            height: 36px;
            width: auto;
            transition: opacity 0.3s;
        }

        .nav-logo:hover img {
            opacity: 0.8;
        }
        
        .nav-links {
            display: flex;
            gap: 3rem;
        }
        
        .nav-link {
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--fg);
            text-decoration: none;
            position: relative;
            transition: color 0.3s;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* ============================================
           3D WOBBLE CTA BUTTONS - Inspired by CodePen
           ============================================ */

        /* Base CTA Styles with 3D Wobble Effect */
        .hero-cta,
        .cta-secondary,
        .form-submit,
        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            padding: 1.2rem 2.5rem;
            font-size: 0.8rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            background: transparent;
            border: 2px solid var(--accent);
            border-radius: 0.4em;
            cursor: pointer;
            position: relative;
            overflow: visible;
            transition: all 0.3s 0.1s;
            text-decoration: none;
            perspective: 500px;
            transform-style: preserve-3d;
            will-change: transform;
        }

        .hero-cta {
            padding: 1.2rem 2.5rem;
            font-size: 0.85rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.5s forwards;
        }

        .cta-secondary {
            margin-top: 3rem;
        }

        .form-submit {
            padding: 1.5rem 3rem;
            font-size: 0.85rem;
        }

        /* 3D Pseudo-elements for wobble effect */
        .hero-cta::before,
        .cta-secondary::before,
        .form-submit::before,
        .cta-button::before,
        .hero-cta::after,
        .cta-secondary::after,
        .form-submit::after,
        .cta-button::after {
            --z: 0px;
            position: absolute;
            top: 0;
            left: 0;
            display: block;
            content: '';
            width: 100%;
            height: 100%;
            opacity: 0;
            border-radius: inherit;
            transform-style: preserve-3d;
            transform: translate3d(
                calc(var(--z) * 0px),
                calc(var(--z) * 0px),
                calc(var(--z) * 0px)
            );
            pointer-events: none;
        }

        /* Secondary color layer (lighter accent) */
        .hero-cta::before,
        .cta-secondary::before,
        .form-submit::before,
        .cta-button::before {
            background-color: rgba(124, 243, 198, 0.6);
            z-index: -1;
        }

        /* Primary color layer (full accent) */
        .hero-cta::after,
        .cta-secondary::after,
        .form-submit::after,
        .cta-button::after {
            background-color: var(--accent);
            z-index: -2;
        }

        /* Span for text layering */
        .hero-cta span,
        .cta-secondary span,
        .form-submit span,
        .cta-button span {
            display: inline-block;
            position: relative;
            z-index: 1;
        }

        /* Hover States - Background change */
        .hero-cta:hover,
        .cta-secondary:hover,
        .form-submit:hover,
        .cta-button:hover {
            color: var(--bg);
            background-color: rgba(124, 243, 198, 0.1);
            transition: background 0.3s 0.1s;
        }

        /* 3D Wobble Animation on hover */
        .hero-cta:hover::before,
        .cta-secondary:hover::before,
        .form-submit:hover::before,
        .cta-button:hover::before {
            --z: 0.04;
            animation: translateWobble 2.2s ease forwards;
        }

        .hero-cta:hover::after,
        .cta-secondary:hover::after,
        .form-submit:hover::after,
        .cta-button:hover::after {
            --z: -0.06;
            animation: translateWobble 2.2s ease forwards;
        }

        /* Arrow Animation */
        .hero-cta span::after,
        .cta-secondary span::after,
        .form-submit span::after,
        .cta-button span::after {
            content: ' →';
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            display: inline-block;
        }

        .hero-cta:hover span::after,
        .cta-secondary:hover span::after,
        .form-submit:hover span::after,
        .cta-button:hover span::after {
            transform: translateX(8px);
        }

        /* Keyframes for 3D wobble effect */
        @keyframes translateWobble {
            0% {
                opacity: 0;
                transform: translate3d(
                    calc(var(--z) * 0px),
                    calc(var(--z) * 0px),
                    calc(var(--z) * 0px)
                );
            }
            16% {
                transform: translate3d(
                    calc(var(--z) * 160px),
                    calc(var(--z) * 160px),
                    calc(var(--z) * 160px)
                );
            }
            28% {
                opacity: 1;
                transform: translate3d(
                    calc(var(--z) * 70px),
                    calc(var(--z) * 70px),
                    calc(var(--z) * 70px)
                );
            }
            44% {
                transform: translate3d(
                    calc(var(--z) * 130px),
                    calc(var(--z) * 130px),
                    calc(var(--z) * 130px)
                );
            }
            59% {
                transform: translate3d(
                    calc(var(--z) * 85px),
                    calc(var(--z) * 85px),
                    calc(var(--z) * 85px)
                );
            }
            73% {
                transform: translate3d(
                    calc(var(--z) * 110px),
                    calc(var(--z) * 110px),
                    calc(var(--z) * 110px)
                );
            }
            88% {
                opacity: 1;
                transform: translate3d(
                    calc(var(--z) * 90px),
                    calc(var(--z) * 90px),
                    calc(var(--z) * 90px)
                );
            }
            100% {
                opacity: 1;
                transform: translate3d(
                    calc(var(--z) * 100px),
                    calc(var(--z) * 100px),
                    calc(var(--z) * 100px)
                );
            }
        }

        /* Active/Click State */
        .hero-cta:active,
        .cta-secondary:active,
        .form-submit:active,
        .cta-button:active {
            transform: scale(0.98);
        }
        
        /* Grid Background */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.4;
            background-image: 
                linear-gradient(var(--grid) 1px, transparent 1px),
                linear-gradient(90deg, var(--grid) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }
        
        @keyframes gridMove {
            0% { background-position: 0 0; }
            100% { background-position: 50px 50px; }
        }
        
        /* THREE.js Canvas */
        #three-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.5s ease-out;
            pointer-events: none;
        }

        #three-canvas.loaded {
            opacity: 1;
        }

        /* CSS fallback animation for mobile (replaces THREE.js) */
        .css-waves {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
            display: none;
        }

        @media (max-width: 768px) {
            #three-canvas {
                display: none !important;
            }

            .css-waves {
                display: block;
            }
        }

        .wave-line {
            position: absolute;
            width: 200%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--wire), transparent);
            opacity: 0.3;
            animation: wave-flow 20s linear infinite;
        }

        .wave-line:nth-child(1) { top: 20%; animation-delay: 0s; }
        .wave-line:nth-child(2) { top: 40%; animation-delay: -5s; }
        .wave-line:nth-child(3) { top: 60%; animation-delay: -10s; }
        .wave-line:nth-child(4) { top: 80%; animation-delay: -15s; }

        @keyframes wave-flow {
            0% { transform: translateX(-50%) translateY(0); }
            100% { transform: translateX(0%) translateY(20px); }
        }

        /* Loading screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease-out;
        }

        .loading-screen.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 2px solid var(--wire);
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Cursor */
        .cursor {
            width: 8px;
            height: 8px;
            border: 1px solid var(--fg);
            position: fixed;
            pointer-events: none;
            z-index: 10000;
            mix-blend-mode: difference;
            transition: transform 0.1s ease-out;
        }
        
        .cursor-dot {
            width: 2px;
            height: 2px;
            background: var(--accent);
            position: fixed;
            pointer-events: none;
            z-index: 10001;
        }
        
        /* Content */
        .content {
            position: relative;
            z-index: 10;
        }
        
        /* Hero */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 4rem;
            position: relative;
        }
        
        .hero-meta {
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--subtle);
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.5s forwards;
        }
        
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        
        .hero h1 {
            font-family: 'Anybody', sans-serif;
            font-size: clamp(4rem, 12vw, 11rem);
            font-weight: 100;
            line-height: 0.9;
            letter-spacing: -0.04em;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .hero h1 .line {
            display: block;
            overflow: hidden;
        }
        
        .hero h1 .line span {
            display: inline-block;
            opacity: 0;
            transform: translateY(100%);
            animation: slideUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
            text-transform: uppercase;
        }
        
        .hero h1 .line span { animation-delay: 0.1s; }

        .hero h1 .line span::after {
            content: ".";
            color: var(--accent);
            text-transform: none;
            font-family: 'Anybody', sans-serif;
            font-weight: 800;
        }
        
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1 .accent {
            color: var(--accent);
            font-weight: 800;
        }
        
        .hero-description {
            max-width: 600px;
            font-size: 1rem;
            line-height: 1.8;
            color: #c0c0c0;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 1s forwards;
        }
        
        
        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 4rem;
            writing-mode: vertical-rl;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--subtle);
            opacity: 0;
            animation: fadeIn 1s ease-out 2s forwards;
        }
        
        .scroll-indicator::before {
            content: '';
            display: block;
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, var(--wire), transparent);
            margin: 0 auto 1rem;
        }
        
        /* Data Metrics */
        .data-metrics {
            position: fixed;
            top: 50%;
            right: 4rem;
            transform: translateY(-50%);
            z-index: 100;
        }
        
        .metric {
            margin-bottom: 4rem;
            text-align: right;
        }
        
        .metric-value {
            font-family: 'Anybody', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 0.5rem;
            letter-spacing: 0.1em;
        }
        
        .metric-label {
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--subtle);
        }
        
        .metric-bar {
            width: 80px;
            height: 1px;
            background: var(--wire);
            margin: 1rem 0 0 auto;
            position: relative;
        }
        
        .metric-bar::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 1px;
            background: var(--accent);
            width: 0;
            transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
        }
        
        /* Services Section */
        .services {
            padding: 15rem 4rem;
            position: relative;
        }
        
        .section-header {
            margin-bottom: 8rem;
        }
        
        .section-number {
            font-size: 0.7rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--subtle);
            margin-bottom: 1rem;
        }
        
        .section-title {
            font-family: 'Anybody', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 100;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }
        
        .section-title .accent {
            font-weight: 800;
            color: var(--accent);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0;
            border-top: 1px solid var(--wire);
        }
        
        .service {
            padding: 4rem 3rem;
            border-right: 1px solid var(--wire);
            border-bottom: 1px solid var(--wire);
            position: relative;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }
        
        .service:nth-child(2n) {
            border-right: none;
        }
        
        .service::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }
        
        .service:hover::before {
            width: 100%;
        }
        
        .service:hover {
            background: rgba(255, 0, 80, 0.02);
        }
        
        .service-number {
            font-size: 0.7rem;
            letter-spacing: 0.3em;
            color: var(--subtle);
            margin-bottom: 2rem;
        }
        
        .service h3 {
            font-family: 'Anybody', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }
        
        .service-description {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #b0b0b0;
            margin-bottom: 2rem;
        }
        
        .service-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--wire);
        }
        
        .stat {
            display: flex;
            flex-direction: column;
        }
        
        .stat-value {
            font-family: 'Anybody', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            letter-spacing: 0.05em;
        }
        
        .stat-label {
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--subtle);
        }
        
        /* Process Section */
        .process {
            padding: 15rem 4rem;
            background: transparent;
        }

        /* Blog Section */
        .blog-section {
            padding: 15rem 0;
            background: transparent;
        }

        .blog-preview {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding: 0 4rem;
            margin-bottom: 4rem;
        }

        .blog-card {
            border: 1px solid var(--wire);
            padding: 2.5rem;
            cursor: pointer;
            position: relative;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            text-decoration: none;
            color: var(--fg);
            display: block;
        }

        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .blog-card:hover::before {
            width: 100%;
        }

        .blog-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }

        .blog-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--subtle);
        }

        .blog-category {
            color: var(--accent);
        }

        .blog-card h3 {
            font-family: 'Anybody', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .blog-excerpt {
            font-size: 0.85rem;
            color: #b0b0b0;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .blog-read-more {
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .blog-read-more::after {
            content: '→';
            transition: transform 0.3s;
        }

        .blog-card:hover .blog-read-more::after {
            transform: translateX(5px);
        }
        
        .process-timeline {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-step {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 4rem;
            margin-bottom: 6rem;
            padding-bottom: 6rem;
            border-bottom: 1px solid var(--wire);
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            left: 50px;
            top: 100%;
            width: 1px;
            height: 6rem;
            background: linear-gradient(to bottom, var(--accent) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 1s ease-out 0.5s;
        }
        
        .process-step:last-child::before {
            display: none;
        }
        
        .process-step.visible::before {
            opacity: 0.5;
            animation: flowDown 2s ease-in-out infinite;
        }
        
        @keyframes flowDown {
            0% {
                transform: translateY(0) scaleY(1);
                opacity: 0;
            }
            50% {
                opacity: 0.5;
            }
            100% {
                transform: translateY(30px) scaleY(0.5);
                opacity: 0;
            }
        }
        
        .process-step.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .process-step:last-child {
            border-bottom: none;
        }
        
        .step-number {
            font-family: 'Anybody', sans-serif;
            font-size: 5rem;
            font-weight: 100;
            line-height: 1;
            color: var(--wire);
        }
        
        .step-content h3 {
            font-family: 'Anybody', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .step-content p {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #b0b0b0;
        }
        
        /* Contact */
        .contact {
            padding: 15rem 4rem;
        }
        
        .contact-container {
            max-width: 800px;
        }
        
        .contact-form {
            margin-top: 6rem;
        }
        
        .form-group {
            margin-bottom: 3rem;
            position: relative;
        }
        
        .form-label {
            display: block;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #b0b0b0;
            margin-bottom: 1rem;
        }
        
        .form-input {
            width: 100%;
            padding: 1.5rem 0;
            background: none;
            border: none;
            border-bottom: 1px solid var(--wire);
            color: var(--fg);
            font-family: 'IBM Plex Mono', monospace;
            font-size: 1.2rem;
            font-weight: 300;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        
        .form-input:focus {
            outline: none;
            border-bottom-color: var(--accent);
        }
        
        .form-input::placeholder {
            color: #606060;
        }
        
        textarea.form-input {
            resize: none;
            min-height: 150px;
            padding-top: 1rem;
        }

        /* Honeypot - hidden field for spam detection */
        .hp-field {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
            tab-index: -1;
        }
        
        
        /* Footer */
        .footer {
            padding: 4rem;
            border-top: 1px solid var(--wire);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-text {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--subtle);
        }
        
        /* Noise texture */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            z-index: 9999;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }
        
        /* ================================
           BLOG PAGE STYLES
           ================================ */

        .blog-header {
            padding: 12rem 4rem 6rem;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .blog-title {
            font-family: 'Anybody', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 100;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
        }

        .blog-title .accent {
            font-weight: 800;
            color: var(--accent);
        }

        .blog-subtitle {
            max-width: 600px;
            margin: 0 auto;
            font-size: 1rem;
            line-height: 1.8;
            color: var(--subtle);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding: 0 4rem 8rem;
            position: relative;
            z-index: 10;
        }

        /* ================================
           ARTICLE PAGE STYLES
           ================================ */

        .article-header {
            padding: 12rem 4rem 4rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .article-category {
            display: inline-block;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--bg);
            background: var(--accent);
            padding: 0.5rem 1.2rem;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .article-title {
            font-family: 'Anybody', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 2rem;
            color: var(--fg);
        }

        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--subtle);
        }

        .article-meta span {
            position: relative;
        }

        .article-meta span:not(:last-child)::after {
            content: '|';
            position: absolute;
            right: -1.1rem;
            color: var(--wire);
        }

        /* Article Content */
        .article-content {
            max-width: 750px;
            margin: 0 auto;
            padding: 4rem 2rem 6rem;
            position: relative;
            z-index: 10;
        }

        .article-content h2 {
            font-family: 'Anybody', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            margin: 3rem 0 1.5rem;
            color: var(--fg);
            letter-spacing: -0.02em;
        }

        .article-content h3 {
            font-family: 'Anybody', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            margin: 2.5rem 0 1rem;
            color: var(--fg);
        }

        .article-content p {
            font-size: 1.05rem;
            line-height: 1.9;
            color: #c0c0c0;
            margin-bottom: 1.5rem;
        }

        .article-content ul,
        .article-content ol {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
        }

        .article-content li {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #c0c0c0;
            margin-bottom: 0.75rem;
        }

        .article-content li::marker {
            color: var(--accent);
        }

        .article-content strong {
            color: var(--fg);
            font-weight: 500;
        }

        .article-content a {
            color: var(--accent);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s;
        }

        .article-content a:hover {
            border-bottom-color: var(--accent);
        }

        .article-content blockquote {
            border-left: 3px solid var(--accent);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--subtle);
        }

        .article-content code {
            font-family: 'IBM Plex Mono', monospace;
            background: rgba(124, 243, 198, 0.1);
            color: var(--accent);
            padding: 0.2rem 0.5rem;
            font-size: 0.9em;
            border-radius: 3px;
        }

        .article-content pre {
            background: rgba(26, 26, 26, 0.8);
            border: 1px solid var(--wire);
            padding: 1.5rem;
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 4px;
        }

        .article-content pre code {
            background: none;
            padding: 0;
            font-size: 0.85rem;
            color: var(--fg);
        }

        /* Article CTA Section */
        .article-cta {
            max-width: 750px;
            margin: 0 auto 8rem;
            padding: 4rem;
            text-align: center;
            border: 1px solid var(--wire);
            position: relative;
            z-index: 10;
            background: rgba(10, 10, 10, 0.5);
        }

        .article-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent);
        }

        .article-cta h3 {
            font-family: 'Anybody', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--fg);
        }

        .article-cta p {
            font-size: 1rem;
            color: var(--subtle);
            margin-bottom: 2rem;
        }


        @media (max-width: 1024px) {
            .hero, .services, .process, .contact {
                padding-left: 2rem;
                padding-right: 2rem;
            }

            .blog-section {
                padding: 10rem 0;
            }

            .blog-preview {
                grid-template-columns: 1fr;
                padding: 0 2rem;
            }

            /* Blog page responsive */
            .blog-header {
                padding: 10rem 2rem 4rem;
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
                padding: 0 2rem 6rem;
            }

            /* Article page responsive */
            .article-header {
                padding: 10rem 2rem 3rem;
            }

            .article-content {
                padding: 3rem 2rem 4rem;
            }

            .article-cta {
                margin: 0 2rem 6rem;
                padding: 3rem 2rem;
            }
            
            .scroll-indicator {
                left: 2rem;
            }
            
            .data-metrics {
                position: relative;
                top: auto;
                right: auto;
                transform: none;
                display: flex;
                gap: 3rem;
                margin: 4rem 0;
            }
            
            .metric {
                margin-bottom: 0;
                text-align: left;
            }
            
            .metric-bar {
                margin-left: 0;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service {
                border-right: none;
            }
            
            .process-step {
                grid-template-columns: 60px 1fr;
                gap: 2rem;
            }
            
            .step-number {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            /* Navigation mobile */
            .nav-sticky {
                padding: 1rem 1.5rem;
            }
            
            .nav-logo img {
                height: 28px;
            }
            
            .nav-links {
                gap: 1.5rem;
            }
            
            .nav-link {
                font-size: 0.65rem;
            }
            
            /* Reduce grid animation for performance */
            .grid-bg {
                background-size: 30px 30px;
            }
            
            /* Hero adjustments */
            .hero {
                padding: 0 1.5rem;
                height: auto;
                min-height: 100vh;
                padding-top: 6rem;
                padding-bottom: 4rem;
            }
            
            .hero-meta {
                font-size: 0.65rem;
            }
            
            .hero h1 {
                font-size: clamp(3.5rem, 15vw, 5rem);
                margin-bottom: 1.5rem;
            }
            
            .hero-description {
                font-size: 0.9rem;
                line-height: 1.6;
                margin-bottom: 2rem;
            }
            
            .hero-cta {
                padding: 1rem 1.8rem;
                font-size: 0.75rem;
            }
            
            .scroll-indicator {
                left: 1.5rem;
                bottom: 2rem;
                font-size: 0.6rem;
            }
            
            .scroll-indicator::before {
                height: 40px;
            }
            
            /* Data metrics mobile */
            .data-metrics {
                flex-direction: column;
                gap: 2rem;
                margin: 3rem 1.5rem;
                padding: 2rem 1.5rem;
                background: rgba(10, 10, 10, 0.8);
                border-radius: 20px;
                border: 1px solid var(--wire);
            }
            
            .metric-value {
                font-size: 1.5rem;
            }
            
            .metric-label {
                font-size: 0.6rem;
            }
            
            .metric-bar {
                width: 100%;
            }
            
            /* Services */
            .services {
                padding: 8rem 1.5rem;
            }
            
            .section-header {
                margin-bottom: 4rem;
            }
            
            .section-number {
                font-size: 0.65rem;
            }
            
            .section-title {
                font-size: clamp(2.8rem, 11vw, 4.5rem);
            }
            
            .service {
                padding: 2.5rem 1.5rem;
            }
            
            .service-number {
                font-size: 0.65rem;
                margin-bottom: 1rem;
            }
            
            .service h3 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }
            
            .service-description {
                font-size: 0.85rem;
                line-height: 1.6;
            }
            
            .service-stats {
                gap: 1rem;
                margin-top: 2rem;
                padding-top: 1.5rem;
            }
            
            .stat-value {
                font-size: 1.1rem;
            }
            
            .stat-label {
                font-size: 0.65rem;
            }
            
            /* Process */
            .process {
                padding: 8rem 1.5rem;
            }
            
            .process-step {
                grid-template-columns: 50px 1fr;
                gap: 1.5rem;
                margin-bottom: 4rem;
                padding-bottom: 4rem;
            }
            
            .step-number {
                font-size: 2.5rem;
            }
            
            .step-content h3 {
                font-size: 1.5rem;
                margin-bottom: 0.75rem;
            }
            
            .step-content p {
                font-size: 0.85rem;
                line-height: 1.6;
            }
            
            /* Blog */
            .blog-section {
                padding: 8rem 0;
            }

            .blog-section .section-header {
                padding: 0 1.5rem !important;
                margin-bottom: 4rem !important;
            }

            .blog-preview {
                padding: 0 1.5rem;
            }

            .blog-card {
                padding: 2rem;
            }

            .blog-card h3 {
                font-size: 1.2rem;
            }

            /* Blog page mobile */
            .blog-header {
                padding: 8rem 1.5rem 3rem;
            }

            .blog-title {
                font-size: clamp(2.5rem, 10vw, 4rem);
            }

            .blog-subtitle {
                font-size: 0.9rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                padding: 0 1.5rem 4rem;
            }

            /* Article page mobile */
            .article-header {
                padding: 8rem 1.5rem 2rem;
            }

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

            .article-meta {
                flex-wrap: wrap;
                gap: 1rem;
            }

            .article-meta span:not(:last-child)::after {
                display: none;
            }

            .article-content {
                padding: 2rem 1.5rem 4rem;
            }

            .article-content h2 {
                font-size: 1.5rem;
                margin: 2rem 0 1rem;
            }

            .article-content h3 {
                font-size: 1.2rem;
            }

            .article-content p,
            .article-content li {
                font-size: 0.95rem;
            }

            .article-cta {
                margin: 0 1.5rem 4rem;
                padding: 2.5rem 1.5rem;
            }

            .article-cta h3 {
                font-size: 1.5rem;
            }

            .cta-button {
                padding: 1rem 1.8rem;
                font-size: 0.75rem;
            }

            /* Contact */
            .contact {
                padding: 8rem 1.5rem;
            }
            
            .contact-form {
                margin-top: 4rem;
            }
            
            .form-label {
                font-size: 0.65rem;
                margin-bottom: 0.75rem;
            }
            
            .form-input {
                padding: 1rem 0;
                font-size: 1rem;
            }
            
            textarea.form-input {
                min-height: 120px;
            }
            
            .form-submit {
                padding: 1.2rem 2rem;
                font-size: 0.75rem;
            }

            .cta-secondary {
                padding: 1rem 1.8rem;
                font-size: 0.75rem;
            }
            
            /* Footer */
            .footer {
                padding: 2rem 1.5rem;
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
            
            .footer-text {
                font-size: 0.65rem;
            }
            
            /* Cursor hidden on touch devices */
            .cursor,
            .cursor-dot {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.5rem;
            }
            
            .service h3 {
                font-size: 1.5rem;
            }
            
            .data-metrics {
                margin: 2rem 1rem;
                padding: 1.5rem 1rem;
            }
            
            .services,
            .process,
            .contact {
                padding: 6rem 1rem;
            }
        }
