@import url('https://fonts.googleapis.com/css2?family=Gloock&family=Libre+Caslon+Text:wght@400;700&family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --ink: #111820;
  --text: #27313a;
  --muted: #65717b;
  --line: #d9dde0;
  --wash: #f4f6f7;
  --accent: #8a2432;
  --blue: #173f5f;
  --red: #8a2432;
  --white: #fff;
  --display: Gloock, Didot, "Bodoni 72", Georgia, serif;
  --serif: "Libre Caslon Text", "Iowan Old Style", Georgia, serif;
  --reading: Merriweather, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --measure: 68ch;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; background: var(--white); color: var(--ink); font-family: var(--sans); }
body.menu-open, body.search-open { overflow: hidden; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
button, input { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 48px)); max-width: 100%; min-width: 0; margin-inline: auto; overflow: visible; }
.skip-link { position: fixed; z-index: 20; top: 8px; left: 8px; padding: 10px 14px; background: var(--ink); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.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; }

.site-header { background: white; border-bottom: 1px solid var(--ink); }
.utility-bar { display: none; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 11px; }
.utility-inner p { margin: 0; }
.utility-links { display: flex; gap: 18px; }
.utility-links a { text-decoration: none; }
.brand-row { min-height: 76px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
.menu-button, .search-button { border: 0; background: transparent; cursor: pointer; }
.menu-button { grid-column: 3; grid-row: 1; display: none; justify-self: end; width: 44px; height: 44px; margin-left: 12px; padding: 10px; align-items: center; justify-content: center; }
.menu-icon { position: relative; width: 24px; height: 18px; }
.menu-icon span { position: absolute; right: 0; left: 0; height: 2px; background: currentColor; transform-origin: center; transition: top .32s cubic-bezier(.22,1,.36,1), transform .32s cubic-bezier(.22,1,.36,1), opacity .2s ease; }
.menu-icon span:nth-child(1) { top: 1px; }
.menu-icon span:nth-child(2) { top: 8px; }
.menu-icon span:nth-child(3) { top: 15px; }
.menu-button[aria-expanded="true"] { z-index: 14; color: var(--white); }
.menu-button[aria-expanded="true"] .menu-icon span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-icon span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] .menu-icon span:nth-child(3) { top: 8px; transform: rotate(-45deg); }
.wordmark { grid-column: 1; grid-row: 1; justify-self: start; }
.wordmark, .footer-wordmark { display: inline-flex; align-items: center; line-height: 1; text-decoration: none; white-space: nowrap; }
.brand-mark { width: 39px; height: 31px; margin-right: 5px; color: var(--ink); flex: none; transform: translateY(-.5px); }
.domain-root { font-family: var(--sans); font-size: 25px; font-weight: 700; line-height: 1; letter-spacing: -.025em; }
.domain-network { margin-left: 1px; font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1; letter-spacing: -.018em; }
.domain-network { color: #474747; }
.search-button { grid-column: 2; grid-row: 1; justify-self: end; display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; padding: 10px; font-size: 12px; font-weight: 700; }
.search-icon { position: relative; flex: 0 0 18px; width: 18px; height: 18px; border: 1.5px solid currentColor; border-radius: 50%; transition: transform .25s cubic-bezier(.22,1,.36,1); }
.search-icon::after { content: ""; position: absolute; width: 6px; height: 1.5px; right: -5px; bottom: -2px; background: currentColor; transform: rotate(45deg); }
.search-button:hover .search-icon, .search-button:focus-visible .search-icon { transform: scale(1.08); }
.topic-nav { border-top: 1px solid var(--line); }
.topic-nav ul { margin: 0; padding: 0; min-height: 46px; display: flex; align-items: center; justify-content: flex-start; gap: clamp(16px, 2.3vw, 31px); list-style: none; font-size: 12px; font-weight: 650; white-space: nowrap; }
.topic-nav ul.shell { margin-inline: auto; }
.topic-nav a { text-decoration: none; }
.topic-nav a:hover, .topic-nav a:focus-visible { color: var(--red); }
.menu-context, .menu-utility, .menu-link-note { display: none; }
.menu-open .topic-nav { position: fixed; z-index: 12; inset: 76px 0 0; display: flex; flex-direction: column; overflow-y: auto; overscroll-behavior: contain; padding-bottom: clamp(22px, 4vh, 40px); background: #111; color: var(--white); border: 0; animation: menu-surface-in .28s ease-out both; }
.menu-open .menu-context { width: min(880px, calc(100% - 64px)); display: flex; align-items: baseline; justify-content: space-between; gap: 32px; padding: clamp(28px, 5vh, 48px) 0 14px; border-bottom: 1px solid var(--accent); }
.menu-open .menu-context p, .menu-open .menu-context span { margin: 0; }
.menu-open .menu-context p { font-size: 11px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.menu-open .menu-context span { color: #9ea4a8; font-size: 12px; line-height: 1.45; text-align: right; }
.menu-open .topic-nav ul { width: min(880px, calc(100% - 64px)); min-height: 0; margin-inline: auto; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: start; column-gap: clamp(44px, 8vw, 112px); white-space: normal; }
.menu-open .topic-nav > ul li { border-top: 1px solid rgb(255 255 255 / .22); }
.menu-open .topic-nav > ul li:nth-last-child(-n + 2) { border-bottom: 1px solid rgb(255 255 255 / .22); }
.menu-open .topic-nav > ul a { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; min-height: 86px; align-items: center; color: #f3f3f3; font-family: var(--display); font-size: clamp(24px, 3vw, 42px); font-weight: 400; line-height: 1.08; transition: color .22s ease, padding .32s cubic-bezier(.22,1,.36,1); }
.menu-open .menu-link-note { display: block; color: #858b8f; font-family: var(--sans); font-size: 9px; font-weight: 650; letter-spacing: .09em; line-height: 1.25; text-align: right; text-transform: uppercase; transition: color .22s ease; }
.menu-open .topic-nav > ul a:hover, .menu-open .topic-nav > ul a:focus-visible { padding-left: 8px; color: #e47986; }
.menu-open .topic-nav > ul a:hover .menu-link-note, .menu-open .topic-nav > ul a:focus-visible .menu-link-note { color: #f0bdc3; }
.menu-open .menu-utility { width: min(880px, calc(100% - 64px)); margin-top: auto; padding-top: clamp(20px, 4vh, 36px); display: grid; grid-template-columns: minmax(220px, 1fr) auto; align-items: end; gap: 30px; }
.menu-open .menu-utility > p { max-width: 40ch; margin: 0; color: #8f969a; font-family: var(--sans); font-size: 11px; line-height: 1.55; }
.menu-open .menu-utility-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 22px; }
.menu-open .menu-utility a { min-height: 32px; display: inline-flex; align-items: center; color: #d6d9db; font-family: var(--sans); font-size: 11px; font-weight: 650; text-decoration: none; }
.menu-open .menu-utility a:hover, .menu-open .menu-utility a:focus-visible { color: #e47986; }
.menu-open .site-header { position: relative; z-index: 13; background: #111; color: var(--white); border-bottom-color: rgb(255 255 255 / .22); }
.menu-open .brand-mark, .menu-open .domain-network { color: inherit; }
.menu-open .search-button { opacity: 0; pointer-events: none; }
.menu-open .menu-button { border: 1px solid rgb(255 255 255 / .34); }
@keyframes menu-surface-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes menu-item-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .menu-open .topic-nav > ul li { animation: menu-item-in .42s cubic-bezier(.22,1,.36,1) both; }
  .menu-open .topic-nav > ul li:nth-child(2) { animation-delay: 35ms; }
  .menu-open .topic-nav > ul li:nth-child(3) { animation-delay: 70ms; }
  .menu-open .topic-nav > ul li:nth-child(4) { animation-delay: 105ms; }
  .menu-open .topic-nav > ul li:nth-child(5) { animation-delay: 140ms; }
  .menu-open .topic-nav > ul li:nth-child(6) { animation-delay: 175ms; }
}

.section { padding-block: clamp(52px, 7vw, 88px); }
#latest { padding-top: clamp(42px, 5vw, 64px); }
.section-title { margin: 0 0 24px; font-family: var(--sans); font-size: clamp(25px, 2.7vw, 34px); font-weight: 700; line-height: 1.1; letter-spacing: -.025em; }
.section-title-row { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; margin-bottom: 34px; }
#latest .section-title-row { border-bottom: 1px solid var(--line); }
.section-title-row .section-title { margin-bottom: 13px; }
.kicker { margin: 0 0 10px; color: var(--muted); font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
.headline { margin: 0; font-family: var(--display); font-weight: 400; line-height: 1.05; letter-spacing: -.008em; text-wrap: pretty; }
.headline a { text-decoration: none; }
.headline a:hover { text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 1px; }
.dek { color: #656a6e; font-family: var(--sans); font-weight: 400; line-height: 1.68; text-wrap: pretty; }
.byline { color: #85898d; font-size: 11px; }
.byline strong { color: #4d5256; font-weight: 600; }
.article-image {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--wash);
  border-bottom: 0;
}
.article-image img { width: 100%; height: 100%; object-fit: cover; }

.index-hero { --hero-x: 0px; --hero-y: 0px; position: relative; overflow: hidden; padding-block: clamp(26px, 2.6vw, 40px); background: linear-gradient(180deg, oklch(98.9% .005 225) 0%, oklch(97.6% .014 225) 100%); isolation: isolate; }
.index-hero::before { content: ""; position: absolute; z-index: -1; inset: -18% -8%; background: radial-gradient(ellipse at 50% 8%, rgb(255 255 255 / .68), transparent 58%); transform: translate3d(var(--hero-x), var(--hero-y), 0); pointer-events: none; }
.index-hero .shell { width: min(1200px, calc(100% - 48px)); }
.index-hero-grid { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(360px, 1fr); height: clamp(570px, 61vh, 630px); }
.index-lead { position: relative; display: grid; min-width: 0; overflow: hidden; background: #e3f0f7; }
.index-field { position: absolute; inset: 0; overflow: hidden; color: #7795ac; pointer-events: none; }
.index-field::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgb(23 63 95 / .11) 1px, transparent 1px); background-size: 84px 100%; opacity: .55; }
.evidence-orbit { position: absolute; z-index: 2; top: 170px; right: 24px; width: 330px; height: 330px; overflow: visible; filter: drop-shadow(0 6px 7px rgb(23 63 95 / .08)); }
.evidence-orbit-halo { fill: rgb(255 255 255 / .26); stroke: rgb(23 63 95 / .12); stroke-width: 1; }
.evidence-orbit-ring, .evidence-orbit-ticks, .evidence-orbit-arc, .evidence-orbit-sight path, .evidence-orbit-sight circle { fill: none; vector-effect: non-scaling-stroke; }
.evidence-orbit-ring { stroke: rgb(23 63 95 / .3); stroke-width: 1; }
.evidence-orbit-ticks { stroke: rgb(23 63 95 / .54); stroke-width: 5; stroke-dasharray: .45 3.72; stroke-linecap: butt; }
.evidence-orbit-arc { stroke: var(--accent); stroke-width: 3; stroke-linecap: square; }
.evidence-orbit-arc-a { stroke-dasharray: 21 79; }
.evidence-orbit-arc-b { stroke-width: 1.5; stroke-dasharray: 8 12 18 62; opacity: .72; }
.evidence-orbit-sight { stroke: rgb(138 36 50 / .5); stroke-width: 1; }
.evidence-orbit-sight path { stroke-dasharray: 11 10; }
.evidence-orbit-sight circle { stroke: var(--accent); }
.evidence-orbit-sight .evidence-orbit-core { fill: var(--accent); stroke: #fff; stroke-width: 2; }
.index-word { position: absolute; color: rgb(71 111 139 / .16); font-family: var(--display); font-weight: 400; line-height: .82; white-space: nowrap; }
.index-word-ai { top: 17px; left: 26px; font-size: 150px; }
.index-word-compute { top: 32px; right: 22px; font-size: 92px; }
.index-word-science, .index-word-systems { position: absolute; bottom: 26px; color: rgb(71 111 139 / .14); font-family: var(--display); font-size: 76px; line-height: .8; }
.index-word-science { left: 18px; }
.index-word-systems { right: -18px; }
.coordinate { position: absolute; z-index: 2; color: var(--accent); font-size:11px; letter-spacing: .08em; }
.coordinate-n { top: 18px; left: 176px; }
.coordinate-w { top: 49%; left: 12px; }
.coordinate-e { top: 49%; right: 10px; }
.coordinate-s { bottom: 17px; left: 176px; }
.axis { position: absolute; z-index: 1; background: rgb(138 36 50 / .72); }
.axis-x { top: 50%; right: 0; left: 0; height: 1px; }
.axis-y { top: 0; bottom: 0; left: 175px; width: 1px; }
.axis-x::before, .axis-x::after, .axis-y::before, .axis-y::after { content: ""; position: absolute; width: 7px; height: 7px; border-color: var(--accent); border-style: solid; transform: rotate(45deg); }
.axis-x::before { left: 4px; top: -4px; border-width: 0 0 1px 1px; }
.axis-x::after { right: 4px; top: -4px; border-width: 1px 1px 0 0; }
.axis-y::before { top: 4px; left: -4px; border-width: 1px 0 0 1px; }
.axis-y::after { bottom: 4px; left: -4px; border-width: 0 1px 1px 0; }
.axis-cross { position: absolute; z-index: 3; top: calc(50% - 9px); right: 35%; width: 18px; height: 18px; border: 1px solid var(--accent); }
.axis-cross::before, .axis-cross::after { content: ""; position: absolute; background: var(--accent); }
.axis-cross::before { top: 8px; left: -22px; width: 62px; height: 2px; }
.axis-cross::after { top: -22px; left: 8px; width: 2px; height: 62px; }
.axis-scan { position: absolute; z-index: 4; top: calc(50% - 4px); left: 0; width: 9px; height: 9px; border: 2px solid #fff; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 0 18px rgb(138 36 50 / .48); opacity: 0; }
.index-copy { position: relative; z-index: 4; align-self: center; width: min(590px, 74%); margin: 54px 0 58px 64px; padding: 27px 66px 30px 30px; opacity: 1; visibility: visible; background: #fff; clip-path: polygon(0 0, 92% 0, 92% 12%, 100% 12%, 100% 58%, 78% 58%, 78% 100%, 0 100%); }
.index-category { margin: 0 0 15px; color: var(--accent); font-size: 10px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.index-copy .headline { max-width: 13ch; font-size: clamp(41px, 3.75vw, 54px); line-height: 1.02; }
.index-copy .headline a { text-decoration: none; }
.index-rule { display: block; width: 38px; height: 2px; margin: 20px 0 16px; background: var(--accent); }
.index-copy .dek { max-width: 48ch; margin: 0; color: #47535c; font-size: 14px; line-height: 1.55; }
.index-copy .byline { margin: 17px 0 0; color: #5f6971; }
.index-cta { display: inline-flex; align-items: center; gap: 64px; margin-top: 22px; padding-bottom: 5px; border-bottom: 1px solid var(--accent); color: var(--accent); font-size: 14px; text-decoration: none; }
.index-cta span { transition: transform .25s cubic-bezier(.22,1,.36,1); }
.card-linkable:hover .index-cta span { transform: translateX(6px); }
.index-briefing { padding: 26px 0 0 28px; border-left: 1px solid var(--line); }
.index-briefing h2 { margin: 0 0 11px; color: var(--accent); font-size: 10px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.index-briefing ol { margin: 0; padding: 0; list-style: none; }
.index-briefing li { position: relative; border-bottom: 1px solid var(--line); transition: background-color .28s cubic-bezier(.22,1,.36,1); }
.index-briefing li::before { content: ""; position: absolute; top: 0; bottom: 0; left: -28px; width: 2px; background: var(--accent); transform: scaleY(0); transform-origin: 50% 0; transition: transform .35s cubic-bezier(.22,1,.36,1); }
.index-briefing li.is-active { background: linear-gradient(90deg, rgb(138 36 50 / .055), transparent 72%); }
.index-briefing li.is-active::before { transform: scaleY(1); }
.index-briefing li.is-active .brief-number { color: #173f5f; }
.index-briefing li.is-active a > b { transform: translateX(4px); }
.index-briefing li:first-child { border-top: 1px solid var(--line); }
.index-briefing li a { display: grid; grid-template-columns: 44px 1fr 18px; gap: 10px; align-items: center; min-height: 102px; padding-block: 8px; text-decoration: none; }
.brief-number { color: var(--accent); font-family: var(--display); font-size: 29px; line-height: 1; }
.index-briefing em { display: block; margin-bottom: 8px; color: var(--accent); font-size:11px; font-style: normal; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.index-briefing strong { display: block; color: #29343d; font-family: var(--serif); font-size: 14px; font-weight: 400; line-height: 1.34; }
.index-briefing small { display: block; margin-top: 9px; color: #7d858b; font-size:11px; line-height: 1.3; }
.index-briefing li a > b { color: var(--accent); font-size: 15px; font-weight: 400; transition: transform .25s cubic-bezier(.22,1,.36,1); }
.index-briefing li a:hover > b { transform: translateX(4px); }
.briefing-standard { display: grid; grid-template-columns: minmax(0, 1fr) 18px; gap: 10px; align-items: center; margin-top: 18px; padding: 15px 0 0; color: var(--accent); font-size: 12px; font-weight: 600; text-decoration: none; }
.briefing-standard > b { color: var(--accent); font-size: 16px; font-weight: 400; transition: transform .25s cubic-bezier(.22,1,.36,1); }
.briefing-standard:hover > b, .briefing-standard:focus-visible > b { transform: translateX(4px); }

@media (prefers-reduced-motion: no-preference) {
  .scroll-motion-ready .scroll-cue {
    opacity: 1;
    transform: none;
    transition: opacity .62s cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0ms), transform .72s cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0ms);
  }
  .scroll-motion-ready .scroll-cue:not(.is-visible) { opacity: .62; transform: translate3d(0, 16px, 0); }
  .scroll-motion-ready .scroll-cue--heading:not(.is-visible) { opacity: .7; transform: translate3d(0, 12px, 0); }
  .scroll-motion-ready .scroll-cue--news:not(.is-visible) { transform: translate3d(0, 12px, 0); }
  .scroll-motion-ready .scroll-cue--cards:not(.is-visible) { transform: translate3d(0, 22px, 0); }
  .scroll-motion-ready .scroll-cue--desk:not(.is-visible) { transform: translate3d(0, 14px, 0); }
  .scroll-motion-ready .scroll-cue--feature-left:not(.is-visible) { transform: translate3d(-18px, 0, 0); }
  .scroll-motion-ready .scroll-cue--feature-right:not(.is-visible) { transform: translate3d(18px, 0, 0); }
  .scroll-motion-ready .scroll-cue--statement:not(.is-visible) { opacity: .68; transform: translate3d(0, 18px, 0) scale(.988); }
  .scroll-motion-ready .scroll-cue .article-image img { transition: transform .9s cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0ms); }
  .scroll-motion-ready .scroll-cue:not(.is-visible) .article-image img { transform: scale(1.025); }
}

@media (prefers-reduced-motion: no-preference) {
  .index-copy { animation: index-copy-in .7s cubic-bezier(.22,1,.36,1) both; }
  .index-briefing li { animation: index-brief-in .55s cubic-bezier(.22,1,.36,1) both; }
  .index-briefing li:nth-child(2) { animation-delay: .06s; }
  .index-briefing li:nth-child(3) { animation-delay: .12s; }
  .index-briefing li:nth-child(4) { animation-delay: .18s; }
  .index-word-ai { animation: index-drift-a 18s ease-in-out infinite alternate; }
  .index-word-compute { animation: index-drift-b 24s ease-in-out infinite alternate; }
  .index-word-science { animation: index-drift-b 22s ease-in-out -7s infinite alternate-reverse; }
  .index-word-systems { animation: index-drift-a 26s ease-in-out -9s infinite alternate-reverse; }
  .index-field::before { animation: index-grid-breathe 9s ease-in-out infinite; }
  .evidence-orbit-dial { transform-origin: 160px 160px; animation: index-orbit-turn 28s linear infinite; }
  .evidence-orbit-arc-b { transform-origin: 160px 160px; animation: index-orbit-counter 17s linear infinite; }
  .evidence-orbit-sight { transform-origin: 160px 160px; animation: index-orbit-breathe 5s ease-in-out infinite; }
  .axis-cross { animation: index-cross 4s ease-in-out infinite; }
  .axis-scan { animation: index-scan 8s cubic-bezier(.45,0,.55,1) infinite; }
}
@keyframes index-orbit-turn { to { transform: rotate(360deg); } }
@keyframes index-orbit-counter { to { transform: rotate(-360deg); } }
@keyframes index-orbit-breathe { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
@keyframes index-copy-in { from { transform: translateX(-24px); } to { transform: translateX(0); } }
@keyframes index-brief-in { from { opacity: .01; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes index-drift-a { from { transform: translate3d(var(--hero-x), var(--hero-y), 0); } to { transform: translate3d(calc(18px + var(--hero-x)), calc(-9px + var(--hero-y)), 0); } }
@keyframes index-drift-b { from { transform: translate3d(var(--hero-x), var(--hero-y), 0); } to { transform: translate3d(calc(-22px + var(--hero-x)), calc(8px + var(--hero-y)), 0); } }
@keyframes index-grid-breathe { 0%, 100% { opacity: .35; } 50% { opacity: .72; } }
@keyframes index-cross { 0%, 100% { opacity: .7; } 50% { opacity: 1; } }
@keyframes index-scan { 0%, 7% { opacity: 0; transform: translate3d(0,0,0); } 12% { opacity: 1; } 88% { opacity: 1; } 94%, 100% { opacity: 0; transform: translate3d(790px,0,0); } }

.reporting-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(42px, 6vw, 78px); align-items: start; }
.news-stream { min-width: 0; }
.news-row { position: relative; display: grid; grid-template-columns: minmax(270px, 1fr) minmax(0, 1.08fr); gap: clamp(26px, 4vw, 46px); align-items: start; padding: 0; margin-bottom: clamp(40px, 4.5vw, 54px); }
.news-row:last-child { margin-bottom: 0; }
.news-row .article-image { border-bottom: 0; }
.news-row .headline { max-width: 19ch; font-size: clamp(23px, 2vw, 27px); line-height: 1.16; }
.news-row .byline { margin: 15px 0 0; }
.news-row .dek { max-width: 48ch; margin: 16px 0 0; color: #6d7175; font-family: var(--sans); font-size: 14px; line-height: 1.68; }
.news-row .kicker { display: inline-block; margin-bottom: 13px; padding-bottom: 4px; border-bottom: 2px solid var(--accent); font-size:11px; letter-spacing: .16em; }
.week-rail { padding-left: 36px; border-left: 1px solid var(--line); }
.rail-label { margin: 0 0 12px; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.week-rail h3 { margin: 0 0 24px; font-size: 25px; line-height: 1.15; }
.week-rail a, .week-rail .week-item { display: grid; grid-template-columns: 82px 1fr; gap: 16px; align-items: start; padding: 16px 0 22px; text-decoration: none; }
.week-rail img { width: 82px; aspect-ratio: 1; object-fit: cover; }
.week-rail strong { display: block; color: #33373a; font-size: 14px; font-weight: 500; line-height: 1.4; }
.week-rail small { display: block; margin-top: 8px; color: #85898d; font-family: var(--reading); font-size:11px; font-style: italic; font-weight: 400; letter-spacing: .03em; text-transform: none; }
.week-rail a:hover strong { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: .18em; }

@media (max-width: 1100px) {
  .reporting-layout { display: block; width: 100%; }
  .news-stream { width: 100%; }
  .week-rail { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 28px; margin-top: clamp(38px, 5vw, 54px); padding: 28px 0 0; border-top: 3px solid var(--ink); border-left: 0; }
  .week-rail h3 { grid-column: 1 / -1; }
}

@media (min-width: 721px) and (max-width: 1100px) {
  .news-stream { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 4vw, 44px) clamp(22px, 3vw, 32px); }
  .news-row { display: block; min-width: 0; margin-bottom: 0; }
  .news-row > div { padding-top: 18px; }
  .news-row .article-image { aspect-ratio: 16 / 9; }
  .news-row .headline { max-width: 22ch; font-size: clamp(23px, 2.8vw, 27px); }
  .news-row .kicker { margin-bottom: 9px; }
  .news-row .byline { margin-top: 10px; }
  .news-row .dek { display: -webkit-box; margin-top: 12px; overflow: hidden; line-height: 1.58; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .week-rail h3 { margin-bottom: 12px; }
  .week-rail a, .week-rail .week-item { padding-block: 12px 16px; }
}

.latest-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; column-gap: 30px; row-gap: 34px; }
.story-card { min-width: 0; }
.story-card + .story-card { border-left: 1px solid var(--line); padding-left: 30px; }
.story-card .headline { font-size: clamp(23px, 2.4vw, 31px); line-height: 1.12; }
.story-card .dek { margin: 12px 0; font-size: 14px; }
.story-card.featured { grid-row: span 2; }
.story-card.featured .headline { font-size: clamp(30px, 3.5vw, 45px); }
.story-card.featured .story-art { min-height: 0; margin-bottom: 22px; }
.story-art { position: relative; min-height: 138px; margin-bottom: 17px; overflow: hidden; background: var(--wash); border-bottom: 1px solid var(--ink); }
.story-art svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.story-card:nth-child(4) { border-left: 1px solid var(--line); padding-left: 30px; }

.review-band {
  padding-bottom: clamp(72px, 8vw, 104px);
  background: linear-gradient(to bottom, #191919 0, #191919 44%, var(--white) 44%, var(--white) 100%);
  color: var(--white);
}
.review-band .section-title-row { border-bottom: 1px solid rgb(255 255 255 / .38); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.review-item { position: relative; padding: 22px; display: flex; flex-direction: column; border-radius: 0; background: var(--white); color: var(--ink); box-shadow: 0 2px 6px rgb(0 0 0 / .14); }
.card-linkable { position: relative; cursor: pointer; }
.card-hit-area { position: absolute; z-index: 5; inset: 0; display: block; }
.card-hit-area:focus-visible { outline: 3px solid var(--accent); outline-offset: -4px; }
.card-linkable .article-image img { transition: transform .55s cubic-bezier(.22,1,.36,1); }
.card-linkable:hover .article-image img { transform: scale(1.018); }
.card-linkable:hover .headline { color: var(--accent); }
.review-item .article-image { margin-bottom: 19px; }
.review-item + .review-item { border-left: 0; }
.review-item .headline { display: -webkit-box; overflow: hidden; min-height: 2.24em; color: #1a1a1a; font-size: 24px; line-height: 1.12; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; }
.review-item .dek { margin: 12px 0; font-size: 14px; }
.assessment { display: flex; align-items: center; gap: 10px; margin: 18px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: #33373a; font-size: 11px; font-weight: 700; }
.assessment::before { content: ""; width: 20px; height: 2px; background: var(--accent); }

#ideas { padding-block: clamp(64px, 8vw, 100px); background: #191919; color: var(--white); }
#ideas .section-title-row { margin-bottom: clamp(34px, 5vw, 58px); border-bottom: 1px solid rgb(255 255 255 / .28); }
.ideas-grid { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(300px, .72fr); gap: clamp(40px, 5vw, 64px); align-items: start; }
.idea-main { display: block; }
.idea-main .article-image { height: auto; min-height: 0; margin: 0; aspect-ratio: 16 / 9; }
.idea-copy { min-width: 0; padding-top: 24px; }
.idea-main .kicker { width: fit-content; padding-bottom: 5px; border-bottom: 2px solid var(--accent); color: #b5babf; }
.idea-main .headline { max-width: none; font-size: clamp(32px, 3.2vw, 46px); line-height: 1.08; }
.idea-main .dek { max-width: 54ch; margin: 20px 0 16px; color: #b9bec2; font-size: 14px; }
.idea-main .byline { margin: 0; color: #9da3a8; }
.opinion-list { padding: 0; border-top: 3px solid var(--accent); border-radius: 0; background: transparent; }
.opinion-list h3 { margin: 17px 0 8px; font-family: var(--sans); font-size: 24px; }
.opinion-list a { display: grid; grid-template-columns: minmax(96px, 34%) minmax(0, 1fr); gap: 18px; align-items: center; min-height: 126px; padding: 22px 0; border-top: 1px solid rgb(255 255 255 / .24); color: #e2e4e5; text-decoration: none; transition: color .2s ease; }
.opinion-list a:first-of-type { border-top: 0; }
.opinion-list img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.opinion-list span { min-width: 0; }
.opinion-list strong { display: -webkit-box; overflow: hidden; font-family: var(--display); font-size: clamp(16px, 1.55vw, 20px); font-weight: 400; line-height: 1.22; text-wrap: pretty; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3; }
.opinion-list a:hover, .opinion-list a:focus-visible { color: var(--white); }
.opinion-list a:hover img, .opinion-list a:focus-visible img { filter: brightness(1.08); }
.desk-story.card-linkable:hover h3, .desk-story.card-linkable:focus-within h3 { color: var(--accent); }

.desk-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(40px, 7vw, 90px); }
.desk-story { display: grid; grid-template-columns: 145px 1fr; column-gap: 24px; padding: 25px 0; }
.desk-story:nth-child(-n + 2) { border-top: 1px solid var(--line); }
.desk-topic { grid-row: 1 / span 3; margin: 2px 0 0; color: var(--blue); font-size: 11px; font-weight: 700; line-height: 1.35; }
.desk-story h3 { margin: 0; color: #1a1a1a; font-family: var(--display); font-size: 24px; font-weight: 400; line-height: 1.13; letter-spacing: -.018em; text-wrap: pretty; }
.desk-story > p:not(.desk-topic) { margin: 9px 0 0; color: var(--text); font-family: var(--sans); font-size: 12px; line-height: 1.6; }
.desk-story span { margin-top: 12px; color: var(--muted); font-size: 12px; font-weight: 500; }

/* Shared treatment for reading-time metadata. */
.byline,
.index-briefing small,
.desk-story span { color: var(--muted); font-family: var(--sans); font-size: 12px; font-style: normal; font-weight: 500; line-height: 1.4; letter-spacing: 0; text-transform: none; }

.most-read-section { padding-block: clamp(72px, 9vw, 112px); background: var(--white); }
.focus-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(290px, .65fr); gap: clamp(32px, 4vw, 64px); align-items: start; }
.focus-story { background: var(--wash); }
.focus-story .article-image { aspect-ratio: 16 / 8.2; }
.focus-copy { padding: clamp(28px, 3.5vw, 42px); }
.focus-copy .kicker { display: inline-block; padding-bottom: 5px; border-bottom: 2px solid var(--accent); }
.focus-copy .headline { max-width: none; font-size: clamp(32px, 3.4vw, 44px); line-height: 1.08; text-wrap: balance; }
.focus-copy .dek { max-width: 43ch; margin: 20px 0 18px; color: #676d72; font-size: 15px; }
.most-read { padding-top: 0; border-top: 3px solid var(--ink); }
.most-read h2 { margin: 17px 0 13px; font-family: var(--sans); font-size: 26px; letter-spacing: -.02em; }
.most-read ol { margin: 0; padding: 0; list-style: none; counter-reset: stories; }
.most-read li { position: relative; min-height: 78px; padding: 17px 0 17px 38px; border-top: 1px solid var(--line); counter-increment: stories; }
.most-read li::before { content: counter(stories); position: absolute; top: 15px; left: 0; color: var(--red); font-family: var(--display); font-size: 24px; }
.most-read a, .most-read .static-story { display: block; color: #34393d; font-family: var(--display); font-size: 17px; font-weight: 400; line-height: 1.25; text-decoration: none; }
.most-read span { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; font-weight: 500; }

.editorial-statement { padding: clamp(76px, 9vw, 124px) 0 clamp(72px, 8vw, 108px); background: #e4f3f5; color: var(--ink); text-align: center; }
.editorial-statement-inner { display: flex; flex-direction: column; align-items: center; }
.editorial-statement-label { margin: 0 0 30px; color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.editorial-statement h2 { max-width: 1060px; margin: 0; font-family: var(--display); font-size: clamp(40px, 5vw, 70px); font-weight: 400; line-height: 1.08; letter-spacing: -.032em; text-wrap: balance; }

.site-footer { padding: clamp(36px, 4vw, 48px) 0 30px; background: #0d1419; color: var(--white); }
.footer-simple { display: grid; grid-template-columns: minmax(260px, 1fr) auto; grid-template-areas: "brand links" "copyright links"; column-gap: clamp(44px, 7vw, 96px); row-gap: 4px; align-items: start; }
.footer-wordmark { grid-area: brand; width: fit-content; margin: 0; color: var(--white); }
.footer-wordmark .brand-mark { width: 39px; height: 31px; margin-right: 5px; color: #f3f6f7; }
.footer-wordmark .domain-root { font-size: 25px; }
.footer-wordmark .domain-network { font-size: 24px; }
.footer-wordmark .domain-network { color: #fff; }
.footer-links { grid-area: links; align-self: center; display: grid; grid-template-columns: repeat(4, auto); gap: 0 clamp(22px, 3vw, 40px); align-items: start; }
.footer-links a { position: relative; display: inline-flex; min-height: 38px; align-items: flex-start; color: #c6d0d5; font-size: 13px; font-weight: 600; text-decoration: none; transition: color .2s ease; }
.footer-links a::after { content: ""; position: absolute; right: 0; bottom: 4px; left: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .28s cubic-bezier(.22,1,.36,1); }
.footer-links a:hover, .footer-links a:focus-visible, .footer-links a[aria-current="page"] { color: var(--white); }
.footer-links a:hover::after, .footer-links a:focus-visible::after, .footer-links a[aria-current="page"]::after { transform: scaleX(1); }
.footer-copyright { grid-area: copyright; margin: 0; color: #849199; font-size: 11px; font-weight: 500; white-space: nowrap; }

/* Trust and information pages */
.trust-page { background: linear-gradient(90deg, #f4f8fa 0, #fff 42%, #fff 100%); }
.trust-hero { padding: clamp(62px, 9vw, 118px) 0 clamp(48px, 7vw, 84px); border-bottom: 1px solid var(--line); }
.trust-hero-grid { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(48px, 9vw, 128px); align-items: end; }
.trust-index { margin: 0; color: var(--accent); font-family: var(--serif); font-size: clamp(68px, 9vw, 124px); line-height: .8; letter-spacing: -.06em; }
.trust-eyebrow { margin: 0 0 18px; color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.trust-hero h1 { max-width: 900px; margin: 0; font-family: var(--display); font-size: clamp(52px, 7vw, 88px); font-weight: 400; line-height: .98; letter-spacing: -.025em; text-wrap: pretty; }
.trust-standfirst { max-width: 720px; margin: 26px 0 0; color: var(--text); font-family: var(--reading); font-size: clamp(18px, 1.8vw, 22px); line-height: 1.6; }
.trust-layout { display: grid; grid-template-columns: minmax(190px, 260px) minmax(0, 760px); gap: clamp(54px, 9vw, 120px); align-items: start; padding-block: clamp(58px, 8vw, 104px); }
.trust-nav { position: sticky; top: 24px; padding-top: 14px; border-top: 3px solid var(--ink); }
.trust-nav p { margin: 0 0 12px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.trust-nav a { display: block; padding: 12px 0; border-top: 1px solid var(--line); color: var(--text); font-family: var(--serif); font-size: 14px; text-decoration: none; }
.trust-nav a:hover, .trust-nav a:focus-visible { color: var(--accent); }
.trust-content { min-width: 0; color: var(--text); font-family: var(--reading); font-size: 18px; line-height: 1.78; }
.trust-section { padding: 0 0 52px; scroll-margin-top: 24px; }
.trust-section + .trust-section { padding-top: 50px; border-top: 1px solid var(--line); }
.trust-section h2 { margin: 0 0 20px; color: var(--ink); font-family: var(--display); font-size: clamp(32px, 4vw, 48px); font-weight: 400; line-height: 1.08; letter-spacing: -.018em; }
.trust-section h3 { margin: 32px 0 10px; color: var(--ink); font-family: var(--serif); font-size: 21px; line-height: 1.3; }
.trust-section p { margin: 0 0 1.3em; }
.trust-section ul { margin: 0; padding-left: 1.2em; }
.trust-section li { margin-bottom: .75em; padding-left: .3em; }
.contact-email { margin: 24px 0 0; color: var(--muted); font-family: var(--sans); font-size: 14px; font-weight: 500; }
.contact-email a { color: var(--accent); font-weight: 700; text-underline-offset: .22em; }
.trust-note { margin: 10px 0 54px; padding: 22px 24px; border-left: 3px solid var(--accent); background: #f4f6f7; color: #39434b; font-family: var(--sans); font-size: 14px; line-height: 1.65; }
.trust-note strong { display: block; margin-bottom: 6px; color: var(--accent); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.contact-topics { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 28px 0 8px; background: var(--line); border: 1px solid var(--line); }
.contact-topic { padding: 24px; background: var(--white); }
.contact-topic h3 { margin: 0 0 9px; font-size: 18px; }
.contact-topic p { margin: 0; font-family: var(--sans); font-size: 13px; line-height: 1.65; }

@media (max-width: 720px) {
  .trust-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .trust-index { font-size: 72px; }
  .trust-layout { display: block; padding-block: 50px 68px; }
  .trust-nav { position: static; display: flex; gap: 8px; overflow-x: auto; margin-bottom: 46px; padding: 10px 0; border-top-width: 1px; border-bottom: 1px solid var(--line); }
  .trust-nav p { display: none; }
  .trust-nav a { flex: none; padding: 8px 12px; border: 0; background: var(--wash); font-size: 12px; }
  .trust-content { font-size: 17px; }
  .contact-topics { grid-template-columns: 1fr; }
}

/* Search page */
.search-page { min-height: 100vh; display: flex; flex-direction: column; }
.search-page-main { flex: 1; }
.search-page .search-button { visibility: hidden; pointer-events: none; }
.search-page-hero { padding: 48px 0 40px; border-bottom: 1px solid var(--line); background: #edf3f6; }
.search-page-hero-inner,
.search-results-shell { width: min(980px, calc(100% - 48px)); }
.page-search-form { width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: stretch; border-bottom: 2px solid var(--ink); }
.page-search-form input { min-width: 0; padding: 12px 0 15px; border: 0; outline: 0; background: transparent; color: var(--ink); font-family: var(--display); font-size: clamp(28px, 3.2vw, 40px); line-height: 1.15; }
.page-search-form input::-webkit-search-cancel-button { display: none; -webkit-appearance: none; appearance: none; }
.page-search-form input::-ms-clear { display: none; width: 0; height: 0; }
.page-search-form input::placeholder { color: #747d83; opacity: 1; }
.page-search-form button { min-width: 104px; min-height: 52px; padding: 0 18px; border: 0; background: var(--ink); color: var(--white); cursor: pointer; font-size: 12px; font-weight: 700; }
.page-search-form button:hover, .page-search-form button:focus-visible { background: var(--accent); }
.search-hint { margin: 14px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.search-results-section { padding-block: clamp(42px, 6vw, 76px); }
.search-results-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; }
.search-results-heading h2 { margin: 0; font-size: clamp(25px, 2.7vw, 34px); line-height: 1.1; }
.search-results-heading p { margin: 0; color: var(--muted); font-size: 12px; font-weight: 500; }
.search-result { position: relative; display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: clamp(24px, 4vw, 40px); align-items: start; padding: 30px 0; border-bottom: 1px solid var(--line); }
.search-result .article-image { aspect-ratio: 16 / 9; border: 0; }
.search-result-copy { min-width: 0; }
.search-result .kicker { margin-bottom: 9px; color: var(--accent); }
.search-result .headline { max-width: 27ch; font-size: clamp(25px, 3vw, 34px); line-height: 1.08; text-wrap: pretty; }
.search-result .dek { max-width: 62ch; margin: 12px 0 0; font-size: 14px; line-height: 1.58; }
.search-result .byline { margin: 13px 0 0; }
.search-empty { padding: clamp(60px, 9vw, 110px) 0; text-align: center; }
.search-empty .kicker { color: var(--accent); }
.search-empty h3 { max-width: 720px; margin: 10px auto 14px; font-family: var(--display); font-size: clamp(34px, 5vw, 54px); font-weight: 400; line-height: 1.08; text-wrap: balance; }
.search-empty > p:not(.kicker) { max-width: 520px; margin: 0 auto; color: var(--muted); font-size: 14px; line-height: 1.6; }
.search-empty--initial { padding: 34px 0 20px; text-align: left; }
.search-empty--initial .kicker { display: none; }
.search-empty--initial h3 { max-width: none; margin: 0 0 7px; font-family: var(--sans); font-size: 20px; font-weight: 700; line-height: 1.3; }
.search-empty--initial > p:not(.kicker) { max-width: none; margin: 0; font-size: 12px; line-height: 1.5; }
.search-empty--initial .search-suggestions { justify-content: flex-start; margin-top: 16px; }
.search-suggestions { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 24px; }
.search-suggestions button, .search-reset { min-height: 44px; padding: 10px 16px; border: 1px solid var(--line); background: transparent; color: var(--accent); cursor: pointer; font-size: 12px; font-weight: 600; }
.search-suggestions button:hover, .search-suggestions button:focus-visible, .search-reset:hover, .search-reset:focus-visible { border-color: var(--accent); }
.search-reset { margin-top: 24px; }

.search-page--has-query .search-page-hero { padding: clamp(28px, 3vw, 40px) 0 clamp(26px, 3vw, 36px); }
.search-page--has-query .page-search-form { width: 100%; }
.search-page--has-query .page-search-form input { padding-block: 8px 11px; font-size: clamp(25px, 2.6vw, 32px); }
.search-page--has-query .page-search-form button { min-height: 48px; }
.search-page--has-query .search-hint { margin-top: 10px; }

/* Article pages */
.article-header { padding: 30px 0; border-bottom: 1px solid var(--line); }
.missing-article { padding-block: clamp(80px, 12vw, 160px); }
.missing-article h1 { max-width: 700px; font-family: var(--display); font-size: clamp(42px, 6vw, 72px); font-weight: 400; line-height: 1.05; }
.missing-article a { display: inline-block; margin-top: 26px; padding-bottom: 5px; border-bottom: 1px solid var(--accent); color: var(--accent); text-decoration: none; }
.article-header-inner { margin-inline: auto; }
.article-header .headline { max-width: 900px; font-size: clamp(42px, 4.35vw, 56px); line-height: 1.06; }
.article-header .dek { max-width: 780px; margin: 22px 0 20px; font-family: var(--reading); font-size: 17px; font-style: italic; line-height: 1.62; }
.article-meta { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-top: 4px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(240px, 1fr); column-gap: clamp(40px, 6vw, 72px); row-gap: 28px; align-items: start; padding-block: 46px 80px; }
.article-sidebar { position: sticky; top: 20px; grid-column: 2; align-self: start; }
.article-aside { margin-top: 20px; padding: 16px 18px; background: var(--wash); font-size: 12px; }
.article-aside p { margin: 0 0 7px; color: var(--muted); }
.article-aside a { display: block; padding: 7px 0; color: #3f4951; text-decoration: none; transition: color .2s ease; }
.article-aside a:hover, .article-aside a:focus-visible { color: var(--accent); }
.article-body { min-width: 0; grid-column: 1; color: var(--text); font-family: var(--reading); font-size: 19px; line-height: 1.78; }
.article-body > p { margin: 0 0 1.35em; }
.article-body > p:first-child::first-letter { float: left; margin: .08em .1em 0 0; color: var(--blue); font-size: 4.2em; font-weight: 700; line-height: .75; }
.article-body h2 { margin: 2.2em 0 .65em; color: var(--ink); font-family: var(--display); font-size: 32px; font-weight: 400; line-height: 1.16; letter-spacing: -.015em; }
.why-box { margin: 0 0 34px; padding: 23px 26px; background: var(--wash); font-family: var(--sans); }
.why-box h2 { margin: 0 0 8px; color: var(--accent); font-family: var(--serif); font-size: 23px; }
.why-box p { margin: 0; font-size: 15px; line-height: 1.6; }
.article-lead-figure { margin: 0 0 34px; }
.article-lead-figure .article-image { margin: 0; }
.article-lead-figure figcaption { margin-top: 10px; color: var(--muted); font-family: var(--sans); font-size: 11px; line-height: 1.5; }
.article-figure { margin: 34px 0; }
.article-body > .article-image { margin: 0 0 34px; }
.article-figure svg { width: 100%; height: auto; background: var(--wash); border-bottom: 1px solid var(--ink); }
.article-figure figcaption { margin-top: 10px; color: var(--muted); font-family: var(--sans); font-size: 11px; line-height: 1.5; }
.pullquote { margin: 38px 0; padding: 8px 0 8px 24px; border-left: 1px solid var(--red); color: var(--ink); font-size: 29px; line-height: 1.25; }
.source-note { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--ink); font-family: var(--sans); font-size: 12px; line-height: 1.6; }
.source-note h2 { margin: 0 0 8px; font-family: var(--sans); font-size: 13px; }
.related-rail { padding: 20px 22px; background: #edf3f6; }
.related-rail h2 { margin: 0 0 15px; color: var(--blue); font-family: var(--serif); font-size: 22px; }
.related-rail a { display: block; padding-block: 8px; color: #273d4c; text-decoration: none; }
.related-rail a + a { margin-top: 7px; }
.related-rail strong { display: -webkit-box; overflow: hidden; font-family: var(--serif); font-size: 15px; font-weight: 650; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; }
.related-rail small { display: block; margin-top: 5px; color: var(--muted); font-family: var(--sans); font-size: 11px; font-weight: 500; line-height: 1.35; }
.related-rail a:hover, .related-rail a:focus-visible { color: var(--accent); }
.verdict { margin-bottom: 34px; padding: 26px; background: var(--blue); color: white; font-family: var(--sans); }
.verdict h2 { margin: 0 0 10px; color: white; font-family: var(--serif); font-size: 27px; }
.verdict p { margin: 0; font-size: 15px; line-height: 1.6; }
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgb(255 255 255 / .35); }
.verdict-grid strong { display: block; margin-bottom: 5px; font-size: 11px; text-transform: uppercase; }

.search-dialog { inset: 0; width: 100%; max-width: none; height: 100dvh; max-height: none; margin: 0; padding: 0; border: 0; background: #111; color: var(--white); }
.search-dialog::backdrop { background: #111; }
.search-dialog[open] { animation: search-in .38s cubic-bezier(.22,1,.36,1) both; }
.share-detail-dialog { width: min(1040px, calc(100% - 32px)); max-width: none; height: min(90dvh, 920px); max-height: none; padding: 0; border: 0; background: var(--white); color: var(--ink); box-shadow: 0 24px 80px rgb(0 0 0 / .28); }
.share-detail-dialog::backdrop { background: rgb(9 15 20 / .66); backdrop-filter: blur(4px); }
.share-detail-close { position: sticky; z-index: 8; top: 0; display: block; width: 100%; padding: 14px clamp(22px, 4vw, 44px); border-bottom: 1px solid var(--line); background: rgb(255 255 255 / .96); color: var(--accent); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.share-detail-inner { padding: clamp(34px, 6vw, 76px); }
.share-detail-inner .headline { max-width: 850px; margin: 12px 0 20px; font-size: clamp(38px, 5vw, 58px); line-height: 1.06; }
.share-detail-inner > .dek { max-width: 760px; margin-bottom: 20px; font-family: var(--reading); font-size: 18px; font-style: italic; line-height: 1.6; }
.share-detail-body { width: min(700px, 100%); margin: 38px auto 0; color: var(--text); font-family: var(--reading); font-size: 18px; line-height: 1.78; }
.share-detail-body .article-image { margin-bottom: 30px; }
.share-detail-body h2 { margin: 1.8em 0 .55em; color: var(--ink); font-family: var(--display); font-size: 30px; font-weight: 400; }
.share-trust-dialog { width: min(1180px, calc(100% - 32px)); max-width: none; height: min(92dvh, 1040px); max-height: none; padding: 0; border: 0; background: var(--white); color: var(--ink); box-shadow: 0 24px 80px rgb(0 0 0 / .28); }
.share-trust-dialog::backdrop { background: rgb(9 15 20 / .66); backdrop-filter: blur(4px); }
.share-trust-close { position: sticky; z-index: 8; top: 0; display: block; width: 100%; padding: 14px 24px; border: 0; border-bottom: 1px solid var(--line); background: rgb(255 255 255 / .96); color: var(--accent); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-align: right; text-transform: uppercase; cursor: pointer; }
.share-trust-inner .trust-hero { padding-top: clamp(44px, 7vw, 86px); }
.search-form { width: min(840px, calc(100% - 48px)); margin-inline: auto; padding: clamp(96px, 18vh, 180px) 0 48px; }
.search-form label { display: block; margin-bottom: 28px; color: #aeb3b7; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.search-control { display: flex; align-items: center; border-bottom: 2px solid rgb(255 255 255 / .84); }
.search-control input { width: 100%; padding: 16px 0 20px; border: 0; outline: 0; background: transparent; color: var(--white); font-family: var(--display); font-size: clamp(34px, 6vw, 70px); line-height: 1.08; }
.search-control input::-webkit-search-cancel-button { display: none; -webkit-appearance: none; appearance: none; }
.search-control input::-ms-clear { display: none; width: 0; height: 0; }
.search-control input::placeholder { color: #70767a; opacity: 1; }
.close-search { position: fixed; top: 18px; right: 24px; width: 48px; height: 48px; padding: 0; border: 0; background: transparent; color: var(--white); cursor: pointer; font-size: 38px; font-weight: 300; line-height: 1; transition: color .2s ease, transform .25s cubic-bezier(.22,1,.36,1); }
.close-search:hover, .close-search:focus-visible { color: #d46a77; transform: rotate(90deg); }
@keyframes search-in { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: none; } }

:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

@media (min-width: 981px) and (max-width: 1180px) {
  .index-word-ai { top: 22px; left: 18px; font-size: 132px; }
  .index-word-compute { top: 38px; right: 14px; font-size: 70px; }
  .index-word-science, .index-word-systems { bottom: 28px; font-size: 56px; }
  .index-word-science { left: 14px; }
  .index-word-systems { right: -8px; }
  .index-copy .dek { max-width: 40ch; }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .article-header { padding-right: 24px; padding-left: 24px; }
  .article-layout { grid-template-columns: minmax(0, 760px); justify-content: center; }
  .article-sidebar { display: none; }
}

@media (max-width: 980px) {
  .brand-row { grid-template-columns: 1fr auto 1fr; }
  .menu-button { grid-column: 1; display: inline-flex; justify-self: start; margin: 0; }
  .wordmark { grid-column: 2; justify-self: center; }
  .search-button { grid-column: 3; }
  .topic-nav { display: none; overflow: visible; }
  .menu-open .topic-nav { inset: 76px 0 0; display: block; }
  .index-hero { display: block; min-height: 0; }
  .index-hero-grid { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .index-briefing { display: grid; grid-template-columns: minmax(0, 1fr); padding: 24px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .index-briefing h2 { grid-column: 1; margin: 4px 0 0; font-size: 11px; }
  .index-briefing ol { grid-column: 1 / -1; grid-row: 2; display: grid; grid-template-columns: 1fr 1fr; margin-top: 18px; border-top: 1px solid var(--line); }
  .index-briefing li:first-child { border-top: 0; }
  .index-briefing li:nth-child(odd) { border-right: 1px solid var(--line); }
  .index-briefing li::before { left: 0; }
  .index-briefing li a { padding-inline: 18px; }
  .briefing-standard { display: none; }
  .latest-grid { grid-template-columns: 1fr 1fr; }
  .story-card.featured { grid-column: 1 / -1; grid-row: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .story-card.featured .story-art { margin: 0; }
  .story-card:nth-child(2), .story-card:nth-child(4) { border-left: 0; padding-left: 0; }
  .story-card:nth-child(3), .story-card:nth-child(5) { border-left: 1px solid var(--line); padding-left: 30px; }
  .article-layout { grid-template-columns: minmax(0, 760px); justify-content: center; }
  .article-sidebar { display: none; }
  .related-rail { margin-top: 0; }
  .desk-story { grid-template-columns: 110px 1fr; }
  .ideas-grid { grid-template-columns: minmax(0, 1.32fr) minmax(250px, .68fr); gap: 32px; }
  .idea-main .dek { max-width: 52ch; margin: 18px 0 14px; }
  .opinion-list a { grid-template-columns: 88px minmax(0, 1fr); gap: 14px; min-height: 0; }
  .opinion-list strong { font-size: 16px; }
}

@media (min-width: 721px) and (max-width: 980px) {
  .menu-open .topic-nav { padding-bottom: 30px; }
  .menu-open .menu-context,
  .menu-open .topic-nav ul {
    width: min(620px, calc(100% - 64px));
  }
  .menu-open .topic-nav ul {
    min-height: 0;
    margin-inline: auto;
    padding: 0;
    display: block;
    align-content: start;
  }
  .menu-open .topic-nav > ul li,
  .menu-open .topic-nav > ul li:nth-last-child(-n + 2) { border-bottom: 0; }
  .menu-open .topic-nav > ul li:last-child { border-bottom: 1px solid rgb(255 255 255 / .22); }
  .menu-open .topic-nav > ul a { min-height: 66px; font-size: clamp(24px, 3.5vw, 30px); }
  .menu-open .menu-utility { width: min(620px, calc(100% - 64px)); }
  .index-word-ai { top: 20px; left: 20px; font-size: 138px; }
  .index-word-compute { top: 38px; right: 18px; font-size: 88px; }
  .index-word-science, .index-word-systems { bottom: 24px; font-size: 76px; }
  .index-word-science { left: 14px; }
  .index-word-systems { right: -10px; }
  .index-copy {
    width: min(clamp(470px, 56vw, 540px), calc(100% - 80px));
    margin-left: clamp(36px, 6vw, 56px);
    padding-right: 46px;
    clip-path: polygon(0 0, 94% 0, 94% 12%, 100% 12%, 100% 58%, 88% 58%, 88% 100%, 0 100%);
  }
  .index-copy .headline { max-width: none; font-size: clamp(41px, 5.4vw, 50px); text-wrap: balance; }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .review-band .shell { width: min(100% - 24px, 1180px); }
  .review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(12px, 2vw, 24px); }
}

@media (min-width: 721px) and (max-width: 900px) {
  .review-item { min-width: 0; padding: 16px; }
  .review-item .article-image { width: calc(100% + 32px); margin: -16px -16px 16px; }
  .review-item .kicker { font-size:11px; line-height: 1.45; }
  .review-item .headline { font-size: 24px; line-height: 1.1; }
  .review-item .dek { margin: 10px 0; font-size: 13px; line-height: 1.58; }
  .assessment { gap: 8px; margin-top: 14px; padding-top: 14px; font-size: 10px; }
  .assessment::before { width: 16px; }
  .focus-layout { grid-template-columns: 1fr; }
  .focus-copy .headline { max-width: 30ch; }
  .most-read { margin-top: 8px; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 30px, 1180px); }
  .utility-bar { display: none; }
  .brand-row { min-height: 60px; grid-template-columns: 1fr auto 1fr; }
  .menu-button { grid-column: 1; display: inline-flex; justify-self: start; margin: 0; }
  .wordmark { grid-column: 2; justify-self: center; }
  .search-button { grid-column: 3; }
  .brand-mark { width: 30px; height: 24px; margin-right: 4px; }
  .domain-root { font-size: 17px; }
  .domain-network { font-size: 16.5px; }
  .topic-nav { display: none; }
  .menu-open .topic-nav { inset: 60px 0 0; display: flex; padding-bottom: 18px; }
  .menu-open .menu-context { width: calc(100% - 40px); padding: 21px 0 11px; }
  .menu-open .menu-context span { max-width: 25ch; font-size: 10px; }
  .menu-open .topic-nav ul { width: calc(100% - 40px); min-height: 0; padding: 0; display: block; align-content: start; }
  .menu-open .topic-nav > ul li, .menu-open .topic-nav > ul li:nth-last-child(-n + 2) { border-top: 1px solid rgb(255 255 255 / .22); border-bottom: 0; }
  .menu-open .topic-nav > ul li:last-child { border-bottom: 1px solid rgb(255 255 255 / .22); }
  .menu-open .topic-nav > ul a { min-height: 61px; gap: 14px; font-size: clamp(22px, 6.2vw, 28px); }
  .menu-open .menu-link-note { max-width: 82px; font-size: 8px; }
  .menu-open .menu-utility { width: calc(100% - 40px); padding-top: 20px; grid-template-columns: 1fr; gap: 10px; }
  .menu-open .menu-utility > p { max-width: 32ch; }
  .menu-open .menu-utility-links { justify-content: flex-start; gap: 4px 20px; }
  .search-form { width: calc(100% - 40px); padding-top: 112px; }
  .search-form label { margin-bottom: 20px; }
  .search-control input { font-size: clamp(32px, 10vw, 44px); }
  .search-page-hero { padding: 30px 0; }
  .search-page--has-query .search-page-hero { padding: 26px 0 24px; }
  .page-search-form input { font-size: clamp(25px, 8vw, 34px); }
  .page-search-form button { min-width: 82px; padding-inline: 12px; }
  .search-page-hero-inner,
  .search-results-shell { width: min(100% - 30px, 980px); }
  .search-result { grid-template-columns: 112px minmax(0, 1fr); gap: 16px; padding: 22px 0; }
  .search-result .headline { font-size: 23px; }
  .search-result .dek { display: none; }
  .search-result .byline { margin-top: 10px; }
  .search-empty { padding-block: 56px; }
  .ideas-grid, .focus-layout { grid-template-columns: 1fr; }
  .index-hero { padding-block: 0 30px; }
  .index-hero .shell { width: 100%; max-width: none; }
  .index-hero-grid { width: 100%; }
  .index-lead { min-height: 540px; }
  .index-word-ai { top: 24px; left: 18px; font-size: 112px; }
  .index-word-compute { display: block; top: 34px; right: -86px; font-size: clamp(58px, 14vw, 76px); }
  .index-word-science { display: none; }
  .index-word-systems { right: -10px; bottom: 24px; font-size: 68px; }
  .evidence-orbit { top: auto; right: -36px; bottom: -10px; width: 250px; height: 250px; opacity: .78; }
  .index-copy { width: calc(100% - 30px); margin: 54px 15px 56px; padding: 24px 32px 27px 24px; clip-path: polygon(0 0, 96% 0, 96% 8%, 100% 8%, 100% 100%, 0 100%); }
  .index-category { margin-bottom: 12px; }
  .index-copy .headline { font-size: clamp(34px, 10vw, 48px); }
  .index-rule { margin: 16px 0 14px; }
  .index-copy .byline { margin-top: 14px; }
  .index-cta { margin-top: 18px; }
  .index-briefing { display: block; padding: 30px 15px 0; }
  .index-briefing h2 { margin-bottom: 14px; }
  .index-briefing ol { display: block; margin-top: 0; }
  .index-briefing li { opacity: 1; visibility: visible; transform: none; animation: none; }
  .index-briefing li:nth-child(odd) { border-right: 0; }
  .index-briefing li::before { left: -12px; }
  .index-briefing li a { min-height: 94px; padding-inline: 0; }
  .news-row { grid-template-columns: 1fr; gap: 20px; padding-bottom: 30px; margin-bottom: 30px; }
  .news-row .headline { font-size: 28px; }
  .week-rail { display: block; }
  .latest-grid { display: block; }
  .story-card, .story-card.featured { display: block; padding: 24px 0 !important; border-left: 0 !important; border-top: 1px solid var(--line); }
  .story-card:first-child { border-top: 0; padding-top: 0 !important; }
  .story-card.featured .story-art { margin-bottom: 17px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-grid { gap: 14px; }
  .review-band { background: #191919; }
  .review-item, .review-item + .review-item { min-height: 0; padding: 20px; border-left: 0; border-bottom: 0; }
  .idea-main { display: block; }
  .idea-main .article-image { height: auto; min-height: 0; }
  .idea-main .headline { max-width: 18ch; font-size: 34px; }
  .idea-copy { padding-top: 20px; }
  .opinion-list { margin-top: 40px; }
  .opinion-list a { grid-template-columns: minmax(108px, 34%) minmax(0, 1fr); gap: 16px; padding-block: 18px; }
  .opinion-list strong { font-size: 18px; }
  .desk-grid { grid-template-columns: 1fr; }
  .desk-story, .desk-story:nth-child(2) { grid-template-columns: 1fr; gap: 0; border-top-color: var(--line); }
  .desk-story:first-child { border-top-color: var(--ink); }
  .desk-topic { grid-row: auto; margin-bottom: 8px; }
  .focus-story { margin-inline: -15px; }
  .focus-copy .headline { font-size: 34px; text-wrap: wrap; }
  .most-read { margin-top: 8px; }
  .most-read a, .most-read .static-story { font-size: 15px; }
  .editorial-statement { padding-block: 66px; }
  .editorial-statement h2 { max-width: 16ch; font-size: clamp(36px, 8.5vw, 54px); line-height: 1.1; }
  .site-footer { padding: 28px 0 22px; }
  .footer-simple { grid-template-columns: 1fr; grid-template-areas: "brand" "copyright" "links"; gap: 0; }
  .footer-wordmark .brand-mark { width: 30px; height: 24px; margin-right: 4px; }
  .footer-wordmark .domain-root { font-size: 17px; }
  .footer-wordmark .domain-network { font-size: 16.5px; }
  .footer-links { display: flex; justify-content: space-between; gap: 12px; margin-top: 16px; }
  .footer-links a { min-height: 44px; align-items: center; width: fit-content; }
  .footer-links a::after { bottom: 6px; }
  .footer-copyright { margin-top: 5px; }
  .article-header .headline { font-size: clamp(38px, 10.5vw, 50px); }
  .article-meta { align-items: flex-end; }
  .article-layout { display: flex; flex-direction: column; padding-top: 30px; }
  .article-sidebar { display: contents; }
  .article-aside { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 8px; overflow: visible; margin: 0 0 28px; padding: 10px 12px; }
  .article-aside { order: -1; }
  .article-body { order: 0; }
  .article-aside p { display: none; }
  .article-aside a { display: flex; min-height: 44px; align-items: center; padding: 8px 9px; line-height: 1.35; }
  .article-body { font-size: 17px; }
  .related-rail { order: 1; margin-top: 44px; }
}

@media (min-width: 601px) and (max-width: 720px) {
  .index-copy {
    width: min(540px, calc(100% - 60px));
    margin-right: auto;
    margin-left: 30px;
    padding-right: 36px;
    clip-path: polygon(0 0, 96% 0, 96% 8%, 100% 8%, 100% 100%, 0 100%);
  }
  .index-copy .headline { font-size: clamp(40px, 6.2vw, 44px); }
}

@media (max-width: 460px) {
  .section { padding-block: 38px; }
  .search-result { grid-template-columns: 92px minmax(0, 1fr); gap: 13px; }
  .search-result .headline { font-size: 21px; }
  .search-result .kicker { font-size: 9px; line-height: 1.4; }
  .search-results-heading { align-items: flex-end; }
  .index-lead { min-height: 510px; }
  .index-word-ai { top: 22px; left: 14px; font-size: 92px; }
  .index-word-systems { right: -8px; bottom: 26px; font-size: 56px; }
  .index-copy .headline { font-size: clamp(34px, 10vw, 39px); }
  .index-copy .dek { font-size: 13px; }
  .index-copy { margin-top: 54px; }
  .focus-copy .headline { font-size: clamp(29px, 8vw, 32px); }
  .coordinate { display: none; }
  .axis-y { left: 28%; }
  .idea-main { display: grid; }
  .editorial-statement { padding-block: 54px; }
  .editorial-statement h2 { max-width: none; font-size: 34px; text-wrap: pretty; }
  .article-header .headline { font-size: 37px; }
  .article-meta { display: block; }
  .why-box, .verdict { margin-inline: -15px; }
  .verdict-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) and (max-height: 740px) {
  .menu-open .menu-context { padding-top: 14px; }
  .menu-open .topic-nav > ul a { min-height: 52px; font-size: clamp(20px, 5.7vw, 25px); }
  .menu-open .menu-utility { padding-top: 14px; }
  .menu-open .menu-utility > p { display: none; }
}

@media (max-width: 540px) {
  .share-detail-dialog { width: 100%; height: 100dvh; }
  .share-detail-inner { padding: 28px 20px 54px; }
  .share-detail-body { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .axis-scan { display: none; }
}
