:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3f9;
  --text: #172033;
  --muted: #667085;
  --border: #d8e0ec;
  --accent: #2854c5;
  --accent-strong: #193b91;
  --success: #1f7a4d;
  --shadow: 0 18px 45px rgba(23, 32, 51, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #edf3fb 0%, var(--bg) 34%, #ffffff 100%);
  line-height: 1.55;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 64px;
}

.hero,
.compact-header {
  padding: 36px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  gap: 20px;
  margin-bottom: 34px;
}

.compact-header {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0;
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
}

h2 {
  font-size: 24px;
  line-height: 1.15;
}

h3 {
  font-size: 18px;
  line-height: 1.25;
}

.lede {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: var(--accent-strong);
}

.section-grid {
  display: grid;
  gap: 28px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.report-card {
  display: grid;
  gap: 10px;
  min-height: 166px;
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.report-card p {
  color: var(--muted);
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.empty-state {
  padding: 18px;
  border: 1px dashed var(--border);
  color: var(--muted);
  background: var(--surface);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface-soft);
  font-size: 13px;
  text-transform: uppercase;
}

.search-box {
  display: grid;
  gap: 8px;
  max-width: 520px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.search-box input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border);
  font: inherit;
  color: var(--text);
}

.footer {
  width: min(1120px, calc(100% - 40px));
  margin: -40px auto 34px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 24px, 1120px);
    padding-top: 18px;
  }

  .hero,
  .compact-header {
    padding: 22px;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }
}
