/* ── Hero ──────────────────────────────────────────────────── */
.home-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
 
.home-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
 
.home-title {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  white-space: nowrap;
  margin-bottom: 10px;
}
 
.home-subtitle {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 0;
}
 
/* ── Stat strip ────────────────────────────────────────────── */
.home-stats {
  display: flex;
  width: fit-content;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  margin-bottom: 32px;
}
 
.home-stat {
  padding: 12px 24px;
  border-right: 1px solid var(--border);
}
 
.home-stat:last-child {
  border-right: none;
}
 
.home-stat-val {
  display: block;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
}
 
.home-stat-lbl {
  display: block;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 3px;
  letter-spacing: 0.03em;
}
 
/* ── Cards ─────────────────────────────────────────────────── */
.home-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
 
.home-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, border-left-color 0.15s;
}
 
.home-card:hover {
  box-shadow: 0 2px 10px rgba(44, 95, 138, 0.09);
  border-left-color: #1a3f5c;
  text-decoration: none;
  color: inherit;
}
 
.home-card-icon {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 14px;
}
 
.home-card-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
 
.home-card-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
 
.home-card-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.home-card-arrow {
  color: var(--accent);
  font-size: 12px;
}
 
/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .home-title { white-space: normal; font-size: 22px; }
  .home-cards { grid-template-columns: repeat(2, 1fr); }
  .home-stats { flex-wrap: wrap; }
}
 
@media (max-width: 540px) {
  .home-cards { grid-template-columns: 1fr; }
}