:root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
  --bg: #071016;
  --panel: #0d1b24;
  --panel-2: #112631;
  --text: #f3f7f8;
  --muted: #a8b6bd;
  --line: #26404c;
  --accent: #9edbe7;
  --warning: #ffd18a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(73, 150, 174, .18), transparent 32rem),
    var(--bg);
  color: var(--text);
}

.shell {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 42px 0 48px;
}

.hero { padding: 20px 0 30px; }

.eyebrow,
.section-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
}

h1 {
  margin: 0;
  max-width: 12em;
  font-size: clamp(2rem, 9vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.04em;
}

h2 {
  margin: 0;
  font-size: 1.2rem;
}

.lead {
  max-width: 38rem;
  margin: 18px 0;
  color: var(--muted);
  line-height: 1.8;
}

.status {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--warning);
  font-size: .82rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.panel,
.notice {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 27, 36, .86);
}

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

select {
  width: 100%;
  min-height: 44px;
  padding: 0 36px 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-2);
  color: var(--text);
  font: inherit;
}

.section-head {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin: 0 0 14px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.card {
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
}

.card .date {
  margin: 0 0 18px;
  font-size: 1.45rem;
  font-weight: 800;
}

.metric {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.metric span { color: var(--muted); }
.metric strong { text-align: right; }

.pending {
  display: inline-block;
  margin-top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 209, 138, .09);
  color: var(--warning);
  font-size: .78rem;
  font-weight: 700;
}

.notice {
  margin-top: 28px;
}

.notice p,
.muted,
footer {
  color: var(--muted);
}

.notice p {
  margin-bottom: 0;
  line-height: 1.75;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  font-size: .78rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 580px) {
  .shell { width: min(100% - 24px, 760px); padding-top: 20px; }
  .panel { align-items: stretch; flex-direction: column; }
  .cards { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  footer { flex-direction: column; gap: 4px; }
}
