.news-body {
  min-height: 100svh;
}

.news-page {
  position: relative;
  min-height: 100svh;
}

.news-page__hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  padding: var(--pad);
  padding-top: calc(var(--pad) + 44px);
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
}

.news-page__hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.78;
}

.news-page__hero-art::before {
  content: "";
  position: absolute;
  inset: -18% 0;
  opacity: 0.16;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0) 9px,
    rgba(255, 255, 255, 0.05) 9px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0) 10px,
    rgba(255, 255, 255, 0) 20px
  );
  mix-blend-mode: screen;
  animation: news-hero-screen-wave 4.2s linear infinite;
}

.news-page__hero-art::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -28%;
  height: 34%;
  opacity: 0.14;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.1) 36%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.08) 66%,
    rgba(255, 255, 255, 0)
  );
  filter: blur(10px);
  animation: news-hero-scan-pass 3.6s linear infinite;
}

.news-page__hero-mark {
  position: absolute;
  bottom: 0;
  left: 79%;
  width: min(23vw, 260px);
  opacity: 0.12;
  transform: translateX(-50%);
  filter: blur(0.5px) saturate(1.05);
  mix-blend-mode: screen;
}

.news-page__hero-mark--base {
  opacity: 0.12;
  transform: translateX(-50%) translateX(0);
  animation: news-hero-mark-base 4.8s steps(1, end) infinite;
}

.news-page__hero-mark--blue {
  opacity: 0.11;
  transform: translateX(-50%) translateX(-18px);
  animation: news-hero-mark-blue 3.2s steps(1, end) infinite;
}

.news-page__hero-mark--purple {
  opacity: 0.11;
  transform: translateX(-50%) translateX(18px);
  animation: news-hero-mark-purple 3.9s steps(1, end) infinite;
}

.news-nav {
  left: 72px;
  right: 12px;
}

.news-nav .nav[aria-current="page"] {
  color: var(--wireframe-yellow);
}

.news-page__hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.72fr);
  gap: clamp(24px, 3vw, 56px);
  align-items: end;
  margin-top: auto;
}

.news-page__intro,
.news-page__signal,
.news-page__featured,
.news-page__archive {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 360ms ease,
    transform 460ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.news-page__intro.is-ready,
.news-page__signal.is-ready,
.news-page__featured.is-ready,
.news-page__archive.is-ready {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.news-page__eyebrow,
.news-page__section-label,
.news-page__signal-kicker,
.news-page__signal-tag,
.news-meta,
.news-archive-item__date,
.news-page__loading,
.news-empty {
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-page__eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  color: var(--wireframe-yellow);
}

.news-page__title {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(56px, 7.6vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  filter: none;
  will-change: filter;
  cursor: default;
}

.news-page__title-line {
  display: block;
}

.news-page__title-word {
  display: inline-block;
  white-space: nowrap;
}

.news-page__title-char {
  display: inline-block;
  will-change: transform, text-shadow, opacity, filter;
  transition: opacity 220ms linear;
  transform-origin: 50% 50%;
}

.news-page__lead {
  max-width: 52ch;
  margin: 22px 0 0;
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--muted);
}

.news-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.news-page__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(245, 245, 245, 0.16);
  color: var(--fg);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(245, 245, 245, 0.02);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.news-page__action:hover,
.news-page__action:focus-visible {
  border-color: rgba(var(--wireframe-yellow-rgb), 0.55);
  color: var(--wireframe-yellow);
  transform: translateY(-1px);
}

.news-page__action--solid {
  background: rgba(var(--wireframe-yellow-rgb), 0.12);
  border-color: rgba(var(--wireframe-yellow-rgb), 0.4);
}

.news-page__signal {
  position: relative;
  align-self: start;
  justify-self: end;
  width: min(100%, 304px);
  margin-top: clamp(56px, 8vh, 92px);
  padding: 16px;
  border: 1px solid rgba(245, 245, 245, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(8px);
}

.news-page__signal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 1px;
  background: rgba(var(--wireframe-yellow-rgb), 0.72);
}

.news-page__signal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news-page__signal-kicker {
  font-size: 11px;
  color: var(--muted);
}

.news-page__signal-tag {
  font-size: 11px;
  color: var(--wireframe-yellow);
}

.news-page__signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.news-page__signal-card {
  padding: 10px;
  border: 1px solid rgba(245, 245, 245, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.news-page__signal-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.news-page__signal-value {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 0.98;
}

.news-page__signal-card:first-child .news-page__signal-value {
  text-align: center;
}

.news-page__signal-card:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.news-page__content {
  padding: 0 var(--pad) calc(var(--pad) * 2.2);
}

.news-page__content-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.news-page__section-label {
  margin-bottom: 12px;
  font-size: 11px;
  color: var(--wireframe-yellow);
}

.news-card,
.news-archive-item {
  position: relative;
  border: 1px solid rgba(245, 245, 245, 0.1);
  background: rgba(255, 255, 255, 0.018);
}

.news-card--featured {
  min-height: 360px;
  padding: clamp(22px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.news-card--featured::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -24%;
  width: 280px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--wireframe-yellow-rgb), 0.12),
    transparent 58%
  );
  pointer-events: none;
}

.news-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
}

.news-meta__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--wireframe-yellow);
}

