/* Parchment + Ink Blue · One Hundred Years */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Space+Mono:wght@400;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");

:root {
  --ink:        #1B2A4A;
  --ink-2:      #253659;
  --ink-3:      #2F4068;
  --rule:       #DDDFE4;
  --vellum:     #1B2A4A;
  --vellum-dim: #6B7B8D;
  --muted:      #9BA5AF;
  --muted-2:    #B8C0C8;
  --amber:      #1B2A4A;
  --amber-2:    #253659;
  --highlight:  #C4897A;
  --oxblood:    #C4897A;
  --moss:       #6B8F5E;
  --slate:      #1B2A4A;
  --bronze:     #C4897A;
  --tan:        #9BA5AF;

  --bg:         #FAFAFC;
  --panel:      #F2F3F6;

  --era-classic:       #8B9DC3;
  --era-hollywood:     #C48B7A;
  --era-suburban:      #7BAF8B;
  --era-individuality: #9B8BC4;
  --era-unique:        #5B9EAF;
  --era-flash:         #C4697A;
  --era-killed:        #8B95A5;
  --era-steady:        #A5ADBA;

  --serif:    "Libre Baskerville", "Iowan Old Style", Georgia, serif;
  --display:  "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --mono:     "Space Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
  font-feature-settings: "kern", "liga", "onum";
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body { min-height: 100vh; }

/* Subtle cool grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    radial-gradient(rgba(27,42,74,0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 100;
}

a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(27,42,74,0.3); }
a:hover { color: var(--highlight); border-bottom-color: var(--highlight); }

::selection { background: rgba(196,137,122,0.3); color: var(--ink); }

/* === Layout shell === */
.shell {
  max-width: 1480px;
  margin: 0 auto;
  padding: 36px 56px 96px;
  position: relative;
}

/* === Masthead === */
.masthead {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 22px;
  margin-bottom: 28px;
}
.masthead .series {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.masthead .series .sep { color: var(--muted-2); margin: 0 8px; }
.masthead h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 56px;
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.masthead h1 em { color: var(--ink); font-style: italic; font-weight: 400; }
.masthead .sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--vellum-dim);
  font-size: 19px;
  margin-top: 10px;
  max-width: 720px;
}
.masthead .meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: right;
  line-height: 1.7;
}
.masthead .meta .k { color: var(--muted); }
.masthead .meta .v { color: var(--vellum-dim); }

/* === Tab strip === */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tab {
  padding: 12px 18px 14px;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 120ms;
  user-select: none;
  display: flex; align-items: baseline; gap: 9px;
  white-space: nowrap;
}
.tab:hover { color: var(--vellum-dim); }
.tab.active { color: var(--ink); border-bottom-color: var(--ink); }
.tab .num { color: var(--muted); font-size: 9.5px; }
.tab.active .num { color: var(--ink); }

