/* ── AgileFlex Image Reveal Menu ── ac5fbeb6 ── */

.arm-ac5fbeb6-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    background: #0a1a04;
}

/* Background layers */
.arm-ac5fbeb6-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    transform: scale(1.04);
    will-change: opacity, transform;
}
.arm-ac5fbeb6-bg.is-active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease-out;
}

/* Overlay */
.arm-ac5fbeb6-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 70, 6, 0.72);
    z-index: 1;
    pointer-events: none;
}

/* Left Nav */
.arm-ac5fbeb6-nav {
    position: relative;
    z-index: 10;
    width: 340px;
    min-width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px 60px 50px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.arm-ac5fbeb6-brand {
    margin-bottom: 48px;
}
.arm-ac5fbeb6-brand-name {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #8DC63F;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.arm-ac5fbeb6-brand-sub {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
}

.arm-ac5fbeb6-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.arm-ac5fbeb6-menu-item {
    cursor: pointer;
}

.arm-ac5fbeb6-menu-link {
    display: flex;
    align-items: baseline;
    gap: 14px;
    text-decoration: none;
    padding: 10px 0;
}

.arm-num {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    letter-spacing: 0.1em;
    min-width: 22px;
    transition: color 0.3s;
}

.arm-label {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1.2;
    border-bottom: 3px solid transparent;
    padding-bottom: 4px;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.arm-ac5fbeb6-menu-item:hover .arm-label,
.arm-ac5fbeb6-menu-item.is-active .arm-label {
    color: #8DC63F;
    border-bottom-color: #8DC63F;
}

.arm-ac5fbeb6-menu-item:hover .arm-num,
.arm-ac5fbeb6-menu-item.is-active .arm-num {
    color: rgba(141,198,63,0.7);
}

.arm-ac5fbeb6-tagline {
    margin-top: 48px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.6;
}

/* Right Panel */
.arm-ac5fbeb6-panel {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 60px 60px 70px;
    background: rgba(31, 70, 6, 0.85);
}

.arm-ac5fbeb6-panel-item {
    display: none;
    flex-direction: column;
    gap: 20px;
    animation: armFadeUp 0.6s ease forwards;
}
.arm-ac5fbeb6-panel-item.is-active {
    display: flex;
}

@keyframes armFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.arm-ac5fbeb6-panel-title {
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.arm-ac5fbeb6-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

/* Video Thumbnail */
.arm-ac5fbeb6-video-thumb {
    position: relative;
    display: inline-block;
    max-width: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.arm-ac5fbeb6-video-thumb:hover {
    transform: scale(1.02);
    box-shadow: 0 28px 70px rgba(0,0,0,0.65);
}
.arm-ac5fbeb6-video-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
.arm-ac5fbeb6-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(141,198,63,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1F4606;
    transition: background 0.3s, transform 0.3s;
    pointer-events: none;
    line-height: 64px;
    text-align: center;
    padding-left: 4px;
}
.arm-ac5fbeb6-video-thumb:hover .arm-ac5fbeb6-play-btn {
    background: #8DC63F;
    transform: translate(-50%, -50%) scale(1.12);
}

/* CTA Button */
.arm-ac5fbeb6-cta {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 36px;
    background: #8DC63F;
    color: #1F4606;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
    box-shadow: 0 8px 24px rgba(141,198,63,0.35);
}
.arm-ac5fbeb6-cta:hover {
    background: #a5d94f;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .arm-ac5fbeb6-wrap {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    .arm-ac5fbeb6-nav {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        padding: 40px 30px;
    }
    .arm-ac5fbeb6-panel {
        padding: 40px 30px;
    }
    .arm-label {
        font-size: 16px;
    }
}
