@font-face {
  font-family: Sora;
  src: url('/fonts/sora/Sora-Variable.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --void: #000;
  --surface: #0a0a0a;
  --ink: #f4f4f4;
  --muted: #a3a5aa;
  --dim: #83878e;
  --line: #292b2e;
  --blue: #5bb7ff;
  --mono: ui-monospace,'SFMono-Regular',Menlo,Consolas,monospace;
  font-family: Sora,system-ui,sans-serif;
  background: var(--void);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,input,select {
  font: inherit;
}
button,a,input,select {
  -webkit-tap-highlight-color: transparent;
}
button,select {
  cursor: pointer;
}
button:active,.button:active {
  transform: scale(.96);
}
::selection {
  background: #134d7b;
  color: white;
}
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}
button:focus-visible,input:focus-visible,select:focus-visible {
  outline-offset: 3px;
}
h1,h2,h3,p,figure {
  margin: 0;
}
h1,h2,h3 {
  text-wrap: balance;
}
p,figcaption {
  text-wrap: pretty;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: -1px;
}
picture {
  display: block;
}
svg {
  flex-shrink: 0;
}
.mono,.eyebrow {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}
.mono {
  font-size: 11px;
  letter-spacing: .025em;
}
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #b3b7bd;
}
.muted {
  color: var(--muted);
}
.blue {
  color: var(--blue);
}
.separator {
  padding: 0 10px;
  color: #585d63;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: fixed;
  left: 15px;
  top: 12px;
  z-index: 20;
  padding: 14px;
  background: white;
  color: black;
  transform: translateY(-200%);
}
.skip:focus {
  transform: none;
}
.page-width {
  width: min(1280px,calc(100% - 112px));
  margin-inline: auto;
}
.mast {
  height: 73px;
  padding: 0 28px;
  display: flex;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #030303;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  white-space: nowrap;
}
.brand svg {
  width: 24px;
  height: 24px;
}
.brand span {
  font: 10px var(--mono);
  letter-spacing: .13em;
}
.mast-divider {
  height: 18px;
  width: 1px;
  background: #36383b;
}
.mast-label {
  font-size: 10px;
  letter-spacing: .13em;
  color: #a8abb0;
}
.mast nav {
  display: flex;
  gap: 24px;
  align-self: stretch;
  margin-left: auto;
}
.mast nav a {
  position: relative;
  display: flex;
  align-items: center;
  font: 10px var(--mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #a5a8ae;
  transition: color 140ms;
}
.mast nav a:hover {
  color: white;
}
.mast nav .selected {
  color: var(--blue);
}
.mast nav .selected:after {
  content: '';
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--blue);
}
.mobile-terminal {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  min-height: 44px;
  padding: 0 18px 0 20px;
  border: 0;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 500;
  transition: background-color 140ms,color 140ms,transform 140ms,box-shadow 140ms;
}
.primary {
  color: #111;
  background: #f1f2f4;
}
.primary:hover {
  background: #c4e5ff;
}
.secondary {
  background: #101112;
  color: #d6d8dc;
  box-shadow: 0 0 0 1px rgba(255,255,255,.16);
}
.secondary:hover {
  background: #1b1d20;
  box-shadow: 0 0 0 1px rgba(255,255,255,.3);
}
.footer {
  width: min(1280px,calc(100% - 112px));
  margin: 56px auto 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  padding: 23px 0 34px;
}
.footer>.mono {
  color: #969ba3;
  font-size: 9px;
}
.footer>a:last-child {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.footer>a:last-child:hover {
  color: var(--blue);
}
/* The edition shares the site masthead, but gives long-form copy its own rhythm. */
.edition-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.edition-bar>.mono {
  font-size: 10px;
}
.back-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  color: #babec5;
}
.back-link:hover {
  color: var(--blue);
}
.edition-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  padding: 52px 0 45px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.edition-title h1 {
  font-size: clamp(38px,4.3vw,62px);
  line-height: 1.12;
  letter-spacing: -.065em;
  font-weight: 500;
  margin: 21px 0 23px;
  max-width: 670px;
}
.edition-title>p {
  font-size: 14px;
  line-height: 1.85;
  color: #b6b9bf;
  max-width: 600px;
}
.byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
.byline-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,.16);
  border-radius: 50%;
  color: #d0d4da;
}
.byline-mark svg {
  width: 22px;
  height: 22px;
}
.byline>div {
  display: grid;
  gap: 7px;
}
.byline strong {
  font-size: 11px;
  font-weight: 500;
}
.byline .mono {
  font-size: 9px;
}
.byline .separator {
  padding: 0 5px;
}
.edition-hero figure {
  min-width: 0;
}
.edition-hero figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-position: center;
  border-radius: 2px;
}
.edition-hero figcaption {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding-top: 14px;
  color: #9298a1;
  font-size: 9px;
  line-height: 1.7;
}
.edition-hero figcaption .mono {
  font-size: 9px;
  text-transform: uppercase;
  color: #babfc7;
}
.edition-layout {
  display: grid;
  grid-template-columns: 206px minmax(0,790px);
  gap: 80px;
  padding-top: 46px;
  padding-bottom: 0;
}
.reading-rail {
  align-self: start;
  position: sticky;
  top: 30px;
}
.reading-rail nav {
  display: grid;
}
.reading-rail .eyebrow {
  font-size: 9px;
  letter-spacing: .12em;
  padding-bottom: 18px;
}
.reading-rail nav a {
  display: flex;
  gap: 15px;
  align-items: center;
  min-height: 44px;
  font-size: 11px;
  color: #a9adb5;
  transition: color 140ms,background-color 140ms;
}
.reading-rail nav a span {
  font: 10px var(--mono);
  color: #747b87;
}
.reading-rail nav a:hover,.reading-rail nav a[aria-current] {
  color: var(--blue);
}
.reading-rail nav a[aria-current] span {
  color: var(--blue);
}
.original-link {
  font-size: 9px;
  display: flex;
  align-items: center;
  min-height: 44px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: #b4bbc5;
}
.original-link:hover {
  color: var(--blue);
}
.rail-note {
  margin-top: 24px;
  max-width: 165px;
  color: #9097a1;
  font: 9px/1.9 var(--mono);
}
.reading-column {
  min-width: 0;
}
.reading-column>section {
  scroll-margin-top: 28px;
  margin-bottom: 60px;
}
.reading-section-head {
  margin-bottom: 25px;
}
.reading-section-head>.eyebrow {
  color: #9ca4af;
  font-size: 9px;
  letter-spacing: .14em;
}
.reading-section-head h2 {
  margin-top: 11px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1.25;
}
.prose p {
  font-size: 15px;
  line-height: 1.95;
  color: #c7cacf;
  letter-spacing: -.014em;
  margin-bottom: 21px;
}
.prose p:first-child {
  color: #e4e5e8;
}
.numbers-strip {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  border-block: 1px solid var(--line);
  margin-top: 35px;
  padding: 23px 0;
}
.numbers-strip>div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}
.numbers-strip>div:first-child {
  padding-left: 0;
}
.numbers-strip>div:last-child {
  padding-right: 0;
  border: 0;
}
.numbers-strip .mono {
  font-size: 9px;
  text-transform: uppercase;
}
.numbers-strip strong {
  font-size: 38px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -.07em;
}
.numbers-strip strong span {
  font-size: 25px;
  color: #a0a6af;
  letter-spacing: -.06em;
}
.stat-note {
  font: 9px/1.6 var(--mono);
  color: #9da4ae;
}
.stories {
  border-top: 1px solid var(--line);
}
.story {
  display: grid;
  grid-template-columns: 29px 1fr;
  gap: 19px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.story-number {
  padding-top: 5px;
  color: var(--blue);
  font-size: 10px;
}
.story h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -.035em;
  max-width: 650px;
  text-wrap: pretty;
}
.story p {
  margin-top: 13px;
  color: #b5bac1;
  font-size: 13px;
  line-height: 1.9;
}
.section-note {
  font-size: 11px;
  line-height: 1.85;
  color: #a7aeb7;
  margin: 0 0 22px;
}
.market-breadth {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 22px 0;
  border-block: 1px solid var(--line);
  margin-bottom: 22px;
  font: 10px var(--mono);
  color: #a3acb8;
}
.market-breadth>span>span {
  font-size: 17px;
  letter-spacing: -.05em;
  margin-right: 5px;
}
.market-breadth>a {
  margin-left: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: 9px;
}
.market-breadth>a:hover {
  color: var(--blue);
}
.up {
  color: #85dba1;
}
.down {
  color: #ff8c92;
}
.table-wrap {
  width: 100%;
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  font: 12px var(--mono);
  font-variant-numeric: tabular-nums;
}
th {
  text-align: right;
  color: #a8afba;
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 14px 0;
  border-bottom: 1px solid #42474f;
}
th:first-child,td:first-child {
  text-align: left;
}
td {
  text-align: right;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.company {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 44px;
}
.company .ticker {
  min-width: 47px;
  color: #e4e8ed;
  font-size: 12px;
}
.company>span:last-child {
  color: #a2acb9;
  font: 10px Sora,system-ui,sans-serif;
}
.company:hover span {
  color: var(--blue);
}
.trend {
  width: 105px;
}
.trend svg {
  display: block;
  margin-left: auto;
}
.record-row {
  display: grid;
  grid-template-columns: 87px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}
.record-row:last-child {
  border-bottom: 1px solid var(--line);
}
.record-label {
  color: var(--blue);
  font-size: 10px;
  padding-top: 4px;
}
.record-row h3 {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -.025em;
  font-weight: 500;
  text-wrap: pretty;
}
.record-row h3 a {
  display: block;
}
.record-row h3 a:hover {
  color: var(--blue);
}
.record-row p {
  font-size: 11px;
  line-height: 1.85;
  color: #a5adb8;
  margin-top: 8px;
}
.edition-end {
  padding: 37px 0 15px;
  border-top: 1px solid var(--line);
}
.edition-end h2 {
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -.05em;
  margin: 17px 0 26px;
}
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 9;
  pointer-events: none;
}
@supports (animation-timeline:scroll()) {
  .reading-progress {
    animation: read-progress linear both;
    animation-timeline: scroll(root);
  }
  @keyframes read-progress {
    to {
      transform: scaleX(1);
    }
  }
}
@media (min-width:1550px) {
  .edition-hero {
    padding-block: 62px;
  }
}
@media (max-width:1180px) {
  .mast nav {
    gap: 17px;
  }
  .mast {
    padding-inline: 22px;
    gap: 16px;
  }
  .mast nav a {
    font-size: 9px;
  }
  .mast-label,.mast-divider {
    display: none;
  }
  .page-width,.footer {
    width: calc(100% - 72px);
  }
  .edition-hero {
    gap: 38px;
  }
  .edition-title h1 {
    font-size: 48px;
  }
  .edition-layout {
    grid-template-columns: 170px minmax(0,1fr);
    gap: 50px;
  }
  .edition-hero figcaption {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
@media (max-width:900px) {
  .mast nav a:nth-child(2),.mast nav a:nth-child(4),.mast nav a:nth-child(6) {
    display: none;
  }
  .page-width,.footer {
    width: calc(100% - 48px);
  }
  .edition-hero {
    gap: 28px;
  }
  .edition-title h1 {
    font-size: 39px;
  }
  .edition-title>p {
    font-size: 12px;
  }
  .edition-layout {
    gap: 35px;
    grid-template-columns: 150px minmax(0,1fr);
  }
  .reading-rail nav a {
    font-size: 10px;
  }
  .reading-rail nav a span {
    font-size: 9px;
  }
  .prose p {
    font-size: 14px;
  }
  .numbers-strip strong {
    font-size: 30px;
  }
  .numbers-strip>div {
    padding-inline: 12px;
  }
  .numbers-strip .mono {
    font-size: 8px;
  }
  .stat-note {
    font-size: 8px;
  }
  .market-breadth {
    gap: 15px;
  }
  .company {
    gap: 8px;
  }
  .company>span:last-child {
    display: grid;
  }
  .footer>.mono {
    max-width: 180px;
    line-height: 1.6;
  }
}
@media (max-width:700px) {
  .mast {
    height: 65px;
    padding-inline: 20px;
    gap: 14px;
  }
  .mast nav {
    display: none;
  }
  .mast-divider,.mast-label {
    display: block;
  }
  .mast-label {
    font-size: 9px;
  }
  .mast .brand span {
    font-size: 9px;
    letter-spacing: .11em;
  }
  .mast .brand {
    gap: 9px;
  }
  .mast .brand svg {
    width: 22px;
    height: 22px;
  }
  .mast-divider {
    height: 16px;
  }
  .mobile-terminal {
    display: flex;
    min-height: 44px;
    align-items: center;
    margin-left: auto;
    font-size: 9px;
    color: #b1b7c0;
  }
  .page-width,.footer {
    width: calc(100% - 40px);
  }
  .footer {
    margin-top: 36px;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5px 15px;
  }
  .footer .brand span {
    font-size: 9px;
  }
  .footer>.mono {
    grid-row: 2;
    grid-column: 1/-1;
    max-width: none;
    font-size: 8px;
  }
  .footer>a:last-child {
    grid-row: 1;
    grid-column: 2;
    font-size: 9px;
  }
  .edition-bar {
    padding: 12px 0;
    gap: 15px;
  }
  .edition-bar>.mono {
    max-width: 152px;
    line-height: 1.8;
    text-align: right;
    font-size: 8px;
  }
  .edition-bar .separator {
    display: none;
  }
  .edition-hero {
    display: flex;
    flex-direction: column;
    gap: 27px;
    align-items: stretch;
    padding: 30px 0 28px;
  }
  .edition-title>.eyebrow {
    font-size: 8px;
    letter-spacing: .12em;
  }
  .edition-title h1 {
    font-size: 38px;
    line-height: 1.13;
    letter-spacing: -.065em;
    margin: 18px 0;
  }
  .edition-title>p {
    font-size: 13px;
    line-height: 1.85;
  }
  .byline {
    margin-top: 23px;
  }
  .byline .mono {
    font-size: 8px;
  }
  .edition-hero figure img {
    aspect-ratio: 16/9;
    object-position: center;
  }
  .edition-hero figcaption {
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 9px;
    padding-top: 12px;
  }
  .edition-hero figcaption .mono {
    font-size: 8px;
  }
  .edition-hero figcaption br {
    display: none;
  }
  .edition-layout {
    display: block;
    padding-top: 0;
  }
  .reading-rail {
    position: static;
    padding: 23px 0 25px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 31px;
  }
  .reading-rail nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
  }
  .reading-rail nav .eyebrow {
    flex-basis: 100%;
    padding-bottom: 9px;
    font-size: 8px;
  }
  .reading-rail nav a {
    gap: 8px;
    font-size: 10px;
    min-height: 44px;
  }
  .reading-rail nav a span {
    font-size: 8px;
  }
  .original-link,.rail-note {
    display: none;
  }
  .reading-column>section {
    margin-bottom: 43px;
  }
  .reading-section-head {
    margin-bottom: 21px;
  }
  .reading-section-head h2 {
    font-size: 29px;
  }
  .reading-section-head>.eyebrow {
    font-size: 8px;
  }
  .prose p {
    font-size: 14px;
    line-height: 1.95;
    margin-bottom: 22px;
  }
  .numbers-strip {
    margin-top: 28px;
    padding-block: 19px;
  }
  .numbers-strip>div {
    padding-inline: 9px;
    gap: 10px;
  }
  .numbers-strip strong {
    font-size: 30px;
    line-height: 1.2;
  }
  .numbers-strip strong span {
    font-size: 20px;
  }
  .numbers-strip .mono {
    font-size: 7px;
    line-height: 1.6;
    letter-spacing: 0;
  }
  .stat-note {
    font-size: 8px;
    line-height: 1.7;
  }
  .story {
    grid-template-columns: 20px 1fr;
    gap: 12px;
    padding: 23px 0;
  }
  .story-number {
    font-size: 9px;
  }
  .story h3 {
    font-size: 18px;
    line-height: 1.45;
  }
  .story p {
    font-size: 12px;
    line-height: 1.9;
  }
  .section-note {
    font-size: 10px;
    line-height: 1.85;
  }
  .market-breadth {
    gap: 12px;
    flex-wrap: wrap;
    padding: 15px 0;
    font-size: 9px;
  }
  .market-breadth>span>span {
    font-size: 15px;
  }
  .market-breadth>a {
    font-size: 8px;
  }
  .company>span:last-child {
    display: grid;
  }
  .trend {
    width: 77px;
  }
  .trend svg {
    width: 68px;
  }
  table {
    font-size: 10px;
  }
  th {
    font-size: 8px;
  }
  .company .ticker {
    font-size: 11px;
  }
  .record-row {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 22px 0;
  }
  .record-label {
    font-size: 9px;
  }
  .record-row h3 {
    font-size: 14px;
  }
  .record-row p {
    font-size: 11px;
  }
  .edition-end h2 {
    font-size: 28px;
  }
  .edition-end>.eyebrow {
    font-size: 8px;
  }
}
@media (max-width:360px) {
  .mast .mast-divider,.mast .mast-label {
    display: none;
  }
  .edition-title h1 {
    font-size: 37px;
  }
  .market-breadth>a {
    flex-basis: 100%;
    margin: 0;
    min-height: 40px;
  }
  .numbers-strip strong {
    font-size: 26px;
  }
}
@media (prefers-reduced-motion:reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,*:before,*:after {
    animation: none !important;
    transition: none !important;
  }
  .reading-progress {
    display: none;
  }
}
@media print {
  :root {
    color-scheme: light;
    background: white;
    color: black;
  }
  .mast,.reading-rail,.reading-progress,.edition-bar,.footer,.edition-end {
    display: none;
  }
  .page-width {
    width: 100%;
  }
  .edition-hero {
    padding-top: 0;
    gap: 24px;
  }
  .edition-title h1 {
    font-size: 32px;
  }
  .edition-layout {
    display: block;
  }
  .reading-column {
    max-width: none;
  }
  .prose p,.story p,.record-row p,.edition-title>p {
    color: #222;
  }
  .reading-column>section {
    break-inside: auto;
  }
  .story,.record-row {
    break-inside: avoid;
  }
  img {
    outline-color: rgba(0,0,0,.1);
  }
  .up,.down,.blue {
    color: #222;
  }
}
/* Exact font families and core tokens verified against the live news page. */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('/daily-design/v1/JetBrainsMono-latin.woff2') format('woff2');
}
:root {
  --color-void: #000;
  --color-void-elevated: #0a0a0a;
  --color-void-line: #3b3b3b;
  --color-cream: #fff;
  --color-cream-muted: rgba(255,255,255,.72);
  --color-cream-dim: rgba(255,255,255,.52);
  --color-plasma: #1d8fff;
  --color-plasma-hot: #5bb7ff;
  --surface-header-solid: #050505;
  --gradient-header-mono: linear-gradient(180deg,#000 0%,rgba(255,255,255,.075) 100%);
  --type-display: Sora,system-ui,sans-serif;
  --type-ui: Sora,system-ui,sans-serif;
  --type-mono: 'JetBrains Mono','IBM Plex Mono',ui-monospace,monospace;
  --mono: var(--type-mono);
  --rad-sm: 4px;
  --line: #3b3b3b;
  --ink: #fff;
  --blue: #1d8fff;
  color: #fff;
}
.mast {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 100%;
  min-width: 0;
  height: auto;
  min-height: 62px;
  padding: 10px 14px;
  border: 1px solid var(--color-void-line);
  border-radius: 4px;
  background: #000;
  font-family: var(--type-mono);
  letter-spacing: .02em;
  flex: 0 0 auto;
  margin: 8px;
}
.mast-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand {
  gap: 12px;
  min-height: 40px;
  color: white;
}
.brand svg {
  width: 20px;
  height: 20px;
}
.brand span {
  font-family: var(--type-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .08em;
  color: rgba(255,255,255,.72);
}
.mast-label {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding-left: 12px;
  margin-left: 4px;
  border-left: 1px solid #3b3b3b;
  font-size: 10px;
  letter-spacing: .08em;
  color: white;
}
.mast .desktop-nav {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
  margin-left: auto;
  align-self: center;
  font-family: Sora,system-ui,sans-serif;
}
.mast nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 4px 10px;
  font-family: Sora,system-ui,sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  transition: color 220ms,box-shadow 220ms;
}
.mast .desktop-nav a:after {
  content: '·';
  position: absolute;
  right: -3px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  color: #0a4fb8;
  opacity: .55;
  font-size: 12px;
  height: auto;
  background: none;
}
.mast .desktop-nav a:last-child:after {
  content: none;
}
.mast nav a:hover {
  color: #5bb7ff;
  box-shadow: inset 0 -1px 0 rgba(91,183,255,.6);
}
.mast nav .selected {
  color: #1d8fff;
  box-shadow: inset 0 -2px 0 #1d8fff;
}
.mast .mobile-menu {
  display: none;
}
.mast-divider,.mobile-terminal {
  display: none;
}
.eyebrow {
  font-family: var(--type-mono);
  font-weight: 700;
  letter-spacing: .14em;
}
.edition-page .page-width {
  max-width: 1300px;
  width: calc(100% - 64px);
}
.edition-bar {
  padding: 8px 0 16px;
}
.edition-hero {
  padding: 36px 0 34px;
  gap: 42px;
  grid-template-columns: 1.55fr 1fr;
}
.edition-title h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.22;
  letter-spacing: -.02em;
  text-wrap: pretty;
  margin: 18px 0 20px;
}
.edition-title>p {
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0;
}
.edition-hero figcaption .mono {
  font-weight: 500;
}
.edition-layout {
  grid-template-columns: 206px minmax(0,790px);
  gap: 60px;
  padding-top: 38px;
}
.reading-section-head h2 {
  font-weight: 600;
  letter-spacing: -.02em;
  font-size: 28px;
}
.reading-section-head>.eyebrow {
  color: rgba(255,255,255,.72);
}
.prose p {
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0;
  color: rgba(255,255,255,.84);
}
.story h3 {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.3;
}
.story p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}
.numbers-strip strong {
  font-family: Sora,system-ui,sans-serif;
  font-weight: 500;
  letter-spacing: -.02em;
}
.record-row h3 {
  font-weight: 600;
  letter-spacing: 0;
}
.record-row p {
  font-size: 12px;
  line-height: 1.7;
}
.record-row.has-logo {
  grid-template-columns: 86px 32px minmax(0,1fr);
  gap: 14px;
}
.company-logo {
  width: 32px;
  height: 32px;
  min-width: 32px;
  object-fit: contain;
  border-radius: 50%;
  background: #000;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 0;
  align-self: start;
}
.company {
  gap: 12px;
  align-items: center;
}
.company .company-logo {
  align-self: center;
}
.company .company-copy {
  display: grid;
  gap: 5px;
  text-align: left;
  font-family: var(--type-mono);
}
.company .company-copy .ticker {
  font-size: 12px;
  font-weight: 700;
  color: white;
  min-width: 0;
}
.company .company-copy>span:last-child {
  font-size: 9px;
  color: rgba(255,255,255,.52);
  text-transform: uppercase;
}
.company:hover .company-copy span {
  color: #5bb7ff;
}
.edition-end h2 {
  font-weight: 600;
  letter-spacing: -.02em;
}
.footer {
  font-family: var(--type-mono);
}
.archive-page .mast {
  margin: 0;
}
.archive-page .archive-instrument {
  width: 100%;
  margin: 0;
}
.archive-braille {
  position: relative;
  display: flex;
  align-items: center;
  height: 36px;
  background: #0a0a0a;
  border-top: 1px solid #3b3b3b;
  overflow: hidden;
  isolation: isolate;
  gap: 16px;
}
.archive-strip-label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-left: 24px;
  font: 600 11px Sora,system-ui,sans-serif;
  letter-spacing: .18em;
  color: rgba(255,255,255,.72);
  white-space: nowrap;
}
.archive-strip-pattern {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  color: rgba(29,143,255,.24);
  font: 18px var(--type-mono);
}
.archive-strip-count {
  padding-right: 24px;
  font: 11px var(--type-mono);
  color: rgba(255,255,255,.52);
  white-space: nowrap;
}
.archive-headline {
  letter-spacing: 0 !important;
}
@media (max-width:1180px) {
  .mast .desktop-nav a {
    padding-inline: 8px;
    font-size: 10px;
  }
  .edition-title h1 {
    font-size: 32px;
  }
  .edition-layout {
    grid-template-columns: 175px minmax(0,1fr);
    gap: 40px;
  }
  .edition-page .page-width {
    width: calc(100% - 56px);
  }
}
@media (max-width:950px) {
  .mast .desktop-nav a {
    padding-inline: 6px;
    font-size: 9px;
    letter-spacing: .08em;
  }
  .mast .brand span {
    font-size: 10px;
  }
  .mast-left {
    gap: 8px;
  }
  .mast-label {
    padding-left: 8px;
    margin-left: 0;
  }
  .edition-title h1 {
    font-size: 29px;
  }
  .edition-hero {
    gap: 28px;
  }
  .edition-layout {
    gap: 30px;
    grid-template-columns: 155px minmax(0,1fr);
  }
  .prose p {
    font-size: 16px;
  }
  .company .company-copy {
    display: grid;
  }
  .company .company-copy>span:last-child {
    display: block;
  }
}
@media (max-width:720px) {
  .mast {
    padding: 10px 12px;
    min-height: 66px;
    gap: 8px;
  }
  .mast .desktop-nav {
    display: none;
  }
  .mast .brand span {
    font-size: 11px;
    letter-spacing: .08em;
  }
  .mast-label {
    display: inline-flex;
  }
  .mast .mobile-menu {
    display: block;
    margin-left: auto;
  }
  .mobile-menu summary {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    list-style: none;
    border-radius: 10px;
    background: rgba(242,237,227,.025);
    box-shadow: 0 0 0 1px rgba(255,255,255,.08);
    color: rgba(255,255,255,.72);
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu[open] summary {
    color: #5bb7ff;
  }
  .mast .mobile-menu nav {
    position: absolute;
    top: calc(100% + 6px);
    left: 8px;
    right: 8px;
    display: grid;
    padding: 6px;
    background: #06080d;
    box-shadow: 0 18px 42px rgba(0,0,0,.58),0 0 0 1px rgba(255,255,255,.16);
    border-radius: 8px;
    margin: 0;
    gap: 4px;
  }
  .mast .mobile-menu nav a {
    display: flex;
    min-height: 46px;
    font-size: 12px;
    border-radius: 4px;
    background: rgba(242,237,227,.026);
    padding-inline: 14px;
  }
  .mast .mobile-menu nav a:after {
    content: none;
  }
  .mast .mobile-menu nav a.selected {
    background: rgba(29,143,255,.088);
  }
  .edition-page .page-width {
    width: calc(100% - 40px);
  }
  .edition-bar>.mono {
    font-size: 9px;
    max-width: 170px;
  }
  .edition-hero {
    padding: 28px 0;
    gap: 24px;
  }
  .edition-title h1 {
    font-size: 29px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -.02em;
  }
  .edition-title>.eyebrow {
    font-size: 9px;
    letter-spacing: .14em;
  }
  .edition-layout {
    display: block;
    padding-top: 0;
  }
  .reading-section-head h2 {
    font-size: 27px;
  }
  .prose p {
    font-size: 16px;
    line-height: 1.75;
  }
  .story h3 {
    font-size: 18px;
  }
  .story p {
    font-size: 14px;
    line-height: 1.7;
  }
  .record-row p {
    font-size: 12px;
    line-height: 1.7;
  }
  .record-row.has-logo {
    grid-template-columns: 32px minmax(0,1fr);
    gap: 12px;
  }
  .record-row.has-logo .record-label {
    grid-column: 1/-1;
  }
  .record-row.has-logo .company-logo {
    grid-column: 1;
  }
  .record-row.has-logo>div {
    grid-column: 2;
  }
  .company {
    gap: 9px;
  }
  .company .company-copy .ticker {
    font-size: 11px;
  }
  .company .company-copy>span:last-child {
    font-size: 8px;
  }
  .company-logo {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }
  .trend {
    display: none;
  }
  .table-wrap th,.table-wrap td {
    font-size: 10px;
  }
  .archive-strip-pattern {
    display: none;
  }
  .archive-braille {
    justify-content: space-between;
    gap: 8px;
  }
  .archive-strip-label {
    padding-left: 14px;
    letter-spacing: .14em;
    font-size: 10px;
    gap: 8px;
  }
  .archive-strip-count {
    padding-right: 14px;
    font-size: 10px;
  }
  .byline .mono {
    font-size: 9px;
  }
}
@media (max-width:480px) {
  .archive-braille {
    height: 32px;
  }
  .archive-strip-label {
    padding-left: 10px;
    letter-spacing: .1em;
    font-size: 9px;
    gap: 7px;
  }
  .archive-strip-count {
    padding-right: 10px;
    font-size: 9px;
  }
}
@media (max-width:360px) {
  .mast-label {
    display: none;
  }
  .archive-strip-count {
    display: none;
  }
  .edition-title h1 {
    font-size: 26px;
  }
  .company .company-copy>span:last-child {
    font-size: 7px;
  }
}
@media (prefers-reduced-motion:reduce) {
  .mast nav a {
    transition: none;
  }
}
/* Published content retains every story, attribution, market value and record. */
.edition-hero.without-cover {
  grid-template-columns: 1fr;
}
.edition-hero.without-cover h1 {
  max-width: 1000px;
}
.reading-column {
  overflow-wrap: anywhere;
}
.story>div {
  min-width: 0;
}
.story-source {
  font-size: 9px;
  color: var(--muted);
  margin: 10px 0;
}
.story-source a,.prose a,.record-row a:hover {
  color: var(--blue);
}
.story p+p {
  margin-top: 12px;
}
.story-source a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.story-source img {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 5px;
  vertical-align: middle;
}
.ost-newsletter-market-band {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  border-block: 1px solid var(--line);
  margin: 20px 0;
  padding: 20px 0;
  gap: 18px;
  font-family: var(--mono);
}
.ost-newsletter-market-band>div {
  display: grid;
  gap: 10px;
}
.ost-newsletter-market-band em {
  font-style: normal;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--muted);
}
.ost-newsletter-market-band strong {
  font-size: 24px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
#markets>p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 18px;
}
.archive-context {
  margin-bottom: 18px;
}
.ost-newsletter-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.ost-newsletter-table th,.ost-newsletter-table td {
  padding: 16px 8px;
}
.ost-newsletter-table th:first-child,.ost-newsletter-table td:first-child {
  padding-left: 0;
}
.ost-newsletter-table th:last-child,.ost-newsletter-table td:last-child {
  padding-right: 0;
}
.ost-newsletter-table .trend svg {
  margin-left: auto;
  display: block;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.record-label {
  color: var(--blue);
}
@media (max-width:720px) {
  .edition-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .reading-rail {
    position: static;
    padding: 23px 0 25px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 31px;
  }
  .reading-rail nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
  }
  .reading-rail nav .eyebrow {
    flex-basis: 100%;
    padding-bottom: 9px;
  }
  .reading-rail nav a {
    gap: 8px;
    min-height: 44px;
  }
  .rail-note {
    display: none;
  }
  .company .company-copy {
    display: grid;
  }
  .ost-newsletter-market-band {
    gap: 10px;
  }
  .ost-newsletter-market-band em {
    font-size: 8px;
  }
  .ost-newsletter-market-band strong {
    font-size: 20px;
  }
  .ost-newsletter-table {
    font-size: 10px;
  }
  .ost-newsletter-table th {
    font-size: 8px;
  }
  .footer {
    width: calc(100% - 40px);
    flex-wrap: wrap;
  }
  .footer-links {
    gap: 12px;
  }
  .record-row:not(.has-logo) {
    grid-template-columns: 1fr;
  }
}
@media (display-mode:standalone) {
  body {
    padding-top: env(safe-area-inset-top,0px);
    padding-bottom: env(safe-area-inset-bottom,0px);
  }
}
@media print {
  body,.edition-page {
    background: white;
    color: black;
  }
  .edition-title h1,.reading-section-head h2,.prose p,.story h3,.story p,.record-row h3,.record-row p,.company .company-copy .ticker,.company .company-copy>span:last-child {
    color: #222;
  }
  .edition-page .page-width {
    width: 100%;
    max-width: none;
  }
  .edition-layout {
    display: block;
  }
  .edition-hero {
    display: block;
  }
  .edition-hero figure {
    max-width: 360px;
    margin-top: 20px;
  }
}
