        :root {
            --primary: #accd54;
            --secondary: #0e6495;
            --bg-base: #010204;
            --text-main: #ffffff;
            --text-muted: #aaaaaa;
            --glass-line: rgba(255, 255, 255, 0.1);
            --card-bg: rgba(255, 255, 255, 0.03);
            --card-solid: rgba(5, 5, 5, 0.5);
            --input-bg: rgba(255, 255, 255, 0.05);
            --cursor-bg: #fff;
        }

        /* Light Mode Overrides */
        body.light-mode {
            --bg-base: #f8fafc;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --glass-line: rgba(0, 0, 0, 0.1);
            --card-bg: rgba(0, 0, 0, 0.05);
            --card-solid: rgba(255, 255, 255, 0.8);
            --input-bg: rgba(0, 0, 0, 0.05);
            --cursor-bg: #000;
        }

        body.light-mode .ambient-canvas {
            opacity: 0.2;
            filter: saturate(1.5);
        }

        body.light-mode .ui-glass,
        body.light-mode .ultra-card,
        body.light-mode .modal-content {
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
        }

        body.light-mode .huge-action {
            -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
        }

        body.light-mode .huge-action:hover {
            color: #000;
            text-shadow: 0 0 50px rgba(14, 100, 149, 0.5);
        }

        body.light-mode .modal-overlay {
            background: rgba(255, 255, 255, 0.8);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-base);
            color: var(--text-main);
            overflow-x: hidden;
            font-weight: 300;
            transition: background-color 0.5s ease, color 0.5s ease;
        }

        /* Responsive Custom Cursor Logic */
        .cursor-dot {
            position: fixed;
            width: 6px;
            height: 6px;
            background: var(--cursor-bg);
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s;
        }

        .cursor-ring {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 1px solid var(--cursor-bg);
            opacity: 0.4;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
        }

        .cursor-ring.active {
            width: 80px;
            height: 80px;
            border-color: transparent;
            opacity: 1;
            background: rgba(172, 205, 84, 0.2);
            backdrop-filter: blur(4px);
        }

        /* Ambient Multi-Color Animated Background */
        .ambient-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
            background: var(--bg-base);
            transition: background-color 0.5s ease, opacity 0.5s ease;
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.5;
            animation: orbFlow 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .blob-1 {
            width: 60vmax;
            height: 60vmax;
            background: var(--secondary);
            top: -20%;
            left: -10%;
        }

        .blob-2 {
            width: 50vmax;
            height: 50vmax;
            background: #5521c3;
            bottom: -20%;
            right: -10%;
            animation-delay: -5s;
        }

        .blob-3 {
            width: 40vmax;
            height: 40vmax;
            background: var(--primary);
            top: 30%;
            left: 40%;
            animation-delay: -10s;
            opacity: 0.3;
        }

        @keyframes orbFlow {
            0% {
                transform: translate(0, 0) scale(1) rotate(0deg);
            }

            50% {
                transform: translate(15%, 10%) scale(1.2) rotate(45deg);
            }

            100% {
                transform: translate(-10%, 20%) scale(0.8) rotate(-45deg);
            }
        }

        .grain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 999;
            opacity: 0.04;
            mix-blend-mode: overlay;
            background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
        }

        /* --- 1. Floating Responsive Header --- */
        .nav-wrapper {
            position: fixed;
            top: 20px;
            left: 5%;
            width: 90%;
            z-index: 1000;
            background: var(--card-solid);
            backdrop-filter: blur(15px);
            border: 1px solid var(--glass-line);
            border-radius: 50px;
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand {
            font-family: 'Outfit', sans-serif;
            font-weight: 500;
            font-size: 1.5rem;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 1px;
            color: var(--text-main);
            transition: 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-main);
        }

        .pill-btn {
            padding: 12px 25px;
            border-radius: 40px;
            border: 1px solid var(--glass-line);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            overflow: hidden;
            position: relative;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            color: var(--text-main);
        }

        .pill-btn.solid {
            background: var(--primary);
            color: #000;
            border: none;
            font-weight: 600;
        }

        .pill-btn::before {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
            z-index: -1;
            border-radius: 50%;
        }

        .pill-btn:not(.solid):hover::before {
            transform: translateY(-100%);
            border-radius: 0;
        }

        .pill-btn:hover {
            color: #000;
            border-color: transparent;
        }

        /* --- 2. Floating Theme Toggle --- */
        .theme-float {
            position: fixed;
            top: 100px;
            right: 0%;
            z-index: 999;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--card-solid);
            border: 1px solid var(--glass-line);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            color: var(--text-main);
            transition: 0.3s;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .theme-float:hover {
            background: var(--primary);
            color: #000;
            border-color: var(--primary);
        }

        /* Typography & Layout Shared */
        h1,
        h2,
        h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 200;
            letter-spacing: -0.04em;
            color: var(--text-main);
            line-height: 0.95;
            transition: 0.5s;
        }

        .huge-text {
            font-size: clamp(2rem, 5vw, 4.5rem);
            margin-bottom: 25px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        section {
            position: relative;
            padding: 8vh 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 150px;
            text-align: center;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .badge {
            display: inline-flex;
            padding: 8px 20px;
            border: 1px solid var(--glass-line);
            border-radius: 30px;
            margin-bottom: 30px;
            font-size: 0.85rem;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
        }

        .ultra-title {
            font-size: clamp(2.5rem, 7vw, 6.5rem);
            margin-bottom: 25px;
        }

        .hero-desc {
            font-size: clamp(1rem, 1.5vw, 1.3rem);
            max-width: 700px;
            color: var(--text-muted);
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            width: 100%;
            flex-wrap: wrap;
        }

        .hero-visual {
            position: relative;
            width: 90%;
            max-width: 1000px;
            height: 45vw;
            max-height: 600px;
            margin: 60px auto 0;
        }

        .ui-glass {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 1px solid var(--glass-line);
            border-radius: 30px;
            background: var(--card-solid);
            backdrop-filter: blur(20px);
            overflow: hidden;
            transform: perspective(1000px) rotateX(15deg);
        }

        .ui-glass img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }

        /* Problem */
        .split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8vw;
            align-items: center;
        }

        .list-animated {
            list-style: none;
            margin-top: 30px;
        }

        .list-animated li {
            font-size: 1.1rem;
            padding: 20px 0;
            border-bottom: 1px solid var(--glass-line);
            display: flex;
            align-items: center;
        }

        .list-animated li i {
            color: var(--primary);
            margin-right: 20px;
            font-size: 1.5rem;
        }

        .transform-stage {
            position: relative;
            height: clamp(300px, 40vw, 500px);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .messy-pdf {
            width: 60%;
            height: 60%;
            background: #fff;
            position: absolute;
            border: 1px solid #ccc;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .pdf-1 {
            transform: rotate(-15deg) translate(-20px, -20px);
        }

        .clean-map {
            width: 100%;
            height: 100%;
            background: url('../img/about.png') center/cover;
            border-radius: 20px;
            border: 1px solid var(--primary);
            box-shadow: 0 0 50px rgba(172, 205, 84, 0.2);
            opacity: 0;
            transform: scale(0.8);
        }

        /* Projects Section Fixes */
        .projects-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            grid-template-rows: auto;
            gap: 24px;
            margin-top: 50px;
            margin-bottom: 40px;
            align-items: stretch;
        }

        .projects-grid .ultra-card:first-child {
            grid-row: 1 / 3;
            grid-column: 1 / 2;
            min-height: 560px;
            height: auto;
        }

        .projects-grid .ultra-card:not(:first-child) {
            height: 268px;
            min-height: unset;
        }

        .ultra-card {
            height: 400px;
            background-color: var(--card-solid);
            background-blend-mode: overlay;
            border: 1px solid var(--glass-line);
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(30px);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            transition: border-color 0.4s;
        }

        .ultra-card:hover {
            border-color: var(--primary);
        }

        .uc-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.75;
            transition: transform 0.6s, opacity 0.6s;
            z-index: 0;
        }

        .ultra-card:hover .uc-img {
            transform: scale(1.05);
            opacity: 1;
        }

        .uc-content {
            z-index: 2;
        }

        .uc-content h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 400;
        }

        .uc-stats {
            display: flex;
            gap: 15px;
            margin-top: 10px;
            flex-wrap: wrap;
        }

        .uc-stat {
            background: rgba(0, 0, 0, 0.6);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .uc-stat.primary {
            color: var(--primary);
            border-color: var(--primary);
        }

        /* Masonry Modal */
        .masonry-container {
            columns: 2 300px;
            gap: 20px;
            width: 100%;
            margin-top: 30px;
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 20px;
        }

        .masonry-card {
            background: var(--card-solid);
            border: 1px solid var(--glass-line);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }

        .masonry-card img {
            width: 100%;
            height: auto;
            display: block;
            opacity: 0.7;
        }

        .masonry-text {
            padding: 15px;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            color: #fff;
        }

        /* Money Box */
        .money-box {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            background: var(--card-bg);
            border: 1px solid var(--glass-line);
            border-radius: 40px;
            padding: clamp(40px, 6vw, 80px);
            align-items: center;
        }

        /* Feature Cards */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .feature-box {
            background: var(--card-bg);
            border: 1px solid var(--glass-line);
            padding: 40px;
            border-radius: 30px;
            transition: border-color 0.3s;
        }

        .feature-box:hover {
            border-color: var(--primary);
        }

        .feature-box h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-family: 'Plus Jakarta Sans';
            font-weight: 500;
        }

        /* Popups / Modals */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: 0.4s;
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-content {
            background: var(--bg-base);
            border: 1px solid var(--glass-line);
            padding: clamp(30px, 5vw, 50px);
            border-radius: 30px;
            width: 90%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: scroll;
            transform: translateY(50px);
            transition: 0.4s;
            position: relative;
            scrollbar-width: none;
            -ms-overflow-style: none;
            /* Hide scrollbar for standard browsers */
        }

        .modal-content::-webkit-scrollbar {
            display: none;
        }

        /* Safari and Chrome */
        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }

        .modal-content.large {
            max-width: 900px;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            color: var(--text-muted);
            background: none;
            border: none;
            transition: 0.3s;
            z-index: 10;
        }

        .close-modal:hover {
            color: var(--primary);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .form-group input {
            width: 100%;
            padding: 15px;
            background: var(--input-bg);
            border: 1px solid var(--glass-line);
            border-radius: 12px;
            color: var(--text-main);
            font-family: inherit;
            font-size: 1rem;
            transition: 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
        }

        /* CTA & Footer */
        .cta-section {
            text-align: center;
        }

        .huge-action {
            font-family: 'Outfit';
            font-size: clamp(2.5rem, 8vw, 8rem);
            font-weight: 200;
            line-height: 0.9;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
            transition: all 0.5s ease;
        }

        body.light-mode .huge-action {
            -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
        }

        .huge-action:hover {
            color: var(--text-main);
            -webkit-text-stroke: 0px;
            text-shadow: 0 0 50px var(--secondary);
            transform: scale(1.02);
        }

        .multi-text {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-style: normal;
            font-weight: 500;
        }

        footer {
            margin-top: 5vh;
            padding: 50px 5%;
            border-top: 1px solid var(--glass-line);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        @media (max-width: 900px) {

            .split-grid,
            .money-box,
            .projects-grid,
            .feature-grid {
                grid-template-columns: 1fr;
            }

            .nav-links,
            .nav-btn {
                display: none;
            }

            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                right: 0;
                background: var(--bg-base);
                padding: 30px;
                border-radius: 20px;
                border: 1px solid var(--glass-line);
                width: 250px;
                align-items: flex-start;
            }

            .hamburger {
                display: block;
            }

            * {
                cursor: auto !important;
            }

            .cursor-dot,
            .cursor-ring {
                display: none !important;
            }

            .theme-float {
                top: 90px;
                right: 0%;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        .ultra-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
            z-index: 1;
            pointer-events: none;
            transition: height 0.4s;
        }

        .ultra-card:hover::after {
            height: 50%;
        }

        .uc-content {
            position: relative;
            z-index: 2;
        }

        .ultra-card .uc-img {
            z-index: 0;
        }


