/*=========================================
GOOGLE FONT
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/*=========================================
RESET
=========================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f5f8ff;
color:#222;
overflow-x:hidden;
line-height:1.8;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
transition:.35s;
}

ul{
list-style:none;
}

.container{
width:92%;
max-width:1280px;
margin:auto;
}

/*=========================================
HEADER
=========================================*/

.header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:99999;

background:rgba(255,255,255,.96);

backdrop-filter:blur(18px);

box-shadow:0 8px 30px rgba(0,0,0,.08);

}

.header .container{

height:82px;

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

display:flex;

align-items:center;

gap:14px;

}

.logo img{

width:58px;

height:58px;

border-radius:16px;

}

.logo h2{

font-size:27px;

font-weight:800;

color:#146CFF;

}

.logo span{

font-size:13px;

color:#777;

display:block;

margin-top:3px;

}

nav ul{

display:flex;

gap:38px;

}

nav ul li a{

font-size:16px;

font-weight:600;

color:#333;

position:relative;

}

nav ul li a::after{

content:"";

position:absolute;

left:0;

bottom:-10px;

height:3px;

width:0;

background:#146CFF;

border-radius:20px;

transition:.35s;

}

nav ul li a:hover{

color:#146CFF;

}

nav ul li a:hover::after{

width:100%;

}

.menu-btn{

display:none;

font-size:32px;

cursor:pointer;

}

/*=========================================
HERO
=========================================*/

.hero{

padding-top:150px;

padding-bottom:100px;

background:

linear-gradient(135deg,#146CFF,#0051D4);

position:relative;

overflow:hidden;

}

.hero::before{

content:"";

position:absolute;

right:-180px;

top:-180px;

width:550px;

height:550px;

background:rgba(255,255,255,.08);

border-radius:50%;

}

.hero::after{

content:"";

position:absolute;

left:-160px;

bottom:-180px;

width:420px;

height:420px;

background:rgba(255,255,255,.05);

border-radius:50%;

}

.hero-grid{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:80px;

align-items:center;

position:relative;

z-index:10;

}

.tag{

display:inline-block;

padding:10px 22px;

background:rgba(255,255,255,.18);

backdrop-filter:blur(10px);

border-radius:40px;

color:#fff;

font-size:14px;

margin-bottom:25px;

}

.hero h1{

font-size:62px;

line-height:1.15;

font-weight:900;

color:#fff;

margin-bottom:25px;

}

.hero p{

font-size:18px;

color:#eef4ff;

max-width:620px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:45px;

}

.btn{

background:#fff;

color:#146CFF;

padding:18px 38px;

border-radius:60px;

font-weight:700;

}

.btn:hover{

transform:translateY(-6px);

box-shadow:0 20px 35px rgba(0,0,0,.2);

}

.btn2{

background:#FFD54F;

color:#222;

padding:18px 38px;

border-radius:60px;

font-weight:700;

}

.btn2:hover{

transform:translateY(-6px);

}

.hero-rating{

display:flex;

gap:40px;

}

.hero-rating h3{

font-size:34px;

color:#fff;

}

.hero-rating span{

font-size:14px;

color:#dce8ff;

}

.hero-image img{

width:100%;

animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{transform:translateY(0);}

50%{transform:translateY(-18px);}

100%{transform:translateY(0);}

}

/*=========================================
SECTION TITLE
=========================================*/

section{

padding:90px 0;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title span{

display:inline-block;

padding:8px 18px;

border-radius:30px;

background:#E9F2FF;

color:#146CFF;

font-size:14px;

font-weight:700;

margin-bottom:16px;

}

.section-title h2{

font-size:46px;

font-weight:800;

color:#0E3E8A;

margin-bottom:18px;

}

.section-title p{

max-width:760px;

margin:auto;

color:#666;

font-size:17px;

}

/*=========================================
INVITE CARD
=========================================*/

.invite-card{

background:#fff;

border-radius:24px;

padding:50px;

display:flex;

justify-content:space-between;

align-items:center;

box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.invite-left h2{

font-size:38px;

margin-bottom:15px;

color:#146CFF;

}

.invite-left p{

color:#666;

}

.invite-right{

text-align:center;

}

#code{

font-size:52px;

font-weight:900;

color:#146CFF;

letter-spacing:6px;

margin-bottom:25px;

}

#copyBtn{

border:none;

background:#146CFF;

color:#fff;

padding:16px 40px;

border-radius:60px;

font-size:17px;

cursor:pointer;

font-weight:700;

transition:.35s;

}

#copyBtn:hover{

background:#0A4DAD;

transform:translateY(-5px);

}
/*=========================================
TABLE OF CONTENT
=========================================*/

.toc{
padding-top:40px;
}

