:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.12);
  --soft: rgba(15, 23, 42, 0.04);

  --blue: #1d4ed8;
  --blue2:#2563eb;
  --blueSoft: rgba(37, 99, 235, 0.10);

  --shadow: 0 18px 45px rgba(2, 6, 23, 0.10);
  --shadow2: 0 10px 26px rgba(2, 6, 23, 0.10);
  --radius: 18px;
  --radius2: 22px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(900px 600px at 15% 0%, var(--blueSoft), transparent 60%),
              radial-gradient(900px 600px at 85% 10%, rgba(29,78,216,0.07), transparent 60%),
              var(--bg);
  line-height:1.55;
}

a{ color: var(--blue); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left: 16px;
  top: 14px;
  width:auto; height:auto;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow2);
  z-index: 9999;
}

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 18px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 250px;
}
.brand-mark{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 800;
  color:#fff;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 10px 22px rgba(29,78,216,0.25);
}
.brand-name{
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-tag{
  font-size: 13px;
  color: var(--muted);
}

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.nav a{
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  opacity: 0.92;
}
.nav a:hover{ opacity: 1; text-decoration: none; }
.nav .nav-cta{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37,99,235,0.30);
  background: rgba(37,99,235,0.06);
  color: var(--blue);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration:none !important;
}
.btn-primary{
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color:#fff;
  box-shadow: 0 14px 30px rgba(29,78,216,0.25);
}
.btn-primary:hover{ filter: brightness(0.98); }
.btn-ghost{
  background: rgba(255,255,255,0.65);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.85);
}

/* Hero */
.hero{
  padding: 54px 0 30px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}
.eyebrow{
  display:inline-block;
  margin:0 0 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.18);
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
}
.hero h1{
  margin: 0 0 12px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.lead{
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--muted);
  max-width: 62ch;
}
.trustbar{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.70);
  font-size: 13px;
  font-weight: 700;
  color: #0b1226;
}
.muted{ color: var(--muted); font-weight: 600; }

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 14px;
}
.hero-contact{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.contact-pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.70);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  text-decoration:none !important;
}
.contact-pill:hover{ background: rgba(255,255,255,0.90); }
.icon{ opacity: 0.9; }

/* Card */
.hero-card .card{
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
}
.card-title{
  margin: 2px 0 6px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.card-sub{
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 500;
}
.checklist{
  list-style:none;
  padding:0;
  margin: 0;
  display:grid;
  gap: 10px;
}
.checklist li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(15,23,42,0.03);
  border: 1px solid rgba(15,23,42,0.06);
}
.check{
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.20);
  color: var(--blue);
  font-weight: 900;
  flex: 0 0 26px;
}
.divider{
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}
.mini{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mini-label{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.mini-value{
  font-weight: 800;
}
.note{
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* Sections */
.section{
  padding: 46px 0;
}
.section-alt{
  background: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(15,23,42,0.06);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.section-head p{
  margin: 0;
  color: var(--muted);
  max-width: 78ch;
}

/* Grids */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature, .panel{
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(2,6,23,0.06);
}
.feature h3, .panel h3{
  margin: 0 0 6px;
  font-size: 16px;
}
.feature p, .panel p{
  margin: 0;
  color: var(--muted);
}

/* Capabilities */
.cap-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.cap{
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(2,6,23,0.06);
}
.cap-title{
  font-weight: 800;
  margin-bottom: 6px;
}
.cap-desc{
  color: var(--muted);
}

/* Status table */
.status{
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 22px rgba(2,6,23,0.06);
}
.status-row{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  padding: 14px 16px;
  border-top: 1px solid rgba(15,23,42,0.06);
}
.status-row:first-child{ border-top: none; }
.status-key{
  color: var(--muted);
  font-weight: 800;
}
.status-val{
  font-weight: 700;
}

/* Contact */
.contact-card{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}
.contact-left, .contact-right{
  background: rgba(255,255,255,0.80);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: 0 10px 22px rgba(2,6,23,0.06);
}
.contact-left h2{
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.contact-left p{
  margin: 0 0 14px;
  color: var(--muted);
}
.contact-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 12px;
}
.contact-lines{
  display:grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
}
.label{
  color: var(--text);
  font-weight: 800;
  margin-right: 6px;
}
.contact-box h3{
  margin: 0 0 10px;
  font-size: 18px;
}
.info{
  list-style:none;
  padding:0;
  margin: 0;
  display:grid;
  gap: 10px;
}
.info li{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15,23,42,0.03);
  border: 1px solid rgba(15,23,42,0.06);
}
.info-k{
  color: var(--muted);
  font-weight: 800;
}
.info-v{
  font-weight: 800;
}
.fineprint{
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* Footer */
.footer{
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.78);
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.footer-brand{
  font-weight: 900;
}
.footer-sub{
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.footer-right{
  color: var(--muted);
  font-weight: 700;
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}
.dot{ opacity: 0.6; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .cap-grid{ grid-template-columns: 1fr; }
  .contact-card{ grid-template-columns: 1fr; }
  .status-row{ grid-template-columns: 1fr; }
  .nav{ display:none; } /* keep header clean on small screens */
  .brand{ min-width: auto; }
}
