:root{
  --navy: #0F1E4D;
  --navy-deep: #0A1638;
  --blue: #2F5CE0;
  --blue-light: #EAF0FF;
  --bg-soft: #F6F8FC;
  --bg-tint: #EEF2FB;
  --text-muted: #5B6B8C;
  --border: #E3E8F3;
  --green: #12885B;
  --green-bg: #E4F7EE;
  --amber: #B4740E;
  --amber-bg: #FDF1DD;
  --radius: 14px;
  --shadow: 0 12px 30px -12px rgba(15,30,77,0.18);
  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--navy);
  background:#fff;
  -webkit-font-smoothing:antialiased;
}
img,svg{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;margin:0;padding:0;}
h1,h2,h3,h4{font-family:var(--font-display);margin:0;line-height:1.15;}

.wrap{
  max-width:1240px;
  margin:0 auto;
  padding:0 32px;
}

/* ===== Buttons / links ===== */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 24px;
  border-radius:9px;
  font-weight:600;
  font-size:15px;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary{
  background:var(--blue);
  color:#fff;
  box-shadow:0 8px 20px -8px rgba(47,92,224,0.55);
}
.btn-primary:hover{transform:translateY(-1px);box-shadow:0 12px 24px -8px rgba(47,92,224,0.6);}
.btn-secondary{
  background:#fff;
  color:var(--navy);
  border:1.5px solid var(--border);
}
.btn-secondary:hover{border-color:var(--blue);color:var(--blue);}
.arrow{display:inline-block;transition:transform .15s ease;}
.btn:hover .arrow{transform:translateX(3px);}

.link-arrow{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--blue);
  font-weight:600;
  font-size:15px;
}
.link-arrow:hover .arrow{transform:translateX(3px);}
.link-arrow.small{font-size:14px;margin-top:10px;}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12.5px;
  font-weight:700;
  color:var(--blue);
  margin:0 0 12px;
}

