@layer base {
            .wrapper-1 {
                @apply bg-[#050f05] text-white font-sans overflow-x-hidden selection:bg-primary/30;
            }
        }
        .glass-header {
            background: rgba(5, 15, 5, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(141, 245, 59, 0.15);
            transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        .glass-card:hover {
            border-color: rgba(141, 245, 59, 0.6);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 0 30px rgba(141, 245, 59, 0.1);
        }
        .glass-card:hover .icon-container {
            @apply scale-110;
            box-shadow: 0 0 15px rgba(141, 245, 59, 0.3);
        }
        .icon-container {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #8df53b;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .shimmer-btn:hover::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                120deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent
            );
            transition: all 0.6s;
            animation: shimmer 0.8s forwards;
        }
        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 150%; }
        }
        .reveal-item {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-item.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Standard Header Style - Based on Block 2 */
        .section-header-title {
            @apply text-3xl md:text-5xl font-extrabold text-dark-green leading-tight;
        }

        /* Standard Icon Style */
        .standard-icon-container {
            width: 100px;
            height: 100px;
            background: #ffffff;
            border-radius: 20px;
            border: 1px solid #8df53b;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }
        .standard-icon-container .material-symbols-outlined,
        .standard-icon-container .material-icons-outlined {
            color: #8df53b;
            font-size: 38px;
        }
        .standard-icon-container::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 20px;
            padding: 1px;
            background: linear-gradient(135deg, #8df53b, #b9f783);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }
        .standard-icon-container:hover {
            box-shadow: 0 0 20px 5px rgba(141, 245, 59, 0.4);
            transform: scale(1.05);
        }

        /* Standard Miniature Plate Style */
        .mini-plate {
            @apply bg-primary text-darkgreen px-4 py-1.5 rounded-full text-xs font-bold uppercase tracking-wider inline-block;
        }

        #three-canvas {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1; /* Above the glow */
            pointer-events: none;
            width: 1180px;
            height: 1180px;
        }
        .sphere-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(141, 245, 59, 0.45) 0%, rgba(141, 245, 59, 0.15) 40%, transparent 70%);
            filter: blur(60px);
            z-index: 0;
            border-radius: 50%;
            pointer-events: none;
            animation: glow-pulse 4s ease-in-out infinite;
        }
        @keyframes glow-pulse {
            0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
        }
        /* FAQ Accordion Styling */
        .accordion-item .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            margin-top: 0;
        }
        .accordion-item.active .accordion-content {
            max-height: 300px;
            opacity: 1;
            margin-top: 1.25rem;
            padding-bottom: 0.5rem;
        }
        .accordion-item.active .arrow-icon {
            transform: rotate(180deg);
            color: #8df53b;
        }
        .accordion-item.active {
            border-color: rgba(141, 245, 59, 0.3) !important;
            background: rgba(141, 245, 59, 0.03);
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
        }
        .hero-gradient-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(141, 245, 59, 0.12) 0%, rgba(20, 80, 20, 0.08) 35%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        /* Contact Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        .modal-overlay.active {
            opacity: 1;
            pointer-events: all;
        }
        .modal-content {
            background: linear-gradient(145deg, #0a1e0c, #132313);
            border: 1px solid rgba(141, 245, 59, 0.3);
            border-radius: 24px;
            padding: 3rem 2.5rem;
            max-width: 480px;
            width: 90%;
            position: relative;
            transform: translateY(30px) scale(0.95);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .modal-overlay.active .modal-content {
            transform: translateY(0) scale(1);
        }
        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        .modal-close:hover {
            background: rgba(141, 245, 59, 0.3);
        }
        .modal-input {
            width: 100%;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(141, 245, 59, 0.2);
            border-radius: 14px;
            padding: 14px 18px;
            color: white;
            font-family: 'Manrope', sans-serif;
            font-size: 15px;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .modal-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        .modal-input:focus {
            border-color: #8df53b;
            box-shadow: 0 0 0 3px rgba(141, 245, 59, 0.15);
        }

        /* Quiz Styles */
        .quiz-option {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(141, 245, 59, 0.2);
            border-radius: 12px;
            padding: 16px 20px;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 16px;
            font-family: 'Manrope', sans-serif;
            font-size: 15px;
        }
        .quiz-option:hover {
            background: rgba(141, 245, 59, 0.1);
            border-color: rgba(141, 245, 59, 0.5);
        }
        .quiz-option.selected {
            background: rgba(141, 245, 59, 0.2);
            border-color: #8df53b;
        }
        .quiz-option-radio {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 2px solid rgba(141, 245, 59, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s;
        }
        .quiz-option.selected .quiz-option-radio {
            border-color: #8df53b;
        }
        .quiz-option.selected .quiz-option-radio::after {
            content: '';
            width: 10px;
            height: 10px;
            background: #8df53b;
            border-radius: 50%;
        }
        .quiz-step {
            display: none;
            animation: fadeIn 0.4s ease;
        }
        .quiz-step.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
    
    <!-- Styles from Section 2 -->
    
        .wrapper-2 {
            font-family: 'Manrope', sans-serif;
            overflow-x: hidden;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(132, 204, 22, 0.3);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .dark .glass-card {
            background: rgba(19, 35, 19, 0.45);
            border: 1px solid rgba(132, 204, 22, 0.2);
        }

        .glass-card:hover {
            transform: translateY(-6px) scale(1.01);
            border-color: rgba(132, 204, 22, 1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        .icon-container {
            transition: all 0.4s ease;
        }

        .glass-card:hover .icon-container {
            transform: scale(1.12) rotate(-8deg);
            filter: drop-shadow(0 0 8px rgba(132, 204, 22, 0.4));
        }

        .reveal-node {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .reveal-node.active {
            opacity: 1;
            transform: translateY(0);
        }

        .dot-pulse {
            position: relative;
        }

        .dot-pulse::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ef4444;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }

            100% {
                transform: scale(2.5);
                opacity: 0;
            }
        }

        .cta-pulse {
            animation: shadow-pulse 3s infinite;
        }

        @keyframes shadow-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(132, 204, 22, 0.4);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(132, 204, 22, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(132, 204, 22, 0);
            }
        }

        .neural-line {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
        }

        .active .neural-line {
            animation: dash 1.8s ease-in-out forwards;
        }

        @keyframes dash {
            to {
                stroke-dashoffset: 0;
            }
        }

        .italic-grow {
            position: relative;
            display: inline-block;
            color: transparent;
            background: linear-gradient(90deg, #84cc16 0%, #84cc16 100%);
            background-repeat: no-repeat;
            background-size: 0% 100%;
            background-clip: text;
            -webkit-background-clip: text;
            transition: background-size 1s ease 0.5s;
        }

        .active .italic-grow {
            background-size: 100% 100%;
        }

        .arrow-rotate {
            transition: transform 0.3s ease;
        }

        .btn-hover:hover .arrow-rotate {
            transform: rotate(45deg) scale(1.2);
        }
    
    <!-- Styles from Section 3 -->
    
        .glass-card {
            background: rgba(255, 255, 255, 0.85); /* Light background always for dark font */
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(163, 230, 53, 0.3);
            color: #132313; /* Force dark font in cards */
        }

        .dark .glass-card {
            background: rgba(255, 255, 255, 0.92); /* Keep cards light in dark mode as requested */
            border: 1px solid rgba(163, 230, 53, 0.4);
            color: #132313;
        }

        .neural-bg {
            background-image: radial-gradient(circle at 2px 2px, rgba(163, 230, 53, 0.15) 1px, transparent 0);
            background-size: 40px 40px;
        }

        .node-line {
            position: absolute;
            background: rgba(163, 230, 53, 0.2);
            z-index: 0;
        }
    
    <!-- Styles from Section 4 -->
    
        .glass-card {
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .dark .glass-card {
            background: rgba(6, 42, 26, 0.45);
            border: 1px solid rgba(93, 222, 58, 0.1);
        }

        .dotted-path {
            stroke-dasharray: 8 8;
        }

        .step-glow {
            filter: blur(40px);
            opacity: 0.15;
        }

        .italic-accent {
            font-style: italic;
        }
    
    <!-- Styles from Section 5 -->
    
        .wrapper-5 {
            font-family: 'Manrope', sans-serif;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .dark .glass-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .glass-card:hover {
            transform: translateY(-8px);
            border-color: #8df53b;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        .dark-glass-plate {
            background: rgba(13, 31, 15, 0.92);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .bg-pattern {
            background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238df53b' fill-opacity='0.1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zM10 10C4.477 10 0 14.477 0 20s4.477 10 10 10 10-4.477 10-10-4.477-10-10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .glow-pulse {
            animation: pulse-glow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes pulse-glow {

            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 0px rgba(141, 245, 59, 0);
            }

            50% {
                opacity: 0.8;
                box-shadow: 0 0 20px rgba(141, 245, 59, 0.4);
            }
        }

        .progress-line {
            height: 4px;
            background: #8df53b;
            border-radius: 2px;
            width: 0;
            transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .reveal-progress .progress-line {
            width: 100%;
        }
    
    <!-- Styles from Section 6 -->
    
        @layer components {
            .glass-card {
                background: rgba(255, 255, 255, 0.45);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                border: 1px solid rgba(132, 204, 22, 0.2);
                @apply transition-all duration-500 ease-[cubic-bezier(0.23,1,0.32,1)];
            }
            .dark .glass-card {
                background: rgba(20, 30, 15, 0.45);
                border: 1px solid rgba(132, 204, 22, 0.1);
            }@keyframes slow-rotate {
                from { transform: translate(-50%, -50%) rotate(0deg); }
                to { transform: translate(-50%, -50%) rotate(360deg); }
            }
            .shield-pattern {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 480px;
                height: 480px;
                pointer-events: none;
                opacity: 0.09;
                z-index: 0;
                animation: slow-rotate 720s linear infinite;}@keyframes subtle-shiver {
                0%, 100% { transform: scale(1.1); }
                50% { transform: scale(1.15) rotate(2deg); }
            }
            @keyframes button-glow {
                0%, 100% { box-shadow: 0 0 15px rgba(132, 204, 22, 0.2); }
                50% { box-shadow: 0 0 30px rgba(132, 204, 22, 0.4); }
            }.reveal-hidden {
                opacity: 0;
                transform: translateY(30px);
                transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            }
            .reveal-visible {
                opacity: 1;
                transform: translateY(0);
            }
            .metrics-bar-wrapper {
                clip-path: inset(0 50% 0 50%);
                opacity: 0;
                transition: clip-path 0.8s ease-out, opacity 0.6s ease-out;
            }
            .reveal-visible .metrics-bar-wrapper {
                clip-path: inset(0 0% 0 0%);
                opacity: 1;
            }.hover-card:hover {
                transform: translateY(-8px);
                border-color: rgba(132, 204, 22, 0.7);
                box-shadow: 0 20px 40px -10px rgba(132, 204, 22, 0.25);
            }
            .hover-card:hover .material-symbols-outlined {
                animation: subtle-shiver 0.4s ease-in-out infinite;
            }.cta-btn {
                position: relative;
                animation: button-glow 3s infinite;
            }
            .cta-btn:hover {
                @apply bg-primary text-darkgreen;
            }
            .cta-btn:hover .arrow-circle {
                @apply bg-darkgreen text-primary rotate-45;
            }
        }
    
    <!-- Styles from Section 7 -->
    
        .wrapper-7 {
            font-family: 'Manrope', sans-serif;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(163, 230, 53, 0.3);
        }

        .dark .glass-card {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(163, 230, 53, 0.2);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
            opacity: 0;
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
            opacity: 1;
            padding-top: 1rem;
        }

        .accordion-item.active {
            background: rgba(255, 255, 255, 0.72);
            border-color: rgba(163, 230, 53, 0.65);
        }

        .dark .accordion-item.active {
            background: rgba(30, 41, 59, 0.8);
        }

        .accordion-item.active .arrow-icon {
            transform: rotate(180deg);
        }

        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .neural-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        @keyframes pulse-glow {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.4);
            }

            50% {
                box-shadow: 0 0 20px 5px rgba(163, 230, 53, 0.6);
            }
        }

        .animate-pulse-glow {
            animation: pulse-glow 2s infinite;
        }
    
    <!-- Styles from Section 8 -->
    
        .glass {
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .wireframe-sphere {
            background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(141, 245, 59, 0.1) 100%);
            border-radius: 50%;
            position: relative;
            overflow: hidden;
        }

        .wireframe-line {
            position: absolute;
            border: 1px solid rgba(141, 245, 59, 0.2);
            border-radius: 50%;
            width: 100%;
            height: 100%;
        }

        .glow-pulse:hover {
            box-shadow: 0 0 25px rgba(141, 245, 59, 0.6);
            transform: translateY(-2px);
        }

        .footer-link:hover {
            color: #8df53b;
            transition: all 0.3s ease;
        }
    

    
        /* Global resets */
        html,
        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            font-family: 'Manrope', sans-serif;
        }

        /* Ensure dark: variants work ONLY inside sections with .dark class */
        /* Tailwind CDN uses darkMode:"class", so .dark on a parent enables dark: utilities */
    
