/* Main stylesheet — clean, fast, mobile-first */

:root{
  --bg: #f7f7f8;
  --surface: #ffffff;
  --text: #1f2328;
  --muted: #5b636b;
  --border: #e6e8eb;
  --brand: #0a58ca;
  --brand-2: #084298;
  --radius: 14px;
  --shadow: 0 6px 18px rgba(0,0,0,.06);
}

*{ box-sizing:border-box; margin:0; padding:0; }

body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a{ color: var(--brand); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
}

.site-header{
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 18px;
  max-width: 980px;
  margin: 0 auto;
}

.brand{
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--text);
}

.brand span{
  color: var(--brand);
}

.nav-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  font-weight: 650;
  color: var(--text);
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover{
  background: #eef4ff;
  text-decoration:none;
}

.hero{
  padding: 22px 0 10px;
}
.hero h1{
  font-size: 1.6rem;
  line-height: 1.2;
}
.hero p{
  margin-top: 10px;
  color: var(--muted);
  max-width: 70ch;
}

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

@media (min-width: 720px){
  .grid{ grid-template-columns: repeat(3, 1fr); }
  .hero h1{ font-size: 2rem; }
}

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.card h2{
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.card p{
  color: var(--muted);
  margin-bottom: 10px;
}

.card ul{
  margin-left: 18px;
  color: var(--text);
}

.badge{
  display:inline-block;
  font-size: .82rem;
  font-weight: 650;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--brand-2);
  border: 1px solid #d7e6ff;
}

.section-title{
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.notice{
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
  padding: 12px 14px;
  border-radius: 12px;
  margin-top: 16px;
}

.site-footer{
  margin-top: 38px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  color: var(--muted);
  font-size: .92rem;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 10px;
}
.link-list {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.link-list li {
  margin-bottom: 0.5rem;
}

.link-list a {
  text-decoration: none;
}

.link-list a:hover {
  text-decoration: underline;
}
.directory-list { margin-top: 1rem; }
.directory-item { padding: 0.75rem 0; border-top: 1px solid rgba(0,0,0,0.08); }
.directory-item h3 { margin: 0 0 0.25rem; }
.eyebrow {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.6);
  letter-spacing: 0.2px;
}
