:root{
    --ink:#080816;
    --muted:#64748b;
    --soft:#f8fafc;
    --dark:#050510;
    --dark2:#0b0a1a;
    --purple:#7c3aed;
    --pink:#ec4899;
    --blue:#2563eb;
    --gold:#f59e0b;
    --green:#22c55e;
    --shadow:0 26px 90px rgba(15,23,42,.16);
    --shadow-dark:0 30px 110px rgba(0,0,0,.36);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    color:var(--ink);
    background:#fff;
    overflow-x:hidden;
}
img{max-width:100%}
a{text-decoration:none}

.lux-nav{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;
    padding:16px 0;
}

.lux-nav-inner{
    width:100%;
    min-height:72px;
    display:flex;
    align-items:center;
    gap:20px;
    padding:12px 16px;
    border-radius:26px;
    background:rgba(255,255,255,.86);
    border:1px solid rgba(255,255,255,.82);
    box-shadow:0 18px 60px rgba(15,23,42,.12);
    backdrop-filter:blur(26px);
}

.lux-brand{
    display:flex;
    align-items:center;
    gap:10px;
    color:#111827;
    font-weight:950;
    letter-spacing:-.035em;
    white-space:nowrap;
}

.lux-brand img{
    width:auto;
    height:43px;
    object-fit:contain;
}

.lux-toggler{
    margin-left:auto;
    width:44px;
    height:44px;
    border:0;
    border-radius:15px;
    background:rgba(15,23,42,.06);
    color:#111827;
    box-shadow:none!important;
}

.lux-menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:4px;
}

.lux-menu a{
    color:rgba(15,23,42,.70);
    font-size:14px;
    font-weight:850;
    padding:10px 12px;
    border-radius:999px;
    transition:.18s ease;
    white-space:nowrap;
}

.lux-menu a:hover{
    color:#111827;
    background:rgba(124,58,237,.08);
}

.lux-btn{
    border:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:13px 20px;
    border-radius:999px;
    color:#fff!important;
    font-weight:950;
    background:linear-gradient(135deg,var(--purple),var(--pink));
    box-shadow:0 18px 44px rgba(124,58,237,.28);
    transition:.2s ease;
}

.lux-btn:hover{
    transform:translateY(-2px);
    filter:saturate(1.08);
}

.lux-btn-sm{
    padding:11px 17px;
}

.lux-btn-big{
    padding:15px 26px;
    font-size:16px;
}

.lux-btn-ghost{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 19px;
    border-radius:999px;
    color:#fff;
    font-weight:950;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.20);
    backdrop-filter:blur(18px);
    transition:.2s ease;
}

.lux-btn-ghost:hover{
    color:#fff;
    background:rgba(255,255,255,.18);
    transform:translateY(-2px);
}

.lux-hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:150px 0 90px;
    color:#fff;
    background:#050510;
}

.lux-hero-bg,
.lux-hero-slide{
    position:absolute;
    inset:0;
}

.lux-hero-slide{
    background-size:cover;
    background-position:center;
    opacity:0;
    transform:scale(1.02);
    transition:opacity 1.3s ease, transform 6s ease;
}

.lux-hero-slide.active{
    opacity:1;
    transform:scale(1.10);
}

.lux-hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:rgba(5,5,16,.22);
    backdrop-filter:blur(4px);
}

.lux-hero::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;
    background:
        radial-gradient(760px 460px at 16% 24%, rgba(124,58,237,.54), transparent 60%),
        radial-gradient(620px 360px at 78% 14%, rgba(236,72,153,.28), transparent 58%),
        linear-gradient(90deg, rgba(5,5,16,.96), rgba(5,5,16,.74), rgba(5,5,16,.44));
}

.lux-hero-content{
    position:relative;
    z-index:4;
}

.lux-orb{
    position:absolute;
    z-index:3;
    width:280px;
    height:280px;
    border-radius:999px;
    filter:blur(50px);
    opacity:.65;
    pointer-events:none;
}

.orb-one{
    left:8%;
    bottom:12%;
    background:rgba(236,72,153,.45);
}

.orb-two{
    right:12%;
    top:22%;
    background:rgba(124,58,237,.45);
}