/* ===== Header ===== */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:74px;
}
.brand{display:flex;align-items:center;gap:10px;}
.brand-text{
  font-family:var(--font-display);
  font-weight:800;
  font-size:16px;
  letter-spacing:.03em;
  line-height:1.1;
  display:flex;
  flex-direction:column;
}
.brand-text small{
  font-size:9px;
  font-weight:700;
  letter-spacing:.18em;
  color:var(--text-muted);
}
.brand-text.light small{color:#93A0C2;}

.main-nav{display:flex;gap:34px;}
.main-nav a{
  font-size:14.5px;
  font-weight:600;
  color:var(--navy);
  position:relative;
  padding:4px 0;
}
.main-nav a:hover{color:var(--blue);}

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.nav-toggle span{width:22px;height:2px;background:var(--navy);border-radius:2px;}

/* ===== Hero ===== */
.hero{
  background:linear-gradient(180deg,#FCFDFF 0%, var(--bg-soft) 100%);
  padding:76px 0 90px;
  overflow:hidden;
}
.hero-inner{
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:56px;
  align-items:center;
}
.hero-copy h1{
  font-size:44px;
  font-weight:800;
  letter-spacing:-0.02em;
  margin-bottom:20px;
}
.accent{color:var(--blue);}
.hero-desc{
  font-size:16.5px;
  line-height:1.65;
  color:var(--text-muted);
  max-width:480px;
  margin:0 0 30px;
}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;}

/* ---- Device mockups ---- */
.hero-visual{position:relative;height:440px;}
.device.laptop{
  position:absolute;
  right:0;
  top:10px;
  width:76%;
  z-index:1;
}
.laptop-screen{
  background:#fff;
  border:8px solid var(--navy-deep);
  border-bottom:none;
  border-radius:14px 14px 0 0;
  box-shadow:var(--shadow);
  overflow:hidden;
  height:280px;
}
.laptop-base{
  height:12px;
  background:linear-gradient(180deg,#1A2A5C,var(--navy-deep));
  border-radius:0 0 10px 10px;
  margin:0 -4px;
}
.app-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 16px;
  border-bottom:1px solid var(--border);
}
.app-logo{
  display:flex;
  align-items:center;
  gap:6px;
  font-weight:700;
  font-size:13px;
  color:var(--navy);
}
.mini-mark{
  width:14px;height:14px;border-radius:4px;
  background:linear-gradient(135deg,var(--blue),var(--navy));
  display:inline-block;
}
.app-topbar-icons{display:flex;align-items:center;gap:10px;}
.app-avatar{width:20px;height:20px;border-radius:50%;background:var(--bg-tint);display:inline-block;}
.app-body{display:flex;}
.app-sidebar{
  width:110px;
  background:var(--bg-soft);
  border-right:1px solid var(--border);
  padding:10px 8px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.side-item{
  font-size:10.5px;
  padding:7px 8px;
  border-radius:6px;
  color:var(--text-muted);
  font-weight:600;
}
.side-item.active{background:var(--blue-light);color:var(--blue);}
.app-content{flex:1;padding:12px 16px;min-width:0;}
.app-content h4{font-size:13px;margin-bottom:10px;}
.stat-row{display:flex;gap:6px;margin-bottom:10px;}
.mini-stat{
  flex:1;
  background:var(--bg-soft);
  border:1px solid var(--border);
  border-radius:8px;
  padding:8px 10px;
}
.mini-stat-num{display:block;font-weight:800;font-size:14px;}
.mini-stat-label{display:block;font-size:9px;color:var(--text-muted);margin-top:2px;}
.mini-heading{font-size:11px;font-weight:700;color:var(--text-muted);margin:0 0 8px;}
.mini-table{display:flex;flex-direction:column;gap:6px;}
.mini-row{
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:8px;
  align-items:center;
  font-size:10px;
  padding:6px 0;
  border-bottom:1px solid var(--border);
}
.mini-row span:first-child{font-weight:600;}
.mini-row span:nth-child(2){color:var(--text-muted);}

.pill{
  font-size:9px;
  font-weight:700;
  padding:3px 8px;
  border-radius:20px;
  display:inline-block;
  text-align:center;
}
.pill.sm{font-size:9px;padding:4px 10px;}
.pill-green{background:var(--green-bg);color:var(--green);}
.pill-blue{background:var(--blue-light);color:var(--blue);}
.pill-amber{background:var(--amber-bg);color:var(--amber);}

.device.phone{
  position:absolute;
  left:0;
  bottom:0;
  width:180px;
  z-index:2;
}
.phone-screen{
  background:#fff;
  border:7px solid var(--navy-deep);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:14px 12px;
  height:360px;
  overflow:hidden;
}
.app-logo.small{font-size:11px;margin-bottom:10px;}
.phone-title{font-weight:700;font-size:13px;margin:0 0 10px;}
.phone-field{
  display:block;
  font-size:9px;
  font-weight:700;
  color:var(--text-muted);
  margin-bottom:8px;
}
.phone-field span{
  display:block;
  margin-top:4px;
  background:var(--bg-soft);
  border:1px solid var(--border);
  border-radius:6px;
  padding:7px 8px;
  font-size:9.5px;
  font-weight:400;
  color:var(--navy);
}
.phone-btn{
  display:block;
  text-align:center;
  background:var(--blue);
  color:#fff;
  font-size:11px;
  font-weight:700;
  padding:9px;
  border-radius:7px;
  margin-top:12px;
}

/* ===== Product section ===== */
.product{padding:96px 0;}
.product-inner{
  display:grid;
  grid-template-columns:0.85fr 1.4fr;
  gap:56px;
  align-items:start;
}
.product-copy h2{font-size:32px;font-weight:800;margin-bottom:8px;}
.product-sub{font-weight:600;color:var(--text-muted);margin:0 0 14px;font-size:15px;}
.product-desc{color:var(--text-muted);line-height:1.6;margin:0 0 20px;}
.checklist{display:flex;flex-direction:column;gap:12px;margin-bottom:26px;}
.checklist li{
  position:relative;
  padding-left:26px;
  font-size:14.5px;
  color:var(--navy);
}
.checklist li::before{
  content:"";
  position:absolute;
  left:0;top:3px;
  width:16px;height:16px;
  border-radius:50%;
  background:var(--green-bg);
  border:1.5px solid var(--green);
}
.checklist li::after{
  content:"";
  position:absolute;
  left:4.5px;top:6.5px;
  width:7px;height:4px;
  border-left:1.6px solid var(--green);
  border-bottom:1.6px solid var(--green);
  transform:rotate(-45deg);
}

.product-cards{
  grid-column:2;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}
.pcard{padding:14px;}
.pcard-title{font-size:12px;}
.pcard{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 6px 18px -12px rgba(15,30,77,0.15);
}
.pcard-title{font-weight:700;font-size:13.5px;margin:0 0 12px;}
.pcard-field{
  background:var(--bg-soft);
  border:1px solid var(--border);
  border-radius:7px;
  padding:8px 10px;
  font-size:11px;
  color:var(--text-muted);
  margin-bottom:8px;
}
.pcard-btn{
  display:block;
  text-align:center;
  background:var(--blue);
  color:#fff;
  font-weight:700;
  font-size:11.5px;
  padding:9px;
  border-radius:7px;
  margin-top:6px;
}
.pcard-caption{
  text-align:center;
  font-size:11px;
  color:var(--text-muted);
  font-weight:600;
  margin:12px 0 0;
}
.provider-row{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:10.5px;
  padding:7px 0;
  border-bottom:1px solid var(--border);
}
.provider-row .dot{width:16px;height:16px;border-radius:50%;background:var(--bg-tint);flex-shrink:0;}
.provider-row b{margin-left:auto;font-size:10.5px;}
.provider-row em{
  font-style:normal;
  background:var(--blue-light);
  color:var(--blue);
  font-size:9.5px;
  font-weight:700;
  padding:3px 8px;
  border-radius:6px;
}
.summary-line{
  display:flex;
  justify-content:space-between;
  font-size:11px;
  padding:6px 0;
  border-bottom:1px solid var(--border);
  color:var(--text-muted);
}
.summary-line span:last-child{color:var(--navy);font-weight:600;}
.summary-line.total{font-weight:700;color:var(--navy);border-bottom:none;}
.job-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:10.5px;
  padding:7px 0;
  border-bottom:1px solid var(--border);
}

.product-footnote{
  grid-column:1/-1;
  text-align:center;
  color:var(--text-muted);
  font-size:13.5px;
  margin-top:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.tag{
  background:var(--amber-bg);
  color:var(--amber);
  font-size:11px;
  font-weight:700;
  padding:4px 10px;
  border-radius:20px;
}

/* ===== Why section ===== */
.why{background:var(--bg-soft);padding:96px 0;}
.why-inner{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:64px;
}
.why-features h2{font-size:30px;font-weight:800;margin-bottom:36px;}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.feature-icon{
  width:44px;height:44px;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:14px;
}
.feature-icon.shield{background:#E7EDFC;color:var(--blue);}
.feature-icon.code{background:#E6F6EE;color:var(--green);}
.feature-icon.people{background:#F1E9FB;color:#7B3FE4;}
.feature-icon.rocket{background:#FDECE3;color:#E06A2C;}
.feature-title{font-weight:700;font-size:15px;margin:0 0 6px;}
.feature-desc{font-size:13.5px;color:var(--text-muted);line-height:1.55;margin:0;}

.whats-next{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:32px;
}
.wn-title{font-weight:800;font-size:19px;margin:0 0 10px;}
.wn-desc{font-size:14px;color:var(--text-muted);line-height:1.6;margin:0;}
.roadmap{margin-top:26px;display:flex;flex-direction:column;gap:18px;}
.rm-item{
  display:grid;
  grid-template-columns:26px 1fr auto;
  column-gap:10px;
  row-gap:2px;
  align-items:center;
}
.rm-dot{
  grid-row:1/3;
  width:26px;height:26px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.rm-dot.done{background:var(--green);}
.rm-dot.progress{background:#0E9C8F;}
.rm-dot.soon{background:#7B4FE0;}
.rm-dot.soon2{background:#E0862C;}
.rm-dot.plan{background:var(--blue);}
.rm-name{font-weight:700;font-size:13.5px;margin:0;}
.rm-status{font-size:11.5px;font-weight:700;color:var(--text-muted);margin:0;justify-self:end;}
.rm-status.live{color:var(--green);}
.rm-desc{grid-column:2/3;font-size:12px;color:var(--text-muted);margin:2px 0 0;}

/* ===== Simple sections (Careers / News) ===== */
.simple-section{padding:80px 0;border-top:1px solid var(--border);}
.simple-section.alt{background:var(--bg-soft);}
.simple-inner{max-width:640px;}
.simple-inner h2{font-size:28px;font-weight:800;margin:0 0 16px;letter-spacing:-0.01em;}
.simple-desc{font-size:15.5px;line-height:1.65;color:var(--text-muted);margin:0 0 20px;}


/* ===== Footer ===== */
.site-footer{background:var(--navy-deep);color:#B9C2DE;padding-top:64px;}
.footer-inner{
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr 1.3fr;
  gap:32px;
  padding-bottom:48px;
}
.footer-brand p{font-size:13.5px;line-height:1.6;margin:14px 0 18px;color:#8B96B8;max-width:260px;}
.socials{display:flex;gap:12px;}
.socials a{
  width:32px;height:32px;
  border-radius:8px;
  background:rgba(255,255,255,0.06);
  display:flex;align-items:center;justify-content:center;
  color:#B9C2DE;
}
.socials a:hover{background:var(--blue);color:#fff;}
.footer-heading{
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:#fff;
  margin:0 0 16px;
}
.footer-col{display:flex;flex-direction:column;gap:10px;}
.footer-col a, .footer-plain{font-size:13.5px;color:#8B96B8;}
.footer-col a:hover{color:#fff;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:20px 0;
  font-size:12.5px;
  color:#6B7796;
}

/* ===== Responsive ===== */
@media (max-width:1200px){
  .product-cards{grid-template-columns:repeat(3,1fr);}
}
@media (max-width:1080px){
  .product-inner{grid-template-columns:1fr;}
  .product-cards{grid-column:1;grid-template-columns:repeat(3,1fr);}
  .why-inner{grid-template-columns:1fr;}
  .footer-inner{grid-template-columns:1fr 1fr;}
}

@media (max-width:860px){
  .main-nav{
    position:absolute;
    top:74px;left:0;right:0;
    background:#fff;
    flex-direction:column;
    gap:0;
    border-bottom:1px solid var(--border);
    max-height:0;
    overflow:hidden;
    transition:max-height .25s ease;
  }
  .main-nav.open{max-height:320px;}
  .main-nav a{padding:14px 32px;border-top:1px solid var(--border);}
  .nav-toggle{display:flex;}
  .hero-inner{grid-template-columns:1fr;}
  .hero-visual{height:340px;margin-top:20px;}
  .hero-copy h1{font-size:34px;}
}

@media (max-width:600px){
  .wrap{padding:0 20px;}
  .product-cards{grid-template-columns:1fr;}
  .feature-grid{grid-template-columns:1fr;}
  .footer-inner{grid-template-columns:1fr;}
  .device.laptop{width:100%;}
  .device.phone{display:none;}
  .hero-visual{height:auto;}
}
