:root {
  --paper: #f2f1ec;
  --ink: #121311;
  --muted: #666861;
  --line: #c9cac3;
  --signal: #b7f238;
  --alert: #ff6043;
  --white: #fff;
  --pad: clamp(20px, 4.2vw, 68px);
  --sans: Arial, "Helvetica Neue", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); overflow-x: hidden; }
#latest, #radar, #model-watch { scroll-margin-top: 165px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.45; letter-spacing: 0; overflow-x: hidden; }
body.dialog-open { overflow: hidden; }
button, input { color: inherit; font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 19px; height: 19px; stroke-width: 1.75; }
::selection { color: var(--ink); background: var(--signal); }
.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-link { position: fixed; z-index: 1000; top: -60px; left: 20px; padding: 10px 14px; color: var(--ink); background: var(--signal); }
.skip-link:focus { top: 20px; }

.site-header { position: relative; z-index: 100; background: var(--paper); border-bottom: 1px solid var(--ink); }
.site-header.is-stuck { position: sticky; top: -35px; box-shadow: 0 1px 0 var(--ink); }
.utility-bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 36px; padding: 0 var(--pad); border-bottom: 1px solid var(--line); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.utility-bar p { margin: 0; }
.utility-bar p:first-child { display: flex; align-items: center; gap: 7px; }
.edition span { margin-left: 20px; color: var(--muted); }
.live-dot { width: 7px; height: 7px; background: var(--alert); border-radius: 50%; animation: live-pulse 1.8s ease infinite; }
@keyframes live-pulse { 50% { opacity: .3; transform: scale(.75); } }
.utility-actions { display: flex; align-items: center; gap: 10px; justify-self: end; }
.utility-button { display: grid; place-items: center; width: 34px; height: 34px; padding: 0; background: transparent; }
.utility-button:hover { color: var(--alert); }
.platform-lines { display: flex; align-items: center; gap: 2px; }
.header-platform { display: grid; place-items: center; min-width: 57px; min-height: 27px; padding: 0 7px; border: 1px solid var(--ink); font-size: 8px; font-weight: 900; text-transform: uppercase; white-space: nowrap; transition: color .2s ease, background .2s ease; }
.header-platform:hover { color: var(--white); background: var(--ink); }
.platform-short { display: none; }
.header-subscribe { display: grid; place-items: center; min-height: 27px; padding: 0 11px; color: var(--ink); background: var(--signal); font-size: 8px; font-weight: 900; text-transform: uppercase; transition: background .2s ease; }
.header-subscribe:hover { color: var(--white); background: var(--ink); }
.masthead-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 110px; padding: 0 var(--pad); }
.wordmark { display: flex; align-items: center; justify-self: start; font-size: clamp(43px, 6.4vw, 96px); font-weight: 900; line-height: .78; }
.wordmark strong { display: grid; place-items: center; align-self: stretch; margin-left: 10px; padding: 0 8px; color: var(--ink); background: var(--signal); font-size: .34em; }
.masthead-note { margin: 0; font-family: var(--serif); font-size: 13px; font-style: italic; line-height: 1.15; text-align: center; }
.menu-button { display: none; align-items: center; gap: 8px; justify-self: end; padding: 8px 0; background: transparent; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); min-height: 44px; padding: 0 var(--pad); border-top: 1px solid var(--ink); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.primary-nav a { position: relative; display: flex; align-items: center; height: 43px; }
.primary-nav a::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 4px; background: var(--signal); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.ticker { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; min-height: 36px; color: var(--white); background: var(--ink); font-size: 10px; overflow: hidden; }
.ticker strong { align-self: stretch; display: grid; place-items: center; padding: 0 var(--pad); color: var(--ink); background: var(--signal); text-transform: uppercase; }
.ticker-window { overflow: hidden; }
.ticker p { width: max-content; margin: 0; padding-left: 30px; white-space: nowrap; animation: ticker-move 34s linear infinite; }
.ticker p span { margin: 0 22px; color: var(--signal); }
.ticker time { padding: 0 var(--pad) 0 20px; color: #a6a89f; white-space: nowrap; }
@keyframes ticker-move { to { transform: translateX(-45%); } }

.hero { position: relative; min-height: clamp(520px, calc(88svh - 225px), 760px); color: var(--white); background: #252824; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 108%; object-fit: cover; object-position: center 54%; filter: saturate(.75) contrast(1.08); transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.02); will-change: transform; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,10,9,.9) 0%, rgba(9,10,9,.63) 41%, rgba(9,10,9,.1) 74%), linear-gradient(0deg, rgba(9,10,9,.78), transparent 45%); }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; width: min(870px, 78vw); min-height: clamp(520px, calc(88svh - 225px), 760px); padding: 50px var(--pad) 70px; }
.story-label, .eyebrow { margin: 0; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.story-label { display: flex; gap: 10px; align-items: center; color: var(--signal); }
.story-label span { display: grid; place-items: center; width: 28px; height: 28px; color: var(--ink); background: var(--signal); }
.hero h1 { max-width: 810px; margin: 24px 0 22px; font-family: var(--serif); font-size: clamp(55px, 6.3vw, 96px); font-weight: 400; line-height: .89; }
.hero-deck { max-width: 620px; margin: 0; color: rgba(255,255,255,.76); font-size: clamp(15px, 1.35vw, 20px); }
.hero-meta { display: flex; align-items: center; gap: 26px; margin-top: 32px; }
.read-story { display: inline-flex; align-items: center; gap: 18px; min-height: 48px; padding: 0 16px; color: var(--ink); background: var(--signal); font-size: 11px; font-weight: 900; transition: background .2s ease, transform .2s ease; }
.read-story:hover { background: var(--white); transform: translateY(-2px); }
.hero-meta > p { margin: 0; color: rgba(255,255,255,.68); font-family: var(--serif); font-size: 12px; }
.hero-meta > p span { margin-left: 18px; }
.hero-caption { position: absolute; z-index: 2; right: var(--pad); bottom: 18px; margin: 0; color: rgba(255,255,255,.55); font-size: 8px; text-transform: uppercase; }
.hero-caption span { margin-left: 10px; }
.hero-enter { opacity: 0; transform: translateY(22px); animation: hero-in .7s cubic-bezier(.2,.75,.2,1) forwards; }
.hero-enter:nth-child(2) { animation-delay: .08s; }
.hero-enter:nth-child(3) { animation-delay: .16s; }
.hero-enter:nth-child(4) { animation-delay: .24s; }
@keyframes hero-in { to { opacity: 1; transform: none; } }

.briefing { display: grid; grid-template-columns: minmax(220px, .68fr) 2.32fr; gap: 70px; padding: 112px var(--pad) 126px; border-bottom: 1px solid var(--ink); }
.section-intro { align-self: start; }
.eyebrow { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.eyebrow::before { content: ""; width: 7px; height: 7px; background: var(--signal); border-radius: 50%; }
.section-intro h2 { margin: 25px 0 0; font-family: var(--serif); font-size: clamp(40px, 4vw, 62px); font-weight: 400; line-height: .98; }
.briefing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--ink); }
.brief { min-width: 0; padding: 22px 28px 30px 0; border-bottom: 1px solid var(--line); }
.brief:nth-child(odd) { border-right: 1px solid var(--line); }
.brief:nth-child(even) { padding-left: 28px; }
.brief > div { display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; font-weight: 700; }
.brief > div span { color: var(--ink); }
.brief .topic { margin: 35px 0 10px; color: var(--alert); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.brief h3 { margin: 0; font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1.08; }
.brief h3 button { padding: 0; background: transparent; text-align: left; }
.brief h3 button:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.brief > p:last-child { max-width: 420px; margin: 14px 0 0; color: var(--muted); font-size: 12px; }

.newsroom { display: grid; grid-template-columns: minmax(0, 2.3fr) minmax(290px, .7fr); border-bottom: 1px solid var(--ink); }
.newsroom-main { min-width: 0; padding: 112px var(--pad) 130px; }
.newsroom-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 35px; }
.newsroom-head h2, .radar h2, .model-header h2 { margin: 15px 0 0; font-family: var(--serif); font-size: clamp(44px, 5vw, 76px); font-weight: 400; line-height: .95; }
.story-search { display: flex; align-items: center; gap: 10px; width: min(260px, 34vw); height: 42px; border-bottom: 1px solid var(--ink); }
.story-search svg { width: 16px; }
.story-search input { width: 100%; min-width: 0; height: 100%; padding: 0; background: transparent; border: 0; outline: 0; font-size: 11px; }
.story-search input::placeholder { color: var(--muted); }
.topic-tabs { display: flex; gap: 4px; padding: 10px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); overflow-x: auto; }
.topic-tabs button { flex: 0 0 auto; min-height: 34px; padding: 0 12px; color: var(--muted); background: transparent; font-size: 10px; font-weight: 800; }
.topic-tabs button.active { color: var(--ink); background: var(--signal); }
.story-list { display: grid; }
.story-card { display: grid; grid-template-columns: 110px minmax(0, 1fr) 210px 38px; gap: 24px; align-items: center; min-height: 185px; padding: 22px 0; border-bottom: 1px solid var(--line); opacity: 0; transform: translateY(14px); transition: opacity .35s ease, transform .35s ease, padding .2s ease; }
.story-card.visible { opacity: 1; transform: none; }
.story-card:hover { padding-right: 8px; padding-left: 8px; }
.story-card time { align-self: start; padding-top: 6px; color: var(--muted); font-size: 9px; font-weight: 700; }
.story-content { min-width: 0; }
.story-content .topic { margin: 0 0 9px; color: var(--alert); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.story-content h3 { margin: 0; font-family: var(--serif); font-size: clamp(21px, 2vw, 29px); font-weight: 400; line-height: 1.08; }
.story-title { padding: 0; background: transparent; text-align: left; }
.story-title:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.story-content p:last-child { margin: 11px 0 0; color: var(--muted); font-size: 11px; }
.story-image { width: 100%; height: 126px; padding: 0; background: #ddd; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .5s ease, filter .3s ease; }
.story-image:hover img { transform: scale(1.035); filter: saturate(1); }
.save-button { display: grid; place-items: center; width: 38px; height: 38px; padding: 0; background: transparent; border: 1px solid var(--line); }
.save-button:hover, .save-button.saved { color: var(--ink); background: var(--signal); border-color: var(--signal); }
.save-button.saved svg { fill: currentColor; }
.empty-state { padding: 70px 0; color: var(--muted); font-family: var(--serif); font-size: 24px; text-align: center; }
.radar { border-left: 1px solid var(--ink); background: var(--white); }
.radar-sticky { position: sticky; top: 110px; padding: 112px 34px 70px; }
.radar h2 { font-size: 48px; }
.radar-summary { margin: 20px 0 42px; color: var(--muted); font-family: var(--serif); font-size: 14px; }
.radar-index { border-top: 1px solid var(--ink); }
.radar-index > div { display: grid; grid-template-columns: 1fr auto; gap: 5px 10px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.radar-index span { align-self: end; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.radar-index strong { grid-row: 1 / 3; grid-column: 2; align-self: center; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.radar-index strong.down { color: #377c37; }
.radar-index small { color: var(--muted); font-size: 9px; }
.pulse { margin-top: 42px; }
.pulse-head { display: flex; justify-content: space-between; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.pulse-head strong { color: var(--alert); }
.pulse-bars { display: flex; align-items: end; gap: 3px; height: 65px; margin: 18px 0 15px; border-bottom: 1px solid var(--ink); }
.pulse-bars i { flex: 1; height: 28%; background: var(--ink); animation: bars 2.4s ease-in-out infinite alternate; transform-origin: bottom; }
.pulse-bars i:nth-child(2n) { height: 52%; animation-delay: -.7s; }
.pulse-bars i:nth-child(3n) { height: 78%; animation-delay: -1.2s; }
.pulse-bars i:nth-child(5n) { height: 94%; background: var(--alert); animation-delay: -.3s; }
@keyframes bars { to { transform: scaleY(.6); } }
.pulse p { margin: 0; color: var(--muted); font-size: 10px; }
.radar-link { display: flex; justify-content: space-between; align-items: center; margin-top: 42px; padding-top: 14px; border-top: 1px solid var(--ink); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.radar-link:hover { color: #4f7510; }

.model-watch { padding: 120px var(--pad) 140px; color: var(--white); background: var(--ink); }
.model-header { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 50px; margin-bottom: 70px; }
.model-header .eyebrow { color: #aaaca4; }
.model-header h2 { font-size: clamp(48px, 6vw, 90px); }
.model-header > p { max-width: 480px; margin: 0 0 8px auto; color: #aaaca4; font-family: var(--serif); font-size: 16px; }
.model-table { border-top: 1px solid #696b66; }
.model-row { display: grid; grid-template-columns: 1.2fr 1fr .7fr 1fr 20px; gap: 25px; align-items: center; width: 100%; min-height: 78px; padding: 0; color: var(--white); background: transparent; border-bottom: 1px solid #444641; text-align: left; transition: padding .2s ease, background .2s ease; }
button.model-row:hover { padding: 0 12px; color: var(--ink); background: var(--signal); }
.model-row strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.model-row span { color: #a7a9a2; font-size: 10px; }
button.model-row:hover span { color: var(--ink); }
.model-labels { min-height: 45px; color: #777973; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.signal-up { color: var(--signal) !important; }
.signal-new { color: var(--alert) !important; }

.newsletter { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; min-height: 530px; padding: 110px var(--pad); background: var(--signal); overflow: hidden; }
.newsletter-mark { position: absolute; right: -30px; bottom: -105px; color: rgba(18,19,17,.09); font-size: 290px; font-weight: 900; line-height: 1; white-space: nowrap; pointer-events: none; }
.newsletter-mark span { font-weight: 300; }
.newsletter-copy { position: relative; z-index: 1; }
.newsletter .eyebrow { color: var(--ink); }
.newsletter .eyebrow::before { background: var(--ink); }
.newsletter h2 { margin: 28px 0 0; font-family: var(--serif); font-size: clamp(52px, 6.5vw, 98px); font-weight: 400; line-height: .91; }
.subscribe-form { position: relative; z-index: 1; align-self: end; }
.subscribe-form > p:first-child { max-width: 420px; margin: 0 0 42px; font-family: var(--serif); font-size: 18px; }
.subscribe-form label { display: block; margin-bottom: 9px; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.subscribe-form > div { display: grid; grid-template-columns: 1fr auto; border-bottom: 2px solid var(--ink); }
.subscribe-form input { min-width: 0; height: 58px; padding: 0; background: transparent; border: 0; outline: 0; font-family: var(--serif); font-size: 20px; }
.subscribe-form input::placeholder { color: rgba(18,19,17,.5); }
.subscribe-form button { display: inline-flex; align-items: center; gap: 16px; min-height: 46px; padding: 0 16px; color: var(--white); background: var(--ink); font-size: 10px; font-weight: 900; }
.subscribe-form button:hover { background: #3a3d35; }
.form-status { min-height: 20px; margin: 12px 0 0; font-size: 10px; font-weight: 700; }

.site-footer { display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 70px; padding: 70px var(--pad) 30px; color: #a9aba4; background: var(--ink); border-top: 1px solid #3c3d39; font-size: 9px; }
.footer-wordmark { color: var(--white); font-size: 24px; font-weight: 900; }
.footer-wordmark strong { margin-left: 5px; color: var(--signal); font-size: 12px; }
.footer-identity > p { max-width: 390px; margin: 20px 0 0; color: #777a72; font-family: var(--serif); font-size: 13px; line-height: 1.55; }
.footer-links { display: grid; align-content: start; gap: 11px; }
.footer-links p { margin: 0 0 8px; color: var(--white); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.footer-links a { width: max-content; text-transform: uppercase; }
.footer-links a:hover { color: var(--signal); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 25px; margin-top: 30px; padding-top: 25px; border-top: 1px solid #32342f; text-transform: uppercase; }
.footer-bottom p { margin: 0; }

.article-dialog { width: min(900px, calc(100% - 36px)); max-height: calc(100svh - 36px); padding: 0; color: var(--ink); background: var(--paper); border: 1px solid var(--ink); border-radius: 0; overflow-y: auto; }
.article-dialog::backdrop { background: rgba(0,0,0,.75); backdrop-filter: blur(7px); }
.article-dialog[open] { animation: dialog-in .3s ease both; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(20px); } }
.dialog-close { position: sticky; z-index: 5; top: 14px; float: right; display: grid; place-items: center; width: 42px; height: 42px; margin: 14px 14px -56px 0; padding: 0; color: var(--white); background: var(--ink); }
.dialog-close:hover { color: var(--ink); background: var(--signal); }
.dialog-header { padding: 75px clamp(25px, 7vw, 85px) 48px; }
.dialog-header > p:first-child { margin: 0 0 24px; color: #527d0c; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.dialog-header h2 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 6vw, 72px); font-weight: 400; line-height: .96; }
.dialog-deck { max-width: 670px; margin: 24px 0 32px; color: var(--muted); font-size: 17px; }
.dialog-header > div { display: flex; gap: 25px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.article-dialog article > img { width: 100%; height: min(480px, 48vw); object-fit: cover; filter: saturate(.75); }
.article-body { max-width: 680px; margin: 0 auto; padding: 60px 30px 85px; font-family: var(--serif); font-size: 18px; line-height: 1.75; }
.article-body p { margin: 0 0 25px; }
.article-body p:first-child::first-letter { float: left; margin: 9px 10px 0 0; color: var(--ink); font-size: 72px; line-height: .7; }
.article-body h3 { margin: 50px 0 20px; font-size: 30px; font-weight: 400; line-height: 1.1; }
.article-body blockquote { margin: 45px 0; padding: 25px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-size: 27px; line-height: 1.2; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .briefing { grid-template-columns: 1fr; gap: 55px; }
  .newsroom { grid-template-columns: 1fr; }
  .radar { border-top: 1px solid var(--ink); border-left: 0; }
  .radar-sticky { position: static; display: grid; grid-template-columns: 1fr 1.4fr; gap: 0 50px; padding: 75px var(--pad); }
  .radar-sticky > .eyebrow, .radar-sticky > h2, .radar-summary { grid-column: 1; }
  .radar-index { grid-column: 2; grid-row: 1 / 4; }
  .pulse { grid-column: 1; }
  .radar-link { grid-column: 2; align-self: end; }
  .story-card { grid-template-columns: 78px minmax(0,1fr) 175px 38px; gap: 18px; }
}

@media (max-width: 720px) {
  :root { --pad: 20px; }
  .utility-bar { grid-template-columns: 1fr auto; }
  .edition { display: none; }
  .utility-actions { gap: 6px; }
  .platform-lines { gap: 2px; }
  .platform-long { display: none; }
  .platform-short { display: inline; }
  .header-platform { min-width: 27px; padding: 0 5px; }
  .header-subscribe { padding-right: 8px; padding-left: 8px; }
  .masthead-row { min-height: 80px; }
  .wordmark { font-size: 48px; }
  .masthead-note { display: none; }
  .menu-button { display: flex; justify-content: center; width: 42px; height: 42px; padding: 0; }
  .menu-button span { display: none; }
  .primary-nav { position: absolute; top: 116px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 0 var(--pad) 18px; background: var(--paper); border-bottom: 1px solid var(--ink); }
  .primary-nav.open { display: flex; }
  .primary-nav a { height: 44px; border-bottom: 1px solid var(--line); }
  .primary-nav a::after { display: none; }
  .ticker { grid-template-columns: auto minmax(0,1fr); }
  .ticker strong { padding: 0 13px; }
  .ticker time { display: none; }
  .hero { min-height: 78svh; }
  .hero-image { object-position: 58% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(9,10,9,.94), rgba(9,10,9,.27) 73%), linear-gradient(90deg, rgba(9,10,9,.45), transparent); }
  .hero-content { justify-content: end; width: 100%; min-height: 78svh; padding-bottom: 72px; }
  .hero h1 { margin-top: 18px; font-size: 51px; line-height: .92; }
  .hero-deck { font-size: 14px; }
  .hero-meta { align-items: flex-start; flex-direction: column; gap: 16px; margin-top: 25px; }
  .hero-caption { display: none; }
  .briefing { padding-top: 85px; padding-bottom: 90px; }
  .briefing-grid { display: block; }
  .brief:nth-child(odd) { border-right: 0; }
  .brief:nth-child(even) { padding-left: 0; }
  .brief { padding-right: 0; }
  .newsroom-main { padding-top: 85px; padding-bottom: 95px; }
  .newsroom-head { align-items: stretch; flex-direction: column; }
  .story-search { width: 100%; }
  .story-card { grid-template-columns: minmax(0,1fr) 96px 36px; gap: 13px; min-height: 150px; }
  .story-card time { display: none; }
  .story-content h3 { font-size: 20px; }
  .story-content p:last-child { display: none; }
  .story-image { height: 92px; }
  .save-button { width: 36px; height: 36px; }
  .radar-sticky { display: block; padding-top: 80px; padding-bottom: 80px; }
  .radar-index { margin-top: 35px; }
  .model-watch { padding-top: 90px; padding-bottom: 100px; }
  .model-header { display: block; margin-bottom: 50px; }
  .model-header > p { margin: 25px 0 0; }
  .model-labels { display: none; }
  .model-row { grid-template-columns: 1.2fr .8fr 18px; gap: 12px; min-height: 72px; }
  .model-row span:nth-of-type(2) { display: none; }
  .model-row span:nth-of-type(3) { text-align: right; }
  button.model-row:hover { padding: 0 6px; }
  .newsletter { grid-template-columns: 1fr; gap: 70px; min-height: 630px; padding-top: 85px; padding-bottom: 85px; }
  .newsletter-mark { right: -20px; bottom: -45px; font-size: 130px; }
  .newsletter h2 { font-size: 55px; }
  .subscribe-form > div { grid-template-columns: 1fr; padding-bottom: 10px; }
  .subscribe-form button { justify-self: start; }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 45px 25px; padding-top: 60px; }
  .footer-identity { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
  .dialog-header { padding-top: 72px; }
  .article-dialog article > img { height: 260px; }
  .article-body { font-size: 17px; }
}

@media (max-width: 360px) {
  .utility-button { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