.lux-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(18px);
    font-weight:900;
    color:rgba(255,255,255,.92);
    margin-bottom:18px;
    font-size:14px;
}

.lux-hero-title{
    font-size:clamp(2.75rem,5vw,5.6rem);
    line-height:.92;
    letter-spacing:-.07em;
    font-weight:1000;
    max-width:780px;
    margin:0;
}

.lux-hero-text{
    max-width:620px;
    margin:22px 0 0;
    color:rgba(255,255,255,.76);
    font-size:1.07rem;
    line-height:1.75;
}

.lux-actions{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    margin-top:32px;
}

.lux-metrics{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:32px;
}

.lux-metrics div{
    min-width:120px;
    padding:14px 15px;
    border-radius:21px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.16);
    backdrop-filter:blur(18px);
}

.lux-metrics strong{
    display:block;
    font-size:22px;
    line-height:1;
    font-weight:1000;
}

.lux-metrics span{
    display:block;
    margin-top:6px;
    color:rgba(255,255,255,.68);
    font-size:12px;
    font-weight:750;
}

.lux-collage{
    position:relative;
    min-height:540px;
}

.lux-photo{
    position:absolute;
    overflow:hidden;
    border-radius:34px;
    border:1px solid rgba(255,255,255,.22);
    box-shadow:var(--shadow-dark);
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(18px);
}

.lux-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.photo-main{
    right:0;
    top:24px;
    width:78%;
    height:410px;
}

.photo-top{
    left:0;
    top:78px;
    width:42%;
    height:210px;
}

.photo-bottom{
    left:8%;
    bottom:20px;
    width:48%;
    height:230px;
}

.lux-note{
    position:absolute;
    right:18px;
    bottom:8px;
    width:270px;
    display:flex;
    gap:12px;
    padding:18px;
    border-radius:26px;
    color:#111827;
    background:rgba(255,255,255,.90);
    border:1px solid rgba(255,255,255,.86);
    box-shadow:0 20px 70px rgba(15,23,42,.18);
    backdrop-filter:blur(22px);
}

.lux-note i{
    color:#16a34a;
    font-size:22px;
}

.lux-note b{
    display:block;
    font-weight:1000;
    letter-spacing:-.03em;
}

.lux-note span{
    display:block;
    color:#64748b;
    font-size:13px;
    line-height:1.5;
    margin-top:4px;
}

.scroll-down{
    position:absolute;
    z-index:5;
    left:50%;
    bottom:28px;
    transform:translateX(-50%);
    color:rgba(255,255,255,.70);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.12em;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
}

.scroll-down span{
    width:1px;
    height:34px;
    background:rgba(255,255,255,.40);
    position:relative;
    overflow:hidden;
}

.scroll-down span::after{
    content:"";
    position:absolute;
    left:0;
    top:-100%;
    width:100%;
    height:100%;
    background:#fff;
    animation:scrollLine 1.6s infinite;
}

@keyframes scrollLine{
    to{top:100%}
}

.lux-section{
    position:relative;
    padding:110px 0;
}

