/* ===========================
RESET
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:#090909;
color:#fff;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

.container{

width:90%;
max-width:1250px;
margin:auto;

}

/* ===========================
LOADER
=========================== */

#loader{

position:fixed;
inset:0;
background:#000;
display:flex;
justify-content:center;
align-items:center;
z-index:9999;
transition:.6s;

}

.loader-logo{

display:flex;
flex-direction:column;
align-items:center;
gap:15px;

}

.loader-logo img{

width:90px;
animation:spin 4s linear infinite;

}

.loader-logo h2{

color:#FFD700;
font-size:32px;
letter-spacing:3px;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/* ===========================
HEADER
=========================== */

header{

position:fixed;
top:0;
left:0;
width:100%;
padding:18px 0;
background:rgba(10,10,10,.65);
backdrop-filter:blur(16px);
border-bottom:1px solid rgba(255,255,255,.08);
z-index:999;

}

.navbar{

display:flex;
justify-content:space-between;
align-items:center;
gap:16px;
position:relative;

}

.logo{

display:flex;
align-items:center;
gap:12px;
color:#fff;
font-weight:700;
font-size:24px;

}

.logo img{

width:48px;
height:48px;
border-radius:50%;

}

nav{

display:flex;
gap:28px;

}

nav a{

color:#ddd;
transition:.3s;

}

nav a:hover{

color:#FFD700;

}

.nav-actions{

display:flex;
align-items:center;
gap:20px;
}

.menu-toggle{

display:none;
background:none;
border:none;
cursor:pointer;
padding:8px;
flex-direction:column;
gap:4px;
}

.menu-toggle span{

display:block;
width:24px;
height:2px;
background:#fff;
border-radius:2px;
transition:.3s;
}

.menu-toggle.active span:nth-child(1){
transform:translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
opacity:0;
}

.menu-toggle.active span:nth-child(3){
transform:translateY(-6px) rotate(-45deg);
}

.download-btn{

background:linear-gradient(135deg,#FFD700,#ffb300);
padding:14px 28px;
border-radius:50px;
color:#000;
font-weight:700;
transition:.3s;

}

.download-btn:hover{

transform:translateY(-4px);
box-shadow:0 0 30px rgba(255,215,0,.5);

}

@media (max-width: 900px){

.navbar{
position:relative;
}

.menu-toggle{
display:flex;
}

.nav-actions{
position:absolute;
top:calc(100% + 12px);
right:0;
flex-direction:column;
align-items:flex-start;
background:rgba(10,10,10,.96);
padding:20px;
border:1px solid rgba(255,255,255,.1);
border-radius:18px;
width:min(280px, 85vw);
display:none;
}

.nav-actions.active{
display:flex;
}

.nav-links{
flex-direction:column;
gap:14px;
}

.download-btn{
width:100%;
text-align:center;
}

}

@media (max-width: 768px){

.hero{
padding-top:130px;
}

.hero h1{
font-size:48px;
}

.hero p{
font-size:18px;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

}

/* ===========================
HERO
=========================== */

.hero{

min-height:100vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:140px 5% 80px;
background:
radial-gradient(circle at top,#342100,transparent 45%),
radial-gradient(circle at right,#1b1b3b,transparent 45%),
#090909;

}

.hero-left{

flex:1;

}

.badge{

display:inline-block;
background:#181818;
padding:10px 20px;
border-radius:40px;
border:1px solid rgba(255,215,0,.25);
color:#FFD700;
margin-bottom:25px;

}

.hero h1{

font-size:68px;
line-height:1.15;
font-weight:800;

}

.hero h1 span{

color:#FFD700;

}

.hero p{

margin:25px 0;
font-size:20px;
color:#bbb;
max-width:600px;

}

.hero-buttons{

display:flex;
gap:18px;
margin-top:35px;

}

.gold-btn{

background:linear-gradient(135deg,#FFD700,#ffb300);
padding:18px 38px;
border-radius:60px;
color:#000;
font-weight:700;
transition:.3s;

}

.gold-btn:hover{

transform:translateY(-5px);

}

.dark-btn{

padding:18px 38px;
border-radius:60px;
border:2px solid #FFD700;
color:#FFD700;
transition:.3s;

}

.dark-btn:hover{

background:#FFD700;
color:#000;

}

.stats{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:60px;

}

.stats div{

background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
padding:22px;
border-radius:18px;
text-align:center;

}

.stats h2{

color:#FFD700;
font-size:32px;
margin-bottom:8px;

}
/* ===========================
PHONE MOCKUP
=========================== */

.hero-right{
flex:1;
display:flex;
justify-content:center;
align-items:center;
}

.phone{

width:340px;
padding:18px;
border-radius:40px;
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.1);
backdrop-filter:blur(20px);
box-shadow:0 25px 60px rgba(0,0,0,.6);
animation:floatPhone 4s ease-in-out infinite;

}

.phone img{

width:100%;
border-radius:28px;

}

@keyframes floatPhone{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-18px);
}

}

/* ===========================
SECTION TITLE
=========================== */

.section-head{

text-align:center;
margin-bottom:70px;

}

.section-head span{

color:#FFD700;
font-weight:700;
letter-spacing:2px;
font-size:14px;

}

.section-head h2{

font-size:46px;
margin:15px 0;

}

.section-head p{

color:#aaa;
max-width:650px;
margin:auto;

}

/* ===========================
FEATURES
=========================== */

.features{

padding:120px 0;

}

.feature-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;

}

.feature-card{

background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
padding:40px 30px;
border-radius:24px;
transition:.35s;
text-align:center;

}

.feature-card i{

font-size:42px;
color:#FFD700;
margin-bottom:22px;

}

.feature-card h3{

margin-bottom:15px;
font-size:24px;

}

.feature-card p{

color:#bbb;
line-height:1.7;

}

.feature-card:hover{

transform:translateY(-12px);
border-color:#FFD700;
box-shadow:0 15px 40px rgba(255,215,0,.25);

}

/* ===========================
MARKETS
=========================== */

.markets{

padding:120px 0;
background:#111;

}

.market-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:22px;

}

.market-card{

padding:22px;
text-align:center;
border-radius:18px;
background:linear-gradient(145deg,#1b1b1b,#111);
border:1px solid rgba(255,215,0,.15);
font-weight:600;
transition:.3s;

}

.market-card:hover{

background:linear-gradient(145deg,#FFD700,#ffb300);
color:#000;
transform:scale(1.05);

}

/* ===========================
SCREENSHOTS
=========================== */

.screenshots{

padding:120px 0;

}

.screens-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;

}

.screens-grid img{

width:100%;
border-radius:28px;
transition:.4s;
border:3px solid transparent;

}

.screens-grid img:hover{

transform:translateY(-10px) scale(1.03);
border-color:#FFD700;
box-shadow:0 20px 45px rgba(255,215,0,.25);

}

/* ===========================
REVIEWS
=========================== */

.reviews{

padding:120px 0;
background:#101010;

}

.review-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;

}

.review-card{

padding:35px;
border-radius:24px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
transition:.3s;

}

.review-card:hover{

transform:translateY(-10px);
border-color:#FFD700;

}

.stars{

font-size:22px;
color:#FFD700;
margin-bottom:18px;

}

.review-card p{

line-height:1.8;
color:#ddd;
margin-bottom:25px;

}

.user{

display:flex;
align-items:center;
gap:15px;

}

.user img{

width:60px;
height:60px;
border-radius:50%;
object-fit:cover;
border:2px solid #FFD700;

}

.user h4{

margin-bottom:5px;

}

.user span{

color:#999;
font-size:14px;

}
/* ===========================
DOWNLOAD SECTION
=========================== */

.download{

padding:120px 0;
text-align:center;
background:
linear-gradient(135deg,#1a1a1a,#0d0d0d);

}

.download h2{

font-size:52px;
margin-bottom:20px;

}

.download p{

max-width:650px;
margin:0 auto 40px;
color:#bdbdbd;
line-height:1.8;

}

.download-main{

display:inline-flex;
align-items:center;
gap:12px;
padding:18px 45px;
border-radius:60px;
font-size:20px;
font-weight:700;
background:linear-gradient(135deg,#FFD700,#ffb300);
color:#000;
transition:.35s;

}

.download-main:hover{

transform:translateY(-6px);
box-shadow:0 18px 45px rgba(255,215,0,.35);

}

/* ===========================
FAQ
=========================== */

.faq{

padding:120px 0;

}

.faq-box{

max-width:900px;
margin:auto;

}

.faq-item{

background:#121212;
border:1px solid rgba(255,255,255,.08);
border-radius:18px;
margin-bottom:18px;
overflow:hidden;

}

.faq-question{

width:100%;
padding:22px;
background:none;
border:none;
color:#fff;
font-size:18px;
font-weight:600;
cursor:pointer;
text-align:left;

}

.faq-answer{

display:none;
padding:0 22px 22px;
color:#bbb;
line-height:1.8;

}

.faq-item.active .faq-answer{

display:block;

}

/* ===========================
FOOTER
=========================== */

footer{

padding:60px 20px;
text-align:center;
background:#070707;
border-top:1px solid rgba(255,255,255,.08);

}

.footer-logo{

width:80px;
margin:0 auto 20px;

}

footer h3{

font-size:28px;
color:#FFD700;
margin-bottom:12px;

}

footer p{

color:#888;

}

/* ===========================
FLOATING BUTTON
=========================== */

.floating-download{

position:fixed;
right:25px;
bottom:25px;
width:65px;
height:65px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:linear-gradient(135deg,#FFD700,#ffb300);
color:#000;
font-size:26px;
box-shadow:0 10px 35px rgba(255,215,0,.4);
transition:.3s;
z-index:999;

}

.floating-download:hover{

transform:scale(1.1);

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:991px){

nav{

display:none;

}

.hero{

flex-direction:column;
text-align:center;
padding-top:140px;

}

.hero h1{

font-size:48px;

}

.hero p{

margin-left:auto;
margin-right:auto;

}

.hero-buttons{

justify-content:center;
flex-wrap:wrap;

}

.stats{

grid-template-columns:repeat(2,1fr);

}

.phone{

width:280px;
margin-top:50px;

}

.section-head h2{

font-size:34px;

}

.download h2{

font-size:38px;

}

}

@media(max-width:576px){

.container{

width:92%;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:16px;

}

.stats{

grid-template-columns:1fr;

}

.download-main{

width:100%;
justify-content:center;

}

.feature-card,
.market-card,
.review-card{

padding:25px;

}

.screens-grid{

grid-template-columns:1fr;

}

}
