        :root {
            --kemenag-green: #006B3F;
            --kemenag-green-dark: #004D2C;
            --kemenag-green-light: #00895E;
            --kemenag-gold: #C5A54E;
            --kemenag-gold-light: #e8d48b;
        }

        * {
            font-family: 'Plus Jakarta Sans', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            overflow-x: hidden;
            background: #fafbfc;
        }

        /* === NAVBAR === */
        .landing-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .landing-nav.scrolled {
            background: rgba(0, 45, 25, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
            padding: 0.6rem 0;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: white;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.05rem;
        }

        .nav-brand-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--kemenag-gold), var(--kemenag-gold-light));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: #1a1a2e;
            box-shadow: 0 4px 15px rgba(197, 165, 78, 0.3);
        }

        .hero-login-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.5rem;
            background: white;
            color: var(--kemenag-green);
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }

        .hero-login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
            color: var(--kemenag-green-dark);
        }

        /* === HERO === */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #001a10 0%, #002a1a 20%, var(--kemenag-green-dark) 40%, var(--kemenag-green) 65%, var(--kemenag-green-light) 85%, #00a86b 100%);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        /* Floating particles */
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            animation: float linear infinite;
            opacity: 0;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 15% 50%, rgba(197, 165, 78, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 50% 90%, rgba(197, 165, 78, 0.06) 0%, transparent 40%);
            animation: patternPulse 8s ease-in-out infinite;
        }

        @keyframes patternPulse {

            0%,
            100% {
                opacity: 0.6;
            }

            50% {
                opacity: 1;
            }
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.45rem 1.25rem;
            background: rgba(197, 165, 78, 0.12);
            border: 1px solid rgba(197, 165, 78, 0.25);
            border-radius: 50px;
            color: var(--kemenag-gold-light);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1.75rem;
            animation: slideDown 0.6s ease;
            backdrop-filter: blur(10px);
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: clamp(2.2rem, 5vw, 4rem);
            font-weight: 900;
            color: white;
            line-height: 1.05;
            margin-bottom: 0.75rem;
            animation: slideUp 0.7s ease;
            letter-spacing: -1px;
        }

        .hero-title span {
            background: linear-gradient(90deg, var(--kemenag-gold), var(--kemenag-gold-light), var(--kemenag-gold));
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% {
                background-position: 100% 0;
            }

            50% {
                background-position: 0% 0;
            }

            100% {
                background-position: 100% 0;
            }
        }

        .hero-subtitle {
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            color: rgba(255, 255, 255, 0.65);
            font-weight: 400;
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 500px;
            animation: slideUp 0.9s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: slideUp 1s ease;
        }

        .hero-stats {
            display: flex;
            gap: 2.5rem;
            margin-top: 3rem;
            animation: slideUp 1.2s ease;
        }

        .hero-stat-item {
            text-align: center;
        }

        .hero-stat-number {
            font-size: clamp(1.3rem, 3vw, 1.85rem);
            font-weight: 900;
            color: var(--kemenag-gold);
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 0.3rem;
            font-weight: 600;
        }

        /* === VALIDATION CARD === */
        .validation-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 2.5rem;
            animation: slideUp 1.1s ease;
            position: relative;
            z-index: 10;
            overflow: hidden;
        }

        .validation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--kemenag-gold), transparent);
        }

        .validation-card-title {
            font-size: 1.15rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.35rem;
        }

        .validation-card-subtitle {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 1.75rem;
        }

        .validation-input-group {
            position: relative;
        }

        .validation-input {
            width: 100%;
            padding: 1.1rem 1.25rem;
            padding-right: 130px;
            background: rgba(255, 255, 255, 0.08);
            border: 1.5px solid rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            color: white;
            font-size: 0.92rem;
            font-weight: 600;
            letter-spacing: 1px;
            outline: none;
            transition: all 0.3s;
        }

        .validation-input::placeholder {
            color: rgba(255, 255, 255, 0.3);
            letter-spacing: 0;
            font-weight: 400;
        }

        .validation-input:focus {
            border-color: var(--kemenag-gold);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 4px rgba(197, 165, 78, 0.12);
        }

        .validation-btn {
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%);
            padding: 0.7rem 1.5rem;
            background: linear-gradient(135deg, var(--kemenag-gold), #b3933f);
            border: none;
            border-radius: 10px;
            color: white;
            font-weight: 700;
            font-size: 0.82rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(197, 165, 78, 0.3);
        }

        .validation-btn:hover {
            background: linear-gradient(135deg, var(--kemenag-gold-light), var(--kemenag-gold));
            box-shadow: 0 6px 20px rgba(197, 165, 78, 0.4);
            transform: translateY(-50%) scale(1.02);
        }

        .validation-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .validation-features {
            display: flex;
            gap: 1.75rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .validation-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.73rem;
            color: rgba(255, 255, 255, 0.45);
            font-weight: 500;
        }

        .validation-feature i {
            color: var(--kemenag-gold);
            font-size: 0.9rem;
        }

        /* === FEATURES SECTION === */
        .features-section {
            padding: 5rem 0;
            background: white;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 900;
            color: #1a1a2e;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            color: #8892a4;
            font-size: 0.95rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .feature-card {
            background: linear-gradient(135deg, #f8faf9, #f0f4f2);
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 107, 63, 0.08);
            border-color: rgba(0, 107, 63, 0.1);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: white;
        }

        .feature-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 0.5rem;
        }

        .feature-desc {
            font-size: 0.85rem;
            color: #8892a4;
            line-height: 1.6;
        }

        /* === FOOTER === */
        .landing-footer {
            background: linear-gradient(135deg, #0a1628, #1a1a2e);
            padding: 3rem 0 1.5rem;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: white;
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: all 0.2s;
            font-size: 0.82rem;
        }

        .footer-links a:hover {
            color: var(--kemenag-gold);
        }

        /* === MODAL === */
        .modal-content {
            border-radius: 20px;
            border: none;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .result-valid {
            background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
            border-radius: 16px;
            padding: 2rem;
        }

        .result-valid .check-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #43a047, #66bb6a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: white;
            margin: 0 auto 1rem;
            box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
        }

        /* === RESPONSIVE === */
        @media (max-width: 991.98px) {
            .hero {
                padding: 6rem 0 3rem;
            }

            .hero-stats {
                gap: 1.5rem;
            }

            .validation-card {
                padding: 1.75rem;
            }
        }

        @media (max-width: 767.98px) {
            .hero {
                min-height: auto;
                padding: 5rem 0 2.5rem;
            }

            .hero-stats {
                gap: 1rem;
                justify-content: center;
            }

            .hero-content {
                text-align: center;
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-badge {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-cta-group {
                justify-content: center;
            }

            .validation-card {
                margin-top: 2rem;
            }

            .validation-features {
                justify-content: center;
                gap: 1rem;
            }

            .validation-input {
                padding-right: 110px;
                font-size: 0.82rem;
                letter-spacing: 0.5px;
            }

            .validation-btn {
                font-size: 0.75rem;
                padding: 0.6rem 1rem;
            }

            .features-section {
                padding: 3rem 0;
            }
        }

        @media (max-width: 575.98px) {
            .hero-stats {
                flex-wrap: wrap;
                gap: 1.5rem;
            }

            .hero-stat-item {
                min-width: 60px;
            }

            .hero-cta-group {
                flex-direction: column;
                align-items: center;
            }

            .validation-input {
                padding-right: 50px;
                font-size: 0.8rem;
                padding: 0.9rem 1rem;
            }

            .validation-btn {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                width: 100%;
                margin-top: 0.75rem;
            }

            .validation-input-group {
                display: flex;
                flex-direction: column;
            }

            .landing-nav .hero-login-btn {
                padding: 0.5rem 1rem;
                font-size: 0.78rem;
            }
        }

        /* === EMPLOYEE HOVER === */
        /* === EMPLOYEE HOVER & EXPAND === */
        .employee-card-trigger {
            transition: all 0.3s ease;
            cursor: default;
        }

        .employee-card-trigger:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1) !important;
            z-index: 10;
        }

        .employee-extra {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .employee-card-trigger:hover .employee-extra {
            max-height: 150px;
            opacity: 1;
            margin-top: 0.75rem;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .team-card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
        }

        /* === CSS ONLY MODAL === */
        .css-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .css-modal:target {
            opacity: 1;
            pointer-events: auto;
        }

        .css-modal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
            cursor: default;
            /* Clicking outside handled by separate link */
        }

        /* Backdrop link covers full screen */
        .css-modal-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            cursor: default;
        }

        .css-modal-content {
            background: white;
            width: 100%;
            max-width: 400px;
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            z-index: 10;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transform: scale(0.9) translateY(20px);
            transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
            opacity: 0;
        }

        .css-modal:target .css-modal-content {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .css-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            line-height: 1;
            z-index: 20;
            transition: background 0.2s;
        }

        .css-modal-close:hover {
            background: rgba(255, 255, 255, 0.4);
            color: white;
        }