:root {
  --bg: #f4f7fb;
  --panel: #ffffff;
  --panel-soft: #eef4ff;
  --text: #1b2430;
  --muted: #5f6b7a;
  --accent: #2155cd;
  --accent-dark: #173a8a;
  --border: #d8e0eb;
  --shadow: 0 12px 32px rgba(21, 37, 66, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
.container { width: min(1100px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 4rem 0; }
.section--alt { background: linear-gradient(180deg, #edf3ff 0%, #f7faff 100%); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
}
.hero {
  background: linear-gradient(135deg, #12264f 0%, #1d4bb8 100%);
  color: white;
  padding: 4.5rem 0;
}
.hero__content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1.1;
  margin: 0.3rem 0 1rem;
}
.lead { font-size: 1.1rem; max-width: 62ch; color: rgba(255,255,255,0.92); }
.hero__panel {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: white;
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.button--secondary {
  background: var(--panel-soft);
  color: var(--accent-dark);
}
.section__heading { margin-bottom: 1.5rem; }
.section__heading h2 { margin: 0.2rem 0 0; font-size: 2rem; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.metric-card__label {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 0.3rem;
}
.metric-card__value {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 0;
}
.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}
.card__heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2bc866;
  box-shadow: 0 0 0 6px rgba(43, 200, 102, 0.15);
}
.details-list { margin: 1rem 0 0; }
.details-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}
.details-list div:last-child { border-bottom: none; }
.details-list dt { color: var(--muted); }
.details-list dd { margin: 0; font-weight: 700; text-align: right; }
canvas {
  width: 100%;
  height: auto;
  background: #fcfdff;
  border: 1px solid var(--border);
  border-radius: 16px;
}
.table-card { overflow: hidden; }
.table-wrapper { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 0.85rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th { color: var(--muted); font-size: 0.95rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.team-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: var(--panel-soft);
}
.team-card__role { color: var(--accent); font-weight: 700; margin-top: -0.4rem; }
.footer {
  padding: 1.5rem 0 3rem;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero__content,
  .grid-two,
  .cards,
  .team-grid {
    grid-template-columns: 1fr;
  }
}
