*{body{
opacity:0;
transition:opacity .8s ease;
}
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#050505;
color:#fff;
overflow-x:hidden;
line-height:1.6;
}

h1,h2,h3{
font-family:'Manrope',sans-serif;
font-weight:800;
line-height:1.1;
}

a{
text-decoration:none;
color:inherit;
}

.container{
width:min(1200px,90%);
margin:auto;
}

section{
padding:120px 0;
position:relative;
}

.section-tag{
color:#8B5CF6;
font-size:.85rem;
font-weight:700;
letter-spacing:3px;
text-transform:uppercase;
margin-bottom:20px;
}

.section-text{
max-width:700px;
margin:25px auto;
color:#bdbdbd;
text-align:center;
}
.navbar{

position:fixed;

top:25px;

left:50%;

transform:translateX(-50%);

width:min(1200px,92%);

padding:18px 35px;

display:flex;

justify-content:space-between;

align-items:center;

background:rgba(10,10,10,.65);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.08);

border-radius:18px;

z-index:999;

}

.logo{

display:flex;

align-items:center;

gap:12px;

font-weight:800;

font-family:Manrope;

font-size:20px;

}

.dot{

width:10px;

height:10px;

background:#8B5CF6;

border-radius:50%;

box-shadow:0 0 18px #8B5CF6;

}

.navbar ul{

display:flex;

gap:35px;

list-style:none;

}

.navbar li{

font-size:15px;

color:#cfcfcf;

transition:.3s;

}

.navbar li:hover{

color:#fff;

}

.nav-btn{

padding:14px 26px;

background:#8B5CF6;

border-radius:40px;

font-weight:600;

transition:.3s;

}

.nav-btn:hover{

transform:translateY(-3px);

box-shadow:0 10px 30px rgba(139,92,246,.35);

}
.hero{

min-height:100vh;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:80px;

width:min(1200px,90%);

margin:auto;

}

.small-heading{

color:#8B5CF6;

font-weight:700;

letter-spacing:3px;

margin-bottom:20px;

}

.hero h1{

font-size:68px;

max-width:700px;

margin-bottom:30px;

}

.hero-text{

font-size:20px;

color:#bdbdbd;

max-width:620px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:18px;

margin-bottom:40px;

}

.primary-btn{

padding:18px 32px;

background:#8B5CF6;

border-radius:50px;

font-weight:700;

transition:.35s;

}

.primary-btn:hover{

transform:translateY(-4px);

box-shadow:0 15px 40px rgba(139,92,246,.4);

}

.secondary-btn{

padding:18px 32px;

border:1px solid rgba(255,255,255,.15);

border-radius:50px;

transition:.35s;

}

.secondary-btn:hover{

background:#111;

}
/* ===========================
   HERO FEATURES
=========================== */

.hero-features{
display:flex;
flex-wrap:wrap;
gap:16px;
margin-top:40px;
}

.feature{
padding:14px 22px;
border:1px solid rgba(139,92,246,.25);
background:rgba(255,255,255,.03);
backdrop-filter:blur(18px);
border-radius:14px;
font-size:14px;
font-weight:600;
transition:.35s;
}

.feature:hover{
transform:translateY(-5px);
border-color:#8B5CF6;
box-shadow:0 15px 35px rgba(139,92,246,.25);
}

/* ===========================
   FLOW CARD
=========================== */

.hero-right{
display:flex;
justify-content:center;
align-items:center;
}

.flow-card{
width:340px;
padding:35px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:24px;
backdrop-filter:blur(18px);
}

.flow{
padding:16px;
background:#111;
border-radius:14px;
text-align:center;
font-weight:700;
margin-bottom:12px;
}

.arrow{
text-align:center;
font-size:26px;
color:#8B5CF6;
margin:8px 0;
}

/* ===========================
   PROBLEM CARDS
=========================== */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:24px;
margin-top:60px;
}

.card{
background:#0d0d0d;
border:1px solid rgba(255,255,255,.08);
padding:28px;
border-radius:20px;
transition:.35s;
}

.card:hover{
transform:translateY(-8px);
border-color:#8B5CF6;
box-shadow:0 15px 35px rgba(139,92,246,.20);
}

.card h3{
margin-bottom:14px;
font-size:22px;
}

.card p{
color:#bdbdbd;
}

.bottom-heading{
text-align:center;
margin-top:80px;
font-size:42px;
max-width:850px;
margin-inline:auto;
}

/* ===========================
   SOLUTION CARDS
=========================== */

.solution-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:24px;
margin-top:60px;
}

.solution-card{
padding:30px;
background:#111;
border-radius:22px;
border:1px solid rgba(255,255,255,.08);
transition:.35s;
}

.solution-card:hover{
transform:translateY(-8px);
border-color:#8B5CF6;
box-shadow:0 18px 40px rgba(139,92,246,.25);
}

.solution-card h3{
margin-bottom:15px;
font-size:24px;
}

.solution-card p{
color:#bdbdbd;
}
/* ===========================
   PROCESS
=========================== */

.timeline{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:24px;
margin-top:60px;
}

.step{
background:#0d0d0d;
padding:30px;
border-radius:20px;
border:1px solid rgba(255,255,255,.08);
transition:.35s;
}

.step:hover{
transform:translateY(-8px);
border-color:#8B5CF6;
box-shadow:0 15px 35px rgba(139,92,246,.25);
}

.step span{
display:inline-block;
width:45px;
height:45px;
line-height:45px;
text-align:center;
background:#8B5CF6;
border-radius:50%;
font-weight:700;
margin-bottom:20px;
}

/* ===========================
   INDUSTRIES
=========================== */

.industry-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
margin-top:60px;
}