.lux-light{
    background:
        radial-gradient(760px 360px at 12% 0%, rgba(124,58,237,.10), transparent 60%),
        linear-gradient(180deg,#fff,#f8fafc);
}

.lux-dark{
    color:#fff;
    background:
        radial-gradient(800px 420px at 18% 0%, rgba(124,58,237,.30), transparent 60%),
        radial-gradient(700px 400px at 80% 20%, rgba(236,72,153,.18), transparent 60%),
        linear-gradient(180deg,#050510,#0b0a1a);
}

.lux-section-head{
    max-width:820px;
    text-align:center;
    margin:0 auto 48px;
}

.lux-section-head.lux-left{
    text-align:left;
    margin:0;
}

.lux-section-head span,
.mini-label{
    display:inline-flex;
    align-items:center;
    padding:8px 13px;
    border-radius:999px;
    background:rgba(124,58,237,.10);
    color:#6d28d9;
    border:1px solid rgba(124,58,237,.14);
    font-weight:950;
    font-size:13px;
    margin-bottom:14px;
}

.lux-dark .lux-section-head span{
    color:#e9d5ff;
    background:rgba(255,255,255,.10);
    border-color:rgba(255,255,255,.14);
}

.lux-section-head h2{
    margin:0;
    font-size:clamp(2.15rem,4vw,4.35rem);
    line-height:.95;
    letter-spacing:-.06em;
    font-weight:1000;
}

.lux-section-head p{
    margin:17px auto 0;
    max-width:660px;
    color:var(--muted);
    line-height:1.75;
    font-size:1.03rem;
}

.lux-dark .lux-section-head p{
    color:rgba(255,255,255,.68);
}

.lux-feature-row{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
}

.lux-feature-card{
    min-height:270px;
    padding:28px;
    border-radius:32px;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:var(--shadow);
    transition:.22s ease;
}

.lux-feature-card:hover{
    transform:translateY(-8px);
}

.lux-feature-card i{
    width:58px;
    height:58px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:26px;
    background:linear-gradient(135deg,var(--purple),var(--pink));
    box-shadow:0 16px 36px rgba(124,58,237,.22);
}

.lux-feature-card h3{
    margin:22px 0 10px;
    font-size:1.32rem;
    font-weight:1000;
    letter-spacing:-.035em;
}

.lux-feature-card p{
    color:var(--muted);
    line-height:1.7;
    margin:0;
}

.lux-program-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.lux-program{
    display:flex;
    gap:18px;
    padding:24px;
    border-radius:30px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(18px);
    box-shadow:0 20px 60px rgba(0,0,0,.20);
    transition:.22s ease;
}

.lux-program:hover{
    transform:translateX(8px);
    background:rgba(255,255,255,.11);
}

.lux-program .num{
    min-width:58px;
    height:58px;
    border-radius:20px;
    display:grid;
    place-items:center;
    color:#fff;
    font-weight:1000;
    background:linear-gradient(135deg,var(--purple),var(--pink));
}

.lux-program h3{
    color:#fff;
    font-weight:1000;
    letter-spacing:-.035em;
    margin:0 0 7px;
}

.lux-program p{
    color:rgba(255,255,255,.68);
    line-height:1.7;
    margin:0;
}

.lux-video-section{
    background:#fff;
}

.lux-video-wrap{
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:34px;
    align-items:center;
    padding:30px;
    border-radius:44px;
    background:
        radial-gradient(650px 280px at 8% 0%, rgba(124,58,237,.14), transparent 60%),
        linear-gradient(135deg,#fff,#f8fafc);
    border:1px solid rgba(15,23,42,.08);
    box-shadow:var(--shadow);
}

.lux-video-thumb{
    position:relative;
    display:block;
    width:100%;
    border:0;
    padding:0;
    border-radius:34px;
    overflow:hidden;
    aspect-ratio:16/10;
    background:#111827;
    box-shadow:0 22px 70px rgba(15,23,42,.22);
}

.lux-video-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.25s ease;
}

.lux-video-thumb:hover img{
    transform:scale(1.05);
}

.lux-video-thumb span{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:86px;
    height:86px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:46px;
    background:rgba(255,255,255,.18);
    border:1px solid rgba(255,255,255,.30);
    backdrop-filter:blur(18px);
}

.lux-video-copy h2{
    font-size:clamp(2rem,4vw,3.9rem);
    font-weight:1000;
    letter-spacing:-.055em;
    line-height:.98;
}

.lux-video-copy p{
    color:var(--muted);
    line-height:1.75;
    margin:18px 0 24px;
}

.lux-trust{
    background:
        radial-gradient(700px 360px at 12% 0%, rgba(236,72,153,.10), transparent 60%),
        linear-gradient(180deg,#f8fafc,#fff);
}

.lux-review-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}

.lux-review{
    padding:30px;
    border-radius:32px;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:var(--shadow);
    transition:.22s ease;
}

.lux-review:hover{
    transform:translateY(-8px);
}

.stars{
    color:var(--gold);
    letter-spacing:2px;
    font-weight:1000;
    margin-bottom:18px;
}

.lux-review p{
    color:rgba(15,23,42,.78);
    line-height:1.75;
    margin:0 0 18px;
}

.lux-review b{
    font-weight:1000;
}

.lux-gallery{
    background:
        radial-gradient(900px 420px at 12% 0%, rgba(124,58,237,.10), transparent 60%),
        linear-gradient(180deg,#fff,#f6f3ff);
}

.lux-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
}

.lux-gallery-item{
    position:relative;
    overflow:hidden;
    border:0;
    padding:0;
    min-height:260px;
    border-radius:30px;
    background:#111827;
    box-shadow:0 20px 60px rgba(15,23,42,.16);
    transition:.22s ease;
}

.lux-gallery-item.big{
    grid-column:span 2;
    grid-row:span 2;
    min-height:536px;
}

.lux-gallery-item:hover{
    transform:translateY(-7px);
}

.lux-gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    inset:0;
    transition:.25s ease;
}

.lux-gallery-item:hover img{
    transform:scale(1.05);
}

.lux-gallery-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, transparent, rgba(2,6,23,.62));
}

