
:root {
  --ink: #1c1812;
  --paper: #e7dcc6;
  --carbon: #0a0907;
  --panel: #12100c;
  --rule: #8f7f63;
  --tape: #3fa37a;
  --pin: #d45a32;
  --mute: #8a7d68;
  --card: #efe6d4;
  --hair: rgba(231,220,198,0.14);
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--carbon); color: var(--paper); }
body {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  opacity: .07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
a { color: inherit; }
.wrap { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; padding: 28px 22px 88px; }
.mast {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-bottom: 1px solid var(--hair); padding-bottom: 16px; gap: 16px;
}
.brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500; font-size: 44px; letter-spacing: -0.05em; line-height: .88;
}
.brand span { color: var(--pin); font-style: italic; }
.kicker { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); }
.lede {
  font-family: "Fraunces", Georgia, serif;
  font-size: 17px; font-weight: 400; max-width: 46rem; margin: 18px 0 8px;
  line-height: 1.45; color: #d8ccb4;
}
.stage {
  background: var(--panel);
  border: 1px solid var(--hair);
  padding: 18px 18px 12px;
  margin: 16px 0 22px;
}
.stage h2, .stage h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; margin: 0 0 10px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
@media (max-width: 860px) {
  .grid { grid-template-columns: 1fr; }
  .brand { font-size: 34px; }
}
.stat {
  border: 1px solid var(--hair); padding: 14px 14px 12px; min-height: 96px;
}
.stat .lbl { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); }
.stat .val { font-size: 26px; letter-spacing: -.03em; margin-top: 8px; }
.stat .sub { font-size: 12px; color: var(--mute); margin-top: 6px; }
.card {
  background: var(--card); color: var(--ink); padding: 18px;
  margin: 16px 0;
}
.card h2, .card h3 { font-family: "Fraunces", Georgia, serif; margin: 0 0 8px; }
.meta { color: var(--mute); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.num { font-size: 28px; font-weight: 500; letter-spacing: -0.03em; }
.num small { font-size: 13px; color: var(--mute); }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th, td { text-align: left; padding: 7px 0; border-bottom: 1px solid var(--hair); }
.card th, .card td { border-bottom-color: rgba(22,19,15,0.12); }
.nav { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 14px 0 4px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.nav a { text-decoration: none; border-bottom: 1px solid transparent; }
.nav a:hover { color: var(--paper); border-bottom-color: var(--pin); }
.warn, .note {
  padding: 12px 14px; margin: 12px 0; font-size: 13px; line-height: 1.45;
  border: 1px solid var(--hair); color: #d8ccb4;
}
.warn { border-color: var(--pin); }
.foot { margin-top: 48px; font-size: 11px; color: var(--mute); line-height: 1.55; max-width: 46rem; }
.tag { display: inline-block; border: 1px solid var(--pin); color: var(--pin); padding: 1px 7px; font-size: 10px; letter-spacing: 0.14em; }
.chart { width: 100%; height: auto; display: block; }
.faq { margin-top: 28px; max-width: 40rem; color: #cfc3ad; }
.faq h2 { font-family: "Fraunces", Georgia, serif; font-size: 20px; }
.faq h3 { font-size: 13px; letter-spacing: .04em; margin: 16px 0 6px; }
.faq p { margin: 0; line-height: 1.5; }
.legend { display: flex; gap: 16px; font-size: 11px; color: var(--mute); margin: 8px 0 0; }
.swatch { display: inline-block; width: 10px; height: 10px; margin-right: 6px; vertical-align: -1px; }
.bar-row { display: grid; grid-template-columns: 4.5rem 1fr 5rem; gap: 8px; align-items: center; font-size: 12px; margin: 4px 0; color: var(--ink); }
.bar { height: 10px; background: var(--tape); min-width: 2px; display: inline-block; }
.bar.put { background: var(--pin); }