.industry-card{
padding:45px;
background:#111;
border:1px solid rgba(255,255,255,.08);
border-radius:22px;
text-align:center;
transition:.35s;
}

.industry-card:hover{
transform:translateY(-8px);
border-color:#8B5CF6;
box-shadow:0 20px 40px rgba(139,92,246,.25);
}

/* ===========================
   DEMO
=========================== */

.demo-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:60px;
}

.demo-card{
padding:40px;
background:#111;
border-radius:22px;
text-align:center;
font-size:22px;
font-weight:700;
border:1px solid rgba(255,255,255,.08);
transition:.35s;
}

.demo-card:hover{
background:#8B5CF6;
transform:translateY(-8px);
}

/* ===========================
   CTA
=========================== */

.cta{
text-align:center;
}

.cta h2{
font-size:58px;
margin-bottom:20px;
}

.cta p{
max-width:700px;
margin:auto auto 40px;
color:#bdbdbd;
}

/* ===========================
   FOOTER
=========================== */

footer{
padding:80px 0;
border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;
}

.footer-grid h4{
margin-bottom:18px;
}

.footer-grid a,
.footer-grid p{
display:block;
margin-bottom:12px;
color:#bdbdbd;
}

.footer-grid a:hover{
color:#fff;
}

.copyright{
text-align:center;
margin-top:60px;
color:#777;
font-size:14px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

.hero{
grid-template-columns:1fr;
text-align:center;
padding-top:140px;
}

.hero h1{
font-size:48px;
}

.hero-buttons,
.hero-features{
justify-content:center;
}

.navbar ul{
display:none;
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.demo-grid{
grid-template-columns:1fr;
}

}
/* ==========================
   SCROLL ANIMATION
========================== */

.hidden{

opacity:0;

transform:translateY(60px);

transition:.8s ease;

}

.show{

opacity:1;

transform:translateY(0);

}
/* ==========================
   PREMIUM EFFECTS
========================== */

body{
background:
radial-gradient(circle at top,#1b0d35 0%,#050505 35%,#050505 100%);
}

.card,
.solution-card,
.industry-card,
.step,
.demo-card,
.flow-card{

backdrop-filter:blur(25px);

background:rgba(255,255,255,.04);

}

.card:hover,
.solution-card:hover,
.industry-card:hover,
.step:hover,
.demo-card:hover{

transform:translateY(-12px) scale(1.02);

transition:.35s;

}

.primary-btn{

background:linear-gradient(135deg,#7C3AED,#A855F7);

}

.primary-btn:hover{

box-shadow:0 20px 60px rgba(139,92,246,.45);

}

.hero h1{

background:linear-gradient(90deg,#fff,#d9c8ff,#8B5CF6);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

::selection{

background:#8B5CF6;

color:#fff;

}

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:#8B5CF6;

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#090909;

}
 .navbar a.active{

color:#8B5CF6;

font-weight:700;

}
/* ========= HERO ANIMATION ========= */

.hero{

transition:transform .25s ease;

}

.flow-card{

animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}
/* ========= STARS ========= */

#stars{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
z-index:-1;
overflow:hidden;
}

.star{
position:absolute;
width:1px;
height:1px;
box-shadow:0 0 8px #fff;
background:#ffffff;
border-radius:50%;
opacity:.8;
animation:twinkle 3s infinite ease-in-out;
}

@keyframes twinkle{

0%,100%{
opacity:.2;
transform:scale(.8);
}

50%{
opacity:1;
transform:scale(1.6);
}

}
 /* ===========================
   PREMIUM TYPOGRAPHY
=========================== */

h1{
font-size:72px;
font-weight:800;
letter-spacing:-2px;
}

h2{
font-size:52px;
font-weight:800;
text-align:center;
margin-bottom:20px;
}

h3{
font-size:24px;
font-weight:700;
}

p{
font-size:17px;
line-height:1.8;
color:#b8b8b8;
}

section{

padding:140px 0;

}

.container{

width:min(1280px,90%);

margin:auto;

}

.section-tag{

display:inline-block;

padding:10px 18px;

background:rgba(139,92,246,.12);

border:1px solid rgba(139,92,246,.25);

border-radius:40px;

margin-bottom:25px;

}
/* ===========================
   PREMIUM CARDS
=========================== */

.card,
.solution-card,
.industry-card,
.step,
.demo-card{

background:rgba(18,18,18,.75);

border:1px solid rgba(255,255,255,.08);

border-radius:24px;

padding:35px;

transition:.35s;

overflow:hidden;

position:relative;

}

.card::before,
.solution-card::before,
.industry-card::before,
.step::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:3px;

background:linear-gradient(90deg,#8B5CF6,#A855F7);

transform:scaleX(0);

transition:.4s;

}

.card:hover::before,
.solution-card:hover::before,
.industry-card:hover::before,
.step:hover::before{

transform:scaleX(1);

}
.hero-right{

position:relative;
min-width: 550px;

display:flex;

justify-content:center;

align-items:center;

}

  #earth{
    position:fixed;
    right:-245px;
    top:50%;
    transform:translateY(-50%);
    width:700px;
    aspect-ratio:1/1;
    z-index:-2;
    opacity:.2;
    pointer-events:none;
    overflow:hidden;

}

#earth canvas{
    width:100% !important;
    height:100% !important;
    display:block;
    border-radius:50%;
}
.strategy-section{
    padding:100px 20px;
    text-align:center;
}

.strategy-section form{
    max-width:650px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.strategy-section input,
.strategy-section textarea{
    padding:16px;
    border-radius:12px;
    border:1px solid #444;
    background:#111;
    color:white;
}

.strategy-section button{
    padding:16px;
    border:none;
    border-radius:12px;
    cursor:pointer;
}