:root {
  --font-body: 'Inter', proxima-nova, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Oswald', sans-serif;
  --font-mono: 'Inter', proxima-nova, sans-serif;

  --signature: #3eaf7c;
  --signature-soft: #a7e0c2;
  --signature-tint: #e9f7ef;
  --ink: #2C3E50;
  --ink-2: #1f2d3d;
  --text-2: #4B5563;
  --text-3: #6B7280;
  --text-4: #9CA3AF;
  --hairline: #E2DDD3;
  --hairline-2: #E5E7EB;
  --surface: #FAFAF8;
  --surface-2: #F1F0EC;
  --up: #3eaf7c;
  --up-tint: #e9f7ef;
  --down: #c0392b;
  --down-tint: #f7ecea;
  --container: min(100%, 1180px);

  --trta-navy: #2C3E50;
  --trta-bg: #ffffff;
  --trta-border: 1px solid #E2DDD3;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  background: #fff; color: var(--text-2);
  font-family: var(--font-body); font-size: 16px; line-height: 1.55;
  padding-top: 90px;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { color: var(--ink); text-decoration: none; transition: opacity 0.15s ease; }
a:hover { opacity: 0.62; }
::selection { background: var(--signature-soft); color: var(--ink); }
.wrap { width: var(--container); margin: 0 auto; padding: 0 22px; }
.mono { font-family: var(--font-mono); }

/* ===== NAV + TICKER + MOBILE ===== */
.trta-nav {
  position: fixed; top: 0; left: 0; right: 0; height: 80px;
  background: var(--trta-bg); border-bottom: var(--trta-border);
  z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; transition: transform 0.3s ease;
}
.tn-logo { font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--trta-navy); text-decoration: none; z-index: 10001; position: relative; }
.tn-links { display: flex; gap: 32px; align-items: center; }
.tn-link { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--trta-navy); text-decoration: none; position: relative; transition: opacity 0.2s; }
.tn-link:hover { opacity: 0.6; }
.tn-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 10001; width: 30px; }
.tn-bar { width: 100%; height: 2px; background-color: var(--trta-navy); transition: all 0.3s ease; }
.tn-mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #fff; z-index: 10000; padding: 120px 48px 40px; transform: translateY(-100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; gap: 24px; text-align: center; }
.tn-mobile-menu.active { transform: translateY(0); }
.tn-m-link { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; text-transform: uppercase; color: var(--trta-navy); text-decoration: none; }
@media (max-width: 1024px) {
  .tn-links { display: none; }
  .tn-toggle { display: flex; }
  .trta-nav { height: 70px; padding: 0 24px; }
  body.tn-open .tn-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  body.tn-open .tn-bar:nth-child(2) { opacity: 0; }
  body.tn-open .tn-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
  body.tn-open { overflow: hidden; }
  .tn-m-link { display: block; padding: 14px 0; min-height: 44px; line-height: 1.2; }
  .tn-mobile-menu { padding-top: 110px; gap: 8px; }
}