.lux-gallery-item span,
.lux-gallery-item small{
    position:absolute;
    left:18px;
    right:18px;
    bottom:16px;
    z-index:2;
    color:#fff;
    text-align:left;
    font-weight:1000;
    font-size:1.1rem;
}

.lux-gallery-item small{
    display:inline-flex;
    width:max-content;
    right:auto;
    top:14px;
    bottom:auto;
    padding:7px 11px;
    border-radius:999px;
    background:rgba(255,255,255,.86);
    color:#111827;
    font-size:.82rem;
}

.lux-final{
    background:
        radial-gradient(800px 400px at 20% 0%, rgba(124,58,237,.28), transparent 60%),
        radial-gradient(700px 360px at 85% 10%, rgba(236,72,153,.20), transparent 60%),
        linear-gradient(180deg,#050510,#0b0a1a);
}

.lux-final-box{
    max-width:920px;
    margin:auto;
    text-align:center;
    padding:76px 30px;
    border-radius:48px;
    color:#fff;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(24px);
    box-shadow:var(--shadow-dark);
}

.lux-final-box span{
    display:inline-flex;
    margin-bottom:14px;
    color:#e9d5ff;
    font-weight:900;
}

.lux-final-box h2{
    font-size:clamp(2.5rem,5vw,5.4rem);
    font-weight:1000;
    letter-spacing:-.075em;
    line-height:.9;
    margin:0;
}

.lux-final-box p{
    max-width:620px;
    margin:20px auto 28px;
    color:rgba(255,255,255,.72);
    line-height:1.75;
}

.lux-footer{
    padding:82px 0 28px;
    color:#fff;
    background:#050510;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-brand{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.footer-brand img{
    width:52px;
    height:52px;
    object-fit:contain;
}

.footer-brand b{
    display:block;
    font-size:20px;
    font-weight:1000;
}

.footer-brand span{
    color:rgba(255,255,255,.58);
    font-size:13px;
}

.lux-footer p{
    color:rgba(255,255,255,.62);
    line-height:1.75;
}

.lux-footer h4{
    color:#fff;
    font-weight:1000;
    font-size:16px;
    margin-bottom:16px;
}

.lux-footer a{
    display:flex;
    align-items:center;
    gap:8px;
    color:rgba(255,255,255,.66);
    margin-bottom:10px;
    transition:.18s ease;
}

.lux-footer a:hover{
    color:#fff;
    transform:translateX(3px);
}

.lux-footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:50px;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.08);
    color:rgba(255,255,255,.48);
}

.lux-footer-bottom a{
    margin:0;
}

.lux-signup{
    border:0;
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 30px 100px rgba(15,23,42,.32);
}

.lux-signup .modal-header{
    padding:22px 24px;
    background:
        radial-gradient(420px 180px at 20% 0%, rgba(236,72,153,.30), transparent 60%),
        linear-gradient(135deg,var(--purple),var(--pink));
    color:#fff;
    border:0;
}

.lux-signup .modal-header .text-secondary{
    color:rgba(255,255,255,.80)!important;
}

.lux-signup .modal-body{
    padding:24px;
}

