:root{
  --dark:#07192a;
  --dark2:#051522;
  --text:#102233;
  --muted:#617689;
  --blue:#19a7ff;
  --blue2:#49c8ff;
  --orange:#ff9d1a;
  --line:#d5e2ea;
  --max:1180px;
}
*{box-sizing:border-box}
html,body{margin:0;min-height:100%}
body{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 82% 18%,rgba(25,167,255,.08),transparent 28%),
    linear-gradient(180deg,#f7fafc 0%,#eef4f8 55%,#e7f0f5 100%);
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

.topbar{
  min-height:84px;
  display:flex;
  align-items:center;
  padding:14px max(22px,calc((100vw - var(--max))/2));
  background:rgba(7,25,42,.96);
  border-bottom:1px solid rgba(255,255,255,.07);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.topbar .brand img{
  height:68px;
  width:auto;
  max-width:440px;
  object-fit:contain;
}

.construction{
  flex:1;
  width:100%;
  display:grid;
  place-items:center;
  padding:64px 24px;
}
.construction-card{
  width:min(820px,100%);
  text-align:center;
  padding:24px 28px 36px;
}
.construction-graphic{
  width:min(520px,92%);
  margin:0 auto 18px;
  filter:drop-shadow(0 20px 30px rgba(34,70,96,.12));
}
.construction-graphic svg{display:block;width:100%;height:auto}
.eyebrow{
  display:inline-block;
  margin-bottom:12px;
  color:var(--blue);
  font-size:13px;
  font-weight:850;
  letter-spacing:.18em;
}
h1{
  margin:0;
  font-size:clamp(44px,7vw,76px);
  line-height:1.02;
  letter-spacing:-.045em;
}
.construction-card p{
  max-width:620px;
  margin:22px auto 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

footer{
  background:var(--dark2);
  border-top:1px solid rgba(83,145,187,.16);
  color:#d9e4ed;
  padding:28px 24px 24px;
}
.footer-main,.footer-links-section{
  max-width:var(--max);
  margin:auto;
}
.footer-main{display:flex;align-items:center}
.footer-brand-row{
  display:flex;
  align-items:center;
  gap:14px;
}
.footer-logo-link{
  width:82px;
  height:82px;
  flex:0 0 82px;
}
.footer-logo{
  width:82px;
  height:82px;
  object-fit:contain;
}
.footer-brand-text{
  color:#9db0c3;
  font-size:14px;
}
.footer-links-section{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(83,145,187,.12);
}
.footer-links-section h2{
  margin:0 0 10px;
  font-size:13px;
  color:#8da5b8;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.footer-links-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:9px;
  color:#9db0c3;
  font-size:14px;
}
.footer-links-row a{color:#c8d4df}
.footer-links-row a:hover{color:#fff}

@media(max-width:600px){
  .topbar{min-height:74px;padding:10px 16px}
  .topbar .brand img{height:58px;max-width:310px}
  .construction{padding:38px 18px}
  .construction-card{padding:10px 0 26px}
  .construction-card p{font-size:16px}
  .footer-brand-row{align-items:flex-start;flex-direction:column;gap:8px}
  .footer-logo-link,.footer-logo{width:72px;height:72px}
}