.tn-tick-shared { --ink: #2C3E50; --text-2: #4B5563; --text-3: #6B7280; --hairline: #E5E7EB; --signature: #3eaf7c; --red: #c0392b; background: #fff; color: var(--ink); border-top: 0; border-bottom: 1px solid #E2DDD3; overflow: hidden; display: flex; align-items: stretch; position: relative; font-family: 'Inter', sans-serif; }
.tn-tick-shared .tag { flex-shrink: 0; background: #fff; color: var(--ink); font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; padding: 12px 24px; display: flex; align-items: center; gap: 10px; border-right: 1px solid var(--hairline); position: relative; z-index: 2; text-decoration: none; transition: opacity 0.18s; }
.tn-tick-shared a.tag:hover { opacity: 0.62; }
.tn-tick-shared .tag .lvl { color: #2C3E50; font-weight: 700; }
.tn-tick-shared .track { flex: 1; min-width: 0; overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); }
.tn-tick-shared .rail { display: inline-flex; align-items: center; gap: 56px; height: 100%; padding: 0; white-space: nowrap; animation: tn-tick-scroll 320s linear infinite; will-change: transform; backface-visibility: hidden; }
@keyframes tn-tick-scroll { 0% { transform: translate3d(0,0,0); } 100% { transform: translate3d(-50%,0,0); } }
.tn-tick-shared .item { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; color: inherit; text-decoration: none; transition: opacity 0.18s; }
.tn-tick-shared .item .op { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--text-2); }
.tn-tick-shared .item .idx { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.tn-tick-shared .item .d { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; font-variant-numeric: tabular-nums; letter-spacing: 0.04em; }
.tn-tick-shared .item .d.up { color: var(--signature); }
.tn-tick-shared .item .d.down { color: var(--red); }
.tn-tick-shared .item .ct-flag { width: 12px; height: 9px; margin-left: 4px; vertical-align: -1px; display: inline-block; border-radius: 1px; object-fit: cover; flex-shrink: 0; }
.tn-tick-shared .track:hover .rail { animation-play-state: paused; }
@media (max-width: 640px) {
  .tn-tick-shared .tag { font-size: 11px; padding: 14px 18px; letter-spacing: 0.18em; }
  .tn-tick-shared .rail { gap: 32px; padding: 14px 0; animation-duration: 200s; }
}

/* ===== QUOTE HEADER ===== */
.quote { padding: 32px 0 24px; border-bottom: 1px solid var(--hairline); }
.q-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.q-ticker { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--ink); background: none; border: 1px solid var(--hairline); padding: 4px 10px; border-radius: 5px; letter-spacing: 0.04em; }
.q-status { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--signature); background: var(--signature-tint); padding: 5px 11px; border-radius: 100px; }
.q-status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--signature); display: inline-block; }
.q-name { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; color: var(--ink); font-size: clamp(26px, 3.6vw, 44px); line-height: 1.04; letter-spacing: 0.01em; margin: 0 0 18px; }
.q-name .tm { font-size: 0.32em; vertical-align: 1.4em; font-weight: 500; letter-spacing: 0; margin-left: 3px; }
.q-row { display: flex; align-items: flex-end; gap: 28px; flex-wrap: wrap; }
.q-last { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: clamp(56px, 9.5vw, 100px); line-height: 0.88; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.q-last .scale { font-size: 0.3em; color: var(--text-3); font-weight: 400; letter-spacing: 0.04em; }
.q-change { display: flex; flex-direction: column; gap: 6px; padding-bottom: 10px; }
.q-change .chg { font-family: var(--font-mono); font-size: 22px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; font-variant-numeric: tabular-nums; }
.q-change.up .chg { color: var(--up); }
.q-change.down .chg { color: var(--down); }
.q-change.flat .chg { color: var(--text-3); }
.q-change .band-tag { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); align-self: flex-start; }
.q-asof { margin-top: 18px; font-family: var(--font-mono); font-size: 12px; color: var(--text-3); }

/* ===== CHART ===== */
.chart-card { padding-top: 30px; }
.chart-tabs { display: flex; gap: 4px; margin-bottom: 14px; flex-wrap: wrap; }
.chart-tab { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); background: none; border: 1px solid transparent; border-radius: 6px; padding: 5px 12px; cursor: pointer; }
.chart-tab:hover { color: var(--ink); border-color: var(--hairline-2); }
.chart-tab.active { color: var(--ink); background: none; border-color: var(--ink); }
.chart-host { width: 100%; }
svg.rci-chart { width: 100%; height: 460px; display: block; cursor: crosshair; touch-action: none; }

/* ===== KEY STATS ===== */
.keystats { margin-top: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--hairline); }
.keystats .sec-h, .bands .sec-h { margin-bottom: 16px; }
.panel { border: 1px solid var(--hairline); border-radius: 0; overflow: hidden; width: 100%; }
.panel-h { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 13px; letter-spacing: 0.08em; color: var(--ink); padding: 13px 16px; border-bottom: 1px solid var(--hairline); background: none; }
/* Top two section titles match the big section heading (.sec-h) scale. */
.ks-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ks-cell { display: flex; flex-direction: column; gap: 5px; padding: 14px 16px; border-top: 1px solid var(--hairline-2); border-right: 1px solid var(--hairline-2); align-items: center; text-align: center; }
.ks-cell:nth-child(-n+4) { border-top: none; }
.ks-cell:nth-child(4n) { border-right: none; }
.ks-k { font-family: var(--font-display); font-size: 11px; font-weight: 400; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-3); }
.ks-v { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 18px; font-variant-numeric: tabular-nums; }
@media (max-width: 760px) {
  .ks-grid { grid-template-columns: repeat(2, 1fr); }
  .ks-cell:nth-child(-n+4) { border-top: 1px solid var(--hairline-2); }
  .ks-cell:nth-child(-n+2) { border-top: none; }
  .ks-cell:nth-child(4n) { border-right: 1px solid var(--hairline-2); }
  .ks-cell:nth-child(2n) { border-right: none; }
}
@media (max-width: 420px) {
  .ks-grid { grid-template-columns: 1fr; }
  .ks-cell { border-right: none !important; }
}

