        :root {
            --dark: #181D31;
            --mint: #CAF7E3;
            --grey: #8E7F7F;
            --olive: #9DAD7F;
            --white: #ffffff;
        }

        * {
            margin: 0; padding: 0; box-sizing: border-box;
            cursor: none; /* Custom cursor implementation */
        }

        body {
            background-color: var(--dark);
            color: var(--white);
            font-family: 'Lexend Deca', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        /* --- Custom Cursor --- */
        #cursor {
            width: 8px; height: 8px; background: var(--mint);
            position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999;
            transition: transform 0.1s;
        }
        #cursor-follower {
            width: 40px; height: 40px; border: 1px solid var(--mint);
            position: fixed; border-radius: 50%; pointer-events: none; z-index: 9998;
            transition: transform 0.15s ease-out, opacity 0.3s;
        }

        /* --- Header --- */
        header {
            position: fixed; top: 0; left: 0; width: 100%;
            padding: 30px 6%; display: flex; justify-content: space-between; align-items: center;
            z-index: 1000; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        header.scrolled {
            padding: 15px 6%; background: rgba(24, 29, 49, 0.9);
            backdrop-filter: blur(15px); border-bottom: 1px solid rgba(202, 247, 227, 0.1);
        }
        .nav-links a {
            margin-left: 35px; color: var(--mint); font-size: 0.85rem; font-weight: 600;
            letter-spacing: 1.5px; position: relative; transition: color 0.3s;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 0;
            height: 2px; background: var(--olive); transition: width 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a:hover { color: var(--olive); }

        /* --- Hero Slideshow --- */
        .hero-section {
            height: 100vh; width: 100%; position: relative; overflow: hidden;
            display: flex; align-items: center; justify-content: flex-end;
            padding-right: 8%;
        }
        .slideshow-bg {
            position: absolute; inset: 0; z-index: -1;
        }
        .slide {
            position: absolute; inset: 0; opacity: 0; transition: opacity 2s ease-in-out, transform 8s linear;
            background-size: cover; background-position: center; filter: brightness(0.4); transform: scale(1.1);
        }
        .slide.active { opacity: 1; transform: scale(1); }

        .hero-content {
            max-width: 650px; text-align: right; z-index: 10;
        }
        .hero-content h1 {
            font-size: clamp(3rem, 8vw, 6rem); line-height: 0.9; color: var(--white);
            text-shadow: 0 0 30px rgba(202, 247, 227, 0.3); margin-bottom: 20px;
        }

        /* --- Sections & Cards --- */
        .section-padding { padding: 120px 8%; }
        .bg-mint { background-color: var(--mint); color: var(--dark); }
        .text-mint { color: var(--mint); }
        .text-olive { color: var(--olive); }
        .text-grey { color: var(--grey); }

        .dashboard-card {
            background: var(--olive); border-radius: 40px; padding: 60px;
            color: var(--dark); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center;
        }

        .floating-card {
            background: var(--mint); color: var(--dark); padding: 40px; border-radius: 30px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid transparent;
        }
        .floating-card:hover {
            transform: translateY(-15px) rotate(2deg);
            box-shadow: 0 20px 40px rgba(202, 247, 227, 0.2);
            border: 1px solid var(--dark);
        }

        /* --- 3D Carousel --- */
        .carousel-container {
            perspective: 1200px; height: 500px; position: relative;
            display: flex; align-items: center; justify-content: center;
        }
        .card-3d {
            width: 380px; height: 240px; border-radius: 20px; position: absolute;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s;
            cursor: pointer; padding: 30px; display: flex; flex-direction: column;
            justify-content: space-between; box-shadow: 0 15px 35px rgba(0,0,0,0.4);
        }

        /* --- Utils --- */
        .page { display: none; }
        .page.active { display: block; animation: fadeIn 0.8s ease forwards; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        .btn-prime {
            padding: 18px 45px; border-radius: 50px; font-weight: 800; text-transform: uppercase;
            letter-spacing: 2px; transition: 0.3s; display: inline-block;
        }
        .btn-dark { background: var(--dark); color: var(--mint); }
        .btn-mint { background: var(--mint); color: var(--dark); }
        .btn-prime:hover { transform: scale(1.05); filter: brightness(1.1); }

        .accordion-header {
            padding: 25px 0; border-bottom: 1px solid rgba(142, 127, 127, 0.3);
            cursor: pointer; display: flex; justify-content: space-between; align-items: center;
        }
        .accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; color: var(--grey); }
        .accordion-item.active .accordion-body { max-height: 300px; padding: 20px 0; }

        /* --- Horizontal Scroll --- */
        .h-scroll-container {
            overflow-x: auto; display: flex; gap: 40px; padding-bottom: 40px;
            scrollbar-width: none;
        }
        .h-scroll-container::-webkit-scrollbar { display: none; }
        .h-scroll-item {
            min-width: 400px; height: 500px; background: rgba(255,255,255,0.03);
            border-radius: 30px; padding: 50px; display: flex; flex-direction: column;
            justify-content: flex-end; transition: 0.5s;
        }
        .h-scroll-item:hover { background: var(--olive); color: var(--dark); transform: scale(0.98); }

        /* --- Multi-page Content Styling --- */
        .content-block { margin-bottom: 80px; }
        .stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
        .stat-item { text-align: center; padding: 40px; background: rgba(255,255,255,0.05); border-radius: 20px; }
        .stat-val { font-size: 3rem; font-weight: 900; color: var(--mint); display: block; }
    