/* style.css */
:root{
  --blue:#285582;
  --blue-dark:#1f4668;
  --text:#0f172a;
  --muted:#526070;
  --bg:#ffffff;
  --bg-alt:#f5f7fb;
  --card:#ffffff;
  --border:#dbe3ee;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 16px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{ color:var(--blue); text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 18px;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:18px;
  top:12px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  z-index:1000;
}

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,0.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.brand-link{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:0.2px;
  color:var(--text);
}

.brand-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:10px;
  background:var(--blue);
  color:#fff;
  font-weight:900;
  font-size:14px;
}

.brand-name{ font-size:16px; }
.brand-tag{ font-size:12px; color:var(--muted); }

.nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
}

.nav-link{
  padding:8px 10px;
  border-radius:10px;
  color:var(--text);
  font-weight:650;
  font-size:14px;
}

.nav-link:hover{
  background:var(--bg-alt);
  text-decoration:none;
}

.hero{
  background:
    radial-gradient(900px 280px at 20% 0%, rgba(40,85,130,0.16), transparent 60%),
    radial-gradient(900px 280px at 90% 20%, rgba(40,85,130,0.10), transparent 55%);
  border-bottom:1px solid var(--border);
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap:22px;
  padding:34px 0 28px;
  align-items:start;
}

.hero h1{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.15;
  letter-spacing:-0.2px;
}

.lead{
  margin:0 0 16px;
  font-size:16px;
  color:var(--muted);
  max-width: 62ch;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 10px 0 10px;
}

.trust-line{
  margin:10px 0 0;
  color:var(--muted);
  font-size:13px;
}

.hero-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
}

.hero-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(40,85,130,0.10);
  color:var(--blue-dark);
  font-weight:800;
  font-size:12px;
}

.updated-date{
  font-size:12px;
  color:var(--muted);
  font-weight:650;
}

.hero-card-text{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.section{
  padding:32px 0;
}

.section-alt{
  background:var(--bg-alt);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.section-head h2{
  margin:0 0 8px;
  font-size:22px;
}

.muted{ color:var(--muted); }

.category{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.category:first-of-type{
  border-top: none;
  padding-top: 0;
}

.category-head h3{
  margin:0 0 6px;
  font-size:18px;
}

.category-head p{
  margin:0 0 12px;
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

.panel{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.panel-head{
  padding:12px 14px;
  border-bottom:1px solid var(--border);
  background:#fbfcff;
}

.panel-head h4{
  margin:0;
  font-size:14px;
  letter-spacing:0.1px;
}

.empty{
  padding:14px;
}

.empty-title{
  margin:0 0 8px;
  font-weight:800;
  font-size:14px;
}

.empty-text{
  margin:0;
  color:var(--muted);
  font-size:13px;
}

.contact-box{
  margin-top:12px;
  padding:14px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  display:grid;
  gap:8px;
  max-width:520px;
}

.list{
  margin:10px 0 0;
  padding-left:18px;
}

.site-footer{
  border-top:1px solid var(--border);
  background:#fff;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:18px 0;
  flex-wrap:wrap;
}

.footer-brand{
  font-weight:900;
  letter-spacing:0.2px;
}

.footer-note{
  max-width:72ch;
  font-size:12px;
  margin-top:6px;
}

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .grid-2{ grid-template-columns: 1fr; }
  .header-inner{ flex-direction:column; align-items:flex-start; }
  .nav{ justify-content:flex-start; }
  .hero h1{ font-size:28px; }
}