/* === Section headers === */
.section { margin-top: 44px; }
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 18px;
}
.section-head .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.section-head .rule {
  height: 1px;
  background: var(--rule);
}
.section-head .aside {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.05;
  margin: 0 0 4px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.section-lede {
  font-family: var(--serif);
  font-style: italic;
  color: var(--vellum-dim);
  font-size: 17px;
  max-width: 680px;
  margin: 0 0 22px;
}

/* === Stat row === */
.statrow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  background: var(--panel);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(27,42,74,0.06), 0 0 0 1px rgba(213,207,195,0.5);
}
.stat {
  padding: 16px 20px 18px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat .label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.stat .value {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.stat .value .unit {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-left: 4px;
  letter-spacing: 0.06em;
  vertical-align: 2px;
}
.stat .foot {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.stat .spark {
  margin-top: 8px;
  display: block;
}

/* === Hero landscape === */
.hero {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  margin-top: 28px;
}
.hero-chart {
  background: transparent;
  position: relative;
}
.hero-aside {
  font-family: var(--serif);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--vellum-dim);
}
.hero-aside p { margin: 0 0 14px; }
.hero-aside .pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  border-left: 2px solid var(--ink);
  padding-left: 14px;
  margin: 12px 0;
}
.hero-aside .cite {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* === Era ribbon === */
.ribbon {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 24px;
  background: var(--panel);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(27,42,74,0.06), 0 0 0 1px rgba(213,207,195,0.5);
}
.ribbon .era {
  padding: 14px 18px 18px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.ribbon .era:last-child { border-right: none; }
.ribbon .era .bar {
  height: 3px;
  margin-bottom: 12px;
  border-radius: 2px;
}
.ribbon .era .yr {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.ribbon .era .name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.ribbon .era .desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--vellum-dim);
}
.ribbon .era .keys {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 8px;
}

/* === Featured triple === */
.triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
  background: var(--panel);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(27,42,74,0.06), 0 0 0 1px rgba(213,207,195,0.5);
}
.feat {
  padding: 22px 26px 24px;
  border-right: 1px solid var(--rule);
}
.feat:last-child { border-right: none; }
.feat .tag {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.feat .name {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.feat .by {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--vellum-dim);
  margin-bottom: 14px;
}
.feat .nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
}
.feat .nums div { font-family: var(--mono); font-size: 10.5px; }
.feat .nums .k { color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; font-size: 9px; }
.feat .nums .v { color: var(--ink); font-size: 15px; font-family: var(--display); font-weight: 600; margin-top: 2px; }

/* === Pipeline stepper === */
.pipeline {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0;
  margin-top: 22px;
  background: var(--panel);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(27,42,74,0.06), 0 0 0 1px rgba(213,207,195,0.5);
}
.pipe-step {
  padding: 12px 12px 14px;
  border-right: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
  position: relative;
}
.pipe-step:last-child { border-right: none; }
.pipe-step .id {
  color: var(--ink);
  font-size: 9px;
  letter-spacing: 0.16em;
  margin-bottom: 4px;
}
.pipe-step .nm {
  color: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.002em;
  margin-bottom: 4px;
}
.pipe-step .ds { color: var(--muted); line-height: 1.4; font-size: 9.5px; }
.pipe-step .rt { margin-top: 6px; color: var(--vellum-dim); font-size: 9.5px; }
.pipe-step .rt .sep { color: var(--muted-2); margin: 0 5px; }

/* === Heatmap === */
.heatmap-wrap {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 32px;
  margin-top: 16px;
}
.heatmap {
  font-family: var(--mono);
  font-size: 10px;
  background: var(--panel);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(27,42,74,0.06), 0 0 0 1px rgba(213,207,195,0.5);
  padding: 4px 0;
}
.heatmap-row {
  display: grid;
  align-items: center;
  height: 16px;
}
.heatmap-row .lbl {
  padding-right: 10px;
  color: var(--vellum-dim);
  font-family: var(--serif);
  font-size: 13px;
  text-align: right;
  white-space: nowrap;
}
.heatmap-row.head .lbl { color: transparent; }
.heatmap-row .cells { display: flex; height: 100%; gap: 1px; }
.heatmap-row .cell { flex: 1; }
.heatmap-row.head .cell {
  background: transparent;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-align: center;
  padding-top: 2px;
}
.heatmap-row .yr-tick {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
}
.heatmap-row.selected .lbl { color: var(--ink); font-weight: 700; }
.heatmap-legend {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  letter-spacing: 0.08em;
}
.heatmap-legend .grad {
  width: 180px; height: 8px;
  border-radius: 2px;
  background: linear-gradient(to right, #F2F3F6, #A0B5C4, #1B2A4A, #0D1829);
}

/* === Filters === */
.filter-row {
  display: flex;
  gap: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 10px 0 18px;
  border-bottom: 1px solid var(--rule);
}
.filter-row .pill {
  padding: 8px 14px 10px;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.filter-row .pill.active { color: var(--ink); border-bottom-color: var(--ink); }
.filter-row .pill:hover { color: var(--vellum-dim); }
.filter-row .pill .dot {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
}

/* === Detail panel === */
.detail {
  font-family: var(--serif);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--vellum-dim);
  border-left: 2px solid var(--rule);
  padding-left: 22px;
}
.detail h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.detail .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.detail .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin: 14px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
}
.detail .stats div .k { font-family: var(--mono); font-size: 9.5px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.detail .stats div .v { font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--ink); }
.detail p { margin: 8px 0; }

/* === Suffix small multiples === */
.smallmult {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 18px;
  background: var(--panel);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(27,42,74,0.06), 0 0 0 1px rgba(213,207,195,0.5);
}
.smallmult .panel {
  padding: 12px 14px 14px;
  border-right: 1px solid var(--rule);
}
.smallmult .panel:last-child { border-right: none; }
.smallmult .panel .sx {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.smallmult .panel .ex {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}
.smallmult .panel .pk {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--ink);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* === Search === */
.search-shell {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  margin-top: 18px;
}
.search-input-wrap {
  position: relative;
  margin-bottom: 8px;
}
.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--rule);
  color: var(--ink);
  font-family: var(--display);
  font-size: 48px;
  letter-spacing: -0.015em;
  padding: 14px 0 16px;
  outline: none;
  font-weight: 600;
}
.search-input::placeholder { color: var(--muted); font-style: italic; font-weight: 400; }
.search-input:focus { border-bottom-color: var(--ink); }
.search-prefix {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.search-suggest {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--vellum-dim);
}
.search-suggest .pick {
  cursor: pointer;
  font-style: italic;
  border-bottom: 1px dotted var(--muted);
  transition: color 120ms, border-color 120ms;
}
.search-suggest .pick:hover { color: var(--highlight); border-bottom-color: var(--highlight); }
.search-result {
  margin-top: 32px;
}
.search-result .wavebox {
  background: var(--panel);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(27,42,74,0.06), 0 0 0 1px rgba(213,207,195,0.5);
  padding: 14px 14px 0;
}
.search-narrative {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--vellum-dim);
  max-width: 620px;
  margin: 18px 0 0;
}
.search-narrative em { color: var(--ink); font-style: italic; }
.search-aside {
  font-family: var(--serif);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--vellum-dim);
}
.search-aside h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 10px;
  font-weight: 400;
}
.search-aside .rel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding: 7px 0;
  border-top: 1px dotted var(--rule);
  font-size: 14px;
}
.search-aside .rel .nm { color: var(--ink); cursor: pointer; }
.search-aside .rel .nm:hover { color: var(--highlight); }
.search-aside .rel .v { font-family: var(--mono); font-size: 10.5px; color: var(--muted); }
.search-aside section { margin-bottom: 22px; }

