
:root{
--accent:#2f6fff;
--bg:#f6f8fb;
--panel:#ffffff;
--text:#0b0f14;
--muted:#6b7785;
--line:#e3e8ef;
--dark:#0f1720;

--shadow-sm:0 4px 12px rgba(0,0,0,0.04);
--shadow-md:0 10px 30px rgba(0,0,0,0.06);
--shadow-lg:0 30px 80px rgba(0,0,0,0.12);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
font-family:'Manrope',sans-serif;
background:var(--bg);
color:var(--text);
line-height:1.6;
}

.container{
max-width:1200px;
margin:auto;
padding:32px 24px;
}

.thankyou-text{
    min-height:20vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.nav{
position:sticky;
top:0;
z-index:100;
backdrop-filter:blur(12px);
background:rgba(255,255,255,.78);
border-bottom:1px solid var(--line);
}

.nav-inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-family:'Space Grotesk';
font-weight:700;
font-size:22px;
text-decoration:none;
color:var(--text);
}

.nav-links a{
margin-left:28px;
text-decoration:none;
color:var(--muted);
transition:.25s;
}

.nav-links a:hover{
color:var(--accent);
}

.hero{
position:relative;
display:flex;
gap:64px;
align-items:center;
padding:90px 0 120px;
overflow:hidden;
}

#gridCanvas{
position:absolute;
inset:0;
opacity:.55;
}

.hero-content,.dashboard{
position:relative;
z-index:2;
}

.hero-content{
flex:1;
}

.hero h1{
font-family:'Space Grotesk';
font-size:64px;
line-height:1.02;
letter-spacing:-1.5px;
}

.hero p{
margin-top:24px;
font-size:18px;
color:var(--muted);
max-width:600px;
}

.accent{color:var(--accent)}

.btn-group{
display:flex;
gap:14px;
margin-top:32px;
flex-wrap:wrap;
}

.btn{
display:inline-block;
padding:14px 24px;
border-radius:14px;
text-decoration:none;
font-weight:600;
transition:.25s;
}

.btn-primary{
background:var(--accent);
color:#fff;
box-shadow:0 10px 30px rgba(47,111,255,.25);
}

.btn-primary:hover{
transform:translateY(-3px);
}

.btn-secondary{
border:1.5px solid var(--line);
color:var(--text);
background:#fff;
}

.dashboard{
flex:1;
background:#0f1720;
border-radius:24px;
padding:22px;
box-shadow:var(--shadow-lg);
color:#fff;
transform:scale(1.04);
}

.dash-header{
display:flex;
justify-content:space-between;
opacity:.8;
margin-bottom:18px;
}

.stats{
display:flex;
gap:12px;
}

.stat{
flex:1;
background:#121c28;
padding:14px;
border-radius:14px;
}

.stat strong{
display:block;
font-size:24px;
margin-top:6px;
}

.chart{
position:relative;
height:180px;
margin:20px 0;
border-radius:14px;
background:linear-gradient(to top, rgba(47,111,255,.28), transparent);
overflow:hidden;
}

.chart svg{
position:absolute;
inset:0;
width:100%;
height:100%;
}

.activity{
display:grid;
gap:10px;
font-size:14px;
opacity:.88;
}

.activity div{
display:flex;
justify-content:space-between;
padding:10px 12px;
background:#121c28;
border-radius:10px;
}

.section{
padding:100px 0;
}

.section-title{
font-family:'Space Grotesk';
font-size:42px;
margin-bottom:16px;
}

.section-subtitle{
color:var(--muted);
margin-bottom:42px;
max-width:700px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:24px;
}

.card{
background:#fff;
border:1.5px solid var(--line);
border-radius:20px;
padding:28px;
box-shadow:var(--shadow-sm);
transition:.3s;
overflow:hidden;
position:relative;
}

.card:hover{
transform:translateY(-8px);
box-shadow:var(--shadow-md);
}

.card-image{
width:100%;
height:160px;
object-fit:cover;
border-radius:14px;
margin-bottom:20px;
border:1px solid var(--line);
}

.icon{
width:48px;
height:48px;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(47,111,255,.08);
border:1.5px solid rgba(47,111,255,.25);
color:var(--accent);
margin-bottom:16px;
transition:.25s;
}

.card:hover .icon{
background:var(--accent);
color:#fff;
}

.card h3{
font-family:'Space Grotesk';
margin-bottom:10px;
font-size:24px;
}

.card p{
color:var(--muted);
}

.process{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:24px;
margin-top:40px;
}

.step{
background:#fff;
padding:28px;
border-radius:18px;
border:1.5px solid var(--line);
text-align:center;
box-shadow:var(--shadow-sm);
}

.step h4{
font-family:'Space Grotesk';
margin:12px 0 10px;
}

.cta-section{
position:relative;
overflow:hidden;
background:#0f1720;
color:#fff;
padding:100px 40px;
border-radius:28px;
box-shadow:var(--shadow-lg);
margin:80px 0;
}

.cta-section svg{
position:absolute;
inset:0;
width:100%;
height:100%;
opacity:.8;
}

.wave{
fill:none;
stroke:#2f6fff;
stroke-width:2;
filter:blur(1px);
}

.cta-content{
position:relative;
z-index:2;
text-align:center;
}

.cta-content h2{
font-family:'Space Grotesk';
font-size:46px;
margin-bottom:14px;
}

.cta-content p{
color:#a7b4c7;
margin-bottom:28px;
}

.contact-grid{
display:grid;
grid-template-columns:1.2fr .8fr;
gap:32px;
}

.contact-card{
background:#fff;
border:1.5px solid var(--line);
border-radius:20px;
padding:28px;
box-shadow:var(--shadow-sm);
}

form{
display:flex;
flex-direction:column;
gap:14px;
}

input,textarea{
padding:15px;
border-radius:12px;
border:1.5px solid var(--line);
font-family:inherit;
}

textarea{
min-height:160px;
resize:vertical;
}

.footer{
background:#0f1720;
color:#c8d2df;
margin-top:100px;
}

.footer-inner{
display:flex;
justify-content:space-between;
gap:40px;
padding:60px 24px;
flex-wrap:wrap;
}

.footer .small a{
color:#d8e2ef;
text-decoration:none;
}

.small{
font-size:14px;
opacity:.8;
}

.small a {
	color:#0b0f14;
	text-decoration:none;
}

@keyframes flow{
0%{stroke-dasharray:0,2000}
100%{stroke-dasharray:2000,0}
}

.w1{animation:flow 6s linear infinite}
.w2{animation:flow 8s linear infinite reverse;opacity:.45}
.w3{animation:flow 10s linear infinite;opacity:.25}

@media(max-width:900px){
.hero{flex-direction:column;padding-top:60px}
.hero h1{font-size:44px}
.dashboard{transform:none;width:100%}
.contact-grid{grid-template-columns:1fr}
.section{padding:70px 0}
}
