:root{
  --navy:#061b3a;
  --navy2:#082852;
  --blue:#075fca;
  --light:#f7f9fc;
  --text:#172033;
  --muted:#657084;
  --line:#dce4ee;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
}
a{color:inherit}
.hero{
  min-height:72vh;
  background:
    radial-gradient(circle at 78% 38%, rgba(7,95,202,.18), transparent 22rem),
    linear-gradient(135deg, var(--navy), #041125 70%);
  color:white;
  overflow:hidden;
  position:relative;
}
.hero:after{
  content:"";
  position:absolute;
  left:-8%;
  right:-8%;
  bottom:-90px;
  height:190px;
  background:white;
  border-radius:50% 50% 0 0/55% 55% 0 0;
  transform:rotate(-2deg);
}
.nav{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1120px;
  margin:0 auto;
  padding:28px 28px;
}
.brand{display:flex;gap:14px;align-items:center;letter-spacing:.08em}
.brand strong{display:block;font-size:1.35rem;letter-spacing:.28em}
.brand small{display:block;color:#cbd6e6;letter-spacing:.18em;margin-top:3px}
.logo-mark{
  width:58px;height:42px;position:relative;
}
.logo-mark span{
  position:absolute;border-radius:999px;background:#fff;opacity:.95;
}
.logo-mark span:nth-child(1){width:16px;height:16px;left:21px;top:0;background:#f1f5fb}
.logo-mark span:nth-child(2){width:14px;height:14px;left:0;top:20px;background:#0b67d5}
.logo-mark span:nth-child(3){width:14px;height:14px;right:0;top:20px;background:#9aa3ad}
.logo-mark:after{
  content:"";position:absolute;left:5px;right:5px;top:21px;height:18px;
  border-top:9px solid #f1f5fb;border-radius:50%;
}
.nav-contact{
  text-decoration:none;
  border:1px solid rgba(255,255,255,.45);
  padding:10px 18px;border-radius:999px;color:white;
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:980px;
  margin:88px auto 0;
  padding:0 28px 120px;
}
.eyebrow{
  color:#66a9ff;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:700;
  font-size:.82rem;
}
h1{
  font-size:clamp(2.4rem, 6vw, 5.6rem);
  line-height:.98;
  letter-spacing:-.05em;
  max-width:900px;
  margin:18px 0 22px;
}
.lead{
  font-size:clamp(1.1rem,2vw,1.45rem);
  color:#dce8f8;
  max-width:740px;
  line-height:1.55;
}
.actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:8px;
  background:var(--blue);
  color:white;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 12px 26px rgba(7,95,202,.25);
}
.button.secondary{
  background:transparent;
  border:1px solid rgba(255,255,255,.35);
  box-shadow:none;
}
.section{
  max-width:1120px;
  margin:0 auto;
  padding:76px 28px;
}
.intro{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:34px;
  align-items:center;
}
h2{
  font-size:clamp(1.8rem,3vw,2.8rem);
  line-height:1.1;
  margin:0 0 18px;
  color:var(--navy);
  letter-spacing:-.03em;
}
p{line-height:1.7;color:var(--muted);font-size:1.05rem}
.card, article{
  background:white;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 16px 42px rgba(9,25,50,.06);
}
.highlight{padding:28px}
.highlight strong{display:block;color:var(--navy);font-size:1.2rem;margin-bottom:10px}
.highlight span{color:var(--muted);line-height:1.6}
.domains{background:var(--light);max-width:none}
.domains > h2, .domains .grid{max-width:1120px;margin-left:auto;margin-right:auto}
.grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}
article{padding:24px;min-height:210px}
article h3{margin:0 0 12px;color:var(--navy);font-size:1.12rem}
article p{font-size:.98rem;margin:0}
.contact{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.contact p{max-width:760px}
.contact a:not(.button){color:var(--blue);font-weight:700}
footer{
  border-top:1px solid var(--line);
  padding:28px;
  color:var(--muted);
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
}
@media(max-width:900px){
  .intro,.contact{grid-template-columns:1fr;display:block}
  .grid{grid-template-columns:1fr 1fr}
  .contact .button{margin-top:18px}
}
@media(max-width:560px){
  .nav{padding:22px 18px}
  .brand strong{font-size:1.05rem}
  .brand small{font-size:.7rem}
  .nav-contact{display:none}
  .hero-content{margin-top:48px;padding-left:20px;padding-right:20px}
  .section{padding:54px 20px}
  .grid{grid-template-columns:1fr}
  footer{font-size:.9rem}
}
