:root {
  --bg: #f7f6f3;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e4e2dc;
  --max: 860px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.header {
  margin-bottom: 3rem;
}

.header h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.section {
  margin-bottom: 2.75rem;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.body-text {
  margin: 0;
  font-size: 1.05rem;
  max-width: 100%;
}

.section-today {
  margin-bottom: 2.25rem;
}

.section-today h2 {
  margin-bottom: 0.65rem;
}

.overview-capital {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 900;
}

.overview-text {
  margin: 0.55rem 0 0;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--ink);
  max-width: 40em;
}

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

.row {
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}

.row:last-child {
  border-bottom: 1px solid var(--line);
}

.row-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.left {
  font-size: 20px;
  font-weight: 600;
}

.right {
  font-size: 1.05rem;
  font-weight: 500;
  white-space: nowrap;
}

.row-meta {
  margin-top: 0.3rem;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.row-move {
  margin: 0.2rem 0 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--muted);
}

.move-up {
  color: #5f7a64;
}

.move-down {
  color: #8a5c5c;
}

.move-flat {
  color: var(--muted);
}

.row-rationale {
  margin: 0.15rem 0 0;
  font-size: 0.74rem;
  line-height: 1.4;
  color: var(--muted);
  opacity: 0.82;
  max-width: 36em;
}

.muted {
  color: var(--muted);
}

.reserve-amount {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.reserve-weight {
  margin: 0.2rem 0 0;
  font-size: 1.05rem;
}

.note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 28em;
}

.footer {
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.fineprint {
  margin-top: 0.35rem !important;
  font-size: 0.75rem !important;
}

@media (min-width: 720px) {
  .page {
    padding: 3.5rem 2rem 5rem;
  }

  .section {
    margin-bottom: 3.25rem;
  }
}
