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

body{
font-family:'Inter',sans-serif;
background:#ffffff;
color:#111111;
overflow-x:hidden;
line-height:1.6;
}

.bg-glow{
position:fixed;
width:700px;
height:700px;
background:radial-gradient(circle,#3b82f633 0%,transparent 70%);
top:-200px;
right:-150px;
z-index:-1;
filter:blur(40px);
}

.navbar{
position:fixed;
top:20px;
left:50%;
transform:translateX(-50%);
width:min(1200px,calc(100% - 40px));
height:74px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 26px;
background:rgba(255,255,255,0.85);
backdrop-filter:blur(16px);
border:1px solid #e7edf6;
border-radius:999px;
z-index:999;
box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.logo{
font-size:24px;
font-weight:900;
letter-spacing:-0.05em;
color:#2563eb;
}

nav{
display:flex;
gap:28px;
}

nav a{
text-decoration:none;
color:#5f6b7a;
font-size:14px;
font-weight:600;
}

.cta-nav{
background:#2563eb;
color:white;
padding:12px 18px;
border-radius:999px;
text-decoration:none;
font-size:13px;
font-weight:700;
}

.hero{
min-height:100vh;
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:70px;
padding:160px 7%;
}

.mini-badge,.section-mini{
display:inline-block;
padding:10px 16px;
border-radius:999px;
background:#eff6ff;
color:#2563eb;
font-size:12px;
font-weight:800;
letter-spacing:0.08em;
text-transform:uppercase;
margin-bottom:24px;
}

.hero h1{
font-size:78px;
line-height:0.95;
letter-spacing:-0.07em;
font-weight:900;
max-width:720px;
margin-bottom:24px;
}

.subtext{
font-size:28px;
font-weight:700;
color:#2563eb;
margin-bottom:20px;
}

.desc{
max-width:620px;
font-size:19px;
color:#667085;
margin-bottom:36px;
}

.hero-buttons{
display:flex;
gap:16px;
margin-bottom:36px;
}

.primary-btn{
display:inline-flex;
align-items:center;
justify-content:center;
height:54px;
padding:0 26px;
background:#2563eb;
color:white;
border-radius:999px;
text-decoration:none;
font-size:13px;
font-weight:800;
letter-spacing:0.08em;
box-shadow:0 10px 30px rgba(37,99,235,0.25);
}

.secondary-btn{
display:inline-flex;
align-items:center;
justify-content:center;
height:54px;
padding:0 26px;
border:1px solid #dbe5f2;
border-radius:999px;
text-decoration:none;
color:#111;
font-size:13px;
font-weight:800;
background:white;
}

.trust{
display:flex;
gap:12px;
flex-wrap:wrap;
}

.trust span{
padding:10px 14px;
border-radius:999px;
border:1px solid #dbe5f2;
font-size:13px;
font-weight:600;
color:#5f6b7a;
}

.hero-right{
display:flex;
justify-content:center;
}

.dashboard-card{
width:100%;
max-width:520px;
padding:28px;
border-radius:36px;
background:white;
border:1px solid #e7edf6;
box-shadow:0 30px 80px rgba(0,0,0,0.08);
animation:float 6s ease-in-out infinite;
}

@keyframes float{
0%,100%{transform:translateY(0)}
50%{transform:translateY(-14px)}
}

.top-row{
display:flex;
justify-content:space-between;
margin-bottom:24px;
font-size:13px;
font-weight:700;
color:#5f6b7a;
}

.live{
color:#2563eb;
}

.stats-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:14px;
}

.stat{
padding:22px;
border-radius:24px;
background:#f8fbff;
border:1px solid #e7edf6;
}

.stat small{
display:block;
margin-bottom:8px;
color:#7b8794;
}

.stat strong{
font-size:34px;
letter-spacing:-0.05em;
}

.graph{
height:140px;
display:flex;
align-items:flex-end;
gap:12px;
margin-top:26px;
}

.graph span{
flex:1;
border-radius:999px;
background:linear-gradient(180deg,#60a5fa,#2563eb);
}

.marquee{
overflow:hidden;
padding:24px 0;
border-top:1px solid #eef2f7;
border-bottom:1px solid #eef2f7;
background:#fbfdff;
}

.track{
display:flex;
gap:50px;
white-space:nowrap;
animation:marquee 20s linear infinite;
}

.track span{
font-size:18px;
font-weight:800;
color:#2563eb;
}

@keyframes marquee{
from{transform:translateX(0)}
to{transform:translateX(-50%)}
}

.section{
padding:120px 7%;
}

.intro{
display:grid;
grid-template-columns:0.9fr 1.1fr;
gap:80px;
align-items:start;
}

.intro p{
font-size:22px;
color:#667085;
max-width:760px;
}

h2{
font-size:64px;
line-height:1;
letter-spacing:-0.06em;
font-weight:900;
max-width:720px;
}

.section-title{
margin-bottom:50px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:22px;
}

.service-card{
padding:34px;
border-radius:32px;
background:white;
border:1px solid #e7edf6;
transition:0.3s ease;
}

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 50px rgba(0,0,0,0.06);
}

.number{
font-size:12px;
font-weight:900;
letter-spacing:0.14em;
color:#2563eb;
margin-bottom:34px;
}

.service-card h3{
font-size:28px;
margin-bottom:14px;
letter-spacing:-0.04em;
}

.service-card p{
color:#667085;
}

.cta-section{
padding:40px 7% 120px;
}

.cta-box{
padding:70px;
border-radius:40px;
background:linear-gradient(180deg,#f8fbff,#eef5ff);
border:1px solid #dbe5f2;
text-align:center;
}

.cta-box h2{
margin:auto;
margin-bottom:20px;
}

.cta-box p{
font-size:20px;
color:#667085;
margin-bottom:34px;
}

.footer{
padding:80px 7%;
text-align:center;
border-top:1px solid #eef2f7;
}

.footer-logo{
font-size:28px;
font-weight:900;
color:#2563eb;
letter-spacing:-0.05em;
margin-bottom:10px;
}

.footer p{
color:#667085;
}

@media(max-width:980px){

.hero{
grid-template-columns:1fr;
}

.services-grid{
grid-template-columns:1fr;
}

.intro{
grid-template-columns:1fr;
}

.hero h1{
font-size:54px;
}
}


.logo img{
  height:42px;
  width:auto;
  display:block;
}

.footer-logo img{
  height:54px;
  width:auto;
  display:block;
  margin:0 auto 14px;
}

.footer-line{
  margin-top:4px;
}

.footer-contact{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  margin-top:22px;
  color:#667085;
  font-size:14px;
}

.footer-contact a{
  color:#2563eb;
  text-decoration:none;
  font-weight:700;
}

@media(max-width:768px){
  .logo img{
    height:36px;
  }

  .footer-logo img{
    height:46px;
  }
}


.ecosystem-strip{
padding:30px 0 10px;
overflow:hidden;
position:relative;
}

.ecosystem-track{
display:flex;
gap:22px;
padding:0 7%;
overflow-x:auto;
scrollbar-width:none;
}

.ecosystem-track::-webkit-scrollbar{
display:none;
}

.eco-card{
min-width:260px;
padding:28px;
border-radius:30px;
background:rgba(255,255,255,0.9);
border:1px solid #e7edf6;
box-shadow:0 20px 50px rgba(0,0,0,0.05);
backdrop-filter:blur(16px);
transition:0.3s ease;
}

.eco-card:hover{
transform:translateY(-6px);
box-shadow:0 30px 60px rgba(37,99,235,0.08);
border-color:#cdddf7;
}

.eco-card span{
display:block;
font-size:12px;
font-weight:800;
letter-spacing:0.12em;
text-transform:uppercase;
color:#2563eb;
margin-bottom:12px;
}

.eco-card strong{
font-size:22px;
line-height:1.15;
letter-spacing:-0.04em;
}



html{
  scroll-behavior:smooth;
  scroll-padding-top:110px;
}

.contact-section{
  padding:120px 7%;
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:70px;
  align-items:start;
  background:linear-gradient(180deg,#ffffff,#f8fbff);
}

.contact-copy p{
  font-size:20px;
  color:#667085;
  max-width:560px;
  margin-top:24px;
}

.contact-form{
  background:#ffffff;
  border:1px solid #e7edf6;
  border-radius:36px;
  padding:36px;
  box-shadow:0 30px 80px rgba(0,0,0,0.06);
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.contact-form label{
  display:flex;
  flex-direction:column;
  gap:10px;
  font-size:13px;
  font-weight:800;
  color:#1f2937;
  margin-bottom:18px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid #dbe5f2;
  border-radius:18px;
  padding:16px 18px;
  font-family:'Inter',sans-serif;
  font-size:15px;
  color:#111827;
  background:#fbfdff;
  outline:none;
  transition:0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 4px rgba(37,99,235,0.08);
  background:#ffffff;
}

.contact-form textarea{
  resize:vertical;
}

.form-submit{
  border:none;
  cursor:pointer;
  width:auto;
  margin-top:6px;
}

.form-note{
  margin-top:18px;
  color:#667085;
  font-size:14px;
}

.form-note a{
  color:#2563eb;
  font-weight:800;
  text-decoration:none;
}

@media(max-width:980px){
  .contact-section{
    grid-template-columns:1fr;
  }

  .form-row{
    grid-template-columns:1fr;
    gap:0;
  }
}


.hero h1 span{
  color:#2563eb;
}

