:root {
  color-scheme: light;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: #17212b;
  background: #f4f7fa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(28, 84, 120, 0.08), rgba(26, 128, 99, 0.08)),
    #f4f7fa;
}

.workspace {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid #d9e2ea;
}

.eyebrow {
  margin: 0 0 12px;
  color: #536579;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-size: 20px;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-top: 18px;
  color: #425266;
  font-size: 20px;
  line-height: 1.5;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid #bdd8cb;
  border-radius: 6px;
  background: #f7fffb;
  color: #176047;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22a06b;
  box-shadow: 0 0 0 4px rgba(34, 160, 107, 0.16);
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 28px;
}

.panel {
  min-height: 172px;
  padding: 22px;
  border: 1px solid #dbe4ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(30, 45, 64, 0.08);
}

.panel-wide {
  grid-column: span 2;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.panel-header span {
  color: #607186;
  font-size: 14px;
  font-weight: 700;
}

.chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  height: 150px;
  padding: 16px;
  border-radius: 6px;
  background: linear-gradient(180deg, #eef4f8, #f8fbfd);
}

.chart span {
  display: block;
  min-height: 24px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #2474a6, #2aa876);
}

.metric-label {
  color: #607186;
  font-size: 14px;
  font-weight: 700;
}

.metric-value {
  margin-top: 18px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.muted {
  color: #425266;
  font-size: 17px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .workspace {
    width: min(100% - 24px, 1120px);
    padding: 28px 0;
  }

  .summary {
    display: grid;
  }

  .report-grid {
    grid-template-columns: 1fr;
  }

  .panel,
  .panel-wide {
    grid-column: auto;
  }
}
