:root{
  --blue:#1F4E78;
  --blue2:#2B6399;
  --red:#C00000;
  --ink:#1b1f23;
  --muted:#5f6b7a;
  --bg:#ffffff;
  --panel:#f6f8fb;
  --border:#e5e9f0;
  --radius:14px;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height:1.55;
  color:var(--ink);
  background:var(--bg);
}

a{color:var(--blue); text-decoration:none;}
a:hover{text-decoration:underline;}
small{color:var(--muted);}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:12px; top:12px; width:auto; height:auto; padding:10px 12px; background:#fff;
  border:2px solid var(--blue); border-radius:10px; z-index:9999;
}

header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,0.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  max-width:1100px;
  margin:0 auto;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:240px;
}
.brand img{
  width:54px;
  height:auto;
}
.brand .title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand .title strong{font-size:1.05rem;}
.brand .title span{font-size:0.9rem; color:var(--muted);}

.nav a{font-weight:600;}
.nav-links{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.badge{
  display:inline-block;
  font-size:0.78rem;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--panel);
  color:var(--muted);
}

main{display:block;}
.container{
  max-width:1100px;
  margin:0 auto;
  padding:28px 18px 72px;
}

.hero{
  padding:34px 20px;
  border-radius:var(--radius);
  background:linear-gradient(135deg, rgba(31,78,120,0.10) 0%, rgba(43,99,153,0.12) 60%, rgba(192,0,0,0.06) 100%);
  border:1px solid var(--border);
}
.hero h1{
  margin:0 0 10px;
  font-size:2.1rem;
  letter-spacing:-0.02em;
}
.hero p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:1.05rem;
}
.hero .cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}

.btn{
  display:inline-block;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--blue);
  font-weight:700;
}
.btn.primary{
  background:var(--blue);
  color:#fff;
  border-color:var(--blue);
}
.btn.secondary{
  background:var(--panel);
  color:var(--blue);
}
.btn:hover{filter:brightness(0.98); text-decoration:none;}

.section{
  margin-top:28px;
}
.section h2{
  font-size:1.55rem;
  margin:0 0 12px;
}
.lead{
  color:var(--muted);
  max-width:75ch;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
}
.card h3{
  margin:0 0 8px;
  font-size:1.1rem;
}
.card p{margin:0 0 10px; color:var(--muted);}
.card ul{margin:8px 0 0 18px; color:var(--muted);}

.stat{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.stat .num{
  font-size:1.8rem;
  font-weight:800;
  color:var(--red);
}
.stat .label{color:var(--muted);}

.kicker{
  font-weight:800;
  color:var(--blue);
  letter-spacing:0.02em;
  text-transform:uppercase;
  font-size:0.82rem;
}

.sources{
  margin-top:10px;
  font-size:0.9rem;
  color:var(--muted);
}
.sources a{font-weight:600;}

hr.sep{
  border:0;
  border-top:1px solid var(--border);
  margin:26px 0;
}

footer{
  border-top:1px solid var(--border);
  background:#fff;
}
.footer-inner{
  max-width:1100px;
  margin:0 auto;
  padding:18px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:space-between;
  align-items:flex-start;
}
.footer-inner .col{
  min-width:240px;
}
.footer-inner p{margin:6px 0; color:var(--muted);}

.notice{
  background:#fff3cd;
  border:1px solid #ffe69c;
  border-left:5px solid #ffc107;
  border-radius:var(--radius);
  padding:14px;
  color:#6b5a00;
}
.notice strong{color:#6b5a00;}
.note{
  background:#e7f1ff;
  border:1px solid #cfe2ff;
  border-left:5px solid #0d6efd;
  border-radius:var(--radius);
  padding:14px;
  color:#0a3d6c;
}

.form{
  max-width:680px;
}
label{display:block; font-weight:700; margin:14px 0 6px;}
input, textarea{
  width:100%;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  font-size:1rem;
}
textarea{min-height:140px; resize:vertical;}

@media (max-width: 740px){
  .brand{min-width:auto;}
  .hero h1{font-size:1.7rem;}
}