.toc-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.toc-grid a{
background:#fff;
padding:28px;
border-radius:20px;
display:flex;
align-items:center;
gap:18px;
font-size:18px;
font-weight:700;
color:#222;
box-shadow:0 15px 35px rgba(0,0,0,.06);
transition:.35s;
}

.toc-grid a i{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
background:#EAF3FF;
color:#146CFF;
border-radius:15px;
font-size:22px;
}

.toc-grid a:hover{

transform:translateY(-10px);

background:#146CFF;

color:#fff;

}

.toc-grid a:hover i{

background:#fff;

color:#146CFF;

}

/*=========================================
ABOUT
=========================================*/

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.about-image img{

border-radius:25px;

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.about-content h3{

font-size:36px;

margin-bottom:20px;

color:#146CFF;

}

.about-content p{

font-size:17px;

color:#666;

margin-bottom:25px;

}

.about-content ul li{

padding:12px 0;

font-size:17px;

font-weight:600;

color:#444;

}

/*=========================================
APP CARDS
=========================================*/

.app-wrapper{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.app-card{

background:#fff;

border-radius:22px;

padding:35px;

text-align:center;

box-shadow:0 15px 45px rgba(0,0,0,.08);

transition:.35s;

}

.app-card:hover{

transform:translateY(-12px);

}

.app-card img{

width:90px;

margin:auto;

margin-bottom:25px;

}

.app-card h3{

font-size:24px;

margin-bottom:15px;

color:#146CFF;

}

.app-card p{

color:#666;

}

/*=========================================
DETAIL BOX
=========================================*/

.details-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.detail-box{

background:#fff;

padding:35px;

border-radius:22px;

text-align:center;

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.35s;

}

.detail-box:hover{

transform:translateY(-10px);

}

.detail-box h4{

font-size:18px;

margin-bottom:12px;

color:#146CFF;

}

.detail-box p{

font-size:18px;

font-weight:700;

}

/*=========================================
FEATURES
=========================================*/

.feature-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.feature-box{

background:#fff;

padding:40px;

border-radius:24px;

text-align:center;

box-shadow:0 18px 45px rgba(0,0,0,.08);

transition:.35s;

}

.feature-box:hover{

transform:translateY(-12px);

}

.icon{

width:75px;

height:75px;

margin:auto;

margin-bottom:25px;

border-radius:18px;

background:#EAF3FF;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#146CFF;

}

.feature-box h3{

margin-bottom:18px;

font-size:24px;

}

.feature-box p{

color:#666;

}

/*=========================================
DOWNLOAD
=========================================*/

.download-box{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

background:#fff;

padding:55px;

border-radius:30px;

box-shadow:0 20px 55px rgba(0,0,0,.08);

}

.download-left h2{

font-size:42px;

margin-bottom:25px;

color:#146CFF;

}

.download-left p{

color:#666;

margin-bottom:30px;

}

.download-left ul{

margin-bottom:35px;

}

.download-left li{

padding:12px 0;

font-size:17px;

font-weight:600;

}

.download-btn{

display:inline-block;

padding:18px 42px;

background:#146CFF;

color:#fff;

border-radius:60px;

font-weight:700;

transition:.35s;

}

.download-btn:hover{

background:#0A4DAD;

transform:translateY(-5px);

}

.download-right img{

border-radius:22px;

box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*=========================================
SCREENSHOTS
=========================================*/

.screen-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.screen-grid img{

width:100%;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

cursor:pointer;

}

.screen-grid img:hover{

transform:scale(1.05);

}

/*=========================================
REGISTER GUIDE
=========================================*/

.guide-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.guide-box{

background:#fff;

padding:40px;

border-radius:22px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

}

.guide-box:hover{

transform:translateY(-12px);

}

.guide-box span{

width:65px;

height:65px;

margin:auto;

margin-bottom:20px;

display:flex;

align-items:center;

justify-content:center;

background:#146CFF;

color:#fff;

border-radius:50%;

font-size:24px;

font-weight:700;

}

.guide-box h3{

margin-bottom:15px;

color:#146CFF;

}

.guide-box p{

color:#666;

}
/*=========================================
CTA SECTION
=========================================*/

.cta-section{
padding:100px 0;
background:linear-gradient(135deg,#146CFF,#0A4DAD);
position:relative;
overflow:hidden;
}

.cta-section::before{
content:"";
position:absolute;
width:500px;
height:500px;
background:rgba(255,255,255,.08);
border-radius:50%;
top:-220px;
right:-180px;
}

.cta-box{
position:relative;
z-index:2;
text-align:center;
color:#fff;
}

.cta-box span{
display:inline-block;
padding:10px 22px;
background:rgba(255,255,255,.18);
border-radius:40px;
margin-bottom:25px;
font-weight:600;
}

.cta-box h2{
font-size:52px;
margin-bottom:20px;
font-weight:800;
}

.cta-box p{
font-size:19px;
max-width:720px;
margin:auto;
margin-bottom:35px;
color:#eef5ff;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
}

/*=========================================
FAQ
=========================================*/

.faq{
background:#F6F9FF;
}

.faq-wrapper{
max-width:950px;
margin:auto;
}

.faq-item{
background:#fff;
border-radius:20px;
padding:28px;
margin-bottom:20px;
cursor:pointer;
box-shadow:0 10px 35px rgba(0,0,0,.08);
transition:.35s;
}

.faq-item:hover{
transform:translateY(-5px);
}

.faq-item h3{
font-size:22px;
color:#146CFF;
margin-bottom:15px;
}

.faq-item p{
color:#666;
line-height:1.8;
}

/*=========================================
CONTACT
=========================================*/

.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.contact-card{
background:#fff;
padding:40px;
text-align:center;
border-radius:22px;
box-shadow:0 12px 35px rgba(0,0,0,.08);
transition:.35s;
}

.contact-card:hover{
transform:translateY(-10px);
}

.contact-card i{
width:75px;
height:75px;
background:#EAF3FF;
color:#146CFF;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
margin-bottom:22px;
font-size:30px;
}

.contact-card h3{
margin-bottom:12px;
font-size:24px;
color:#146CFF;
}

.contact-card p{
color:#666;
font-size:17px;
}

/*=========================================
DISCLAIMER
=========================================*/

.disclaimer{
background:#EEF5FF;
}

.disclaimer h2{
text-align:center;
font-size:38px;
margin-bottom:20px;
color:#146CFF;
}

.disclaimer p{
max-width:950px;
margin:auto;
text-align:center;
color:#555;
font-size:17px;
line-height:1.9;
}

/*=========================================
FOOTER
=========================================*/

.footer{
background:#081C45;
padding:80px 0 30px;
color:#fff;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:50px;
margin-bottom:50px;
}

.footer-logo{
width:70px;
margin-bottom:20px;
}

.footer h3{
font-size:26px;
margin-bottom:20px;
}

.footer p{
color:#d7dff2;
line-height:1.8;
}

.footer ul li{
margin-bottom:14px;
}

.footer ul li a{
color:#d7dff2;
}

.footer ul li a:hover{
color:#fff;
padding-left:6px;
}

.footer-code{
font-size:38px;
font-weight:900;
letter-spacing:5px;
margin-bottom:20px;
color:#FFD54F;
}

#footerCopy{
border:none;
padding:16px 35px;
background:#146CFF;
color:#fff;
border-radius:60px;
cursor:pointer;
font-size:16px;
font-weight:700;
transition:.35s;
}

#footerCopy:hover{
background:#0A4DAD;
transform:translateY(-5px);
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.12);
padding-top:25px;
text-align:center;
color:#c9d3e8;
}

/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#EDF4FF;
}

