
:root{
  --blue:#2A72B5; --green:#57A773; --orange:#F28C28; --text:#333; --bg:#F5F5F5;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text); background:radial-gradient(1200px 600px at 20% 0%, #fff 0, var(--bg) 60%);
}
.wrap{min-height:100vh; display:grid; place-items:center; padding:32px}
.card{
  background:#fff; border-radius:24px; box-shadow:0 10px 30px rgba(0,0,0,.08);
  padding:40px 28px; max-width:720px; text-align:center;
}
.logo{width:88px; height:auto; margin:0 auto 10px}
h1{margin:0; font-size:clamp(28px,4vw,40px); font-weight:800; letter-spacing:.2px}
.tag{margin:6px 0 14px; font-weight:600; color:var(--blue); font-size:clamp(16px,2.5vw,20px)}
.sub{margin:0 auto 22px; color:#4a4a4a; line-height:1.6; font-size:clamp(15px,2.2vw,18px); max-width:56ch}
.cta-row{display:flex; gap:12px; justify-content:center; flex-wrap:wrap}
.btn{
  background:var(--blue); color:#fff; text-decoration:none; padding:12px 18px; border-radius:12px; font-weight:600;
  transition:transform .05s ease, box-shadow .2s ease; box-shadow:0 6px 16px rgba(42,114,181,.25)
}
.btn:hover{transform:translateY(-1px); box-shadow:0 8px 22px rgba(42,114,181,.3)}
.meta{margin:18px 0 0; font-size:12px; color:#777}
