        :root {
            --bg-dark: #0a0a0b;
            --bg-card: #111113;
            --bg-hover: #1a1a1d;
            --text-primary: #fafafa;
            --text-secondary: #888890;
            --text-muted: #555560;
            --accent: #00ff88;
            --accent-dim: #00cc6a;
            --accent-glow: rgba(0, 255, 136, 0.15);
            --border: #222228;
            --gradient-1: #00ff88;
            --gradient-2: #00d4ff;
            --gradient-3: #8b5cf6;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Noise texture overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
            z-index: 1000;
        }

        /* Grid background */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: -1;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 24px 0;
            z-index: 100;
            background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 100%);
        }

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

        .nav-logo {
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-cta {
            background: var(--accent);
            color: var(--bg-dark);
            padding: 12px 28px;
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: var(--text-primary);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 160px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1000px;
            height: 100%;
            background-image: url('nobglogo.png');
            background-repeat: no-repeat;
            background-position: center;
            background-size: 1024px auto;
            opacity: 0.11;
            z-index: 0;
            pointer-events: none;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .hero-right {
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: flex-end;
            text-align: right;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--accent-glow);
            border: 1px solid rgba(0, 255, 136, 0.3);
            padding: 8px 20px;
            margin-bottom: 32px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: var(--accent);
            letter-spacing: 1px;
            animation: pulse-glow 3s ease-in-out infinite;
        }

        @keyframes pulse-glow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
            }

            50% {
                box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
            }
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: blink 2s ease-in-out infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }

        .hero h1 {
            font-size: clamp(48px, 7vw, 88px);
            font-weight: 800;
            line-height: 0.85;
            margin-bottom: 32px;
            letter-spacing: -2px;
        }

        .hero h1 .gradient-text,
        .contact-title .gradient-text {
            background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-top: 24px;
        }

        .contact-title .gradient-text {
            margin-top: 0;
        }

        .hero-subtitle {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 300;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 540px;
            line-height: 1.5;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-bottom: 0;
            justify-content: flex-end;
        }

        .stat {
            position: relative;
        }

        .stat-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 48px;
            font-weight: 600;
            color: var(--accent);
            line-height: 1;
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 8px;
            white-space: nowrap;
        }

        .hero-ctas {
            display: flex;
            gap: 20px;
            justify-content: flex-end;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--accent);
            color: var(--bg-dark);
            padding: 18px 28px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
        }

        .btn-primary svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: transparent;
            color: var(--text-primary);
            padding: 18px 28px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

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

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

        .team-replace-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 40px;
            position: relative;
            text-align: left;
            margin-bottom: 32px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .team-replace-card.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .stat-trigger-6in1 {
            cursor: pointer;
            position: relative;
            min-width: 180px;
            text-align: center;
        }

        .stat-trigger-6in1::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--accent);
            opacity: 0.5;
            transition: opacity 0.3s;
        }

        .stat-trigger-6in1:hover::after {
            opacity: 1;
        }

        .team-replace-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 40px;
            right: 40px;
            height: 2px;
            background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
        }

        .card-header {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 32px;
        }

        .roles-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .role-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            background: var(--bg-dark);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

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

        .role-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
        }

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

        .foundation-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            background: var(--bg-hover);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }

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

        .role-text {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .role-item:hover .role-text {
            color: var(--text-primary);
        }

        .equals-row {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 32px 0;
        }

        .equals-sign {
            font-family: 'JetBrains Mono', monospace;
            font-size: 32px;
            color: var(--accent);
        }

        .result-box {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.05));
            border: 1px solid var(--accent);
            padding: 12px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .result-box span {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
        }

        /* Value Props Section */
        .value-props {
            padding: 120px 0;
            border-top: 1px solid var(--border);
        }

        .section-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: var(--accent);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .section-title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            margin-bottom: 64px;
            max-width: 800px;
            letter-spacing: -1px;
        }

        .props-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .prop-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 48px 40px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .prop-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

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

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

        .prop-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-glow);
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
        }

        .prop-icon svg {
            width: 28px;
            height: 28px;
            color: var(--accent);
        }

        .prop-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .prop-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        /* Work Section */
        .work-section {
            padding: 120px 0;
            border-top: 1px solid var(--border);
        }

        .work-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 64px;
        }

        .work-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .work-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

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

        .work-image {
            width: 100%;
            height: 280px !important;
            background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
            display: flex;
            align-items: flex-start;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .work-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 212, 255, 0.05));
        }



        .work-placeholder {
            font-family: 'JetBrains Mono', monospace;
            font-size: 64px;
            color: var(--accent);
            opacity: 1;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            overflow: hidden;
            /* Ensure image doesn't overflow during zoom */
        }

        .work-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }

        .work-card:hover .work-placeholder img {
            opacity: 1;
        }

        .work-content {
            padding: 32px;
        }

        .work-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .work-tag {
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            color: var(--accent);
            background: var(--accent-glow);
            padding: 6px 12px;
            letter-spacing: 1px;
        }

        .work-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .work-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .work-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: gap 0.3s ease;
        }

        .work-link:hover {
            gap: 14px;
        }

        /* Featured Work - Larger Card */
        .work-featured {
            grid-column: span 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .work-featured .work-image {
            height: 100%;
            min-height: 400px;
        }

        .work-featured .work-content {
            padding: 48px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Experience Section */
        .experience-section {
            padding: 120px 0;
            border-top: 1px solid var(--border);
        }

        .experience-grid {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 80px;
        }

        .experience-sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }

        .exp-stat {
            margin-bottom: 40px;
        }

        .exp-stat-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 72px;
            font-weight: 600;
            color: var(--accent);
            line-height: 1;
        }

        .exp-stat-label {
            font-size: 14px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 8px;
        }

        .clients-list {
            border-top: 1px solid var(--border);
            padding-top: 32px;
        }

        .clients-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .client-name {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }

        .timeline {
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 1px;
            background: var(--border);
        }

        .timeline-item {
            position: relative;
            padding-left: 48px;
            padding-bottom: 64px;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -4px;
            top: 8px;
            width: 9px;
            height: 9px;
            background: var(--accent);
            border-radius: 50%;
        }

        .timeline-date {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: var(--accent);
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .timeline-company {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .timeline-role {
            font-size: 14px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .timeline-highlights {
            list-style: none;
        }

        .timeline-highlights li {
            position: relative;
            padding-left: 20px;
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            line-height: 1.6;
        }

        .timeline-highlights li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent);
        }

        /* Skills Section */
        .skills-section {
            padding: 120px 0;
            border-top: 1px solid var(--border);
            background: var(--bg-card);
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
        }

        .skill-category h3 {
            font-size: 14px;
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
        }

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

        .skill-list li {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .skill-list li:hover {
            color: var(--text-primary);
        }

        /* Contact Section */
        .contact-section {
            padding: 160px 0;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .contact-title {
            font-size: clamp(48px, 8vw, 96px);
            font-weight: 800;
            margin-bottom: 32px;
            letter-spacing: -3px;
            line-height: 1.1;
        }

        .contact-subtitle {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 300;
            color: var(--text-secondary);
            margin-bottom: 48px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        .contact-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 64px;
        }

        .contact-link {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            color: var(--text-primary);
            text-decoration: none;
            padding: 16px 32px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .contact-link:hover {
            border-color: var(--accent);
            background: var(--accent-glow);
        }

        .contact-link svg {
            width: 20px;
            height: 20px;
            color: var(--accent);
        }

        /* Footer */
        footer {
            padding: 40px 0;
            border-top: 1px solid var(--border);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .footer-links {
            display: flex;
            gap: 32px;
        }

        .footer-links a {
            font-size: 13px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

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

            .props-grid {
                grid-template-columns: 1fr;
            }

            .work-grid {
                grid-template-columns: 1fr;
            }

            .work-featured {
                grid-column: span 1;
                grid-template-columns: 1fr;
            }

            .experience-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .experience-sidebar {
                position: relative;
                top: 0;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }

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

        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }

            nav {
                padding: 20px 24px;
            }

            .nav-links {
                display: none;
            }

            .hero-stats {
                flex-direction: column;
                gap: 24px;
            }

            .hero-ctas {
                flex-direction: column;
            }

            .roles-grid {
                grid-template-columns: 1fr;
            }

            .experience-sidebar {
                grid-template-columns: 1fr;
            }

            .skills-grid {
                grid-template-columns: 1fr;
            }

            .contact-links {
                flex-direction: column;
                align-items: center;
            }

            footer {
                flex-direction: column;
                gap: 24px;
                text-align: center;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger delays */
        .delay-1 {
            transition-delay: 0.1s;
        }

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

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

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

        /* The Human Element Section */
        .human-section {
            padding: 140px 0;
            position: relative;
            background: linear-gradient(to bottom, var(--bg-dark), var(--bg-card));
            overflow: hidden;
            border-top: 1px solid var(--border);
        }

        /* Animated Cloud Background */
        .human-bg-cloud {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 50%, transparent 70%);
            filter: blur(60px);
            transform: translate(-50%, -50%);
            animation: cloud-pulse 10s infinite ease-in-out;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes cloud-pulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.8;
            }
        }

        /* Responsive adjustments for human section */
        @media (max-width: 1200px) {
            .human-grid-merged {
                grid-template-columns: 1fr 1fr !important;
            }

            .human-subtitle {
                grid-column: span 2 !important;
            }
        }

        @media (max-width: 768px) {
            .human-grid-merged {
                grid-template-columns: 1fr !important;
            }

            .human-subtitle {
                grid-column: span 1 !important;
            }
        }

        /* Merged Area: Education & Lifestyle */
        .human-grid-merged {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            /* 4 Columns */
            gap: 24px;
            margin-top: 64px;
            margin-bottom: 80px;
        }

        /* Make the title span the full width */
        .human-subtitle {
            grid-column: span 4;
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            color: var(--accent);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }


        .human-subtitle::after {
            content: '';
            height: 1px;
            flex-grow: 1;
            background: linear-gradient(90deg, var(--accent), transparent);
            opacity: 0.3;
        }

        /* Foundation Item (Card) - Layout adjustments for grid */
        .foundation-item {
            display: flex;
            flex-direction: column;
            /* Stack icon and text vertically for smaller cards */
            gap: 16px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-bottom: 0;
            /* Removing bottom margin as we use grid gap */
            transition: all 0.3s ease;
            height: 100%;
            /* Fill grid cell height */
        }


        .foundation-item:hover {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.04);
            transform: translateX(8px);
        }

        .foundation-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            background: var(--bg-hover);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }

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

        .foundation-content h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .foundation-content p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 4px;
        }

        .foundation-content strong {
            color: var(--text-primary);
        }

        /* Soft Skills Cloud (Right Col) */
        .cloud-wrapper {
            position: relative;
            min-height: 400px;
            /* Reduced height since they are in a line */
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0;
            /* We will use margins/transform for overlap if needed, or just let them touch */
        }

        .cloud-item {
            position: relative;
            /* Changed from absolute to relative for flex flow */
            width: 220px;
            /* Slightly smaller to fit 5 in a row */
            height: 220px;
            padding: 24px;
            border-radius: 50%;
            /* Glassmorphism */
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            cursor: default;
            flex-shrink: 0;

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;

            /* Initial state for animation */
            transform: translateY(0);
        }

        .cloud-content h5 {
            font-size: 16px;
            /* Slightly bigger */
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cloud-content p {
            font-size: 11px;
            /* Slightly smaller */
            color: rgba(255, 255, 255, 0.6);
            /* Slightly darker/dimmer */
            line-height: 1.4;
        }

        /* Individual Animations & Positions */
        .item-1 {
            top: 20px;
            animation: bounce-slow 6s ease-in-out infinite;
            margin-right: -20px;
            /* slight overlap */
            z-index: 1;
        }

        .item-2 {
            top: -30px;
            animation: bounce-med 5s ease-in-out infinite;
            /* Different speed */
            margin-right: -20px;
            z-index: 2;
        }

        .item-3 {
            top: 10px;
            animation: bounce-slow 7s ease-in-out infinite;
            /* Different speed */
            margin-right: -20px;
            z-index: 3;
        }

        .item-4 {
            top: -20px;
            animation: bounce-fast 5.5s ease-in-out infinite;
            /* Different speed */
            margin-right: -20px;
            z-index: 2;
        }

        .item-5 {
            top: 30px;
            animation: bounce-med 6.5s ease-in-out infinite;
            /* Different speed */
            z-index: 1;
        }

        @keyframes bounce-slow {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes bounce-med {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes bounce-fast {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Responsive: Stack on mobile */
        @media (max-width: 1200px) {
            .cloud-wrapper {
                flex-wrap: wrap;
                /* Allow wrapping on smaller screens */
                height: auto;
                padding-bottom: 40px;
            }

            .cloud-item {
                margin-right: 0;
                top: 0;
            }
        }

        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-dark);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        #preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-ring {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(0, 255, 136, 0.1);
            border-top: 1px solid var(--accent);
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* ===== SERVICES SECTION ===== */
        .services-section {
            padding: 120px 0;
            border-top: 1px solid var(--border);
            background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 40px 32px;
            position: relative;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            border-color: var(--accent);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
        }

        .service-featured {
            border-color: var(--accent);
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, var(--bg-card) 50%);
        }

        .service-featured::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 32px;
            right: 32px;
            height: 2px;
            background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
        }

        .service-badge {
            position: absolute;
            top: -12px;
            right: 24px;
            background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
            color: var(--bg-dark);
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 6px 14px;
        }

        .service-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-glow);
            margin-bottom: 24px;
        }

        .service-icon svg {
            width: 28px;
            height: 28px;
            color: var(--accent);
        }

        .service-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .service-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 32px;
            flex-grow: 1;
        }

        .service-features li {
            position: relative;
            padding-left: 20px;
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 600;
        }

        .service-price {
            margin-bottom: 24px;
            display: flex;
            align-items: baseline;
            gap: 4px;
            flex-wrap: wrap;
        }

        .price-label {
            font-size: 13px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
            margin-bottom: 4px;
        }

        .price-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 42px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1;
        }

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

        .service-cta {
            width: 100%;
            justify-content: center;
            text-align: center;
        }

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

            .service-featured {
                order: -1;
            }
        }

        /* ===== ROI BADGES ON WORK CARDS ===== */
        .work-roi {
            display: inline-block;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            font-weight: 600;
            color: var(--accent);
            background: var(--accent-glow);
            padding: 6px 12px;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        /* ===== INTERACTIVE SCREENSHOT SCROLL ===== */
        .work-image-scroll {
            overflow: hidden;
        }

        .work-image-scroll .work-placeholder img {
            transition: transform 2s cubic-bezier(0.25, 0.1, 0.25, 1);
            object-position: top;
        }

        .work-card:hover .work-image-scroll .work-placeholder img {
            transform: translateY(calc(-100% + 280px));
        }

        .work-featured:hover .work-image-scroll .work-placeholder img {
            transform: translateY(calc(-100% + 400px));
        }