::-webkit-scrollbar-thumb{
background:#146CFF;
border-radius:30px;
}

::-webkit-scrollbar-thumb:hover{
background:#0A4DAD;
}

/*=========================================
TEXT SELECTION
=========================================*/

::selection{
background:#146CFF;
color:#fff;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.hero-grid,
.about-grid,
.download-box{
grid-template-columns:1fr;
text-align:center;
}

.feature-grid,
.app-wrapper,
.details-grid,
.screen-grid,
.contact-grid,
.footer-grid,
.guide-grid,
.toc-grid{
grid-template-columns:repeat(2,1fr);
}

.hero h1{
font-size:46px;
}

.section-title h2{
font-size:38px;
}

nav{
display:none;
}

.menu-btn{
display:block;
}

}

@media(max-width:768px){

.feature-grid,
.app-wrapper,
.details-grid,
.screen-grid,
.contact-grid,
.footer-grid,
.guide-grid,
.toc-grid{
grid-template-columns:1fr;
}

.hero{
padding-top:120px;
}

.hero h1{
font-size:34px;
}

.section-title h2{
font-size:30px;
}

.invite-card,
.download-box{
padding:30px;
flex-direction:column;
gap:30px;
}

.cta-buttons{
flex-direction:column;
align-items:center;
}

.hero-buttons{
flex-direction:column;
}

.btn,
.btn2,
.download-btn{
width:100%;
text-align:center;
}

}

@media(max-width:480px){

.container{
width:94%;
}

.hero h1{
font-size:28px;
}

.hero p{
font-size:16px;
}

.section-title h2{
font-size:26px;
}

.footer-code{
font-size:28px;
letter-spacing:3px;
}

#code{
font-size:36px;
}

}