@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/barlow-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-900.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

:root {
  --ink: #0a0a0a;
  --ink-2: #131313;
  --paper: #f2f0e9;
  --acid: #fffe18;
  --white: #ffffff;
  --muted: #c2c0b8;
  --dim: #85847f;
  --line: rgba(255, 255, 255, 0.2);
  --max: 1500px;
  --header: 72px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--acid); color: var(--ink); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--acid);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header);
  padding: 0 max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-self: start;
  min-width: 0;
  text-decoration: none;
}
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong {
  color: var(--acid);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}
.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
nav { display: flex; gap: 28px; }
nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}
nav a:hover::after, nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  justify-self: end;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 140ms var(--ease-out), box-shadow 140ms var(--ease-out);
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 7px 0 rgba(255, 254, 24, 0.2); }
.header-cta:active { transform: translateY(1px); }

.topstory {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.28fr);
  min-height: calc(100dvh - var(--header));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  perspective: 1200px;
  isolation: isolate;
}
.hero-art, .hero-scrim { position: absolute; inset: 0; }
.hero-art { z-index: -3; background: var(--ink); transition: opacity 180ms ease; }
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 450ms var(--ease-out);
}
.hero-scrim {
  z-index: -2;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.94) 33%, rgba(10, 10, 10, 0.25) 65%, rgba(10, 10, 10, 0.6) 100%);
}
.hero-video {
  position: absolute;
  top: 0;
  right: 18%;
  z-index: 2;
  width: 55%;
  height: 100%;
  background: #000;
  object-fit: contain;
}
.hero-video[hidden] { display: none; }
.topstory.is-playing .hero-art { opacity: 0.16; }
.topstory.is-playing .hero-logo, .topstory.is-playing .hero-stack-sticker { opacity: 0; }
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(52px, 7vw, 92px) clamp(22px, 5vw, 80px) 52px max(22px, calc((100vw - var(--max)) / 2));
}
.masthead {
  max-width: 830px;
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(4rem, 8.2vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.78;
  text-transform: uppercase;
  text-wrap: balance;
}
.masthead span { display: block; }
.masthead span + span { margin-top: 0.1em; }
.masthead span:last-child { color: var(--acid); }
.lead-signal {
  max-width: 720px;
  margin-top: clamp(50px, 9vh, 105px);
  padding-top: 20px;
  border-top: 8px solid var(--acid);
}
.lead-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.92);
  text-transform: uppercase;
}
.lead-signal h2 {
  max-width: 700px;
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-wrap: balance;
}
.lead-signal > p {
  max-width: 65ch;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 23px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--paper);
  cursor: pointer;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms var(--ease-out), background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.button-primary { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.button-quiet { background: rgba(10, 10, 10, 0.7); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px) scale(0.98); }
.button-quiet:hover { border-color: var(--acid); color: var(--acid); }

.next-rail {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  border-left: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.68);
  backdrop-filter: blur(5px);
}
.rail-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 18px;
  border-top: 8px solid var(--acid);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rail-head b { color: var(--acid); }
#next-stories a {
  display: block;
  min-height: 132px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}
#next-stories a:hover { background: var(--acid); color: var(--ink); }
#next-stories span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#next-stories a:hover span { color: #383800; }
#next-stories strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.38rem;
  line-height: 0.98;
}
.hero-logo {
  position: absolute;
  top: 3.5%;
  right: 19%;
  z-index: 2;
  width: clamp(128px, 13vw, 214px);
  filter: drop-shadow(0 9px 12px rgba(0, 0, 0, 0.62));
  transform: rotate(7deg);
  animation: logo-breathe 900ms var(--ease-out) 1;
}
.hero-stack-sticker {
  position: absolute;
  right: 26%;
  bottom: -6%;
  z-index: 1;
  width: clamp(145px, 16vw, 270px);
  opacity: 0.88;
  filter: drop-shadow(0 8px 13px rgba(0, 0, 0, 0.64));
  transform: rotate(-7deg);
  animation: sticker-pop 800ms var(--ease-out) 250ms both;
}
@keyframes logo-breathe {
  0%, 100% { transform: rotate(7deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.035); }
}
@keyframes sticker-pop {
  from { opacity: 0; transform: rotate(-13deg) scale(0.76); }
  65% { opacity: 0.92; transform: rotate(-5deg) scale(1.06); }
  to { opacity: 0.88; transform: rotate(-7deg) scale(1); }
}
@starting-style {
  .masthead { opacity: 0; transform: translateY(28px); }
  .lead-signal { opacity: 0; transform: translateY(20px); }
}
.masthead, .lead-signal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out);
}
.lead-signal { transition-delay: 110ms; }

