/* =====================================
   USE HB
   Premium Landing Page
===================================== */

:root{

--black:#050505;
--black2:#101010;
--white:#ffffff;
--gray:#8a8a8a;
--border:#202020;
--glass:rgba(255,255,255,.05);

--radius:18px;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

background:var(--black);
color:white;
font-family:'Inter',sans-serif;
overflow-x:hidden;

}

/* scrollbar */

::-webkit-scrollbar{

width:8px;

}

::-webkit-scrollbar-thumb{

background:#444;
border-radius:30px;

}

a{

text-decoration:none;
color:white;

}

img{

max-width:100%;

}

section{

padding:120px 8%;

}

.container{

max-width:1200px;
margin:auto;

}

/* ==========================
LOADER
========================== */

#loader{

position:fixed;
inset:0;

background:#050505;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

z-index:99999;

transition:1s;

}

.logo-loader{

width:120px;

animation:pulse 2s infinite;

}

#loader h2{

margin-top:20px;

letter-spacing:8px;

font-size:34px;

}

#loader p{

margin-top:10px;

color:#777;

}

@keyframes pulse{

0%{

transform:scale(.95);

opacity:.4;

}

50%{

transform:scale(1);

opacity:1;

}

100%{

transform:scale(.95);

opacity:.4;

}

}

/* ======================
 HERO
====================== */

.hero{

height:100vh;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

position:relative;

overflow:hidden;

}

.overlay{

position:absolute;

width:100%;
height:100%;

background:

radial-gradient(circle at center,#222 0%,#050505 75%);

filter:blur(60px);

opacity:.4;

}

.hero-content{

position:relative;

z-index:2;

max-width:850px;

}

.hero-logo{

width:140px;

margin-bottom:40px;

}

.hero h1{

font-size:72px;

font-weight:700;

line-height:1.15;

margin-bottom:30px;

}

.hero p{

font-size:22px;

color:#aaa;

margin-bottom:45px;

}

.btn{

display:inline-block;

padding:18px 50px;

border:1px solid white;

border-radius:50px;

transition:.4s;

font-weight:600;

}

.btn:hover{

background:white;

color:black;

transform:translateY(-4px);

}

/* ======================
ABOUT
====================== */

.about{

background:#090909;

}

.about h2{

font-size:56px;

margin-bottom:30px;

}

.about p{

font-size:22px;

line-height:1.8;

color:#bbb;

max-width:900px;

}

/* =====================
STATEMENT
===================== */

.statement{

height:100vh;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

}

.statement.dark{

background:#090909;

}

.statement h2{

font-size:90px;

letter-spacing:8px;

font-weight:800;

}

/* ===================
PRODUCTS
=================== */

.products{

background:#050505;

}

.products h2{

font-size:56px;

margin-bottom:70px;

text-align:center;

}

.grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:35px;

}

.card{

background:rgba(255,255,255,.03);

border:1px solid #202020;

padding:45px;

border-radius:20px;

transition:.5s;

backdrop-filter:blur(20px);

}

.card:hover{

transform:translateY(-12px);

border-color:white;

box-shadow:0 0 60px rgba(255,255,255,.08);

}

.card span{

font-size:48px;

display:block;

margin-bottom:25px;

}

.card h3{

font-size:24px;

}

/* ======================
COUNTDOWN
====================== */

.launch{

text-align:center;

}

.launch h2{

font-size:52px;

margin-bottom:20px;

}

.launch p{

color:#999;

margin-bottom:50px;

}

#countdown{

display:flex;

justify-content:center;

gap:40px;

flex-wrap:wrap;

}

#countdown div{

padding:30px;

border:1px solid #222;

border-radius:20px;

min-width:140px;

}

#countdown h1{

font-size:60px;

}

#countdown span{

color:#888;

}

/* ====================
NEWSLETTER
==================== */

.newsletter{

text-align:center;

background:#090909;

}

.newsletter h2{

font-size:50px;

}

.newsletter p{

margin:20px 0 40px;

color:#999;

}

form{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

input{

width:420px;

padding:20px;

background:#111;

border:1px solid #333;

color:white;

border-radius:50px;

font-size:16px;

}

button{

padding:20px 45px;

background:white;

color:black;

border:none;

font-weight:700;

border-radius:50px;

cursor:pointer;

transition:.3s;

}

button:hover{

transform:scale(1.05);

}

/* ====================
FOOTER
==================== */

footer{

padding:80px 8%;

text-align:center;

}

.footer-logo{

width:90px;

margin-bottom:20px;

}

.social{

margin:40px 0;

display:flex;

justify-content:center;

gap:40px;

flex-wrap:wrap;

}

.social a{

color:#999;

transition:.3s;

}

.social a:hover{

color:white;

}

.copy{

color:#555;

}

/* ===================
RESPONSIVO
=================== */

@media(max-width:768px){

.hero h1{

font-size:42px;

}

.statement h2{

font-size:42px;

}

.about h2,
.products h2,
.launch h2,
.newsletter h2{

font-size:34px;

}

.about p{

font-size:18px;

}

#countdown{

gap:20px;

}

input{

width:100%;

}

}