:root{
    --bg:#09070e;
    --bg2:#120b19;
    --panel:#171020;
    --panel2:#21132e;
    --purple:#8a45bd;
    --purple2:#c184ef;
    --green:#97d448;
    --green2:#d5ff8c;
    --orange:#ef7a1b;
    --gold:#e7c46c;
    --cream:#f7ecd8;
    --muted:#c5b6cb;
    --line:rgba(143,74,194,.48);
    --shadow:0 18px 50px rgba(0,0,0,.42);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    background:
        radial-gradient(circle at 12% 8%,rgba(108,44,151,.24),transparent 32rem),
        radial-gradient(circle at 92% 28%,rgba(73,137,71,.14),transparent 30rem),
        linear-gradient(180deg,#07050a,#0d0812 44%,#08060b);
    color:var(--cream);
    font-family:Arial,Helvetica,sans-serif;
}
a{color:inherit}
img{max-width:100%;display:block}

.site{
    min-height:100vh;
    overflow:hidden;
}

.topbar{
    position:sticky;
    top:0;
    z-index:1000;
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:26px;
    min-height:82px;
    padding:10px clamp(18px,4vw,64px);
    border-bottom:1px solid rgba(139,69,189,.32);
    background:rgba(6,5,10,.95);
    backdrop-filter:blur(14px);
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}
.brand img{
    width:58px;
    height:58px;
    object-fit:cover;
    object-position:center 18%;
    border:2px solid var(--purple2);
    border-radius:50%;
    background:#fff;
    box-shadow:0 0 24px rgba(139,69,189,.38);
}
.brand strong{
    display:block;
    color:var(--green2);
    font-size:19px;
}
.brand small{
    display:block;
    margin-top:2px;
    color:var(--purple2);
    font-size:11px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:clamp(16px,2.4vw,34px);
}
.nav a{
    position:relative;
    padding:12px 0;
    color:#efe7f2;
    font-size:13px;
    font-weight:900;
    letter-spacing:.04em;
    text-decoration:none;
    text-transform:uppercase;
}
.nav a::after{
    content:"";
    position:absolute;
    right:0;
    bottom:4px;
    left:0;
    height:2px;
    transform:scaleX(0);
    background:linear-gradient(90deg,var(--green),var(--orange));
    transition:transform .2s ease;
}
.nav a:hover::after{transform:scaleX(1)}

.header-actions{
    display:flex;
    align-items:center;
    gap:10px;
}
.pill,
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:1px solid rgba(192,132,239,.62);
    border-radius:999px;
    padding:12px 20px;
    background:linear-gradient(180deg,#642c87,#361844);
    color:#fff;
    font-weight:900;
    text-decoration:none;
    box-shadow:0 8px 22px rgba(74,29,96,.26);
}
.btn.orange{
    border-color:rgba(239,122,27,.78);
    background:linear-gradient(180deg,#ff923d,#c84f07);
    color:#1b0b05;
}
.menu-toggle{
    display:none;
    border:0;
    background:none;
    color:#fff;
    font-size:24px;
}

.hero{
    position:relative;
    min-height:clamp(520px,65vw,900px);
    background:
        linear-gradient(0deg,rgba(5,3,9,.95),transparent 38%),
        url('/assets/images/seasonal/fall-halloween/hero.png')
        center/cover no-repeat;
}
.hero-cta{
    position:absolute;
    right:0;
    bottom:52px;
    left:0;
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    padding:0 20px;
}
.hero-social-proof{
    position:absolute;
    bottom:18px;
    left:50%;
    transform:translateX(-50%);
    width:min(92%,780px);
    color:#eee2f2;
    font-weight:800;
    text-align:center;
}

.trust-strip{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    width:min(1180px,calc(100% - 32px));
    margin:-4px auto 0;
    border:1px solid var(--line);
    background:rgba(10,7,15,.97);
    box-shadow:var(--shadow);
}
.trust-item{
    display:grid;
    grid-template-columns:44px 1fr;
    gap:12px;
    padding:22px 20px;
    border-right:1px solid rgba(139,69,189,.22);
}
.trust-item:last-child{border-right:0}
.trust-item i{
    color:var(--green);
    font-size:28px;
}
.trust-item strong{
    display:block;
    color:var(--green2);
    font-size:14px;
    text-transform:uppercase;
}
.trust-item span{
    color:var(--muted);
    font-size:13px;
    line-height:1.45;
}

.section{
    width:min(1200px,calc(100% - 32px));
    margin:0 auto;
    padding:64px 0;
}
.section-title{
    margin:0 0 30px;
    color:var(--orange);
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(28px,4vw,46px);
    letter-spacing:.04em;
    text-align:center;
    text-transform:uppercase;
}
.section-title::before,
.section-title::after{
    content:"✦";
    margin:0 12px;
    color:var(--purple2);
    font-size:.65em;
}

.category-grid,
.list-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:16px;
}
.category-card,
.list-card{
    position:relative;
    min-height:320px;
    overflow:hidden;
    border:1px solid rgba(139,69,189,.56);
    border-radius:18px;
    background:
        linear-gradient(0deg,rgba(5,3,9,.98),rgba(5,3,9,.06)),
        url('/assets/images/seasonal/fall-halloween/collections.png')
        center/cover no-repeat;
    box-shadow:var(--shadow);
    text-decoration:none;
}
.category-card:nth-child(2){background-position:18% center}
.category-card:nth-child(3){background-position:38% center}
.category-card:nth-child(4){background-position:58% center}
.category-card:nth-child(5){background-position:78% center}
.category-card:nth-child(6){background-position:96% center}
.card-bottom{
    position:absolute;
    right:0;
    bottom:0;
    left:0;
    padding:28px 12px 18px;
    text-align:center;
}
.card-bottom h3{
    min-height:42px;
    margin:0 0 12px;
    color:var(--green2);
    font-family:Georgia,'Times New Roman',serif;
    font-size:17px;
    text-transform:uppercase;
}
.card-bottom p{
    margin:0 0 12px;
    color:var(--muted);
    font-size:12px;
}
.small-pill{
    display:inline-flex;
    border:1px solid rgba(192,132,239,.72);
    border-radius:999px;
    padding:8px 16px;
    color:#ecdaf8;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
}

.live-panel{
    display:grid;
    grid-template-columns:380px minmax(0,1fr);
    overflow:hidden;
    border:1px solid rgba(139,69,189,.58);
    border-radius:24px;
    background:
        linear-gradient(90deg,rgba(6,4,11,.98),rgba(19,8,28,.88)),
        url('/assets/images/seasonal/fall-halloween/live-banner.png')
        center/cover no-repeat;
    box-shadow:var(--shadow);
}
.live-mouse{
    min-height:380px;
    background:
        url('/assets/images/seasonal/fall-halloween/mouse.webp')
        center bottom/contain no-repeat;
}
.live-copy{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:clamp(30px,5vw,64px);
}
.live-status{
    display:inline-flex;
    align-self:flex-start;
    align-items:center;
    gap:9px;
    margin-bottom:14px;
    border:1px solid rgba(239,122,27,.58);
    border-radius:999px;
    padding:8px 13px;
    background:rgba(239,122,27,.11);
    color:#ffb371;
    font-weight:900;
    text-transform:uppercase;
}
.live-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#e52c2a;
    box-shadow:0 0 14px rgba(229,44,42,.9);
}
.live-copy h2{
    margin:0 0 12px;
    color:var(--green2);
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(30px,4vw,48px);
}
.live-copy p{
    color:#ddd0e2;
    font-size:17px;
    line-height:1.68;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
}
.benefit-card{
    border:1px solid rgba(139,69,189,.42);
    border-radius:16px;
    padding:26px;
    background:linear-gradient(145deg,#17101f,#0b0810);
    text-align:center;
}
.benefit-card i{
    color:var(--green);
    font-size:31px;
}
.benefit-card h3{
    color:var(--gold);
    font-size:15px;
    text-transform:uppercase;
}
.benefit-card p{
    color:var(--muted);
    font-size:14px;
    line-height:1.55;
}

.plan-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
}
.plan-card{
    border:1px solid rgba(139,69,189,.46);
    border-radius:18px;
    padding:26px;
    background:linear-gradient(145deg,#171020,#0b0810);
}
.plan-card.featured{
    border-color:rgba(151,212,72,.72);
    box-shadow:0 0 34px rgba(151,212,72,.14);
}
.plan-card h3{
    color:var(--green2);
    font-size:21px;
}
.plan-price{
    margin:12px 0;
    color:var(--orange);
    font-size:32px;
    font-weight:900;
}
.plan-card p{
    min-height:78px;
    color:var(--muted);
    line-height:1.55;
}

.newsletter{
    display:grid;
    grid-template-columns:1fr minmax(280px,600px);
    align-items:center;
    gap:28px;
    width:min(1200px,calc(100% - 32px));
    margin:0 auto 54px;
    border:1px solid var(--line);
    border-radius:20px;
    padding:32px;
    background:linear-gradient(90deg,#160c22,#241033);
}
.newsletter h2{
    margin:0 0 8px;
    color:var(--purple2);
    font-family:Georgia,'Times New Roman',serif;
}
.newsletter p{
    margin:0;
    color:var(--muted);
}
.newsletter form{
    display:grid;
    grid-template-columns:1fr auto;
}
.newsletter input{
    min-width:0;
    border:1px solid rgba(139,69,189,.56);
    border-right:0;
    border-radius:12px 0 0 12px;
    padding:15px 16px;
    background:#fff;
    color:#160c22;
}
.newsletter button{
    border:0;
    border-radius:0 12px 12px 0;
    padding:0 24px;
    background:linear-gradient(180deg,#ff923d,#c84f07);
    color:#1b0b05;
    font-weight:900;
}

.footer{
    display:grid;
    grid-template-columns:1.4fr repeat(3,1fr);
    gap:28px;
    padding:44px clamp(20px,5vw,76px);
    border-top:1px solid rgba(139,69,189,.28);
    background:#050409;
}
.footer h3{color:var(--green2)}
.footer h4{
    color:var(--purple2);
    text-transform:uppercase;
}
.footer a{
    display:block;
    margin:9px 0;
    color:var(--muted);
    text-decoration:none;
}
.footer-brand img{
    width:96px;
    height:96px;
    border-radius:50%;
    object-fit:cover;
    object-position:center 18%;
}

@media(max-width:1050px){
    .nav{display:none}
    .nav.open{
        position:absolute;
        top:82px;
        right:16px;
        left:16px;
        display:grid;
        gap:0;
        padding:16px 20px;
        border:1px solid var(--line);
        border-radius:16px;
        background:#0d0912;
        box-shadow:var(--shadow);
    }
    .nav.open a{padding:13px 0}
    .menu-toggle{display:block}
    .category-grid,
    .list-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
    .plan-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:760px){
    .topbar{
        grid-template-columns:auto 1fr auto;
        min-height:70px;
        padding:8px 14px;
    }
    .brand-text{display:none}
    .header-actions .pill:first-child{display:none}
    .hero{min-height:72vh}
    .trust-strip,
    .benefit-grid{grid-template-columns:1fr 1fr}
    .live-panel{grid-template-columns:1fr}
    .live-mouse{min-height:280px}
    .category-grid,
    .list-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .newsletter{grid-template-columns:1fr}
    .footer{grid-template-columns:1fr 1fr}
}
@media(max-width:520px){
    .trust-strip,
    .benefit-grid,
    .plan-grid,
    .footer{grid-template-columns:1fr}
    .category-grid,
    .list-grid{grid-template-columns:1fr}
    .newsletter form{grid-template-columns:1fr;gap:10px}
    .newsletter input,
    .newsletter button{
        border:0;
        border-radius:12px;
        min-height:50px;
    }
}
