/*=====================================================
    JAMZU
    style.css
======================================================*/

:root{

    --bg:#050608;
    --bg2:#0d1117;
    --bg3:#141922;

    --panel:rgba(255,255,255,.045);
    --panel2:rgba(255,255,255,.025);

    --border:rgba(255,255,255,.08);

    --blue:#45a3ff;
    --blue2:#69d0ff;

    --purple:#7f6dff;

    --green:#3cd58f;

    --text:#ffffff;
    --muted:#aeb8c5;

    --radius:18px;

    --transition:.35s ease;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:Inter,sans-serif;

background:

radial-gradient(circle at top,
rgba(55,125,255,.12),
transparent 40%),

linear-gradient(
180deg,
#08090c,
#050608
);

color:var(--text);

overflow-x:hidden;

}

/************************************************/

body::before{

content:"";

position:fixed;

left:-10%;
top:-10%;

width:120%;
height:120%;

pointer-events:none;

background:

radial-gradient(circle,
rgba(70,150,255,.05),
transparent 65%);

animation:ambientMove 24s ease-in-out infinite;

z-index:-2;

}

#backgroundGlow{

position:fixed;

width:900px;
height:900px;

left:50%;
top:-400px;

transform:translateX(-50%);

background:

radial-gradient(circle,
rgba(70,150,255,.22),
transparent 70%);

filter:blur(80px);

pointer-events:none;

z-index:-3;

}

/************************************************/

header{

position:fixed;

width:100%;

z-index:999;

}

.navbar{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 60px;

transition:.4s;

}

.navbar.scrolled{

background:rgba(8,8,10,.82);

backdrop-filter:blur(20px);

border-bottom:

1px solid rgba(255,255,255,.05);

}

.logo img{

height:64px;

}

.desktopMenu{

display:flex;

gap:38px;

list-style:none;

}

.desktopMenu a{

text-decoration:none;

color:white;

font-weight:600;

opacity:.9;

transition:.3s;

position:relative;

}

.desktopMenu a:hover{

color:var(--blue2);

}

.desktopMenu a::after{

content:"";

position:absolute;

bottom:-8px;

left:0;

width:0;

height:2px;

background:var(--blue);

transition:.3s;

}

.desktopMenu a:hover::after{

width:100%;

}

.navButtons{

display:flex;

gap:14px;

}

.loginButton{

padding:12px 24px;

border-radius:30px;

text-decoration:none;

color:white;

}

.signupButton{

padding:12px 24px;

border-radius:30px;

background:linear-gradient(135deg,#4796ff,#2868ff);

color:white;

text-decoration:none;

box-shadow:

0 15px 40px rgba(50,120,255,.30);

transition:.35s;

}

.signupButton:hover{

transform:translateY(-4px);

}

.mobileButton{

display:none;

}

/************************************************/

.hero{

min-height:100vh;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

padding:

140px 70px 80px;

gap:70px;

}

.smallTitle{

display:inline-block;

padding:8px 18px;

border-radius:30px;

background:rgba(80,140,255,.08);

border:1px solid rgba(80,140,255,.15);

margin-bottom:25px;

color:#9bd4ff;

}

.hero h1{

font-size:5rem;

line-height:1.05;

letter-spacing:-3px;

margin-bottom:25px;

}

.hero p{

font-size:1.18rem;

line-height:1.9;

color:var(--muted);

max-width:650px;

}

.heroButtons{

display:flex;

gap:18px;

margin-top:45px;

}

.primaryButton{

padding:17px 38px;

border-radius:40px;

background:

linear-gradient(135deg,#469cff,#2867ff);

color:white;

text-decoration:none;

font-weight:700;

box-shadow:

0 20px 50px rgba(60,120,255,.25);

transition:.35s;

}

.primaryButton:hover{

transform:translateY(-5px);

}

.secondaryButton{

padding:17px 38px;

border-radius:40px;

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

text-decoration:none;

color:white;

transition:.35s;

}

.secondaryButton:hover{

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

}

/************************************************/

.heroStats{

display:flex;

gap:50px;

margin-top:60px;

}

.heroStats h2{

font-size:2rem;

color:var(--blue2);

margin-bottom:6px;

}

.heroStats p{

font-size:.95rem;

}

/************************************************/
/* GRAPH */
/************************************************/

#graph{

position:relative;

width:100%;

height:720px;

}

.node{

position:absolute;

width:82px;
height:82px;

border-radius:50%;

background:

linear-gradient(
135deg,
#13253d,
#234c88
);

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

border:2px solid rgba(110,180,255,.35);

box-shadow:

0 0 35px rgba(70,140,255,.20);

cursor:pointer;

transition:.35s;

animation:

floatNode 7s ease-in-out infinite;

}

.node:hover{

transform:scale(1.15);

box-shadow:

0 0 50px rgba(90,180,255,.55);

}

.node span{

position:absolute;

top:95px;

font-size:.8rem;

white-space:nowrap;

color:var(--muted);

}

.root{

width:100px;

height:100px;

font-size:34px;

}

/************************************************/

.connection{

position:absolute;

height:2px;

background:

linear-gradient(
90deg,
rgba(80,180,255,.1),
rgba(80,180,255,.9),
rgba(80,180,255,.1)
);

transform-origin:left center;

animation:pulseLine 4s infinite;

}

/* approximate lines */

.c1{

left:23%;
top:53%;
width:170px;
transform:rotate(-22deg);

}

.c2{

left:24%;
top:56%;
width:165px;
transform:rotate(24deg);

}

.c3{

left:48%;
top:38%;
width:180px;
transform:rotate(-25deg);

}

.c4{

left:48%;
top:52%;
width:180px;

}

.c5{

left:49%;
top:69%;
width:175px;
transform:rotate(23deg);

}

.c6{

left:74%;
top:24%;
width:110px;
transform:rotate(-18deg);

}

.c7{

left:75%;
top:53%;
width:105px;

}

.c8{

left:74%;
top:78%;
width:108px;
transform:rotate(16deg);

}

/************************************************/

.section{

padding:120px 70px;

}

.dark{

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

}

.sectionHeader{

text-align:center;

margin-bottom:70px;

}

.sectionHeader h2{

font-size:3rem;

margin-bottom:20px;

}

.sectionHeader p{

color:var(--muted);

}

/************************************************/

.featureGrid,
.projectGrid,
.studioGrid{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(260px,1fr));

gap:30px;

}

