:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --panel: #ffffff;
  --text: #101828;
  --muted: #667085;
  --border: #d0d5dd;
  --accent: #155eef;
  --accent-dark: #004eeb;
  --shadow: 0 24px 60px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(21, 94, 239, 0.14), transparent 32rem),
    var(--bg);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 40px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: stretch;
}

.hero__content,
.status-card,
.card,
.chart-card,
.chart-section__header {
  border: 1px solid rgba(208, 213, 221, 0.85);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.hero__content {
  padding: clamp(36px, 7vw, 72px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero__text {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 14px 28px rgba(21, 94, 239, 0.22);
}

.button--secondary {
  border: 1px solid var(--border);
  background: #ffffff;
}

.status-card {
  padding: 30px;
}

.status-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #027a48;
  background: #ecfdf3;
  font-size: 0.86rem;
  font-weight: 800;
}

.status-card__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.status-card h2,
.card h2 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.status-card p,
.card p {
  color: var(--muted);
  line-height: 1.65;
}

.status-card dl {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.status-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.status-card dt {
  color: var(--muted);
}

.status-card dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.chart-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 20px;
  margin-top: 20px;
  scroll-margin-top: 24px;
}

.chart-section__header {
  padding: 30px;
}

.chart-section__header h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.chart-section__header p:not(.eyebrow),
.chart-note {
  color: var(--muted);
  line-height: 1.65;
}

.chart-card {
  padding: 26px;
}

.chart-card__summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.chart-card__summary div {
  flex: 1;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
}

.summary-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.chart-card__summary strong {
  font-size: 1.45rem;
}

canvas {
  display: block;
  width: 100%;
  height: auto;
}

.chart-note {
  margin: 16px 0 0;
  font-size: 0.9rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.card {
  padding: 26px;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .page-shell {
    padding-top: 32px;
  }

  .hero,
  .cards,
  .chart-section {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .status-card,
  .card,
  .chart-card,
  .chart-section__header {
    border-radius: 22px;
  }
}

@media (max-width: 520px) {
  .chart-card__summary {
    flex-direction: column;
  }
}
