
:root{
  --navy:#071f4a;
  --blue:#0b43a0;
  --muted:#7d8ba8;
  --line:#e8edf3;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:#fff;color:var(--navy);font-family:Arial,Helvetica,sans-serif;overflow-x:hidden}
a{text-decoration:none;color:inherit}

#stage{
  width:100%;
  position:relative;
  overflow:hidden;
}
#artboard{
  width:1024px;
  transform-origin:top left;
  background:#fff;
}

/* Fixed desktop artboard header — every element scales together with #artboard */
.header{
  width:1024px;
  height:70px;
  display:grid;
  grid-template-columns:245px 1fr 210px;
  align-items:center;
  padding:0 64px;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.brand{
  display:flex;
  flex-direction:column;
  line-height:1;
}
.brand strong{
  font-size:26px;
  letter-spacing:-1.3px;
  color:var(--blue);
}
.brand strong span{color:var(--muted)}
.brand small{
  font-size:10px;
  margin-top:4px;
  color:#17375f;
}
.nav{
  display:flex;
  justify-content:center;
  gap:32px;
  font-size:12px;
}
.nav a{
  padding:25px 0 10px;
  position:relative;
}
.nav .active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:2px;
  background:#102a54;
}
.actions{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:16px;
  font-size:11px;
}
.contact-btn{
  border:1px solid #7488a3;
  border-radius:24px;
  padding:10px 16px;
}

/* Approved design slices: no crop, no cover, no independent scaling */
.slice{
  width:1024px;
  position:relative;
  overflow:hidden;
}
.slice img{
  display:block;
  width:1024px;
  height:auto;
}
.hero{height:478px}
.pillars{height:272px}
.approach{height:316px}

.hotspot{
  position:absolute;
  display:block;
  z-index:5;
  background:transparent;
}
.hero-learn{left:64px;top:358px;width:160px;height:45px}
.hero-approach{left:248px;top:358px;width:120px;height:45px}
.pillar-one{left:55px;top:214px;width:115px;height:35px}
.pillar-two{left:384px;top:214px;width:115px;height:35px}
.pillar-three{left:727px;top:214px;width:115px;height:35px}
.approach-learn{left:62px;top:250px;width:150px;height:45px}

.footer{
  width:1024px;
  height:122px;
  padding:14px 64px 18px;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-bottom:11px;
  border-bottom:1px solid #e3e9ef;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:11px;
}
.footer-brand strong{
  font-size:24px;
  color:var(--blue);
}
.footer-brand span{
  width:1px;
  height:21px;
  background:#6b7f9a;
}
.footer-brand small{
  font-size:10px;
  color:#617797;
}
.footer nav{
  display:flex;
  gap:20px;
  align-items:center;
  font-size:9px;
  color:#506987;
}
.footer nav b{color:#223cff}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  padding-top:10px;
  font-size:9px;
  color:#7487a1;
}
.footer-bottom div{
  display:flex;
  gap:9px;
}
.anchor{height:0}
