/* ========================================
   RESET & BASE
======================================== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:auto}
body{
    font-family:'Inter',-apple-system,sans-serif;
    background:#0a0a0a;color:#f0f0f0;line-height:1.6;
    overflow-x:hidden;-webkit-font-smoothing:antialiased;
    cursor:none;
}
a{text-decoration:none;color:inherit}
ul{list-style:none}
img{max-width:100%;display:block}
a,button,.magnetic,.spotlight-card,.horiz-card{cursor:none!important}

/* ========================================
   SCROLL PROGRESS BAR
======================================== */
.scroll-progress{
    position:fixed;top:0;left:0;height:2px;z-index:10001;
    background:linear-gradient(90deg,#6366f1,#a855f7,#ec4899);
    width:0%;
    transition:none;
}

/* ========================================
   CUSTOM CURSOR
======================================== */
.cursor-dot{
    position:fixed;z-index:10000;
    width:8px;height:8px;border-radius:50%;
    background:#fff;pointer-events:none;
    transform:translate(-50%,-50%);
    mix-blend-mode:difference;
}
.cursor-ring{
    position:fixed;z-index:9999;
    width:40px;height:40px;border-radius:50%;
    border:1.5px solid rgba(255,255,255,.4);
    pointer-events:none;
    transform:translate(-50%,-50%);
    transition:width .3s cubic-bezier(.22,1,.36,1),height .3s cubic-bezier(.22,1,.36,1),border-color .3s,background .3s;
}
.cursor-ring.hover{
    width:70px;height:70px;
    background:rgba(255,255,255,.05);
    border-color:rgba(255,255,255,.7);
}

/* ========================================
   NAVBAR
======================================== */
#navbar{
    position:fixed;top:0;width:100%;z-index:1000;
    padding:0 2rem;
    background:rgba(0,0,0,0);
    backdrop-filter:blur(0px);
    border-bottom:1px solid transparent;
    transition:all .4s;
}
#navbar.scrolled{
    background:rgba(0,0,0,.6);
    backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
    border-bottom-color:rgba(255,255,255,.06);
}
.nav-inner{
    max-width:1200px;margin:0 auto;
    display:flex;align-items:center;justify-content:space-between;
    height:72px;
}
.nav-logo{
    font-size:1.2rem;font-weight:700;letter-spacing:-.03em;
    display:flex;align-items:center;gap:.45rem;
}
.nav-menu{display:flex;gap:2rem}
.nav-menu a{font-size:.88rem;color:rgba(255,255,255,.6);transition:color .25s}
.nav-menu a:hover{color:#fff}
.nav-cta{
    font-size:.85rem;font-weight:500;
    padding:.5rem 1.1rem;border-radius:6px;
    background:#fff;color:#000;
    display:inline-flex;align-items:center;gap:.4rem;
    transition:all .25s;
}
.nav-cta:hover{background:#e0e0e0}

/* ========================================
   BUTTONS
======================================== */
.btn-white{
    display:inline-flex;align-items:center;gap:.5rem;
    padding:.8rem 1.6rem;border-radius:10px;
    background:#fff;color:#000;font-weight:600;font-size:.95rem;
    transition:all .25s;position:relative;overflow:hidden;
}
.btn-white:hover{
    box-shadow:0 0 30px rgba(255,255,255,.15);
}
.btn-xl{padding:1rem 2.2rem;font-size:1.05rem;border-radius:12px}
.btn-ghost{
    display:inline-flex;align-items:center;gap:.5rem;
    padding:.8rem 1.6rem;border-radius:10px;
    border:1px solid rgba(255,255,255,.12);color:#fff;
    font-weight:500;font-size:.95rem;
    transition:all .25s;
}
.btn-ghost:hover{
    border-color:rgba(255,255,255,.35);
    background:rgba(255,255,255,.04);
}

/* ========================================
   SECTION UTILS
======================================== */
.section-intro{text-align:center;margin-bottom:4rem}
.overline{
    font-size:.7rem;font-weight:700;text-transform:uppercase;
    letter-spacing:.15em;color:rgba(255,255,255,.5);margin-bottom:1rem;
}
.section-h2{
    font-size:clamp(2rem,4vw,3.2rem);font-weight:700;
    letter-spacing:-.04em;line-height:1.12;margin-bottom:1rem;color:#fff;
}

/* ========================================
   HERO
======================================== */
.hero{
    padding:11rem 2rem 0;text-align:center;
    max-width:1200px;margin:0 auto;position:relative;
}
.hero-inner{max-width:800px;margin:0 auto 5rem}

.hero-badge{
    display:inline-flex;align-items:center;gap:.6rem;
    padding:.35rem 1rem;border-radius:99px;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.06);
    font-size:.8rem;color:rgba(255,255,255,.7);
    margin-bottom:2.5rem;
}
.badge-dot{
    width:6px;height:6px;border-radius:50%;background:#34d399;
    box-shadow:0 0 8px #34d399;
    animation:pulse-dot 2s infinite;
}
@keyframes pulse-dot{0%,100%{opacity:1}50%{opacity:.3}}

/* Split-text headline */
.hero-h1{
    font-size:clamp(2.8rem,6vw,5rem);font-weight:800;
    letter-spacing:-.05em;line-height:1.05;margin-bottom:1.8rem;
}
.hero-h1 .char{
    display:inline-block;
    opacity:0;transform:translateY(40px) rotateX(-40deg);
    transition:opacity .5s cubic-bezier(.22,1,.36,1),transform .5s cubic-bezier(.22,1,.36,1);
}
.hero-h1 .char.visible{
    opacity:1;transform:translateY(0) rotateX(0);
}
.hero-h1 .word{display:inline-block;white-space:pre}

.hero-p{
    font-size:1.15rem;color:rgba(255,255,255,.65);
    max-width:580px;margin:0 auto 2.5rem;line-height:1.75;
}
.hero-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* Hero image */
.hero-image{
    position:relative;max-width:1050px;margin:0 auto;
    border-radius:16px;overflow:visible;
}
.hero-image img{
    width:100%;display:block;border-radius:16px;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 40px 80px -20px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.06);
}
.hero-glow{
    position:absolute;top:-30%;left:50%;transform:translateX(-50%);
    width:130%;height:90%;
    background:radial-gradient(ellipse,rgba(99,102,241,.12) 0%,transparent 65%);
    pointer-events:none;z-index:-1;
}

