
:root{
  --blue:#193260;
  --gray:#909BA5;
  --yellow:#FDC41F;
  --text:#1f2937;
  --muted:#6b7280;
  --bg:#ffffff;
  --line:#e5e7eb;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans';
  color:var(--text);
  background:var(--bg);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:8%;
}
.wrap{
  width:100%;
  max-width:820px;
  padding:24px;
  text-align:center;
}
.brand{
  display:block;
  margin:0 auto 12px;
  max-width:260px;
  height:auto;
}
.subtitle{
  font-size:18px;
  color:var(--gray);
  margin:0 0 24px;
  font-weight:500;
}
h1{
  font-size:clamp(24px, 2.8vw, 32px);
  margin:0;
  font-weight:800;
  letter-spacing:.2px;
}
.lead{
  font-size:clamp(16px, 2.2vw, 18px);
  color:var(--muted);
  margin:12px 0 24px;
}
.hr{
  height:1px;
  background:linear-gradient(90deg, transparent, var(--line), transparent);
  margin:20px 0 28px;
  border:0;
}
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:var(--yellow);
  color:var(--blue);
  border-radius:12px;
  padding:12px 22px;
  font-weight:700;
  text-decoration:none;
}
.cta:hover{ filter:brightness(0.92); }
.footer{
  margin-top:28px;
  font-size:14px;
  color:var(--muted);
}
