:root{
  --ink:#09111f;
  --navy:#0b1220;
  --navy2:#111b31;
  --blue:#2d6cdf;
  --blue2:#6aa3ff;
  --green:#11b981;
  --gold:#d8a84f;
  --white:#fff;
  --soft:#f6f8fc;
  --soft2:#eef4ff;
  --text:#182230;
  --muted:#5d6b82;
  --line:#dde4ef;
  --line-dark:rgba(255,255,255,.14);
  --card:#ffffff;
  --shadow:0 24px 70px rgba(15,23,42,.12);
  --shadow2:0 16px 36px rgba(15,23,42,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1180px, calc(100% - 42px));margin:0 auto}
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(9,17,31,.88);
  border-bottom:1px solid var(--line-dark);
  backdrop-filter:saturate(180%) blur(18px);
}
.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#fff;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:850;
  letter-spacing:-.25px;
}
.logo-mark{
  width:42px;
  height:42px;
  border-radius:16px;
  display:grid;
  place-items:center;
  color:#fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), transparent 45%),
    linear-gradient(135deg,var(--blue),var(--green));
  box-shadow:0 12px 32px rgba(45,108,223,.34);
  font-weight:900;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
  color:rgba(255,255,255,.82);
  font-weight:680;
}
.nav-links a:hover{color:#fff}
.nav-cta{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  border:1px solid var(--line-dark);
}
.mobile-toggle{
  display:none;
  color:#fff;
  background:transparent;
  border:1px solid var(--line-dark);
  border-radius:12px;
  padding:9px 12px;
  font-weight:750;
}
.hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 10% 8%, rgba(45,108,223,.45), transparent 34%),
    radial-gradient(circle at 84% 22%, rgba(17,185,129,.24), transparent 30%),
    radial-gradient(circle at 48% 100%, rgba(216,168,79,.12), transparent 35%),
    linear-gradient(145deg,#07101f,#121c33 62%,#0b1220);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.85), transparent 86%);
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:54px;
  align-items:center;
  padding:108px 0 96px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:8px 13px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.88);
  font-size:13px;
  font-weight:760;
}
.eyebrow.dark{
  color:var(--blue);
  background:#edf4ff;
  border-color:#d8e7ff;
}
h1{
  font-size:clamp(40px,6vw,72px);
  line-height:1.01;
  margin:24px 0 22px;
  letter-spacing:-2.4px;
}
.lead{
  max-width:720px;
  margin:0 0 32px;
  color:rgba(255,255,255,.76);
  font-size:19px;
}
.cta-row{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:15px;
  padding:13px 18px;
  font-weight:820;
  border:1px solid transparent;
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn.primary{
  background:#fff;
  color:var(--ink);
  box-shadow:0 16px 34px rgba(0,0,0,.22);
}
.btn.dark{
  background:var(--navy);
  color:#fff;
  box-shadow:0 16px 34px rgba(15,23,42,.18);
}
.btn.secondary{
  color:#fff;
  border-color:rgba(255,255,255,.17);
  background:rgba(255,255,255,.07);
}
.hero-panel{
  position:relative;
  padding:26px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:32px;
  background:linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.06));
  box-shadow:0 34px 90px rgba(0,0,0,.26);
}
.panel-top{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  margin-bottom:24px;
}
.status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#cffafe;
  font-size:13px;
  font-weight:800;
}
.status::before{
  content:"";
  width:9px;height:9px;border-radius:999px;background:var(--green);
  box-shadow:0 0 0 6px rgba(17,185,129,.14);
}
.dashboard{
  display:grid;
  gap:14px;
}
.dash-card{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  border-radius:20px;
  padding:18px;
}
.dash-card h3{
  margin:0 0 6px;
  font-size:14px;
  color:rgba(255,255,255,.68);
  text-transform:uppercase;
  letter-spacing:.12em;
}
.dash-card strong{
  display:block;
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.7px;
}
.dash-card p{margin:8px 0 0;color:rgba(255,255,255,.66);font-size:14px}
.dash-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.band{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
}
.band-inner{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--line);
}
.band-item{
  background:#fff;
  padding:24px;
}
.band-item strong{
  display:block;
  color:var(--ink);
  font-size:22px;
  line-height:1.2;
}
.band-item span{
  color:var(--muted);
  font-size:13px;
}
.section{padding:90px 0}
.section.compact{padding:68px 0}
.section.soft{background:var(--soft)}
.section.navy{
  background:
    radial-gradient(circle at 18% 8%, rgba(45,108,223,.25), transparent 32%),
    linear-gradient(145deg,#09111f,#121b31);
  color:#fff;
}
.section-head{
  max-width:780px;
  margin-bottom:42px;
}
.center{text-align:center;margin-left:auto;margin-right:auto}
.kicker{
  color:var(--blue);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
}
.navy .kicker{color:#93c5fd}
h2{
  margin:10px 0 14px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.1;
  letter-spacing:-1.25px;
  color:var(--ink);
}
.navy h2,.navy h3{color:#fff}
.sub{
  color:var(--muted);
  font-size:17px;
  margin:0;
}
.navy .sub{color:rgba(255,255,255,.72)}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:26px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  box-shadow:var(--shadow);
}
.card.flat{box-shadow:none}
.card h3{
  margin:0 0 10px;
  font-size:21px;
  letter-spacing:-.35px;
}
.card p{margin:0;color:var(--muted)}
.card .more{display:inline-flex;margin-top:20px;color:var(--blue);font-weight:850}
.icon{
  width:48px;
  height:48px;
  border-radius:17px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg,var(--blue),var(--green));
  box-shadow:0 12px 30px rgba(45,108,223,.22);
}
.list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
}
.list li{
  display:flex;
  gap:11px;
  color:var(--muted);
  margin:12px 0;
}
.list li::before{
  content:"";
  flex:0 0 20px;
  width:20px;height:20px;
  margin-top:3px;
  border-radius:999px;
  background:
    linear-gradient(135deg,var(--green),#67e8f9);
  mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' fill-rule='evenodd' d='M16.704 5.29a1 1 0 0 1 .006 1.414l-7.4 7.47a1 1 0 0 1-1.42.003L3.29 9.54A1 1 0 0 1 4.71 8.13l3.89 3.92 6.69-6.754a1 1 0 0 1 1.414-.006Z'/%3E%3C/svg%3E");
  mask-repeat:no-repeat;
  mask-size:20px 20px;
}
.navy .list li{color:rgba(255,255,255,.72)}
.workflow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  counter-reset:step;
}
.step{
  position:relative;
  padding:26px;
  border-radius:26px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow2);
}
.step::before{
  counter-increment:step;
  content:"0" counter(step);
  display:inline-flex;
  width:42px;height:42px;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  color:#fff;
  background:var(--navy);
  font-weight:900;
  margin-bottom:20px;
}
.step h3{margin:0 0 8px}
.step p{margin:0;color:var(--muted)}
.capability{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.07);
  border-radius:26px;
  padding:28px;
}
.capability p,.capability li{color:rgba(255,255,255,.72)}
.capability h3{margin-top:0}
.info-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
}
.info-table th,.info-table td{
  padding:17px 18px;
  text-align:left;
  vertical-align:top;
  border-bottom:1px solid var(--line);
}
.info-table tr:last-child th,.info-table tr:last-child td{border-bottom:0}
.info-table th{
  width:230px;
  color:#344054;
  background:#f8fafc;
  font-size:14px;
}
.info-table td{color:#344054}
.notice{
  border:1px solid #bfdbfe;
  background:linear-gradient(135deg,#eff6ff,#f8fbff);
  border-radius:24px;
  padding:22px;
  color:#1e3a8a;
}
.page-hero{
  color:#fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(45,108,223,.34), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(17,185,129,.2), transparent 28%),
    linear-gradient(145deg,#09111f,#111b31);
  padding:78px 0;
}
.page-hero h1{
  font-size:clamp(38px,5vw,60px);
}
.page-hero .lead{margin-bottom:0}
.content{
  max-width:950px;
}
.content h2{
  margin-top:48px;
  font-size:32px;
}
.content h3{
  font-size:22px;
  margin:28px 0 8px;
}
.content p,.content li{
  color:#475467;
}
.content a{color:var(--blue);font-weight:760}
.two-col-content{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:34px;
  align-items:start;
}
.sidebar-card{
  position:sticky;
  top:98px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow2);
  border-radius:24px;
  padding:24px;
}
.contact-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:26px;
}
.input,textarea{
  display:block;
  width:100%;
  border:1px solid var(--line);
  border-radius:15px;
  padding:13px 14px;
  margin-top:7px;
  font:inherit;
  outline:none;
  background:#fff;
}
.input:focus,textarea:focus{border-color:#8ab4ff;box-shadow:0 0 0 4px rgba(45,108,223,.12)}
label{font-weight:780;color:#344054}
textarea{min-height:150px;resize:vertical}
.small{font-size:13px;color:var(--muted)}
.footer{
  background:#07101f;
  color:rgba(255,255,255,.72);
  padding:52px 0 34px;
}
.footer-main{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .8fr;
  gap:30px;
  padding-bottom:34px;
  border-bottom:1px solid var(--line-dark);
}
.footer h4{
  color:#fff;
  margin:0 0 14px;
}
.footer a{display:block;color:rgba(255,255,255,.74);margin:8px 0;font-size:14px}
.footer a:hover{color:#fff}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  padding-top:24px;
  font-size:13px;
}
.badge-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:20px;
}
.badge{
  padding:8px 11px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:#344054;
  font-size:13px;
  font-weight:760;
}
.navy .badge{
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.82);
  border-color:rgba(255,255,255,.16);
}
@media(max-width:960px){
  .hero-grid,.grid-2,.contact-grid,.two-col-content{grid-template-columns:1fr}
  .grid-3,.grid-4,.workflow,.band-inner{grid-template-columns:repeat(2,1fr)}
  .footer-main{grid-template-columns:1fr 1fr}
  .sidebar-card{position:static}
}
@media(max-width:760px){
  .nav-links{
    display:none;
    position:absolute;
    left:0;right:0;top:76px;
    background:#09111f;
    border-bottom:1px solid var(--line-dark);
    padding:18px 22px;
    flex-direction:column;
    align-items:flex-start;
  }
  .nav-links.open{display:flex}
  .mobile-toggle{display:block}
  .hero-grid{padding:82px 0 72px}
  .dash-grid,.grid-3,.grid-4,.workflow,.band-inner,.footer-main{grid-template-columns:1fr}
  .section{padding:70px 0}
  .container{width:min(100% - 30px, 1180px)}
}