/* ===================================================================
   Hero — open layout, cinematic type, no nested card stacks
   =================================================================== */

body.landing-page header.hero.hero-lux {
    min-height: 0 !important;
    height: auto !important;
    padding: calc(var(--landing-nav-height, 4rem) + 1rem) 1rem 0.65rem !important;
    margin: 0 !important;
    overflow: hidden !important;
    display: block !important;
    background: linear-gradient(
        160deg,
        #1b4332 0%,
        #0d2818 35%,
        #0a1f14 70%,
        #0d2818 100%
    ) !important;
    clip-path: none !important;
    isolation: isolate;
}

body.landing-page header.hero.hero-lux::before,
body.landing-page header.hero.hero-lux::after {
    display: none !important;
    content: none !important;
}

/* Background layers */
.hero-lux-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-lux-mesh {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(ellipse 55% 45% at 20% 30%, rgba(64, 145, 108, 0.45), transparent 55%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(233, 184, 74, 0.2), transparent 50%),
        radial-gradient(ellipse 60% 50% at 50% 90%, rgba(27, 67, 50, 0.5), transparent 55%);
    animation: heroMeshMove 18s ease-in-out infinite alternate;
}

@keyframes heroMeshMove {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(2%, -2%, 0) scale(1.05); }
}

.hero-lux-hex {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 0L56 16v32L28 64 0 48V16z' fill='none' stroke='%23f0d78c' stroke-width='0.6'/%3E%3C/svg%3E");
    background-size: 56px 97px;
    animation: heroHexDrift 40s linear infinite;
}

@keyframes heroHexDrift {
    to { background-position: 56px 97px; }
}

.hero-lux-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 38%, transparent 42%, rgba(8, 20, 14, 0.4) 100%);
}

.hero-lux-rays {
    position: absolute;
    inset: -30%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(255, 248, 220, 0.04) 25deg,
        transparent 50deg,
        rgba(82, 183, 136, 0.06) 120deg,
        transparent 160deg
    );
    animation: heroRaysSpin 48s linear infinite;
    opacity: 0.7;
}

@keyframes heroRaysSpin {
    to { transform: rotate(360deg); }
}

.hero-lux-dust {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

.hero-lux-dust-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(240, 215, 140, 0.6) 40%, transparent 70%);
    box-shadow: 0 0 10px rgba(255, 220, 140, 0.5);
    opacity: 0;
    animation: heroDustFloat linear infinite;
    will-change: transform, opacity;
}

@keyframes heroDustFloat {
    0% {
        transform: translate3d(0, 20%, 0) scale(0.4);
        opacity: 0;
    }
    15% { opacity: 0.7; }
    85% { opacity: 0.35; }
    100% {
        transform: translate3d(var(--dust-x, 0), -120%, 0) scale(1);
        opacity: 0;
    }
}

body.landing-page header.hero.hero-lux .golden-bubbles {
    z-index: 2;
}

body.landing-page header.hero.hero-lux .hero-glass-aurora {
    z-index: 1;
    animation: heroEmeraldPulse 10s ease-in-out infinite alternate;
}

@keyframes heroEmeraldPulse {
    0% { opacity: 0.65; }
    100% { opacity: 1; }
}

body.landing-page header.hero.hero-lux .container.hero-content {
    position: relative;
    z-index: 10;
    max-width: 680px;
    padding: 0 0.5rem;
    pointer-events: auto;
}

/* ——— Open hero panel (no card box) ——— */
.hero-lux-panel {
    text-align: center;
    position: relative;
}

/* Logo — simple glow, no glass frame box */
.hero-lux-logo-stage {
    width: 88px;
    height: 88px;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow:
        0 0 0 3px rgba(240, 215, 140, 0.45),
        0 0 32px rgba(212, 175, 55, 0.35),
        0 12px 28px rgba(8, 20, 14, 0.35);
    animation: heroLogoFloat 5s ease-in-out infinite;
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.hero-lux-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    display: block;
    padding: 6%;
    box-sizing: border-box;
}

/* Typography */
.hero-lux-title {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    font-size: clamp(1.85rem, 6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 0.55rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.28em;
}

.hero-t-chakula {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow:
        0 2px 12px rgba(8, 20, 14, 0.45),
        0 0 40px rgba(255, 255, 255, 0.15);
}

.hero-t-smart {
    background: linear-gradient(
        90deg,
        #fff8dc 0%,
        #f0d78c 25%,
        #e9b84a 50%,
        #fff0c8 75%,
        #f0d78c 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.45));
    animation: heroSmartShine 5s linear infinite;
}

@keyframes heroSmartShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-t-system {
    background: linear-gradient(135deg, #ffffff 0%, #b7e4c7 45%, #52b788 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 2px 10px rgba(82, 183, 136, 0.35));
}

body.landing-page header.hero.hero-lux h1.hero-lux-title {
    background: none !important;
    -webkit-text-fill-color: unset !important;
}

.hero-lux-lead {
    font-size: clamp(0.9rem, 2.5vw, 1.05rem) !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.92) !important;
    max-width: 520px;
    margin: 0 auto 0.65rem !important;
    text-shadow: 0 1px 8px rgba(8, 20, 14, 0.35);
}

body.landing-page header.hero.hero-lux .hero-btns {
    position: relative;
    z-index: 20;
    margin-bottom: 0 !important;
    gap: 0.5rem !important;
    pointer-events: auto;
}

body.landing-page header.hero.hero-lux .hero-btns .btn,
body.landing-page header.hero.hero-lux .hero-btns .hero-cta-explore {
    position: relative;
    z-index: 1;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

body.landing-page header.hero.hero-lux .hero-btns .btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
}

/* Inline stats */
body.landing-page header.hero.hero-lux .hero-stats-minimal {
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

body.landing-page header.hero.hero-lux .hero-stat-minimal-value {
    color: #f0d78c;
}

.hero-cta-explore {
    position: relative;
    overflow: hidden;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(240, 215, 140, 0.55) !important;
    border-radius: 14px !important;
    padding: 0.65rem 1.35rem !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(8, 20, 14, 0.2) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta-explore:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    border-color: rgba(255, 248, 220, 0.85) !important;
}

@media (max-width: 575.98px) {
    body.landing-page header.hero.hero-lux {
        padding: calc(var(--landing-nav-height, 3.5rem) + 0.75rem) 0.75rem 0.85rem !important;
    }

    .hero-lux-logo-stage {
        width: 76px;
        height: 76px;
    }

    body.landing-page header.hero.hero-lux .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    body.landing-page header.hero.hero-lux .hero-btns .btn,
    body.landing-page header.hero.hero-lux .hero-cta-explore {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-lux-logo-stage,
    .hero-lux-mesh,
    .hero-lux-rays,
    .hero-lux-dust-particle,
    .hero-t-smart {
        animation: none !important;
    }
}