.featureCard,
.project,
.studio{

background:

linear-gradient(
180deg,
var(--panel),
var(--panel2)
);

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

backdrop-filter:blur(18px);

border-radius:var(--radius);

padding:35px;

transition:.35s;

}

.featureCard:hover,
.project:hover,
.studio:hover{

transform:translateY(-8px);

border-color:

rgba(100,180,255,.35);

box-shadow:

0 30px 60px rgba(0,0,0,.35);

}

.icon{

font-size:38px;

margin-bottom:25px;

}

.featureCard h3,
.project h3,
.studio h3{

margin-bottom:15px;

}

.featureCard p,
.project p,
.studio p{

color:var(--muted);

line-height:1.8;

}

.projectImage{

height:180px;

border-radius:12px;

margin-bottom:25px;

background:

linear-gradient(
135deg,
#0f2038,
#204d86,
#142742
);

position:relative;

overflow:hidden;

}

.projectImage::before{

content:"";

position:absolute;

left:-150px;

top:0;

width:80px;

height:100%;

background:

linear-gradient(
90deg,
transparent,
rgba(255,255,255,.18),
transparent);

transform:skewX(-20deg);

animation:shine 7s infinite;

}

/************************************************/

.cta{

padding:140px 70px;

text-align:center;

}

.cta h2{

font-size:3.2rem;

margin-bottom:20px;

}

.cta p{

margin-bottom:45px;

color:var(--muted);

}

/************************************************/

footer{

background:#030405;

padding:80px 70px;

}

.footerTop{

display:grid;

grid-template-columns:

2fr 1fr 1fr 1fr;

gap:40px;

}

.footerLogo{

width:180px;

margin-bottom:20px;

}

footer h4{

margin-bottom:18px;

}

footer a{

display:block;

margin-bottom:12px;

color:var(--muted);

text-decoration:none;

transition:.3s;

}

footer a:hover{

color:white;

}

.footerBottom{

margin-top:60px;

padding-top:30px;

border-top:1px solid rgba(255,255,255,.05);

color:var(--muted);

text-align:center;

}

/************************************************/

@keyframes pulseLine{

0%,100%{

opacity:.4;

}

50%{

opacity:1;

}

}

@keyframes floatNode{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

100%{

transform:translateY(0);

}

}

@keyframes shine{

0%{

left:-150px;

}

100%{

left:130%;

}

}

@keyframes ambientMove{

0%{

transform:translate(-2%,0);

}

50%{

transform:translate(2%,2%);

}

100%{

transform:translate(-2%,0);

}

}

/************************************************/

@media(max-width:1100px){

.hero{

grid-template-columns:1fr;

}

.heroRight{

margin-top:60px;

}

.desktopMenu,
.navButtons{

display:none;

}

.mobileButton{

display:block;

background:none;

border:none;

color:white;

font-size:34px;

cursor:pointer;

}

.footerTop{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.hero{

padding:120px 25px 60px;

}

.section{

padding:80px 25px;

}

.hero h1{

font-size:3rem;

}

.heroStats{

flex-wrap:wrap;

gap:25px;

}

#graph{

height:520px;

}

.node{

width:64px;
height:64px;
font-size:22px;

}

.root{

width:80px;
height:80px;

}

}
