*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

:root{

--bg:#030d12;
--bg2:#07141b;
--card:#0a1820;

--accent:#e58f52;
--accent-light:#f0a56d;

--text:#ffffff;
--muted:#bfc8cc;

}

body{

font-family:'Inter',sans-serif;

background:var(--bg);

color:var(--text);

overflow-x:hidden;

}

/* ===========================
NAVBAR
=========================== */

.navbar{

position:fixed;

top:0;
left:0;

width:100%;

z-index:1000;

background:rgba(3,13,18,.75);

backdrop-filter:blur(18px);

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

}

.nav-container{

max-width:1400px;

margin:auto;

display:flex;

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

padding:18px 40px;

}

.brand{

display:flex;

align-items:center;

gap:14px;

text-decoration:none;

color:var(--accent);

font-size:1.8rem;
font-weight:700;

}

.brand img{

width:50px;
height:50px;

}

nav{

display:flex;
gap:30px;

}

nav a{

text-decoration:none;

color:white;

transition:.3s;

}

nav a:hover{

color:var(--accent);

}

.youtube-btn{

background:var(--accent);

padding:14px 24px;

border-radius:10px;

text-decoration:none;

color:white;

font-weight:600;

transition:.3s;

}

.youtube-btn:hover{

transform:translateY(-3px);

}

/* ===========================
HERO
=========================== */

.hero{

position:relative;

height:100vh;

display:flex;
align-items:center;

padding-left:8%;

background:
linear-gradient(
90deg,
rgba(3,13,18,.96) 0%,
rgba(3,13,18,.80) 35%,
rgba(3,13,18,.35) 60%,
rgba(3,13,18,.05) 100%
),
url('assets/images/hero-bg.jpg');

background-size:cover;
background-position:center;

}

.hero::before{

content:"";

position:absolute;

left:0;
top:0;

width:55%;
height:100%;

background:url('assets/images/circuit-bg.jpg');

background-size:cover;
background-position:center;

opacity:.25;

mix-blend-mode:screen;

}

.hero-overlay{

position:absolute;
inset:0;

background:
radial-gradient(
circle at center,
transparent,
rgba(0,0,0,.25)
);

}

.hero-content{

position:relative;

z-index:10;

max-width:700px;

}

.hero-tag{

display:inline-block;

padding:10px 18px;

border:1px solid var(--accent);

border-radius:50px;

color:var(--accent);

font-size:.8rem;

letter-spacing:3px;

margin-bottom:20px;

}

.hero-logo-row{

display:flex;

align-items:center;

gap:20px;

}

.hero-logo-row img{

width:120px;

}

.hero h1{

font-size:5rem;

line-height:1;

color:var(--accent);

}

.hero h2{

font-size:3rem;

line-height:1.2;

margin-top:25px;
margin-bottom:25px;

}

.hero p{

font-size:1.2rem;

line-height:1.9;

color:var(--muted);

margin-bottom:35px;

}

.hero-buttons{

display:flex;
gap:15px;

flex-wrap:wrap;

}

.btn-primary{

background:var(--accent);

padding:16px 28px;

border-radius:12px;

text-decoration:none;

color:white;

font-weight:600;

transition:.3s;

}

.btn-primary:hover{

transform:translateY(-3px);

box-shadow:
0 12px 30px rgba(229,143,82,.4);

}

.btn-secondary{

border:1px solid var(--accent);

padding:16px 28px;

border-radius:12px;

text-decoration:none;

color:white;

font-weight:600;

transition:.3s;

}

.btn-secondary:hover{

background:var(--accent);

}

/* ===========================
FEATURES
=========================== */

.features{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;

padding:100px 7%;

background:var(--bg2);

}

.feature-card{

display:block;

text-decoration:none;

color:white;

background:rgba(255,255,255,.03);

backdrop-filter:blur(15px);

padding:35px;

border-radius:22px;

border:1px solid rgba(255,255,255,.06);

transition:.3s;

}

.feature-card:hover{

transform:translateY(-8px);

border-color:var(--accent);

box-shadow:
0 20px 50px rgba(229,143,82,.15);

}

.feature-card h3{

color:var(--accent);

margin-bottom:15px;

}

.feature-card p{

line-height:1.8;

color:var(--muted);

}

/* ===========================
CONTENT SECTIONS
=========================== */

.creator,
.newsletter{

padding:120px 20px;

text-align:center;

}

.creator{

background:var(--bg);

}

.newsletter{

background:var(--bg2);

}

.creator h2,
.newsletter h2{

font-size:3rem;

margin-bottom:20px;

}

.creator p,
.newsletter p{

max-width:700px;

margin:auto;

line-height:1.9;

color:var(--muted);

margin-bottom:30px;

}

.newsletter button{

background:var(--accent);

border:none;

padding:16px 32px;

border-radius:12px;

font-size:1rem;

color:white;

cursor:pointer;

}

/* ===========================
FOOTER
=========================== */

footer{

padding:80px 20px;

text-align:center;

background:#02090d;

}

footer h3{

font-size:2rem;

color:var(--accent);

margin-bottom:10px;

}

.social-links{

display:flex;

justify-content:center;

gap:25px;

flex-wrap:wrap;

margin-top:25px;

}

.social-links a{

text-decoration:none;

color:var(--accent);

}

.social-links a:hover{

opacity:.75;

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:1000px){

nav{
display:none;
}

.hero{

padding:140px 30px 80px;

height:auto;
min-height:100vh;

}

.hero h1{

font-size:3.8rem;

}

.hero h2{

font-size:2rem;

}

.hero-logo-row{

flex-direction:column;

align-items:flex-start;

}

.hero-logo-row img{

width:90px;

}

}

@media(max-width:600px){

.hero h1{

font-size:3rem;

}

.hero h2{

font-size:1.7rem;

}

.hero p{

font-size:1rem;

}

}