/* === Validation table === */
.valid-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 15px;
}
.valid-table th, .valid-table td {
  text-align: left;
  padding: 10px 14px 10px 0;
  border-bottom: 1px dotted var(--rule);
  vertical-align: baseline;
}
.valid-table th {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  border-bottom: 1px solid var(--rule);
}
.valid-table td.num { font-family: var(--mono); font-size: 12px; color: var(--vellum-dim); }
.valid-table td.delta { font-family: var(--mono); font-size: 12.5px; color: var(--ink); letter-spacing: 0.02em; }
.valid-table td.check { font-family: var(--mono); color: var(--moss); font-size: 13px; }

/* === Waves cards === */
.waves-list { display: grid; gap: 0; border-top: 1px solid var(--rule); margin-top: 14px; }
.wave-card {
  display: grid;
  grid-template-columns: 110px 1fr 280px;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.wave-card .yr {
  font-family: var(--display);
  font-size: 38px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1;
}
.wave-card .yr .sub { display: block; font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; margin-top: 6px; }
.wave-card .body .ttl { font-family: var(--display); font-size: 22px; font-weight: 500; margin-bottom: 4px; color: var(--ink); }
.wave-card .body .nm { font-family: var(--serif); font-style: italic; color: var(--vellum-dim); font-size: 14.5px; }
.wave-card .body .note { font-family: var(--serif); font-size: 13.5px; color: var(--muted); margin-top: 6px; }

/* === Two-column page === */
.twocol { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; margin-top: 18px; }

/* === Stub note === */
.stub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  border: 1px dashed var(--rule);
  border-radius: 6px;
  padding: 38px 32px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.01em;
}
.stub strong { color: var(--vellum-dim); font-style: normal; }

/* === Footnote / colophon === */
.colophon {
  margin-top: 80px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--muted);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
}
.colophon .mono { font-family: var(--mono); font-style: normal; letter-spacing: 0.06em; font-size: 10px; }

/* SVG helpers */
.axis-text { fill: var(--muted); font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.06em; }
.axis-tick { stroke: var(--rule); stroke-width: 1; }
.grid-line { stroke: var(--rule); stroke-width: 1; stroke-dasharray: 1 3; }
.note-text { fill: var(--vellum-dim); font-family: var(--serif); font-style: italic; font-size: 12px; }
.note-line { stroke: var(--muted); stroke-width: 1; }
.peak-dot { fill: var(--ink); }

/* === Your Name tab — centered search === */
.yourname-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 48px 0 32px;
  text-align: center;
}
.yourname-hero .search-input-wrap {
  width: 100%;
  max-width: 560px;
}
.yourname-hero .search-input {
  text-align: center;
  font-size: 56px;
}
.yourname-hero .search-prefix {
  text-align: center;
}
.yourname-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 36px;
  background: var(--panel);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(27,42,74,0.06), 0 0 0 1px rgba(213,207,195,0.5);
}
.yourname-card {
  padding: 18px 20px 20px;
  border-right: 1px solid var(--rule);
  cursor: pointer;
  transition: background 150ms;
}
.yourname-card:last-child { border-right: none; }
.yourname-card:hover { background: rgba(27,42,74,0.03); }
.yourname-card .card-name {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.yourname-card .card-era {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.yourname-card .card-peak {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--vellum-dim);
  margin-top: 6px;
}

/* === Name result panel === */
.name-result-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 20px;
  background: var(--panel);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(27,42,74,0.06), 0 0 0 1px rgba(213,207,195,0.5);
}
.name-result-stats .nrs-item {
  padding: 14px 18px 16px;
  border-right: 1px solid var(--rule);
}
.name-result-stats .nrs-item:last-child { border-right: none; }
.name-result-stats .nrs-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.name-result-stats .nrs-value {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
}

/* === Classification band === */
.classification-band {
  display: flex;
  gap: 0;
  padding: 6px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  opacity: 0.7;
}
.classification-band .era-chip {
  flex: 1;
  height: 3px;
  border-radius: 2px;
}
