:root {
  color-scheme: dark;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background: #111418;
  color: #edf2f7;
}

body {
  margin: 0;
  background: #111418;
}

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

header {
  margin-bottom: 28px;
}

header p {
  margin: 0 0 8px;
  color: #8fd3ff;
  font-weight: 700;
}

h1, h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
}

h2 {
  font-size: 18px;
  margin-bottom: 16px;
}

#updated {
  display: block;
  margin-top: 10px;
  color: #aeb8c4;
}

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

article, section {
  border: 1px solid #2d3744;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 16px;
  background: #171c22;
}

dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  margin: 0;
}

dt {
  color: #aeb8c4;
}

dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px solid #242b35;
}

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

.asset {
  border: 1px solid #2d3744;
  border-radius: 8px;
  padding: 14px;
  background: #111820;
}

.asset strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.asset p, .decision p {
  margin: 6px 0;
  color: #cbd5df;
}

.muted {
  color: #8f9aa7;
}

@media (max-width: 820px) {
  .grid,
  .watchlist {
    grid-template-columns: 1fr;
  }
}
