
:root{
  --bg:#f7f7fb;
  --card:#ffffff;
  --text:#1f2430;
  --muted:#677084;
  --line:#e6e8ef;
  --accent:#1d4ed8;
  --accent-soft:#dbeafe;
  --tag:#f3f4f6;
  --good:#ecfdf3;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
}
.page{
  max-width:1180px;
  margin:0 auto;
  padding:24px;
}
.hero{
  background:linear-gradient(135deg,#111827,#1e3a8a);
  color:#fff;
  border-radius:24px;
  padding:28px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
  box-shadow:0 12px 30px rgba(17,24,39,.12);
}
.eyebrow{
  margin:0 0 8px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  opacity:.8;
}
h1{
  margin:0;
  font-size:34px;
  line-height:1.1;
}
.sub{
  margin:10px 0 0;
  max-width:720px;
  color:rgba(255,255,255,.82);
}
.hero-stats{
  display:flex;
  gap:14px;
}
.stat{
  min-width:120px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border-radius:18px;
  padding:16px;
}
.stat span{
  display:block;
  font-size:28px;
  font-weight:700;
}
.stat small{
  color:rgba(255,255,255,.8);
}
.filters{
  margin-top:20px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:0 8px 24px rgba(17,24,39,.05);
}
.filter-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}
label{
  display:flex;
  flex-direction:column;
  gap:8px;
}
label span,.checks-title{
  font-size:13px;
  font-weight:600;
  color:var(--muted);
}
input,select{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 14px;
  background:#fff;
  font-size:14px;
}
.checks{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  margin-top:16px;
  align-items:center;
}
.checks label{
  flex-direction:row;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:var(--text);
}
.actions{
  margin-top:18px;
}
.btn{
  border:none;
  border-radius:999px;
  padding:10px 16px;
  font-weight:600;
  cursor:pointer;
}
.btn.secondary{
  background:#eef2ff;
  color:#3730a3;
}
.helper{
  margin:14px 0 0;
  color:var(--muted);
  font-size:13px;
}
.results{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  box-shadow:0 8px 24px rgba(17,24,39,.05);
}
.card-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}
.bank{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
  margin:0 0 6px;
}
.card h3{
  margin:0;
  font-size:20px;
  line-height:1.2;
}
.tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:12px;
}
.tag{
  background:var(--tag);
  color:#374151;
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  font-weight:600;
}
.tag.good{
  background:var(--good);
  color:#166534;
}
.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px 14px;
  margin-top:16px;
}
.meta{
  background:#fafafa;
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
}
.meta small{
  display:block;
  color:var(--muted);
  margin-bottom:4px;
}
.meta strong{
  font-size:14px;
}
.access{
  margin-top:16px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.access-pill{
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:7px 10px;
  font-size:12px;
}
.empty{
  grid-column:1/-1;
  background:var(--card);
  border:1px dashed var(--line);
  border-radius:22px;
  padding:28px;
  text-align:center;
  color:var(--muted);
}
@media (max-width: 980px){
  .filter-grid{grid-template-columns:repeat(2,1fr)}
  .results{grid-template-columns:1fr}
  .hero{flex-direction:column}
}
@media (max-width: 640px){
  .page{padding:16px}
  .filter-grid{grid-template-columns:1fr}
  h1{font-size:28px}
  .grid{grid-template-columns:1fr}
}