/* Floating tags */
.float-tag{
    position:absolute;
    padding:.55rem 1rem;border-radius:10px;
    background:rgba(10,10,10,.85);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.1);
    font-size:.8rem;font-weight:500;
    display:flex;align-items:center;gap:.5rem;
    color:rgba(255,255,255,.8);
    box-shadow:0 8px 24px rgba(0,0,0,.5);
    animation:float-y 4s ease-in-out infinite;
    z-index:5;
}
.ft-1{top:15%;left:-3%;animation-delay:0s}
.ft-1 i{color:#1877f2}
.ft-2{top:35%;right:-4%;animation-delay:1.3s}
.ft-2 i{color:#e4405f}
.ft-3{bottom:10%;left:5%;animation-delay:2.6s}
.ft-3 i{color:#25d366}

@keyframes float-y{
    0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}
}

/* ========================================
   INFINITE MARQUEE
======================================== */
.marquee-section{
    padding:2.5rem 0;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    overflow:hidden;
    background:#060606;
}
.marquee-track{
    display:flex;width:max-content;
    animation:marquee 25s linear infinite;
}
.marquee-content{
    display:flex;align-items:center;gap:2.5rem;
    padding:0 1.25rem;flex-shrink:0;
}
.marquee-content span{
    font-size:1rem;font-weight:600;color:rgba(255,255,255,.35);
    display:flex;align-items:center;gap:.5rem;white-space:nowrap;
}
.marquee-content span i{font-size:1.3rem}
.marquee-dot{
    width:4px;height:4px;border-radius:50%;
    background:rgba(255,255,255,.15);flex-shrink:0;
}
@keyframes marquee{
    0%{transform:translateX(0)}
    100%{transform:translateX(-50%)}
}

/* ========================================
   SCROLL-REVEAL TEXT
======================================== */
.reveal-text-section{
    padding:8rem 2rem 4rem;
    display:flex;justify-content:center;
    background:linear-gradient(180deg,#0a0a0a 0%,#111 50%,#0a0a0a 100%);
}
.reveal-text-inner{max-width:900px;margin:0 auto}
.scroll-reveal-text{
    font-size:clamp(1.5rem,3vw,2.4rem);
    font-weight:600;letter-spacing:-.03em;line-height:1.4;
}
.scroll-reveal-text .word{
    display:inline-block;
    color:rgba(255,255,255,.15);
    transition:color .3s ease;
    margin-right:.3em;
}
.scroll-reveal-text .word.lit{color:#fff}

/* ========================================
   FEATURE SPOTLIGHT CARDS
======================================== */
.features{
    padding:4rem 2rem 7rem;
    background:linear-gradient(180deg,#0a0a0a 0%,#0d0d0d 100%);
}
.features-inner{max-width:1200px;margin:0 auto}
.spotlight-grid{
    display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;
}
.spotlight-card{
    position:relative;padding:3rem 2.5rem;border-radius:16px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.1);
    overflow:hidden;
    transition:border-color .4s,background .4s,box-shadow .4s;
}
.spotlight-card:hover{
    border-color:rgba(255,255,255,.2);
    background:rgba(255,255,255,.07);
    box-shadow:0 8px 30px rgba(0,0,0,.4);
}

/* Mouse-follow glow inside card */
.spotlight-glow{
    position:absolute;width:300px;height:300px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(99,102,241,.15),transparent 70%);
    pointer-events:none;opacity:0;
    transition:opacity .3s;
    transform:translate(-50%,-50%);
}
.spotlight-card:hover .spotlight-glow{opacity:1}

.sc-content{position:relative;z-index:1}
.sc-icon{
    width:48px;height:48px;border-radius:12px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    display:flex;align-items:center;justify-content:center;
    font-size:1.15rem;margin-bottom:1.5rem;
}
.spotlight-card h3{
    font-size:1.2rem;font-weight:600;margin-bottom:.6rem;
    letter-spacing:-.02em;
}
.spotlight-card p{
    font-size:.92rem;color:rgba(255,255,255,.55);line-height:1.7;
}
.sc-number{
    position:absolute;bottom:1.5rem;right:2rem;
    font-size:5rem;font-weight:900;letter-spacing:-.06em;
    color:rgba(255,255,255,.06);line-height:1;
    z-index:0;
}

/* ========================================
   HORIZONTAL SCROLL SECTION
======================================== */
.horiz-section{
    position:relative;
    background:#0d0d0d;
    border-top:1px solid rgba(255,255,255,.08);
}
.horiz-sticky{
    position:sticky;top:0;
    height:100vh;
    display:flex;flex-direction:column;
    justify-content:center;
    padding:0 2rem;
    overflow:hidden;
}
.horiz-header{
    max-width:1200px;margin:0 auto 3rem;width:100%;
}
.horiz-track{
    display:flex;gap:2rem;
    max-width:1200px;margin:0 auto;width:100%;
    will-change:transform;
}
.horiz-card{
    flex:0 0 380px;
    padding:2.5rem;border-radius:16px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    position:relative;
    transition:border-color .3s,background .3s,box-shadow .3s;
}
.horiz-card:hover{
    border-color:rgba(255,255,255,.22);
    background:rgba(255,255,255,.08);
    box-shadow:0 8px 30px rgba(0,0,0,.4);
}
.hc-num{
    font-size:4rem;font-weight:900;letter-spacing:-.05em;
    color:rgba(255,255,255,.07);line-height:1;margin-bottom:1.5rem;
}
.hc-icon{
    width:48px;height:48px;border-radius:12px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    display:flex;align-items:center;justify-content:center;
    font-size:1.15rem;margin-bottom:1.5rem;
}
.horiz-card h3{
    font-size:1.2rem;font-weight:600;margin-bottom:.75rem;
    letter-spacing:-.02em;
}
.horiz-card p{
    font-size:.9rem;color:rgba(255,255,255,.55);line-height:1.7;
    margin-bottom:1.5rem;
}
.hc-tag{
    display:inline-block;
    padding:.3rem .8rem;border-radius:6px;
    background:rgba(99,102,241,.1);
    border:1px solid rgba(99,102,241,.2);
    font-size:.75rem;font-weight:600;
    color:rgba(255,255,255,.6);
}

/* ========================================
   CTA
======================================== */
.cta{
    padding:10rem 2rem;text-align:center;
    position:relative;overflow:hidden;
    background:linear-gradient(180deg,#0a0a0a 0%,#111 40%,#0a0a0a 100%);
    border-top:1px solid rgba(255,255,255,.08);
}
.cta-inner{position:relative;z-index:1;max-width:700px;margin:0 auto}
.cta-glow{
    position:absolute;top:50%;left:50%;
    transform:translate(-50%,-50%);
    width:500px;height:500px;border-radius:50%;
    background:radial-gradient(circle,rgba(99,102,241,.08),transparent 65%);
    pointer-events:none;z-index:-1;
}
.cta h2{
    font-size:clamp(2rem,4vw,3.2rem);font-weight:700;
    letter-spacing:-.04em;margin-bottom:1rem;
}
.cta p{
    font-size:1.1rem;color:rgba(255,255,255,.6);margin-bottom:2.5rem;
}
.cta-note{
    display:block;margin-top:1.5rem;
    font-size:.8rem;color:rgba(255,255,255,.2);
}

/* ========================================
   FOOTER
======================================== */
.footer{
    border-top:1px solid rgba(255,255,255,.08);
    padding:4rem 2rem 2rem;
    background:#060606;
}
.footer-inner{
    max-width:1200px;margin:0 auto;
    display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;
    padding-bottom:3rem;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.footer-brand p{
    font-size:.9rem;color:rgba(255,255,255,.45);
    margin-top:.75rem;max-width:280px;
}
.footer-socials{display:flex;gap:1rem;margin-top:1.5rem}
.footer-socials a{
    font-size:1.1rem;color:rgba(255,255,255,.25);transition:color .25s;
}
.footer-socials a:hover{color:#fff}
.footer-col{display:flex;flex-direction:column;gap:.6rem}
.footer-col h4{
    font-size:.7rem;font-weight:700;text-transform:uppercase;
    letter-spacing:.1em;color:rgba(255,255,255,.4);margin-bottom:.5rem;
}
.footer-col a{font-size:.9rem;color:rgba(255,255,255,.55);transition:color .25s}
.footer-col a:hover{color:#fff}
.footer-bottom{
    max-width:1200px;margin:0 auto;padding-top:2rem;
    font-size:.8rem;color:rgba(255,255,255,.15);
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.anim{
    opacity:0;
    transition-property:opacity,transform;
    transition-timing-function:cubic-bezier(.22,1,.36,1);
}
[data-anim="fade-up"]{transform:translateY(50px)}
[data-anim="fade-down"]{transform:translateY(-30px)}
[data-anim="fade-right"]{transform:translateX(-50px)}
[data-anim="fade-left"]{transform:translateX(50px)}
[data-anim="scale-up"]{transform:scale(.92)}
.anim.is-visible{
    opacity:1;
    transform:translateY(0) translateX(0) scale(1);
}

/* ========================================
   RESPONSIVE
======================================== */
@media(max-width:900px){
    .spotlight-grid{grid-template-columns:1fr}
    .footer-inner{grid-template-columns:1fr 1fr;gap:2rem}
    .footer-brand{grid-column:1/-1}
    .nav-menu{display:none}
    .float-tag{display:none}
    .horiz-card{flex:0 0 85vw}
}
@media(max-width:600px){
    .hero-buttons{flex-direction:column;align-items:center}
    .footer-inner{grid-template-columns:1fr}
}

/* ========================================
   COMING SOON STYLES
======================================== */
.coming-soon-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cs-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.cs-inner {
    margin: 0;
    z-index: 10;
    position: relative;
    max-width: 800px;
    text-align: center;
}

.cs-h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.notify-form-wrapper {
    margin: 3rem auto;
    max-width: 500px;
}

.notify-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255,255,255,0.03);
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s;
}

.notify-form:focus-within {
    border-color: rgba(255,255,255,0.3);
}

.input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.8rem;
}

.input-group i {
    color: rgba(255,255,255,0.4);
}

.input-group input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
}

.input-group input::placeholder {
    color: rgba(255,255,255,0.4);
}

.notify-form .btn-white {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: none;
}

.form-msg {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.form-msg.success {
    color: #34d399;
    opacity: 1;
}

.countdown-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.cd-num {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.cd-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

.cs-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

@media(max-width: 600px) {
    .notify-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
    }
    .input-group {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 10px;
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
    .notify-form .btn-white {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    .countdown-wrapper {
        gap: 1rem;
    }
    .cd-num {
        font-size: 2.5rem;
    }
}

/* ========================================
   HERO COUNTDOWN (inline compact)
======================================== */
.hero-countdown {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .75rem 1.4rem;
    border-radius: 12px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(12px);
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    cursor: default;
    transition: background .3s, border-color .3s;
}
.hero-countdown:hover {
    background: rgba(255,255,255,.11);
    border-color: rgba(255,255,255,.25);
}
.hero-countdown i {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.05rem;
}
.hc-label {
    color: rgba(255,255,255,.55);
    font-weight: 400;
    font-size: .85rem;
    margin-right: .1rem;
}
.hc-unit {
    font-variant-numeric: tabular-nums;
    font-size: 1.05rem;
    background: linear-gradient(135deg, #a5b4fc, #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 1.6ch;
    text-align: center;
    transition: transform .18s cubic-bezier(.34,1.56,.64,1);
}
.hc-unit.flip {
    transform: scale(1.25);
}
.hc-sep {
    color: rgba(255,255,255,.4);
    font-size: .78rem;
    margin-right: .3rem;
    font-weight: 400;
}

/* ========================================
   RELEASE COUNTDOWN (CTA full block)
======================================== */
.release-countdown {
    margin: 2rem auto;
    max-width: 560px;
    padding: 2rem 2.2rem;
    border-radius: 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(20px);
    text-align: center;
}
.rc-title {
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: .25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
}
.rc-title i {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.rc-date {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
    background: linear-gradient(135deg, #a5b4fc, #e879f9, #f9a8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.rc-units {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}
.rc-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    min-width: 70px;
    padding: .8rem .5rem;
    border-radius: 12px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}
.rc-num {
    font-size: 2.6rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    background: linear-gradient(135deg, #a5b4fc, #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform .2s cubic-bezier(.34,1.56,.64,1);
}
.rc-num.flip { transform: scale(1.18); }
.rc-lab {
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}
.rc-divider {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,.2);
    margin-bottom: .8rem;
    align-self: flex-start;
    padding-top: .35rem;
}
.rc-bar-wrap {
    margin-top: 1.4rem;
    height: 4px;
    border-radius: 99px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
}
.rc-bar {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
    width: 0%;
    transition: width 1s linear;
}
/* Badge pulse variant */
.badge-dot.pulse {
    animation: badgePulse 1.6s ease-in-out infinite;
}
@keyframes badgePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(167,139,250,.6); }
    50% { box-shadow: 0 0 0 5px rgba(167,139,250,0); }
}
/* Responsive */
@media(max-width:480px) {
    .hero-countdown { flex-wrap: wrap; justify-content: center; }
    .rc-num { font-size: 2rem; }
    .rc-unit { min-width: 54px; }
}

/* ========================================
   SCREEN READER ONLY (Accessibility + SEO)
======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    padding: 8rem 2rem;
    max-width: 860px;
    margin: 0 auto;
}
.faq-inner {
    width: 100%;
}
.faq-list {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
}
.faq-item:hover,
.faq-item.faq-open {
    border-color: rgba(168,85,247,0.4);
    background: rgba(168,85,247,0.05);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1.8rem;
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
    line-height: 1.4;
}
.faq-question:focus-visible {
    outline: 2px solid #a855f7;
    outline-offset: -2px;
    border-radius: 14px;
}
.faq-item.faq-open .faq-question {
    color: #d8b4fe;
}
.faq-icon {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), color 0.2s;
}
.faq-item.faq-open .faq-icon {
    transform: rotate(180deg);
    color: #a855f7;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    padding: 0 1.8rem;
}
.faq-item.faq-open .faq-answer {
    max-height: 400px;
    padding: 0 1.8rem 1.4rem;
}
.faq-answer p {
    color: rgba(255,255,255,0.65);
    font-size: 0.97rem;
    line-height: 1.75;
    margin: 0;
}
.faq-answer strong {
    color: rgba(255,255,255,0.9);
}
@media(max-width: 600px) {
    .faq-section { padding: 5rem 1.2rem; }
    .faq-question { font-size: 0.97rem; padding: 1.2rem 1.2rem; }
    .faq-answer { padding: 0 1.2rem; }
    .faq-item.faq-open .faq-answer { padding: 0 1.2rem 1.2rem; }
}
