:root{
  --blue:#24556b;
  --blue-dark:#163847;
  --blue-soft:#e8f3f7;
  --red:#e91f3f;
  --teal:#0089a7;
  --ink:#10212b;
  --muted:#647482;
  --cream:#fff8ee;
  --card:#ffffff;
  --line:rgba(16,33,43,.11);
  --shadow:0 22px 70px rgba(16,33,43,.14);
  --radius:28px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 12% 5%, rgba(233,31,63,.16), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(0,137,167,.22), transparent 34%),
    linear-gradient(180deg,#fffaf3 0%,#f5fbfd 48%,#ffffff 100%);
  min-height:100vh;
}
a{color:inherit;text-decoration:none}
.shell{width:min(1120px,calc(100% - 32px));margin:0 auto}
.topbar{
  position:sticky;top:0;z-index:20;
  backdrop-filter:blur(18px);
  background:rgba(255,250,243,.80);
  border-bottom:1px solid rgba(16,33,43,.08);
}
.nav{min-height:76px;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:12px 0}
.brand{display:flex;align-items:center;gap:13px;font-weight:900;letter-spacing:-.04em;font-size:1.13rem}
.brand img{width:48px;height:48px;object-fit:contain;border-radius:14px;background:white;box-shadow:0 10px 30px rgba(36,85,107,.16)}
.nav-links{display:flex;align-items:center;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.nav-links a{font-weight:800;font-size:.9rem;color:#28495a;padding:10px 13px;border-radius:999px}
.nav-links a:hover,.nav-links a.active{background:white;box-shadow:0 12px 28px rgba(16,33,43,.08)}
.page{padding:54px 0 64px}
.hero-card{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.92);
  border-radius:36px;
  padding:36px;
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-card:before{
  content:"";
  position:absolute;
  right:-90px;
  top:-95px;
  width:260px;
  height:260px;
  border-radius:999px;
  background:rgba(233,31,63,.11);
}
.content{position:relative;z-index:1}
.logo-row{display:flex;align-items:center;gap:16px;margin-bottom:22px}
.logo-row img{width:72px;height:72px;object-fit:contain;border-radius:18px;background:white;box-shadow:0 10px 30px rgba(36,85,107,.14)}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border:1px solid rgba(233,31,63,.22);
  background:rgba(255,255,255,.78);border-radius:999px;
  color:#9f1730;font-weight:900;font-size:.78rem;
  text-transform:uppercase;letter-spacing:.08em;
}
h1{
  font-size:clamp(2.5rem,6vw,5.4rem);
  line-height:.92;
  letter-spacing:-.075em;
  margin:16px 0 18px;
  color:var(--blue-dark);
}
h2{font-size:clamp(1.7rem,3vw,2.5rem);letter-spacing:-.055em;margin:34px 0 12px;color:var(--blue-dark)}
h3{font-size:1.25rem;letter-spacing:-.035em;margin:0 0 8px;color:var(--blue-dark)}
p,li{font-size:1rem;line-height:1.72;color:#435967}
.lead{font-size:1.17rem;line-height:1.72;max-width:820px;color:#405766;margin:0 0 24px}
.actions{display:flex;gap:12px;flex-wrap:wrap;margin:28px 0 0}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  padding:14px 18px;border-radius:16px;font-weight:900;
  border:1px solid transparent;box-shadow:0 18px 35px rgba(16,33,43,.12);
  transition:.18s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn.primary{background:var(--red);color:white}
.btn.secondary{background:var(--blue-dark);color:white}
.btn.ghost{background:white;border-color:var(--line);color:var(--blue-dark)}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:24px}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:0 16px 45px rgba(16,33,43,.07);
}
.card .icon{
  width:44px;height:44px;border-radius:15px;
  display:grid;place-items:center;
  background:var(--blue-soft);
  color:var(--blue-dark);
  font-weight:950;
  margin-bottom:14px;
}
.notice{
  margin-top:24px;
  background:linear-gradient(135deg,var(--blue-dark),var(--blue));
  color:white;
  border-radius:26px;
  padding:24px;
  box-shadow:0 18px 50px rgba(16,33,43,.13);
}
.notice p,.notice li{color:rgba(255,255,255,.82)}
.notice h2,.notice h3{color:white;margin-top:0}
.form{
  display:grid;
  gap:14px;
  margin-top:22px;
}
label{font-weight:900;color:var(--blue-dark)}
input,textarea{
  width:100%;
  padding:14px 15px;
  border-radius:15px;
  border:1px solid rgba(16,33,43,.16);
  font:inherit;
  background:white;
}
textarea{min-height:125px;resize:vertical}
button{
  justify-self:start;
  cursor:pointer;
  border:0;
  background:var(--red);
  color:white;
  font-weight:900;
  padding:14px 18px;
  border-radius:16px;
  box-shadow:0 18px 35px rgba(16,33,43,.12);
}
.footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  color:#6f7f8b;
  font-weight:700;
  font-size:.92rem;
}
.footer-inner{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap}
.footer a{color:#28495a;font-weight:900;margin-right:14px}
.list-clean{padding-left:22px}
.small{font-size:.9rem;color:var(--muted)}
@media(max-width:850px){
  .nav-links{display:none}
  .hero-card{padding:26px;border-radius:28px}
  .grid{grid-template-columns:1fr}
  h1{font-size:3.15rem}
}
