:root{
  --brand-text:#425389;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:#fff;
  color:var(--brand-text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.wrap{
  min-height:calc(100vh - 60px);
  padding:48px 20px 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:28px;
  text-align:center;
  animation:fadeIn .6s ease-out both;
}

.logo{
  max-width:min(720px, 90vw);
  height:auto;
  display:block;
  user-select:none;
}

.lead{
  max-width:820px;
  font-size:clamp(1rem, 1rem + .4vw, 1.125rem);
  line-height:1.6;
  margin:0;
}

.cta{
  display:inline-block;
  padding:14px 20px;
  border:2px solid var(--brand-text);
  color:var(--brand-text);
  text-decoration:none;
  font-weight:700;
  border-radius:999px;
  transition:transform .08s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.cta:hover{
  background:var(--brand-text);
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(66,83,137,.18);
}

.footer{
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(66,83,137,.8);
}

@keyframes fadeIn{
  from{opacity:0; transform:translateY(6px)}
  to{opacity:1; transform:translateY(0)}
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  .wrap{animation:none}
  .cta{transition:none}
}
