*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    background:#0f0226;
    color:#ffffff;
    line-height:1.6;
}

a {
    color:#3c68e6;
}

a:visited {
    color:#3c68e6;
}

.container{
    max-width:1100px;
    margin:0 auto;
    padding:0 24px;
}

.hero{
    background:
    radial-gradient(
        circle at top center,
        rgba(255,60,245,.12),
        transparent 35%
    ),

    linear-gradient(
        180deg,
        #2a0072 0%,
        #3a0099 50%,
        #2d0078 100%
    );

    color:white;

    min-height:90vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    padding:120px 20px;
}

.page-hero{
    background:
    radial-gradient(
        circle at top center,
        rgba(255,60,245,.12),
        transparent 35%
    ),

    linear-gradient(
        180deg,
        #2a0072 0%,
        #3a0099 50%,
        #2d0078 100%
    );

    color:white;

    min-height:40vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
 margin-top:72px;      
    padding:55px 0 45px;

    border-top:none;
}


.hero h1{
    font-size:56px;
    line-height:1.05;
    margin:0 0 22px;
    letter-spacing:-1.5px;
}

.hero p{
    font-size:22px;
    max-width:720px;
    margin:0 auto 34px;
    color:#E7DDFF;
}

.hero-logo{
    width:100%;
   max-width:280px;
    height:auto;
    display:block;
    margin:0 auto 40px;
     border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.hero-screenshot{
    width:100%;
    max-width:420px;
    height:auto;
    margin-top:50px;
}


.btn{
    display:inline-block;
    background:linear-gradient(
        135deg,
        #c13cff,
        #8e2cff
    );
    color:white;
    text-decoration:none;
    padding:16px 34px;
    border-radius:999px;
    font-weight:800;
    box-shadow:0 12px 32px rgba(0,0,0,.25);
    transition:.25s ease;
}

.btn:hover{
    transform:translateY(-2px);
    box-shadow:
        0 0 35px rgba(255,60,255,.6),
        0 0 70px rgba(142,44,255,.38);
}

.section{
    padding:85px 0;
}

.section h2{
    font-size:38px;
    line-height:1.15;
    margin:0 0 18px;
    color:white;
}

.section p{
    font-size:18px;
    color:#D9C8FF;
    max-width:760px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:24px;
}

.card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    padding:28px;
    border-radius:24px;
    box-shadow:
        0 0 20px rgba(255,60,255,.10),
        0 18px 45px rgba(0,0,0,.22);
    backdrop-filter:blur(10px);
}

.card h3{
    margin:0 0 10px;
    color:white;
    font-size:22px;
}

.card p{
    margin:0;
    color:#D9C8FF;
    font-size:16px;
}

.cta{
    text-align:center;
    background:
        radial-gradient(circle at center, rgba(255,60,255,.18), transparent 45%),
        linear-gradient(180deg,transparent,rgba(142,44,255,.18));
    padding:100px 20px;
}

.cta h2{
    font-size:42px;
    margin:0 0 16px;
    color:white;
}

.cta p{
    color:#D9C8FF;
    font-size:20px;
}

.site-footer{
    background:#0b011d;
    border-top:1px solid rgba(255,255,255,.08);
    padding:42px 24px;
    color:#BCAEF7;
}

.footer-inner{
    max-width:1100px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}

.site-footer strong{
    color:white;
    font-size:17px;
}

.site-footer p{
    margin:4px 0 0;
    color:#BCAEF7;
    font-size:14px;
}

.site-footer a{
    color:#fff;
    text-decoration:none;
    font-weight:700;
}

.site-footer a:hover{
    text-decoration:none;
    color:#3c68e6;
}

.footer-center{
    text-align:center;
}

.footer-right{
    text-align:right;
}
/* =========================
   FAQ
========================= */

.faq-item{
    border-top:1px solid rgba(255,255,255,.08);
}

.faq-question{

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px 0;

    background:none;
    border:none;

    color:#fff;
    font-size:20px;
    font-weight:700;

    cursor:pointer;

    text-align:left;
}

.faq-question:hover{
    color:#d98cff;
}

.faq-icon{

    font-size:28px;

    font-weight:300;

    transition:.25s;
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    margin:0 0 22px;

    color:#D9C8FF;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:300px;

}

.faq-item.active .faq-icon{

    transform:rotate(180deg);

}

/* =========================
   Streamer Studio Menu
========================= */

.ss-top-menu{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;

    padding:14px 32px;

    background:rgba(15,2,38,.82);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.10);
}

.ss-logo{
    display:flex;
    align-items:center;
    min-width:220px;
}

.appmill-link{
    display:flex;
    align-items:center;
    gap:10px;
    color:white;
    text-decoration:none;
}

.appmill-logo{
    height:34px;
    width:auto;
    display:block;
}

.brand-tagline{
    color:#E7DDFF;
    font-size:13px;
    font-weight:600;
    white-space:nowrap;
}

.ss-nav-links{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;

    list-style:none;
    margin:0;
    padding:0;
}

.ss-nav-links a{
    color:#E7DDFF;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
}

.ss-nav-links a:hover{
    color:#3c68e6;
}
.ss-nav-links a.active{

    color:#3c68e6;

}
.header-app-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    color:white;
    text-decoration:none;
    font-size:14px;
    font-weight:800;

    padding:10px 18px;
    border-radius:999px;

    background:linear-gradient(135deg,#c13cff,#8e2cff);
    box-shadow:0 10px 28px rgba(0,0,0,.25);
    white-space:nowrap;
}

.header-app-btn:hover{
    transform:translateY(-1px);
    box-shadow:
        0 0 28px rgba(255,60,255,.55),
        0 0 60px rgba(142,44,255,.35);
}

.ss-menu-toggle{
    display:none;
    background:none;
    border:0;
    padding:8px;
    cursor:pointer;
}

.ss-menu-toggle span{
    display:block;
    width:26px;
    height:3px;
    margin:5px 0;
    background:white;
    border-radius:999px;
}
/* Scroll to top */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background-color: #6c3aad;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}

#scrollToTopBtn:hover {
  background-color: var(--primary-light);
  box-shadow: 0 6px 12px rgba(209, 164, 240, 0.6);
}

/* =========================
   Mobile Menu
========================= */

@media(max-width:850px){

    .ss-top-menu{
        padding:12px 20px;
    }

    .brand-tagline{
        display:none;
    }

    .ss-menu-toggle{
        display:block;
    }

    .ss-nav-links{
        display:none;

        position:absolute;
        top:64px;
        left:0;
        width:100%;

        background:#0f0226;
        padding:22px 24px;

        flex-direction:column;
        align-items:flex-start;
        gap:18px;

        border-bottom:1px solid rgba(255,255,255,.10);
    }

    .ss-nav-links.open{
        display:flex;
    }

    .header-app-btn{
        display:none;
    }
}

@media(max-width:700px){
    .footer-inner{
        flex-direction:column;
        text-align:center;
    }

    .footer-right{
        text-align:center;
    }
    
    .hero{
        padding:90px 20px;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:19px;
    }

    .section{
        padding:65px 0;
    }

    .section h2{
        font-size:32px;
    }
}