.pulse-strip {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
}
.pulse-track {
  display: flex;
  width: max-content;
  animation: none;
}
.pulse-track span {
  padding: 10px 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  white-space: nowrap;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.feed-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 130px) 20px;
}
.feed-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.25fr);
  gap: 60px;
  align-items: end;
}
.feed-heading h1, .principles h2, .platform-stage h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.83;
  text-transform: uppercase;
  text-wrap: balance;
}
.feed-heading p { max-width: 42ch; margin: 0; color: var(--muted); }
.feed-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 38px 0 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.load-status { margin: 0; color: var(--muted); font-size: 0.74rem; font-weight: 700; text-transform: uppercase; }
.feed-filters { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.feed-filters button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: 700 0.69rem "Barlow", Arial, sans-serif;
  letter-spacing: 0.06em;
  padding: 0 13px;
  text-transform: uppercase;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms var(--ease-out);
}
.feed-filters button:hover, .feed-filters button[aria-pressed="true"] { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.feed-filters button:active { transform: scale(0.97); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.news-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  text-decoration: none;
  transition: transform 240ms var(--ease-out), background-color 180ms ease, color 180ms ease;
  transform-origin: center;
}
.editorial-correction { padding: 16px; margin: 0 0 24px; border: 2px solid #e4ee5c; background: #242510; color: #fff; font-size: 1rem; line-height: 1.5; }
.editorial-correction p { margin: 8px 0 0; }
#hero-correction:has(.editorial-correction) { padding: 24px 24px 0; }
.news-card > .editorial-correction + .card-visual { margin-top: 0; }
.news-card:nth-child(5n + 1) { grid-column: span 8; }
.news-card:hover { z-index: 2; background: var(--acid); color: var(--ink); transform: translateY(-7px) rotate(-0.4deg); }
.card-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 205px;
  margin: -22px -22px 22px;
  overflow: hidden;
  background-color: #141414;
}
.card-visual::after {
  position: absolute;
  inset: 0;
  background: rgba(255, 254, 24, 0.08);
  content: "";
  mix-blend-mode: multiply;
  pointer-events: none;
}
.story-visual, .story-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-visual { transition: transform 270ms var(--ease-out), filter 270ms ease; }
.story-poster-chip {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  width: clamp(74px, 18%, 116px);
  height: auto;
  max-height: 72%;
  border: 3px solid var(--paper);
  background: #000;
  box-shadow: -9px 10px 0 rgba(10, 10, 10, 0.7);
  object-fit: cover;
  transform: rotate(3deg);
}
.story-poster-chip[hidden] { display: none; }
.story-video { z-index: 2; background: #000; object-fit: contain; }
.story-video[hidden] { display: none; }
.news-card:hover .story-visual { filter: contrast(1.08); transform: scale(1.035); }
.media-play {
  align-self: flex-start;
  min-height: 44px;
  border: 1px solid var(--acid);
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  cursor: pointer;
  font: 900 0.75rem "Barlow", Arial, sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  padding: 0 13px;
  text-transform: uppercase;
  transition: transform 140ms var(--ease-out), background-color 140ms ease;
}
.media-play:hover { transform: translateY(-2px); }
.media-play:active { transform: translateY(1px) scale(0.98); }
.card-visual.is-playing + .media-play { background: var(--paper); color: var(--ink); }
.fallback-card .story-visual { display: none; }
.fallback-card .story-video { position: relative; display: block; aspect-ratio: 9 / 16; height: min(620px, 75vh); }
.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.news-card:hover .card-meta, .news-card:hover > p { color: #3c3c00; }
.news-card h3 {
  max-width: 18ch;
  margin: 40px 0 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.45rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-wrap: balance;
}
.news-card > p { max-width: 50ch; margin: 18px 0 0; color: var(--muted); }
.story-transcript { margin-top: 18px; color: var(--muted); }
.story-transcript summary {
  width: fit-content;
  min-height: 44px;
  cursor: pointer;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 44px;
  text-transform: uppercase;
}
.story-transcript p { max-height: 16rem; overflow: auto; padding-right: 8px; }
.story-platforms { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.story-platforms a {
  min-height: 36px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 34px;
  padding: 0 12px;
  text-decoration: none;
  text-transform: uppercase;
}
.card-action {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 30px;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}
.news-card[hidden] { display: none; }

.principles {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(55px, 9vw, 130px);
  padding: clamp(80px, 10vw, 145px) max(20px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}
.principles-statement { position: relative; }
.principles-statement img {
  position: absolute;
  top: -85px;
  right: -15px;
  width: clamp(130px, 13vw, 220px);
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.25));
  transform: rotate(8deg);
}
.principles-statement p { max-width: 32ch; margin: 30px 0 0; color: #4a4944; font-size: 1.1rem; }
.principle-list { border-top: 1px solid rgba(10, 10, 10, 0.32); }
.principle-list article { padding: 29px 0; border-bottom: 1px solid rgba(10, 10, 10, 0.32); }
.principle-list h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.principle-list p { max-width: 62ch; margin: 8px 0 0; color: #4a4944; }

.platform-stage {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(85px, 10vw, 150px) 20px;
  overflow: hidden;
}
.platform-stage h2 { max-width: 850px; color: var(--acid); }
.platform-sticker {
  position: absolute;
  top: 60px;
  right: 3%;
  width: clamp(130px, 18vw, 310px);
  opacity: 0.8;
  transform: rotate(9deg);
}
.platform-links { margin-top: 60px; border-top: 1px solid var(--line); }
.platform-links a {
  display: grid;
  grid-template-columns: 0.45fr 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 150ms ease, transform 180ms var(--ease-out), background-color 150ms ease;
}
.platform-links a:hover { background: var(--acid); color: var(--ink); transform: translateX(13px); }
.platform-links span { color: var(--muted); }
.platform-links a:hover span { color: #3c3c00; }
.platform-links b { font-family: "Barlow Condensed", Impact, sans-serif; font-size: clamp(1.3rem, 2.8vw, 2.3rem); }
.platform-links i { font-style: normal; font-size: 1.2rem; }

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: end;
  padding: 36px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
}
footer p { margin: 0; }
.footer-brand { display: inline-flex; align-items: center; gap: 8px; width: fit-content; color: var(--acid); font-family: "Barlow Condensed", Impact, sans-serif; font-size: 1.7rem; text-decoration: none; }
.footer-brand img { width: 66px; height: 66px; object-fit: contain; }

.reveal { opacity: 1; transform: translateY(0); }
.motion-ready .reveal { opacity: 1; transform: translateY(14px); }
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); transition: transform 620ms var(--ease-out); }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; padding-inline: 18px; }
  nav { display: none; }
  .topstory { grid-template-columns: 1fr; }
  .hero-content { padding-right: 26%; }
  .next-rail { display: none; }
  .hero-video { right: 0; width: 58%; }
  .hero-logo { right: 3%; }
  .hero-stack-sticker { right: 2%; }
  .news-card { grid-column: span 6; }
  .news-card:nth-child(5n + 1) { grid-column: span 12; }
}

@media (max-width: 700px) {
  :root { --header: 64px; }
  .brand img { width: 48px; height: 48px; }
  .brand-copy small { display: none; }
  .header-cta { padding: 9px 10px; font-size: 0.67rem; }
  .topstory { min-height: auto; padding-bottom: 0; background: var(--ink); }
  .hero-art { position: relative; min-height: 66vw; order: 2; margin-top: 35px; }
  .hero-art img { object-position: center 55%; transform: none; }
  .hero-video {
    position: relative;
    top: auto;
    right: auto;
    order: 2;
    width: 100%;
    height: min(80vh, 720px);
    margin-top: 35px;
    object-fit: contain;
  }
  .topstory.is-playing .hero-art { display: none; }
  .hero-scrim { background: linear-gradient(180deg, var(--ink) 0%, rgba(10, 10, 10, 0.2) 50%, var(--ink) 100%); }
  .hero-content { padding: 54px 18px 0; }
  .masthead { font-size: clamp(3.65rem, 18vw, 5.2rem); line-height: 0.79; }
  .lead-signal { margin-top: 44px; }
  .lead-signal h2 { font-size: clamp(2.15rem, 11vw, 3.25rem); }
  .lead-signal > p { font-size: 0.95rem; }
  .hero-logo { top: auto; right: 8%; bottom: 13%; width: 124px; }
  .hero-stack-sticker { display: none; }
  .pulse-track span { font-size: 0.9rem; }
  .feed-shell { padding-block: 78px; }
  .feed-heading { grid-template-columns: 1fr; gap: 22px; }
  .feed-heading h1, .principles h2, .platform-stage h2 { font-size: clamp(3.2rem, 16vw, 4.9rem); }
  .feed-tools { align-items: flex-start; flex-direction: column; }
  .feed-filters { justify-content: flex-start; }
  .news-grid { grid-template-columns: 1fr; border-left: 0; }
  .news-card, .news-card:nth-child(5n + 1) { grid-column: 1; min-height: 500px; border-left: 1px solid var(--line); }
  .news-card h3 { max-width: 16ch; font-size: 2.65rem; }
  .principles { grid-template-columns: 1fr; gap: 65px; padding-inline: 18px; }
  .principles-statement img { top: -30px; right: 0; width: 120px; }
  .platform-stage { padding-inline: 18px; }
  .platform-sticker { top: 148px; right: -6px; width: 118px; opacity: 0.38; }
  .platform-links a { grid-template-columns: 1fr auto; }
  .platform-links span { grid-column: 1 / -1; }
  .platform-links b { font-size: 1.5rem; }
  footer { grid-template-columns: 1fr; align-items: start; padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .hero-art img, .hero-logo, .hero-stack-sticker, .news-card, .card-visual img, .reveal, .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
  .pulse-track { animation: none; }
}

@media (prefers-contrast: more) {
  :root { --muted: #f2f0e9; --line: rgba(255, 255, 255, 0.45); }
}
