        .material-symbols-outlined {
          font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .icon-fill {
            font-variation-settings: 'FILL' 1;
        }
        .hero-gradient {
            background:
                linear-gradient(90deg, rgba(15, 23, 42, 0.68) 0%, rgba(15, 23, 42, 0.52) 38%, rgba(15, 23, 42, 0.28) 72%, rgba(15, 23, 42, 0.22) 100%),
                linear-gradient(180deg, rgba(9, 20, 48, 0.34) 0%, rgba(9, 20, 48, 0.18) 100%);
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .xz-topbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 60;
            height: 30px;
            background:
                linear-gradient(135deg, rgba(255,255,255,0.04), transparent 34%),
                linear-gradient(90deg, #171717 0%, #0f0f0f 100%);
            border-bottom: 1px solid rgba(226, 232, 240, 0.22);
        }
        .xz-topbar__inner {
            max-width: 1280px;
            height: 30px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 12px;
        }
        .xz-topbar__label {
            color: rgba(255,255,255,0.52);
            font-size: 11px;
            line-height: 1;
            white-space: nowrap;
        }
        .xz-topbar__social {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            color: rgba(255,255,255,0.82);
            text-decoration: none;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .xz-topbar__social:hover {
            color: #ffffff;
            transform: translateY(-1px);
        }
        .xz-topbar__social svg {
            width: 14px;
            height: 14px;
            display: block;
            fill: currentColor;
        }
        .xz-header {
            position: fixed;
            top: 30px;
            left: 0;
            right: 0;
            z-index: 50;
            height: 88px;
            background:
                linear-gradient(135deg, rgba(255,255,255,0.04), transparent 34%),
                linear-gradient(90deg, #171717 0%, #0f0f0f 100%);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 8px 24px rgba(0,0,0,0.22);
            overflow: visible;
        }
        .xz-header__inner {
            --brand-width: clamp(320px, 28vw, 430px);
            --brand-bleed: max(24px, calc((100vw - 1280px) / 2 + 24px));
            max-width: 1280px;
            height: 88px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: var(--brand-width) minmax(0, 1fr) auto;
            align-items: center;
            column-gap: clamp(22px, 2.4vw, 42px);
        }
        .xz-header__brand {
            position: relative;
            width: 100%;
            height: 108px;
            margin-top: -12px;
            display: flex;
            align-items: center;
            padding-right: 82px;
            z-index: 2;
            text-decoration: none;
        }
        .xz-header__brand::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: calc(-1 * var(--brand-bleed));
            width: calc(100% + var(--brand-bleed));
            z-index: -2;
            background:
                radial-gradient(120% 160% at 18% 10%, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.10) 18%, rgba(255,255,255,0) 42%),
                linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.05) 16%, rgba(255,255,255,0) 38%),
                linear-gradient(145deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 28%, rgba(0,0,0,0.10) 100%),
                linear-gradient(120deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0) 35%),
                linear-gradient(135deg, #94d957 0%, #7DC431 42%, #5fa021 100%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 96px) 100%, 0 100%);
            box-shadow: 0 10px 30px rgba(0,0,0,0.32);
        }
        .xz-header__brand::after {
            content: "";
            position: absolute;
            inset: 0;
            left: calc(-1 * var(--brand-bleed));
            width: calc(100% + var(--brand-bleed));
            z-index: -1;
            pointer-events: none;
            clip-path: polygon(0 0, 100% 0, calc(100% - 96px) 100%, 0 100%);
            background:
                linear-gradient(155deg, transparent 0 18%, rgba(255,255,255,0.12) 18% 19%, transparent 19% 100%),
                linear-gradient(155deg, transparent 0 50%, rgba(255,255,255,0.08) 50% 51%, transparent 51% 100%),
                linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 22%);
        }
        .xz-header__brand img {
            display: block;
            height: 54px;
            width: auto;
            max-width: 270px;
            object-fit: contain;
            filter: brightness(0) invert(1);
            position: relative;
            z-index: 1;
            transform: translateY(4px);
        }
        .xz-header__nav {
            min-width: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(18px, 2vw, 30px);
            transform: translateY(-2px);
        }
        .xz-header__nav a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: rgba(255,255,255,0.9);
            font-size: 14px;
            line-height: 1;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            text-decoration: none;
            white-space: nowrap;
            transition: color 0.2s ease;
        }
        .xz-header__nav a:hover {
            color: #fff;
        }
        .xz-header__actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 14px;
            min-width: max-content;
            transform: translateY(-2px);
        }
        .xz-header__cta {
            background: #7DC431;
            color: #fff;
            border: 0;
            padding: 12px 22px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            white-space: nowrap;
            box-shadow: 0 10px 22px rgba(125, 196, 49, 0.24);
            transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }
        .xz-header__cta:hover {
            background: #5fa021;
        }
        .xz-header__mobile {
            display: none;
            align-items: center;
            gap: 12px;
        }
        .xz-header__mobile-btn {
            width: 42px;
            height: 42px;
            border: 0;
            background: transparent;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        .xz-header__mobile-btn svg {
            width: 28px;
            height: 28px;
        }
        button:not(.xz-header__mobile-btn) {
            transition:
                background-color 0.28s ease,
                color 0.28s ease,
                border-color 0.28s ease,
                box-shadow 0.28s ease,
                transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: transform, box-shadow;
        }
        button:not(.xz-header__mobile-btn):hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
        }
        button:not(.xz-header__mobile-btn):active {
            transform: translateY(0);
        }
        button:not(.xz-header__mobile-btn) .material-symbols-outlined,
        button:not(.xz-header__mobile-btn) svg {
            transition: transform 0.28s ease, opacity 0.28s ease;
        }
        button:not(.xz-header__mobile-btn):hover .material-symbols-outlined,
        button:not(.xz-header__mobile-btn):hover svg {
            transform: translateX(3px);
        }
        .product-tabs {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            align-items: end;
            gap: 0.75rem 1rem;
            width: 100%;
            border-bottom: 1px solid rgba(148, 163, 184, 0.24);
            padding-bottom: 0.9rem;
        }
        .product-tab {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 0;
            background: transparent;
            padding: 0 0 0.55rem;
            color: #64748b;
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            white-space: nowrap;
            box-shadow: none !important;
            transform: none !important;
        }
        .product-tab::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -0.95rem;
            height: 2px;
            background: transparent;
            transition: background-color 0.25s ease;
        }
        .product-tab:hover {
            color: #7DC431;
        }
        .product-tab:hover::after,
        .product-tab.is-active::after {
            background: #7DC431;
        }
        .product-tab.is-active {
            color: #7DC431;
        }
        @media (max-width: 1024px) {
            .product-tabs {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }
        @media (max-width: 767px) {
            .product-tabs {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        .product-panel[hidden] {
            display: none !important;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 1rem;
        }
        .product-card {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border-radius: 0;
            border: 1px solid rgba(226, 232, 240, 0.95);
            background: #ffffff;
            box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
            transition: transform 0.28s ease, box-shadow 0.28s ease;
        }
        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
        }
        .product-card__media {
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #ffffff;
        }
        .product-card__media img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.45s ease;
        }
        .product-card:hover .product-card__media img {
            transform: scale(1.04);
        }
        .product-card__body {
            display: flex;
            flex: 1;
            flex-direction: column;
            background: #f1f5f9;
            padding: 1.35rem 1.55rem 1.55rem;
        }
        .product-card__title,
        .product-card__meta {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .product-card__title {
            -webkit-line-clamp: 2;
            min-height: 2.8rem;
        }
        .product-card__meta {
            -webkit-line-clamp: 2;
            min-height: 2.8rem;
            margin-top: 0.65rem;
        }
        .about-video-trigger {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 20;
            pointer-events: none;
        }
        .about-video-trigger__button {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 82px;
            height: 82px;
            border-radius: 9999px;
            border: 0;
            background: rgba(125, 196, 49, 0.92);
            color: #ffffff;
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
            pointer-events: auto;
        }
        .about-video-trigger__button::before,
        .about-video-trigger__button::after {
            content: "";
            position: absolute;
            inset: -10px;
            border-radius: inherit;
            border: 1px solid rgba(255,255,255,0.55);
            animation: ripplePulse 2.6s ease-out infinite;
        }
        .about-video-trigger__button::after {
            animation-delay: 1.1s;
        }
        .about-video-trigger__button:hover {
            background: rgba(95, 160, 33, 0.92);
        }
        .about-video-trigger__icon {
            width: 0;
            height: 0;
            margin-left: 5px;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            border-left: 18px solid currentColor;
        }
        @keyframes ripplePulse {
            0% {
                transform: scale(0.9);
                opacity: 0.7;
            }
            70% {
                transform: scale(1.42);
                opacity: 0;
            }
            100% {
                transform: scale(1.42);
                opacity: 0;
            }
        }
        @media (min-width: 768px) {
            .product-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        @media (min-width: 1024px) {
            .product-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }
        @media (max-width: 1180px) {
            .xz-header__inner {
                --brand-width: 300px;
                column-gap: 22px;
            }
            .xz-header__nav {
                gap: 16px;
            }
            .xz-header__nav a {
                font-size: 13px;
            }
        }
        @media (max-width: 1024px) {
            .xz-header__inner {
                --brand-width: 270px;
            }
            .xz-header__nav {
                gap: 14px;
            }
            .xz-header__nav a {
                font-size: 12px;
                letter-spacing: 0.03em;
            }
        }
        @media (max-width: 860px) {
            .xz-topbar {
                display: none;
            }
            .xz-header__inner {
                display: flex;
                justify-content: space-between;
                padding: 0 16px;
            }
            .xz-header__brand {
                width: 260px;
                height: 96px;
                margin-top: -8px;
                padding-right: 70px;
            }
            .xz-header__brand img {
                height: 44px;
                max-width: 220px;
            }
            .xz-header__nav,
            .xz-header__actions {
                display: none;
            }
            .xz-header__mobile {
                display: flex;
            }
        }
        @media (max-width: 480px) {
            .xz-header {
                top: 0;
                height: 72px;
            }
            .xz-header__inner {
                height: 72px;
            }
            .xz-header__brand {
                width: 220px;
                height: 84px;
                padding-right: 58px;
            }
            .xz-header__brand::before,
            .xz-header__brand::after {
                clip-path: polygon(0 0, 100% 0, calc(100% - 70px) 100%, 0 100%);
            }
            .xz-header__brand img {
                height: 38px;
                max-width: 190px;
            }
        }
    
