:root {
  color-scheme:light dark;
  --bg:#f5f7fb;
  --surface:#fff;
  --ink:#14233b;
  --muted:#53647c;
  --line:#dbe3ef;
  --brand:#215cda;
  --soft:#edf3ff;
  --warning:#815000;
  --warning-bg:#fff4da
}
/* Public research uses a compact overview followed by readable evidence. */
.overview {
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:40px;
  align-items:center;
  padding:26px 0 36px;
}
.overview h1 {font-size:clamp(2rem,4vw,3.5rem);margin-bottom:20px}
.overview .subtitle {font-size:1rem;letter-spacing:0;font-weight:500;margin-top:12px}
.overview .eyebrow,.brief-grid .eyebrow,.strategy-card .eyebrow {margin-bottom:12px}
.overview-copy>p:not(.eyebrow) {max-width:520px}
.quote {display:flex;align-items:baseline;gap:10px;flex-wrap:wrap}
.quote>strong {font-size:2.2rem;letter-spacing:-.04em;font-variant-numeric:tabular-nums}
.quote>span {font-size:.85rem;color:var(--muted)}
.quote .price-change {font-weight:650}
.quote .positive,.signal.bullish {color:#13724e}
.quote .negative,.signal.bearish {color:#b13c4a}
.price-change small {font-weight:400}
.chart-panel {min-width:0;background:var(--surface);border:1px solid var(--line);border-radius:16px;padding:24px}
.chart-panel .eyebrow {margin:0}
.chart-range {display:flex;justify-content:space-between;gap:12px;font-size:.75rem;color:var(--muted);font-variant-numeric:tabular-nums}
.price-chart {display:block;width:100%;height:auto;margin:15px 0;color:var(--brand)}
.chart-grid {stroke:var(--line);stroke-width:1;stroke-dasharray:4 5;fill:none}
.chart-empty {min-height:220px;display:flex;flex-direction:column;justify-content:center;padding:24px 0}
.chart-empty>span {font-size:2.5rem;color:var(--brand)}
.chart-empty h3 {font-size:1.15rem}
.chart-data {margin-top:16px;font-size:.8rem}
.chart-data .table-scroll {max-height:260px;overflow:auto}
details>summary {cursor:pointer;color:var(--brand);font-weight:600;padding:10px 0}
details>summary:focus-visible {outline:3px solid var(--brand);outline-offset:3px}
.brief-grid {display:grid;grid-template-columns:minmax(0,1.8fr) minmax(0,1fr);gap:24px}
.brief-grid .panel {min-width:0}
.narrative-panel {border-top:3px solid var(--brand)}
.narrative-text {font-size:1.04rem;line-height:1.85;white-space:pre-line;overflow-wrap:anywhere;margin-bottom:20px}
.brief-grid .section-heading,#strategies .section-heading {margin-bottom:12px;align-items:flex-start;gap:16px}
.brief-grid h2,#strategies h2 {font-size:1.55rem;letter-spacing:-.035em}
.technical-list {list-style:none;margin:0 0 20px;padding:0}
.technical-list li {display:flex;justify-content:space-between;gap:12px;padding:13px 0;border-bottom:1px solid var(--line);font-size:.9rem}
.signal {font-size:.8rem}
.workspace-prompt {border-top:1px solid var(--line);padding-top:22px;margin-top:24px}
.workspace-prompt h3 {font-size:1.1rem}
.workspace-prompt p {font-size:.9rem;color:var(--muted)}
.strategy-grid {display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
.strategy-card {border:1px solid var(--line);border-radius:12px;padding:24px;background:var(--bg);overflow-wrap:anywhere}
.strategy-card h3 {font-size:1.4rem;letter-spacing:-.025em}
.strategy-card p,.strategy-card dd {font-size:.9rem}
.strategy-card dt {font-size:.75rem;font-weight:750;margin-top:16px;color:var(--muted)}
.strategy-card dd {margin:4px 0 0}
.evidence-details {border-top:1px solid var(--line);margin-top:18px}
.directory-quote {font-size:1.25rem;font-weight:650;margin-bottom:12px}
.directory-quote .fine {display:block;font-weight:400}
.card-insight {font-size:.92rem;overflow-wrap:anywhere}
@media(prefers-color-scheme:dark) {
  .quote .positive,.signal.bullish {color:#80dab6}
  .quote .negative,.signal.bearish {color:#ffa1aa}
}
@media(max-width:800px) {
  .overview,.brief-grid {grid-template-columns:1fr;gap:20px}
  .overview {padding-top:15px}
  .chart-panel {padding:20px}
  .overview-copy>p:not(.eyebrow) {max-width:none}
}
@media(max-width:520px) {
  .strategy-grid {grid-template-columns:1fr}
  .strategy-card {padding:20px}
  .brief-grid .section-heading,#strategies .section-heading {flex-direction:column}
  .chart-panel .card-top {flex-wrap:wrap;gap:10px}
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:30px
}
body {
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:16px;
  line-height:1.65
}
a {
  color:var(--brand);
  text-underline-offset:4px
}
a:hover {
  text-decoration:underline
}
a:focus-visible {
  outline:3px solid var(--brand);
  outline-offset:5px
}
h1,h2,h3,p {
  margin-top:0
}
h1 {
  font-size:clamp(2.65rem,6.4vw,5.25rem);
  line-height:1.08;
  letter-spacing:-.055em;
  font-weight:750;
  margin-bottom:28px
}
h2 {
  font-size:clamp(1.5rem,2.3vw,2rem);
  line-height:1.25;
  letter-spacing:-.035em;
  margin-bottom:18px
}
h3 {
  font-size:1.13rem;
  line-height:1.4
}
p {
  margin-bottom:20px
}
main,.header,footer {
  max-width:1240px;
  margin:auto;
  padding-left:40px;
  padding-right:40px
}
.header {
  min-height:100px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  border-bottom:1px solid var(--line)
}
.brand {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:24px;
  font-weight:750;
  letter-spacing:-.04em;
  color:var(--ink);
  text-decoration:none
}
.mark {
  display:grid;
  place-items:center;
  background:var(--brand);
  color:white;
  border-radius:10px;
  width:36px;
  height:36px;
  font-size:24px
}
.brand-label {
  font-size:9px;
  letter-spacing:.15em;
  margin-left:10px;
  color:var(--muted);
  padding-left:15px;
  border-left:1px solid var(--line)
}
nav {
  display:flex;
  gap:26px;
  align-items:center
}
nav a {
  color:var(--muted);
  font-size:14px;
  font-weight:550;
  text-decoration:none
}
nav a[aria-current] {
  color:var(--brand)
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--brand);
  color:#fff;
  padding:13px 21px;
  border-radius:9px;
  font-weight:650;
  text-decoration:none;
  line-height:1.5
}
.button:hover {
  text-decoration:none;
  filter:brightness(1.08)
}
.button.small {
  white-space:nowrap;
  font-size:14px;
  padding:9px 19px
}
.hero {
  padding:82px 0 65px;
  max-width:850px
}
.eyebrow {
  font-size:11px;
  letter-spacing:.15em;
  font-weight:750;
  color:var(--brand);
  margin-bottom:23px
}
.lede {
  font-size:clamp(1.1rem,2vw,1.35rem);
  color:var(--muted);
  max-width:720px;
  line-height:1.65
}
.text-link {
  font-size:14px;
  font-weight:650;
  text-decoration:none
}
.section-heading {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:20px
}
.section-heading .eyebrow {
  margin-bottom:10px
}
.muted {
  color:var(--muted);
  font-size:14px
}
.stock-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px
}
.stock-card {
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:16px;
  padding:26px;
  color:var(--ink);
  text-decoration:none;
  display:flex;
  flex-direction:column;
  transition:transform .18s,border-color .18s
}
.stock-card:hover {
  transform:translateY(-3px);
  border-color:var(--brand);
  text-decoration:none
}
.card-top {
  display:flex;
  justify-content:space-between;
  margin-bottom:22px
}
.ticker {
  font-size:13px;
  font-weight:750;
  letter-spacing:.04em;
  background:var(--soft);
  color:var(--brand);
  padding:4px 10px;
  border-radius:6px
}
.arrow {
  color:var(--muted);
  font-size:20px
}
.stock-card h3 {
  font-size:21px;
  letter-spacing:-.03em;
  margin-bottom:3px
}
.stock-card>p:not(.muted) {
  font-size:14px;
  color:var(--muted);
  margin:5px 0 28px
}
.stock-card .text-link {
  margin-top:auto;
  color:var(--brand)
}
.callout {
  margin:60px 0;
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:18px;
  padding:40px
}
.callout p {
  max-width:700px;
  color:var(--muted)
}
.breadcrumbs {
  padding-top:32px;
  gap:12px;
  font-size:13px;
  color:var(--muted)
}
.stock-hero {
  padding:28px 0 20px
}
.stock-hero h1 {
  font-size:clamp(2.4rem,4vw,3.75rem);
  margin-bottom:20px
}
.stock-hero .lede {
  font-size:18px;
  margin-bottom:18px
}
.stock-hero .subtitle {
  font-size:clamp(1.25rem,2vw,1.75rem)
}
.subtitle {
  display:block;
  font-size:clamp(1.3rem,3vw,2.4rem);
  letter-spacing:-.03em;
  color:var(--muted);
  margin-top:15px;
  font-weight:450
}
.hero-actions {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:25px;
  margin-bottom:16px
}
.status-strip {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
  padding:18px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  font-size:12px;
  color:var(--muted)
}
.status-strip a {
  margin-left:auto
}
.badge {
  font-size:11px;
  font-weight:700;
  padding:5px 10px;
  border-radius:6px;
  background:var(--soft);
  color:var(--brand)
}
.badge.stale,.badge.unavailable {
  background:var(--warning-bg);
  color:var(--warning)
}
.section-nav {
  padding:23px 0 30px;
  flex-wrap:wrap;
  gap:25px
}
.research-layout {
  display:grid;
  grid-template-columns:minmax(0,2.1fr) minmax(0,1fr);
  gap:25px
}
.panel {
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:16px;
  padding:30px;
  margin-bottom:25px;
  overflow-wrap:anywhere
}
.panel .eyebrow {
  margin-bottom:15px
}
.panel>p {
  color:var(--muted);
  font-size:14px
}
.panel>h3 {
  margin-top:30px
}
.panel.accent {
  background:var(--soft)
}
.research-aside h2 {
  font-size:23px
}
.research-aside .button {
  width:100%;
  font-size:14px
}
.questions {
  padding-left:20px;
  font-size:14px;
  color:var(--muted)
}
.questions li {
  padding:0 0 18px 4px
}
.table-scroll {
  overflow-x:auto
}
table {
  width:100%;
  border-collapse:collapse;
  font-size:14px;
  text-align:left
}
th,td {
  padding:15px 0;
  border-bottom:1px solid var(--line)
}
thead th {
  font-size:10px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted)
}
tbody th {
  font-weight:500
}
td,thead th:last-child {
  text-align:right;
  font-variant-numeric:tabular-nums;
  white-space:nowrap
}
td {
  font-size:19px;
  font-weight:650
}
.basis {
  display:block;
  font-size:11px;
  color:var(--muted);
  font-weight:400;
  margin-top:3px
}
.provenance {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin:28px 0
}
.provenance dt {
  font-size:11px;
  color:var(--muted)
}
.provenance dd {
  margin:4px 0 0;
  font-size:13px;
  font-weight:600
}
.fine {
  font-size:12px!important;
  color:var(--muted)
}
.empty {
  padding:20px;
  background:var(--bg);
  border-radius:10px;
  font-size:14px;
  color:var(--muted);
  margin:20px 0
}
.empty h3 {
  font-size:16px;
  color:var(--ink);
  margin-bottom:10px
}
.empty p:last-child {
  margin:0
}
.notice {
  background:var(--warning-bg);
  color:var(--warning)!important;
  padding:15px;
  border-radius:9px
}
.changes,.filings {
  padding:0;
  list-style:none
}
.changes li {
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:15px 0;
  border-bottom:1px solid var(--line);
  font-size:13px
}
.changes strong {
  white-space:nowrap
}
.filings li {
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding:20px 0;
  border-bottom:1px solid var(--line);
  font-size:13px
}
.filings strong,.filings span {
  display:block
}
.filings p {
  margin:5px 0 0
}
.filings a {
  white-space:nowrap;
  font-size:12px
}
.peer {
  display:flex;
  gap:10px;
  align-items:center;
  padding:15px 0;
  border-bottom:1px solid var(--line);
  font-size:13px;
  text-decoration:none
}
.peer span {
  margin-left:auto
}
.methodology {
  max-width:900px
}
.methodology .panel p {
  font-size:16px
}
.methodology section:last-child {
  margin-bottom:60px
}
footer {
  margin-top:60px;
  padding-top:35px;
  padding-bottom:40px;
  border-top:1px solid var(--line)
}
footer>p {
  font-size:13px;
  color:var(--muted)
}
footer nav {
  flex-wrap:wrap;
  margin:22px 0
}
.skip {
  position:absolute;
  top:-100px;
  left:20px;
  padding:10px;
  background:var(--surface);
  z-index:10
}
.skip:focus {
  top:10px
}
.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0
}
@media(prefers-color-scheme:dark) {
  :root {
    --bg:#0c1423;
    --surface:#121e31;
    --ink:#edf2fc;
    --muted:#a5b4cd;
    --line:#28384f;
    --brand:#8bb5ff;
    --soft:#1a2c49;
    --warning:#f5ce7f;
    --warning-bg:#342b18
  }
  .button,.mark {
    background:#326bdd;
    color:#fff
  }
}
@media(max-width:900px) {
  .brand-label {
    display:none
  }
  .stock-grid {
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
  .research-layout {
    grid-template-columns:1fr
  }
  .research-aside {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px
  }
  .research-aside .panel {
    margin:0
  }
  .header nav {
    gap:15px
  }
}
@media(max-width:600px) {
  main,.header,footer {
    padding-left:20px;
    padding-right:20px
  }
  .header {
    padding-top:20px;
    padding-bottom:20px;
    flex-wrap:wrap;
    gap:15px
  }
  .header nav {
    width:100%;
    justify-content:space-between;
    gap:10px
  }
  .hero {
    padding-top:48px;
    padding-bottom:40px
  }
  .stock-hero {
    padding-top:28px
  }
  .stock-grid,.research-aside {
    grid-template-columns:1fr
  }
  .section-heading {
    display:block
  }
  .stock-card {
    padding:23px
  }
  .callout,.panel {
    padding:23px
  }
  .status-strip a {
    margin-left:0
  }
  .section-nav {
    gap:17px
  }
  .section-nav a {
    font-size:12px
  }
  .provenance {
    grid-template-columns:1fr
  }
  .filings li {
    flex-direction:column
  }
  .hero-actions .button {
    width:100%
  }
  .changes li {
    flex-wrap:wrap;
    gap:5px
  }
  .brand {
    font-size:22px
  }
  footer nav {
    gap:18px
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  .stock-card {
    transition:none
  }
  .stock-card:hover {
    transform:none
  }
}