/* ===== CONFIDENCE BANDS ===== */
.bands { margin-top: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--hairline); }
.bands .sec-note { font-size: 14px; line-height: 1.5; }
.bands .sec-note strong { color: #2C3E50; font-weight: 600; }
.band-scale { display: grid; grid-template-columns: repeat(5, 1fr); }
.band-seg { display: flex; flex-direction: column; gap: 5px; padding: 16px; border-right: 1px solid var(--hairline-2); align-items: center; text-align: center; background: #FFFFFF; }
.band-seg:last-child { border-right: none; }
.band-seg .bs-range { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: #2C3E50; font-variant-numeric: tabular-nums; }
.band-seg .bs-label { font-family: var(--font-display); font-size: 11px; font-weight: 400; letter-spacing: 0.07em; text-transform: uppercase; color: #2C3E50; }
.band-seg.on { background: #FFFFFF; box-shadow: inset 0 0 0 2px #B8E0D2; }
.band-seg.on .bs-range, .band-seg.on .bs-label { color: #2C3E50; }
.band-seg.on .bs-label { font-weight: 600; }
@media (max-width: 620px) {
  .band-scale { grid-template-columns: 1fr; }
  .band-seg { flex-direction: row; justify-content: space-between; border-right: none; border-bottom: 1px solid var(--hairline-2); }
  .band-seg:last-child { border-bottom: none; }
}
.bands .panel + .panel { margin-top: 18px; }
.band-table { width: 100%; border-collapse: collapse; }
.band-table th { text-align: left; font-family: var(--font-body); font-weight: 700; font-size: 13px; color: var(--ink); padding: 16px; border-bottom: 1px solid var(--hairline); }
.band-table td { padding: 18px 16px; border-bottom: 1px solid var(--hairline-2); vertical-align: top; font-family: var(--font-body); font-size: 14px; line-height: 1.5; color: var(--ink); }
.band-table tr:last-child td { border-bottom: none; }
.band-table .bt-band { font-weight: 700; color: var(--ink); white-space: nowrap; width: 24%; }
.band-table .bt-read { font-variant-numeric: tabular-nums; width: 18%; color: var(--ink); }
.band-table .bt-mean { color: var(--text-2); }
@media (max-width: 520px) {
  .band-table th:nth-child(2), .band-table td.bt-read { display: none; }
}

/* ===== OMEGA'S TAKE ===== */
.omega-take { margin-top: 40px; }
.omega-take .panel { padding: 22px 24px; }
.omega-take .ot-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.omega-take .ot-mark { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; letter-spacing: 0.1em; font-size: 13px; color: #2C3E50; }
.omega-take .ot-byline { font-family: var(--font-body); font-size: 11px; color: var(--text-4); letter-spacing: 0.02em; }
.omega-take .ot-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 2.2vw, 24px); line-height: 1.2; color: var(--ink); margin: 0 0 8px; letter-spacing: 0.01em; }
.omega-take .ot-body { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--text-2); margin: 0; max-width: none; }
.omega-take .ot-disclaimer { font-family: var(--font-body); font-size: 10px; font-weight: 400; letter-spacing: 0.04em; color: #6B7280; opacity: 0.6; margin: 6px 0 0; }

/* ===== SECTION HEADS ===== */
.components, .roster, .about { margin-top: 40px; }
.components { border-bottom: 1px solid var(--hairline); padding-bottom: 40px; }
.sec-h { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; font-size: clamp(20px, 2.4vw, 28px); letter-spacing: 0.02em; color: var(--ink); margin: 0 0 4px; }
.sec-note { font-size: 13px; color: var(--text-3); margin: 0 0 18px; max-width: none; }

/* ===== COMPONENTS ===== */
.comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 760px) { .comp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .comp-grid { grid-template-columns: 1fr; } }
.comp { border: 1px solid var(--hairline); border-radius: 0; padding: 16px; }
.comp .name { font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--text-2); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.comp .val { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 34px; line-height: 1; font-variant-numeric: tabular-nums; }
.comp .bar { height: 6px; border-radius: 4px; background: var(--surface-2); margin: 12px 0 9px; overflow: hidden; }
.comp .bar i { display: block; height: 100%; background: var(--signature); border-radius: 4px; }
.comp .delta { font-family: var(--font-mono); font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; font-variant-numeric: tabular-nums; }
.comp .delta.up { color: var(--up); }
.comp .delta.down { color: var(--down); }
.comp .delta.flat { color: var(--text-3); }

/* ===== ROSTER ===== */
.rtx-list-head { display: grid; grid-template-columns: 48px 1fr minmax(120px,auto) minmax(96px,auto); column-gap: clamp(20px,4vw,56px); align-items: baseline; padding: 10px 8px 12px; border-bottom: 1px solid var(--hairline); font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); }
.rtx-list-head .col-num { text-align: right; }
.rtx-list { list-style: none; padding: 0; margin: 0; }
.rtx-list li a { display: grid; grid-template-columns: 48px 1fr minmax(120px,auto) minmax(96px,auto); column-gap: clamp(20px,4vw,56px); align-items: baseline; padding: 22px 8px; border-bottom: 1px solid var(--hairline-2); text-decoration: none; color: var(--ink); transition: background-color 0.3s ease; }
.rtx-list li:last-child a { border-bottom: 0; }
.rtx-list li a:hover { background: #FDFBFA; }
.rtx-list .rk { font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; color: var(--text-3); font-variant-numeric: tabular-nums; }
.rtx-list .nm { font-family: var(--font-display); font-size: clamp(17px,2vw,24px); font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; min-width: 0; }
.rtx-list .nm .ct-flag { width: 20px; height: 14px; border-radius: 1px; box-shadow: 0 0 0 1px rgba(0,0,0,0.06); flex-shrink: 0; }
.rtx-list .tk { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-left: 4px; white-space: nowrap; }
.rtx-list .tk-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: none; color: var(--text-4); margin-left: 2px; }
.rtx-list .val { font-family: var(--font-display); font-size: clamp(26px,3vw,36px); font-weight: 700; letter-spacing: -0.01em; line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; text-align: right; }
.rtx-list .dl { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; font-variant-numeric: tabular-nums; text-align: right; }
.rtx-list .dl.up { color: var(--up); }
.rtx-list .dl.down { color: var(--down); }
.rtx-list .dl.flat { color: var(--text-3); opacity: 0.7; }
@media (max-width: 720px) {
  .rtx-list-head { display: none; }
  .rtx-list li a { grid-template-columns: 28px 1fr auto; column-gap: 12px; padding: 18px 0; }
  .rtx-list .nm { font-size: 14px; }
  .rtx-list .tk, .rtx-list .tk-tag, .rtx-list .dl { display: none; }
  .rtx-list .val { font-size: 22px; }
}

/* ===== ABOUT ===== */
.about { border-top: 1px solid var(--hairline); padding: 32px 0 32px; }
.about p { font-size: 15px; color: var(--text-2); max-width: none; }

/* ===== FOOTER ===== */
.trta-footer { background: #fff; border-top: 1px solid #E2DDD3; padding: 40px 48px 40px; font-family: 'Inter', sans-serif; color: #2C3E50; }
.trta-footer a { text-decoration: none; color: inherit; transition: opacity 0.2s; }
.trta-footer a:hover { opacity: 0.6; }
.tf-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; max-width: 1440px; margin: 0 auto 40px; align-items: start; }
.tf-brand-title { font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 16px; display: block; }
.tf-brand-desc { font-size: 15px; line-height: 1.6; color: #6B7280; max-width: 380px; margin-bottom: 32px; }
.tf-brand-desc a { color: #2C3E50; }
.tf-sub-form { display: flex; flex-direction: column; gap: 12px; max-width: 360px; }
.tf-input { width: 100%; padding: 12px 16px; border: 1px solid #9CA3AF; font-family: 'Inter', sans-serif; font-size: 14px; color: #2C3E50; outline: none; background: #fff; }
.tf-input:focus { border-color: #2C3E50; }
.tf-input::placeholder { color: #6B7280; opacity: 1; }
.tf-btn { width: 100%; background: #fff; color: #2C3E50; border: 2px solid #2C3E50; padding: 12px 0; font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; transition: all 0.2s ease; }
.tf-btn:hover { background: #2C3E50; color: #fff; }
.tf-col-center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.tf-col-title { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #9CA3AF; margin-bottom: 24px; }
.tf-sub-title { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #2C3E50; margin-bottom: 8px; }
.tf-links { list-style: none; padding: 0; margin: 0; }
.tf-links li { margin-bottom: 14px; }
.tf-links a { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.02em; color: #2C3E50; }
.tf-bottom { max-width: 1440px; margin: 0 auto; padding-top: 32px; border-top: 1px solid #E5E7EB; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #9CA3AF; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }
.tf-legal { display: flex; gap: 24px; }
@media (max-width: 1024px) {
  .tf-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .tf-col-center { align-items: flex-start; text-align: left; }
}
@media (max-width: 640px) {
  .trta-footer { padding: 48px 20px; }
  .tf-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 24px; }
  .tf-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .tf-input { font-size: 16px; padding: 14px 16px; }
  .tf-links li { margin-bottom: 6px; }
}

/* ===== LANDING (stacked editorial boards, indices-home style) ===== */
.cidx-hero { padding: 56px 0 36px; border-bottom: 1px solid var(--hairline); margin-bottom: 8px; }
.ch-eyebrow { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 12px; letter-spacing: 0.18em; color: var(--text-3); }
.ch-title { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; color: var(--ink); font-size: clamp(36px, 6vw, 72px); letter-spacing: 0.01em; line-height: 1.02; margin: 10px 0 16px; }
.ch-sub { font-size: 16px; line-height: 1.6; color: var(--text-2); max-width: none; margin: 0 0 18px; }
.ch-sub a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.ch-meta { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.04em; color: var(--text-3); }
.ch-meta a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

/* Stacked index rows: left content column + chart filling the box on the right. */
.cidx-rows { margin-top: 4px; }
.cidx-item { display: grid; grid-template-columns: minmax(0, 1fr) clamp(260px, 36%, 520px); gap: clamp(24px, 4vw, 56px); align-items: stretch; padding: 30px 8px; border-bottom: 1px solid var(--hairline); color: var(--ink); transition: background-color 0.25s ease; }
.cidx-item:hover { background: #FDFBFA; opacity: 1; }
.ci-main { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.cr-id { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.cr-ticker { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: var(--text-3); }
.cr-name { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; color: var(--ink); font-size: clamp(20px, 2.4vw, 30px); letter-spacing: 0.02em; line-height: 1.04; }
.cr-band { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; font-weight: 600; color: var(--text-3); }

/* Confidence band color scale (brand green ramp), applied wherever a band is named. */
.band-skeptical   { color: #9AA1AB; }
.band-cautious    { color: #7CB79A; }
.band-constructive{ color: #4FA67E; }
.band-confident   { color: #2FA06E; }
.band-conviction  { color: #1C7A52; }

.cr-quote { display: flex; align-items: baseline; gap: 16px; }
.cr-reading { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: clamp(38px, 5vw, 56px); line-height: 0.9; font-variant-numeric: tabular-nums; }
.cr-change { font-family: var(--font-body); font-size: 14px; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
.cr-change.up { color: var(--up); }
.cr-change.down { color: var(--down); }
.cr-change.flat { color: var(--text-3); }

.cr-take { max-width: none; margin-top: 2px; }
.cr-take-mark { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; letter-spacing: 0.1em; font-size: 11px; color: var(--ink); }
.cr-take-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(15px, 1.6vw, 18px); line-height: 1.25; color: var(--ink); margin: 6px 0 6px; letter-spacing: 0.01em; }
.cr-take-body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--text-2); margin: 0; }

.ci-chart { display: flex; align-items: stretch; min-height: 150px; }
.ci-chart .mini-chart { width: 100%; height: 100%; display: block; }
@media (max-width: 760px) {
  .cidx-item { grid-template-columns: 1fr; gap: 18px; padding: 26px 0; }
  .ci-chart { min-height: 120px; height: 120px; }
}