.news-card__title {
  margin: 20px 0 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.news-card__excerpt {
  margin: 20px 0 0;
  max-width: 48ch;
  line-height: 1.7;
  color: var(--muted);
}

.news-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.news-card__cta,
.news-archive-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wireframe-yellow);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card__cta:hover,
.news-card__cta:focus-visible,
.news-archive-item__cta:hover,
.news-archive-item__cta:focus-visible {
  text-decoration: underline;
}

.news-page__archive-list {
  display: grid;
  gap: 16px;
}

.news-archive-item {
  padding: 18px 18px 16px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.news-archive-item:hover,
.news-archive-item:focus-within {
  border-color: rgba(var(--wireframe-yellow-rgb), 0.35);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.news-archive-item__date {
  font-size: 11px;
  color: var(--muted);
}

.news-archive-item__title {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 34px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.news-archive-item__excerpt {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.news-archive-item__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.news-page__loading,
.news-empty {
  font-size: 12px;
  color: var(--muted);
}

.news-page__ticker {
  overflow: hidden;
  border-top: 1px solid rgba(245, 245, 245, 0.08);
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
  margin: 0 var(--pad) var(--pad);
}

.news-page__ticker-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  padding: 12px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.82);
  animation: news-ticker 24s linear infinite;
}

@keyframes news-ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes news-hero-screen-wave {
  0% {
    transform: translateY(-6%);
  }
  100% {
    transform: translateY(6%);
  }
}

@keyframes news-hero-scan-pass {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(220%);
  }
}

@keyframes news-hero-mark-base {
  0%,
  8%,
  100% {
    opacity: 0.1;
    filter: blur(0.5px) saturate(1.05);
  }
  9%,
  10% {
    opacity: 0.18;
    filter: blur(0.2px) saturate(1.15);
  }
  46%,
  47% {
    opacity: 0.04;
    filter: blur(0.9px) saturate(0.9);
  }
  78%,
  79% {
    opacity: 0.16;
    filter: blur(0.3px) saturate(1.12);
  }
}

@keyframes news-hero-mark-blue {
  0%,
  18%,
  100% {
    opacity: 0.08;
    filter: blur(0.6px) saturate(1.05);
  }
  19%,
  20% {
    opacity: 0.17;
    filter: blur(0.2px) saturate(1.22);
  }
  21%,
  22% {
    opacity: 0.05;
    filter: blur(1px) saturate(0.85);
  }
  63%,
  64% {
    opacity: 0.15;
    filter: blur(0.35px) saturate(1.18);
  }
}

@keyframes news-hero-mark-purple {
  0%,
  28%,
  100% {
    opacity: 0.08;
    filter: blur(0.6px) saturate(1.05);
  }
  29%,
  30% {
    opacity: 0.16;
    filter: blur(0.25px) saturate(1.16);
  }
  52%,
  53% {
    opacity: 0.03;
    filter: blur(1px) saturate(0.82);
  }
  54%,
  55% {
    opacity: 0.15;
    filter: blur(0.28px) saturate(1.14);
  }
}

@media (max-width: 1024px) {
  .news-page__hero-shell,
  .news-page__content-inner {
    grid-template-columns: 1fr;
  }

  .news-page__hero-shell {
    gap: clamp(22px, 4vw, 36px);
    align-items: start;
  }

  .news-page__signal {
    margin-top: 0;
  }

  .news-page__title {
    max-width: 12ch;
  }

  .news-page__hero-art {
    opacity: 0.72;
  }

  .news-page__hero-mark {
    left: 76%;
    width: min(29vw, 260px);
  }

  .news-card__title {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .news-page__hero {
    min-height: 100svh;
    height: 100svh;
    padding-top: 72px;
    padding-bottom: 28px;
    align-items: flex-start;
  }

  .news-nav {
    position: absolute;
    top: 8px;
    left: 12px;
    right: 12px;
  }

  .news-page__hero-shell {
    margin-top: 58px;
    gap: 22px;
    align-items: start;
  }

  .news-page__intro {
    max-width: 100%;
    padding-right: min(22vw, 96px);
  }

  .news-page__title {
    max-width: 8ch;
    font-size: clamp(36px, 11.5vw, 58px);
    line-height: 0.94;
  }

  .news-page__lead {
    max-width: 34ch;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .news-page__actions {
    width: 100%;
    gap: 10px;
    margin-top: 22px;
  }

  .news-page__action {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .news-page__hero-art {
    opacity: 0.34;
  }

  .news-page__hero-mark {
    left: 82%;
    bottom: 0;
    width: min(34vw, 150px);
  }

  .news-page__actions,
  .news-card__footer,
  .news-archive-item__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-page__signal {
    justify-self: start;
    width: min(50vw, 280px);
    max-width: 50vw;
    margin-top: 0;
    padding: 14px;
    backdrop-filter: blur(6px);
  }

  .news-page__signal-head {
    gap: 10px;
    margin-bottom: 10px;
  }

  .news-page__signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .news-page__signal-card {
    min-height: 90px;
    padding: 10px 9px;
  }

  .news-page__signal-value {
    font-size: clamp(18px, 5.6vw, 26px);
  }

  .news-card--featured {
    min-height: 0;
    padding: 18px;
  }

  .news-card__title {
    max-width: 10ch;
    font-size: clamp(28px, 9vw, 46px);
  }

  .news-card__excerpt,
  .news-archive-item__excerpt {
    font-size: 15px;
    line-height: 1.58;
  }

  .news-archive-item {
    padding: 16px 16px 14px;
  }

  .news-archive-item__title {
    font-size: clamp(22px, 7.2vw, 30px);
    line-height: 1.02;
  }

  .news-page__ticker {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 18px;
  }

  .news-page__ticker-track {
    gap: 24px;
    font-size: 11px;
    letter-spacing: 0.13em;
  }
}

@media (max-width: 520px) {
  .news-page__hero {
    padding-top: 68px;
    padding-bottom: 22px;
  }

  .news-page__content {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 56px;
  }

  .news-page__hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .news-page__hero-shell {
    margin-top: 52px;
    gap: 18px;
  }

  .news-page__intro {
    padding-right: 74px;
  }

  .news-page__title {
    max-width: 7ch;
    font-size: clamp(34px, 13vw, 48px);
  }

  .news-page__lead {
    max-width: none;
    font-size: 14px;
  }

  .news-page__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .news-page__action {
    width: 100%;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .news-page__hero-art {
    opacity: 0.28;
  }

  .news-page__hero-mark {
    left: 86%;
    width: min(38vw, 126px);
  }

  .news-page__signal {
    width: min(50vw, 210px);
    max-width: 50vw;
    padding: 12px;
  }

  .news-page__signal-grid {
    grid-template-columns: 1fr;
  }

  .news-page__signal-card {
    min-height: 0;
  }

  .news-page__signal-head,
  .news-card__footer,
  .news-archive-item__footer {
    gap: 10px;
  }

  .news-card__title {
    font-size: clamp(26px, 9vw, 38px);
  }

  .news-archive-item__title {
    font-size: clamp(20px, 7.6vw, 28px);
  }
}
