:root {
  --navy: #071a33;
  --navy-2: #0c284a;
  --blue: #176ef0;
  --cyan: #11c8e8;
  --ice: #eef8ff;
  --text: #142338;
  --muted: #627086;
  --white: #ffffff;
  --line: #dce7f2;
  --shadow: 0 24px 70px rgba(7, 26, 51, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: linear-gradient(90deg, #0c2b52, #155ca8);
  color: white;
  font-size: 13px;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { font-weight: 700; color: #8eeaff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,231,242,.7);
}
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 48px; height: 46px; display: flex; flex-direction: column; gap: 4px;
  transform: skewX(-11deg);
}
.brand-mark span {
  display: block; height: 11px; border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.brand-mark span:nth-child(2) { width: 78%; margin-left: 9%; }
.brand-mark span:nth-child(3) { width: 45%; margin-left: 24%; }
.brand-copy { display: flex; flex-direction: column; line-height: .9; }
.brand-copy strong { font-family: "Sora"; font-size: 25px; letter-spacing: 1px; color: var(--navy); }
.brand-copy small { font-size: 11px; letter-spacing: 7px; color: var(--blue); margin-top: 9px; font-weight: 800; }

.main-nav { display: flex; align-items: center; gap: 29px; font-weight: 700; font-size: 14px; }
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after {
  content:""; position:absolute; left:0; bottom:-10px; width:0; height:2px;
  background: var(--blue); transition:.25s;
}
.main-nav a:hover::after, .main-nav a.active::after { width:100%; }
.nav-cta {
  padding: 13px 20px; background: var(--navy); color:white;
  border-radius: 10px; transition:.25s;
}
.nav-cta:hover { background: var(--blue); transform: translateY(-2px); }

.menu-toggle { display:none; border:0; background:none; padding:8px; }
.menu-toggle span { display:block; width:25px; height:2px; background:var(--navy); margin:5px; }

.hero {
  min-height: 720px;
  color: white;
  position: relative;
  background:
    radial-gradient(circle at 83% 22%, rgba(17,200,232,.24), transparent 26%),
    radial-gradient(circle at 65% 80%, rgba(23,110,240,.25), transparent 32%),
    linear-gradient(125deg, #06172d 0%, #0a315b 55%, #0c4975 100%);
  overflow:hidden;
}
.hero::before {
  content:""; position:absolute; inset:0; opacity:.18;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:54px 54px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}
.hero-grid {
  position:relative; z-index:2;
  min-height:650px; display:grid; grid-template-columns:1.07fr .93fr;
  gap:70px; align-items:center;
}
.eyebrow, .section-kicker {
  text-transform:uppercase; letter-spacing:2px; font-size:12px; font-weight:800; color:var(--blue);
}
.eyebrow { color:#7fe5f6; display:flex; align-items:center; gap:10px; }
.eyebrow span { width:32px; height:2px; background:#7fe5f6; }
.hero h1, h2 {
  font-family:"Sora", sans-serif;
  letter-spacing:-2.2px;
}
.hero h1 {
  font-size: clamp(48px, 5.3vw, 76px);
  line-height:1.04; margin:20px 0 24px; max-width:760px;
}
.hero h1 em, h2 em { color:var(--cyan); font-style:normal; }
.hero-copy > p { font-size:19px; line-height:1.75; color:#c9d8e8; max-width:680px; }
.hero-actions { display:flex; gap:15px; margin-top:34px; flex-wrap:wrap; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:13px;
  min-height:54px; padding:0 24px; border-radius:10px; font-weight:800;
  font-family:inherit; border:0; cursor:pointer; transition:.25s;
}
.btn:hover { transform:translateY(-3px); }
.btn-primary { color:white; background:linear-gradient(90deg,var(--blue),#159fe7); box-shadow:0 14px 34px rgba(23,110,240,.3); }
.btn-ghost { border:1px solid rgba(255,255,255,.25); color:white; background:rgba(255,255,255,.05); }
.btn-light { background:white; color:var(--blue); }
.btn-outline-light { border:1px solid rgba(255,255,255,.32); color:white; }
.btn.large { min-height:60px; padding:0 30px; }
.hero-trust { display:flex; gap:32px; margin-top:48px; }
.hero-trust div { display:flex; flex-direction:column; padding-left:14px; border-left:2px solid #1cc8e7; }
.hero-trust strong { font-size:15px; }
.hero-trust span { font-size:12px; color:#91a9c0; margin-top:4px; }

.hero-visual { position:relative; min-height:500px; }
.glass-card {
  position:absolute; backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(145deg,rgba(255,255,255,.14),rgba(255,255,255,.04));
  box-shadow:0 30px 80px rgba(0,0,0,.28);
}
.card-main { width:390px; height:280px; border-radius:28px; top:92px; left:52px; padding:26px; transform:rotate(-2deg); }
.card-head { display:flex; align-items:center; gap:10px; color:#d7eaff; font-size:13px; }
.card-head small { margin-left:auto; color:#57f1bd; font-weight:800; letter-spacing:1px; }
.pulse { width:9px; height:9px; border-radius:50%; background:#57f1bd; box-shadow:0 0 0 7px rgba(87,241,189,.11); }
.metric { display:flex; justify-content:space-between; align-items:end; margin:45px 0 20px; }
.metric span { color:#9db5cc; font-size:13px; }
.metric strong { font-size:42px; font-family:"Sora"; }
.bars { height:90px; display:flex; gap:10px; align-items:end; }
.bars i { flex:1; min-width:9px; border-radius:10px 10px 3px 3px; background:linear-gradient(to top,var(--blue),var(--cyan)); box-shadow:0 0 18px rgba(17,200,232,.2); }
.floating-card {
  position:absolute; display:flex; align-items:center; gap:12px; padding:15px 18px;
  border:1px solid rgba(255,255,255,.17); border-radius:16px;
  background:rgba(8,36,66,.82); backdrop-filter:blur(12px); box-shadow:var(--shadow);
}
.floating-card > span { width:38px; height:38px; display:grid; place-items:center; border-radius:10px; background:rgba(17,200,232,.13); color:#63eaf8; }
.floating-card div { display:flex; flex-direction:column; }
.floating-card strong { font-size:13px; }
.floating-card small { color:#92a9bf; font-size:10px; margin-top:3px; }
.fc-security { right:-5px; top:50px; }
.fc-cloud { left:-35px; bottom:65px; }
.orbit { position:absolute; border:1px solid rgba(94,225,246,.18); border-radius:50%; }
.orbit-one { width:490px; height:490px; left:5px; top:8px; }
.orbit-two { width:350px; height:350px; left:75px; top:75px; }
.node { position:absolute; width:11px; height:11px; background:#28ddf5; border-radius:50%; box-shadow:0 0 18px #28ddf5; }
.n1 { top:25px; left:290px; } .n2 { right:25px; bottom:95px; } .n3 { left:22px; top:250px; }
.hero-wave {
  position:absolute; bottom:-1px; left:0; width:100%; height:90px; background:white;
  clip-path:polygon(0 80%, 18% 45%, 35% 72%, 55% 35%, 74% 68%, 100% 28%, 100% 100%, 0 100%);
}

.logo-strip { padding:28px 0 36px; border-bottom:1px solid var(--line); }
.logo-strip .container { display:flex; align-items:center; justify-content:space-between; gap:30px; }
.logo-strip > .container > span { color:var(--muted); font-size:13px; white-space:nowrap; }
.industry-list { display:flex; align-items:center; justify-content:flex-end; gap:22px; flex-wrap:wrap; color:#7f8b9c; }
.industry-list strong { font-size:13px; }
.industry-list i { width:4px; height:4px; border-radius:50%; background:#b8c5d2; }

.section { padding:110px 0; }
.section-heading { display:grid; grid-template-columns:1.15fr .85fr; gap:90px; align-items:end; margin-bottom:55px; }
h2 { font-size:clamp(36px,4vw,55px); line-height:1.14; margin:14px 0 0; color:var(--navy); }
.section-heading p, .center-heading p, .about-copy > p, .contact-copy > p { color:var(--muted); font-size:17px; line-height:1.8; }
.service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.service-card {
  min-height:320px; padding:30px; border:1px solid var(--line); border-radius:var(--radius);
  background:white; transition:.3s; display:flex; flex-direction:column;
}
.service-card:hover { transform:translateY(-8px); box-shadow:var(--shadow); border-color:#b9d6ff; }
.service-icon {
  width:54px; height:54px; display:grid; place-items:center; border-radius:15px;
  color:var(--blue); background:var(--ice); font-family:"Sora"; font-weight:800;
}
.service-card h3 { font-size:21px; margin:26px 0 12px; }
.service-card p { color:var(--muted); line-height:1.75; margin:0 0 25px; }
.service-card a { margin-top:auto; color:var(--blue); font-weight:800; font-size:14px; }
.service-card.featured { background:linear-gradient(145deg,#0b2a4d,#0e4f79); color:white; border:0; }
.service-card.featured h3 { font-size:27px; }
.service-card.featured p { color:#c4d8e8; }
.mini-label { color:#65e7f4; text-transform:uppercase; letter-spacing:1.5px; font-size:11px; font-weight:800; }

.dark-section { background:linear-gradient(130deg,#06172d,#0b3158); color:white; overflow:hidden; }
.split { display:grid; grid-template-columns:1fr 1fr; gap:100px; align-items:center; }
.solution-visual { min-height:600px; position:relative; }
.mesh {
  position:absolute; inset:50px 0; opacity:.25;
  background-image:radial-gradient(#24badd 1.5px,transparent 1.5px); background-size:24px 24px;
  mask-image:radial-gradient(circle,black,transparent 72%);
}
.device-card {
  position:absolute; width:330px; height:430px; top:60px; left:70px; padding:18px;
  border-radius:35px; background:linear-gradient(145deg,#1d4267,#07192d);
  border:1px solid rgba(255,255,255,.16); box-shadow:0 45px 100px rgba(0,0,0,.35);
  transform:rotate(-5deg);
}
.device-top { display:block; width:60px; height:7px; background:#395c7a; border-radius:10px; margin:0 auto 25px; }
.device-screen { height:340px; padding:28px; border-radius:25px; background:linear-gradient(150deg,rgba(23,110,240,.36),rgba(17,200,232,.08)); }
.device-screen small { color:#8fb7d4; }
.device-screen strong { display:block; font-size:32px; margin-top:8px; }
.line-chart { height:170px; margin-top:35px; border-left:1px solid rgba(255,255,255,.12); border-bottom:1px solid rgba(255,255,255,.12); position:relative; overflow:hidden; }
.line-chart span {
  position:absolute; width:130%; height:100%; left:-10%; top:10%;
  background:linear-gradient(160deg,transparent 49%,#31dbf3 50%,#31dbf3 51%,transparent 52%);
}
.status-card {
  position:absolute; padding:14px 18px; border-radius:13px; background:rgba(10,39,67,.92);
  border:1px solid rgba(255,255,255,.14); box-shadow:var(--shadow); font-size:13px; font-weight:700;
}
.status-card span { color:#56e7bc; margin-right:7px; }
.s1 { top:60px; right:0; } .s2 { top:250px; left:0; } .s3 { bottom:80px; right:15px; }
.section-kicker.light { color:#63e9f5; }
.solution-copy h2 { color:white; }
.solution-copy > p { color:#b7cadb; font-size:17px; line-height:1.8; margin:25px 0 32px; }
.feature-list { display:grid; gap:19px; margin-bottom:34px; }
.feature-list > div { display:grid; grid-template-columns:46px 1fr; gap:15px; align-items:start; }
.feature-list > div > span { width:38px; height:38px; display:grid; place-items:center; border-radius:10px; background:rgba(17,200,232,.12); color:#5be1f0; font-weight:800; font-size:12px; }
.feature-list p { margin:0; color:#aabfd1; line-height:1.65; }
.feature-list strong { color:white; }

.center-heading { text-align:center; max-width:760px; margin:0 auto 70px; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.process-grid article { position:relative; padding-right:35px; }
.step { width:64px; height:64px; display:grid; place-items:center; border-radius:50%; background:var(--navy); color:white; font-family:"Sora"; font-size:20px; box-shadow:0 10px 30px rgba(7,26,51,.17); }
.step-line { position:absolute; top:31px; left:79px; width:calc(100% - 90px); height:1px; background:linear-gradient(90deg,var(--blue),#c9d8e8); }
.process-grid h3 { margin:25px 0 10px; font-size:21px; }
.process-grid p { color:var(--muted); line-height:1.75; }

.about { background:#f6faff; }
.about-grid { display:grid; grid-template-columns:1fr .95fr; gap:90px; align-items:center; }
.about-copy > p { margin:19px 0; }
.about-values { display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }
.about-values span { border:1px solid #c8ddf3; background:white; padding:10px 15px; border-radius:999px; font-weight:700; font-size:13px; color:#34516f; }
.about-panel { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.about-stat, .about-quote { border-radius:20px; padding:26px; background:white; box-shadow:0 16px 45px rgba(17,61,101,.08); }
.about-stat { min-height:155px; display:flex; flex-direction:column; justify-content:end; }
.about-stat strong { font-family:"Sora"; color:var(--blue); font-size:25px; }
.about-stat span { color:var(--muted); font-size:13px; margin-top:8px; }
.about-quote { grid-column:1/-1; background:linear-gradient(120deg,var(--blue),#0ea9d8); color:white; font-family:"Sora"; font-size:22px; line-height:1.5; }

.cta-section { padding:0 0 110px; background:#f6faff; }
.cta-card {
  border-radius:30px; padding:55px 60px; display:flex; align-items:center; justify-content:space-between; gap:40px;
  color:white; background:linear-gradient(115deg,#0b2b50,#176ef0); box-shadow:0 30px 70px rgba(20,91,174,.22);
}
.cta-card h2 { color:white; font-size:38px; margin-top:10px; }
.cta-card p { color:#d6e5f5; }

.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:90px; align-items:start; }
.contact-detail { margin-top:35px; padding-top:20px; border-top:1px solid var(--line); }
.contact-detail span { text-transform:uppercase; letter-spacing:1.6px; font-size:11px; font-weight:800; color:var(--blue); }
.contact-detail p { line-height:1.7; color:#3f5168; }
.contact-form { padding:34px; border-radius:24px; border:1px solid var(--line); box-shadow:var(--shadow); background:white; }
.contact-form label { display:flex; flex-direction:column; gap:8px; font-size:13px; font-weight:800; margin-bottom:18px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:17px; }
input, select, textarea {
  width:100%; border:1px solid #d8e4ef; border-radius:10px; padding:14px 15px; font:inherit;
  color:var(--text); background:#fbfdff; outline:none; transition:.2s;
}
input:focus, select:focus, textarea:focus { border-color:var(--blue); box-shadow:0 0 0 4px rgba(23,110,240,.08); }
textarea { resize:vertical; }
.submit-btn { width:100%; }
.form-note { min-height:20px; margin:12px 0 0; color:#15845d; font-weight:700; font-size:13px; }

footer { background:#06172d; color:white; padding:75px 0 22px; }
.footer-grid { display:grid; grid-template-columns:1.4fr .8fr .7fr 1.2fr; gap:60px; }
.light-brand .brand-copy strong { color:white; }
.footer-brand p, footer p { color:#8fa6bb; line-height:1.7; }
footer h4 { margin:0 0 18px; }
footer div:not(.footer-brand) > a { display:block; color:#9cb2c6; margin:11px 0; font-size:14px; }
footer a:hover { color:white; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.11); margin-top:55px; padding-top:22px; display:flex; justify-content:space-between; color:#7f96aa; font-size:12px; }

.reveal { opacity:0; transform:translateY(25px); transition:opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity:1; transform:none; }
.delay-1 { transition-delay:.12s; } .delay-2 { transition-delay:.24s; } .delay-3 { transition-delay:.36s; }

@media (max-width: 980px) {
  .main-nav {
    display:none; position:absolute; top:86px; left:20px; right:20px; padding:22px;
    background:white; border-radius:16px; box-shadow:var(--shadow); flex-direction:column; align-items:stretch;
  }
  .main-nav.open { display:flex; }
  .menu-toggle { display:block; }
  .hero-grid { grid-template-columns:1fr; padding:80px 0 130px; }
  .hero-visual { min-height:470px; max-width:560px; width:100%; margin:0 auto; }
  .section-heading, .split, .about-grid, .contact-grid { grid-template-columns:1fr; gap:55px; }
  .service-grid { grid-template-columns:1fr 1fr; }
  .process-grid { grid-template-columns:1fr 1fr; gap:50px 25px; }
  .step-line { display:none; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .logo-strip .container { flex-direction:column; }
}
@media (max-width: 640px) {
  .container { width:min(100% - 28px,1180px); }
  .topbar-inner { justify-content:center; text-align:center; }
  .topbar a { display:none; }
  .nav-wrap { height:75px; }
  .brand-copy strong { font-size:20px; }
  .brand-mark { width:40px; height:38px; }
  .hero { min-height:auto; }
  .hero-grid { padding-top:65px; gap:20px; }
  .hero h1 { font-size:42px; letter-spacing:-1.6px; }
  .hero-copy > p { font-size:16px; }
  .hero-trust { flex-direction:column; gap:14px; }
  .hero-visual { transform:scale(.82); margin-left:-8%; width:116%; }
  .card-main { left:35px; width:360px; }
  .fc-security { right:-10px; }
  .fc-cloud { left:0; }
  .section { padding:78px 0; }
  .section-heading { gap:25px; }
  h2 { font-size:36px; letter-spacing:-1.5px; }
  .service-grid, .process-grid, .form-row, .about-panel { grid-template-columns:1fr; }
  .about-quote { grid-column:auto; }
  .solution-visual { min-height:520px; transform:scale(.85); width:116%; margin-left:-8%; }
  .cta-card { padding:38px 25px; flex-direction:column; align-items:flex-start; }
  .cta-card h2 { font-size:31px; }
  .contact-form { padding:22px; }
  .footer-grid { grid-template-columns:1fr; gap:35px; }
  .footer-bottom { flex-direction:column; gap:9px; }
  .industry-list { justify-content:center; }
}