.lux-signup .form-control,
.lux-signup .form-select{
    border-radius:16px;
    padding:.9rem 1rem;
    border:1px solid rgba(15,23,42,.12);
}

.lux-signup .form-control:focus,
.lux-signup .form-select:focus{
    border-color:rgba(124,58,237,.45);
    box-shadow:0 0 0 .22rem rgba(124,58,237,.12);
}

.modal-helper{
    background:rgba(124,58,237,.07);
    border:1px solid rgba(124,58,237,.14);
    border-radius:16px;
    padding:13px 14px;
    color:rgba(15,23,42,.72);
    font-weight:650;
    line-height:1.6;
}

.hp-field{
    position:absolute!important;
    left:-9999px!important;
    width:1px!important;
    height:1px!important;
    overflow:hidden!important;
}

.lux-image-modal,
.lux-video-modal{
    position:relative;
    border:0;
    border-radius:28px;
    overflow:hidden;
    background:#020617;
    box-shadow:0 30px 120px rgba(0,0,0,.55);
}

.lux-image-modal img{
    display:block;
    width:100%;
    max-height:86vh;
    object-fit:contain;
    background:#020617;
}

.lux-close{
    position:absolute;
    top:14px;
    right:14px;
    z-index:10;
    width:42px;
    height:42px;
    border:0;
    border-radius:999px;
    color:#111827;
    background:rgba(255,255,255,.92);
    font-size:26px;
    line-height:1;
}

.lead-toast{
    border:0!important;
    border-radius:20px!important;
    overflow:hidden;
    background:linear-gradient(135deg,var(--purple),var(--pink))!important;
    color:#fff;
    box-shadow:0 24px 90px rgba(0,0,0,.28);
}

.toast-ico{
    width:42px;
    height:42px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.18);
    margin-right:12px;
}

.toast-sub{
    display:block;
    margin-top:4px;
    color:rgba(255,255,255,.84);
    font-weight:600;
    font-size:.92rem;
}

.reveal{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .75s ease, transform .75s ease;
}

.reveal.show{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:1199.98px){
    .lux-feature-row{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .lux-gallery-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:991.98px){
    .lux-nav{
        padding:10px 0;
    }

    .lux-nav-inner{
        border-radius:24px;
        flex-wrap:wrap;
    }

    .navbar-collapse{
        width:100%;
        margin-top:14px;
    }

    .lux-menu{
        flex-direction:column;
        align-items:stretch;
    }

    .lux-menu a{
        background:rgba(15,23,42,.04);
    }

    .lux-btn-sm{
        width:100%;
        margin-top:12px;
    }

    .lux-hero{
        padding-top:135px;
    }

    .lux-hero::after{
        background:
            radial-gradient(720px 440px at 18% 20%, rgba(124,58,237,.50), transparent 60%),
            linear-gradient(180deg, rgba(5,5,16,.94), rgba(5,5,16,.70));
    }

    .lux-collage{
        min-height:440px;
        margin-top:16px;
    }

    .photo-main{
        width:78%;
        height:330px;
    }

    .photo-top{
        height:180px;
    }

    .photo-bottom{
        height:190px;
    }

    .lux-video-wrap{
        grid-template-columns:1fr;
    }
}

@media(max-width:767.98px){
    .lux-hero-title{
        font-size:2.8rem;
        letter-spacing:-.055em;
    }

    .lux-hero-text{
        font-size:1rem;
    }

    .lux-section{
        padding:78px 0;
    }

    .lux-feature-row,
    .lux-review-grid,
    .lux-gallery-grid{
        grid-template-columns:1fr;
    }

    .lux-gallery-item.big{
        grid-column:auto;
        grid-row:auto;
        min-height:320px;
    }

    .lux-gallery-item{
        min-height:280px;
    }

    .lux-collage{
        min-height:400px;
    }

    .photo-main{
        width:82%;
        height:285px;
    }

    .photo-top{
        width:46%;
        height:150px;
    }

    .photo-bottom{
        height:165px;
    }

    .lux-note{
        width:220px;
        padding:15px;
    }

    .lux-final-box{
        padding:52px 22px;
        border-radius:34px;
    }
}