:root {
  --canvas: #fff;
  --ink: #10172b;
  --muted: #687087;
  --line: #e7eaf4;
  --violet: #6e40ff;
  --violet-deep: #4b22d6;
  --sky: #158df5;
  --sky-deep: #075ea8;
  --sky-soft: #eaf6ff;
  --mint: #00a982;
  --mint-soft: #e8faf4;
  --sun: #ffd540;
  --competition-gold: #e1b95b;
  --competition-gold-deep: #a87309;
  --competition-gold-ink: #4d3400;
  --competition-gold-soft: #fff8df;
  --lavender: #f5f4ff;
  --danger: #c44358;
  --max: 1380px;
  --gutter: clamp(20px, 4vw, 48px);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--canvas); color: var(--ink); font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif; -webkit-font-smoothing: antialiased; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid #6e40ff; outline-offset: 3px; }
.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 { min-height: 76px; padding: 0 var(--gutter); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: clamp(18px,2.8vw,42px); position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); }
.brand { color: var(--ink); text-decoration: none; font-size: 1.58rem; font-weight: 800; letter-spacing: -.04em; white-space: nowrap; }
.brand span { color: var(--violet); }
.site-nav { min-width: 0; display: flex; justify-content: center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.site-nav::-webkit-scrollbar { display: none; }
.site-nav a { min-height: 42px; padding: 0 10px; display: inline-flex; align-items: center; flex: 0 0 auto; border-radius: 12px; color: #3b4154; text-decoration: none; font-size: .8rem; font-weight: 650; white-space: nowrap; }
.site-nav a:hover { background: #f6f7fb; color: var(--ink); }
.site-nav a[aria-current="page"] { background: var(--sky-soft); color: var(--sky-deep); }
.account-button { min-width: 82px; min-height: 42px; padding: 0 15px; border: 1px solid #dcdfea; border-radius: 13px; background: #fff; color: var(--ink); font-size: .78rem; font-weight: 700; cursor: pointer; position: relative; z-index: 2; }
.account-button:hover { border-color: var(--violet); color: var(--violet-deep); }

.news-page { width: min(var(--max), calc(100% - var(--gutter) * 2)); margin: 0 auto; padding: 26px 0 74px; }
.news-masthead { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,420px); gap: 48px; align-items: end; }
.news-masthead h1 { margin: 0; font-size: clamp(3.3rem,6vw,4.7rem); line-height: .94; letter-spacing: -.04em; font-weight: 800; }
.news-masthead p { max-width: 68ch; margin: 12px 0 0; color: var(--muted); font-size: .94rem; line-height: 1.65; }
.news-masthead-tools { display: grid; gap: 9px; }
.news-search { min-height: 52px; border: 1px solid #dfe3ee; border-radius: 14px; padding: 0 14px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; background: #fff; }
.news-search:focus-within { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(110,64,255,.09); }
.news-search svg { width: 20px; height: 20px; fill: none; stroke: #777e91; stroke-width: 1.8; stroke-linecap: round; }
.news-search input { width: 100%; min-width: 0; border: 0; outline: 0; color: var(--ink); font-size: .82rem; }
.news-search input::placeholder { color: #8b91a3; }
.news-search kbd { min-width: 25px; min-height: 25px; border: 1px solid #dfe3ee; border-radius: 7px; display: grid; place-items: center; color: #7c8295; font: 650 .7rem/1 "Noto Sans SC",sans-serif; }

.view-tabs { margin-top: 18px; display: flex; align-items: center; gap: 4px; border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.view-tabs::-webkit-scrollbar { display: none; }
.view-tabs button { min-width: 76px; min-height: 50px; padding: 0 16px; border: 0; border-bottom: 3px solid transparent; background: transparent; color: #545b70; font-size: .86rem; font-weight: 700; cursor: pointer; white-space: nowrap; }
.view-tabs button:hover { color: var(--violet-deep); }
.view-tabs button[aria-selected="true"] { color: var(--violet-deep); border-bottom-color: var(--violet); }
.view-tabs button[data-view="competitions"] {
  position: relative;
  isolation: isolate;
  min-width: 116px;
  min-height: 38px;
  margin: 6px 5px 6px 7px;
  padding: 0 17px;
  overflow: hidden;
  border: 1px solid var(--competition-gold);
  border-bottom: 1px solid var(--competition-gold);
  border-radius: 999px;
  background: linear-gradient(105deg,var(--competition-gold-soft) 0%,color-mix(in srgb,var(--competition-gold) 78%,#fff) 38%,color-mix(in srgb,var(--competition-gold-soft) 70%,#fff) 57%,var(--competition-gold) 100%);
  color: var(--competition-gold-ink);
  box-shadow: 0 7px 18px color-mix(in srgb,var(--competition-gold-deep) 14%,transparent),inset 0 1px 0 color-mix(in srgb,#fff 78%,transparent);
}
.view-tabs button[data-view="competitions"]::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -60%;
  bottom: -60%;
  left: -58%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg,transparent,color-mix(in srgb,#fff 88%,transparent),transparent);
  animation: ai-grand-prix-glint 4.2s cubic-bezier(.16,1,.3,1) infinite;
  pointer-events: none;
}
.view-tabs button[data-view="competitions"] span { position: relative; z-index: 1; }
.view-tabs button[data-view="competitions"]:hover {
  color: var(--competition-gold-ink);
  box-shadow: 0 9px 22px color-mix(in srgb,var(--competition-gold-deep) 20%,transparent),inset 0 1px 0 color-mix(in srgb,#fff 82%,transparent);
}
.view-tabs button[data-view="competitions"]:focus-visible { outline-color: var(--competition-gold-deep); }
.view-tabs button[data-view="competitions"][aria-selected="true"] {
  border-color: var(--competition-gold-deep);
  border-bottom-color: var(--competition-gold-deep);
  color: var(--competition-gold-ink);
  box-shadow: 0 9px 24px color-mix(in srgb,var(--competition-gold-deep) 23%,transparent),inset 0 0 0 1px color-mix(in srgb,#fff 40%,transparent);
}
@keyframes ai-grand-prix-glint {
  0%,18% { transform: translateX(0) skewX(-18deg); }
  48%,100% { transform: translateX(390%) skewX(-18deg); }
}

.collector { min-height: 280px; margin-top: 14px; border-radius: 24px; overflow: hidden; position: relative; isolation: isolate; background: #cfeaff; box-shadow: 0 28px 80px rgba(38, 95, 159, .15); }
.collector > img { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: center 57%; }
.collector-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg,rgba(231,246,255,.98) 0%,rgba(231,246,255,.9) 28%,rgba(231,246,255,.2) 54%,rgba(8,51,99,.03) 100%),linear-gradient(0deg,rgba(5,35,78,.78) 0%,transparent 39%); }
.collector-copy { min-height: 280px; padding: 20px 26px 16px; display: flex; flex-direction: column; position: relative; z-index: 2; }
.collector-title-line { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.collector h2 { margin: 0; font-size: clamp(1.7rem,2.7vw,2.2rem); letter-spacing: -.035em; }
.collector-state { min-height: 30px; padding: 0 11px; border-radius: 999px; display: inline-flex; align-items: center; gap: 7px; background: #fff; color: #2e425d; font-size: .7rem; font-weight: 750; }
.collector-state i { width: 8px; height: 8px; border-radius: 50%; background: #8c93a3; }
.collector-state.is-running i { background: var(--mint); box-shadow: 0 0 0 5px rgba(0,169,130,.13); animation: pulse 1.8s ease-out infinite; }
.collector-state.is-error i { background: var(--danger); }
.collector-copy > p { max-width: 47ch; margin: 6px 0 0; color: #425773; font-size: .76rem; line-height: 1.5; }
.collector-facts { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 7px; }
.collector-facts span { min-height: 28px; padding: 0 9px; border: 1px solid rgba(7,94,168,.16); border-radius: 10px; background: rgba(255,255,255,.9); color: #23486e; display: inline-flex; align-items: center; font-size: .65rem; font-weight: 700; }
.collector-log-button { align-self: flex-start; min-height: 36px; margin-top: 8px; padding: 0 14px; border: 0; border-radius: 12px; background: var(--violet); color: #fff; font-size: .7rem; font-weight: 750; cursor: pointer; }
.collector-log-button:hover { background: var(--violet-deep); }
.collector-stages { list-style: none; margin: auto 0 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.collector-stages li { min-height: 62px; padding: 10px; border-radius: 14px; background: rgba(255,255,255,.94); color: #405068; display: grid; grid-template-columns: 28px 1fr; grid-template-rows: auto auto; align-items: center; column-gap: 8px; }
.collector-stages li > span { grid-row: 1 / 3; width: 28px; height: 28px; border: 1px solid #bdcfe2; border-radius: 50%; display: grid; place-items: center; font-size: .66rem; font-weight: 800; }
.collector-stages strong { font-size: .76rem; }
.collector-stages small { color: #788296; font-size: .61rem; }
.collector-stages li.is-done > span { border-color: var(--mint); background: var(--mint-soft); color: #087d62; }
.collector-stages li.is-active { background: #fff; box-shadow: 0 12px 35px rgba(22,78,137,.16); }
.collector-stages li.is-active > span { border-color: var(--violet); background: var(--violet); color: #fff; }
.signal { position: absolute; z-index: 1; width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 5px rgba(110,64,255,.25),0 0 24px #fff; animation: drift 6s cubic-bezier(.22,1,.36,1) infinite; pointer-events: none; }
.signal-one { left: 42%; top: 59%; }
.signal-two { left: 58%; top: 67%; animation-delay: -2s; }
.signal-three { left: 72%; top: 53%; animation-delay: -4s; }
.collector.is-idle .signal { animation-play-state: paused; opacity: .45; }
@keyframes drift { 0% { transform: translate(-30px,18px) scale(.7); opacity: 0; } 18%,72% { opacity: 1; } 100% { transform: translate(110px,-18px) scale(1.1); opacity: 0; } }
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(0,169,130,0); } 100% { box-shadow: 0 0 0 0 rgba(0,169,130,0); } }

.filter-bar { min-height: 64px; padding: 11px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 18px; }
.region-tabs, .channel-tabs { display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.region-tabs::-webkit-scrollbar, .channel-tabs::-webkit-scrollbar { display: none; }
.region-tabs { padding: 4px; border-radius: 13px; background: var(--lavender); }
.region-tabs button, .channel-tabs button, .reset-filter { min-height: 36px; padding: 0 12px; border: 0; border-radius: 10px; background: transparent; color: #596075; font-size: .72rem; font-weight: 700; cursor: pointer; white-space: nowrap; }
.region-tabs button.is-active { background: var(--violet); color: #fff; }
.channel-tabs button.is-active { background: var(--sky-soft); color: var(--sky-deep); }
.channel-tabs button:hover { color: var(--sky-deep); }
.reset-filter { border: 1px solid var(--line); background: #fff; }

.content-layout { margin-top: 20px; display: grid; grid-template-columns: minmax(0,1fr) 310px; align-items: start; gap: 34px; }
.content-main { min-width: 0; }
.content-heading { min-height: 60px; display: flex; align-items: start; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--ink); padding-bottom: 14px; }
.content-heading h2 { margin: 0; font-size: clamp(1.5rem,2.6vw,2.2rem); letter-spacing: -.035em; }
.content-heading p { max-width: 68ch; margin: 7px 0 0; color: var(--muted); font-size: .72rem; line-height: 1.55; }
.content-heading > span { padding-top: 8px; color: var(--muted); font-size: .7rem; white-space: nowrap; }
.api-alert { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 14px 0; padding: 12px 14px; border-radius: 12px; background: #fff5e6; color: #7e5414; font-size: .72rem; line-height: 1.55; }
.api-alert[hidden] { display: none; }
.api-alert.is-loading { background: var(--sky-soft); color: var(--sky-deep); }
.api-alert.is-loading::before { content: ''; width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 5px rgba(33,164,229,.12); animation: feed-breathe 1.35s ease-in-out infinite; }
.api-alert.is-loading span { flex: 1; }
.api-alert.is-degraded { background: var(--competition-gold-soft); color: var(--competition-gold-ink); }
.api-alert.is-unavailable { background: var(--lavender); color: var(--danger); }
.api-alert button { min-height: 40px; flex: 0 0 auto; border: 1px solid #d9ad68; border-radius: 10px; padding: 0 12px; color: #754a0b; background: #fff; font-weight: 750; cursor: pointer; }
.story-list { display: grid; }
.date-divider { min-height: 42px; padding-top: 20px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 13px; color: var(--ink); }
.date-divider span { font-size: .7rem; font-weight: 800; white-space: nowrap; }
.date-divider i { height: 1px; background: var(--line); }
.story { display: grid; grid-template-columns: 94px minmax(0,1fr) auto; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: start; }
.date-divider + .story { padding: 25px; margin-top: 8px; border: 0; border-radius: 20px; background: var(--sky-soft); }
.story-time { color: var(--muted); display: grid; gap: 7px; }
.story-time time { color: var(--ink); font-size: .76rem; font-weight: 800; }
.story-time span { font-size: .62rem; line-height: 1.4; }
.story-copy { min-width: 0; }
.story-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; color: var(--muted); font-size: .61rem; }
.story-meta span { min-height: 24px; padding: 0 8px; border-radius: 8px; background: #f5f6fa; display: inline-flex; align-items: center; }
.date-divider + .story .story-meta span { background: rgba(255,255,255,.75); }
.story-meta .trust-primary, .story-meta .trust-verified { background: var(--mint-soft); color: #087d62; }
.story-meta .region-overseas { background: #eeeaff; color: var(--violet-deep); }
.story-meta .region-domestic { background: #fff0d3; color: #7c5600; }
.story h3 { margin: 8px 0 0; font-size: clamp(1rem,1.55vw,1.28rem); line-height: 1.34; letter-spacing: -.02em; overflow-wrap: anywhere; }
.story h3 a { color: inherit; text-decoration: none; }
.story h3 a:hover { color: var(--sky-deep); }
.story-visual { width: min(42%,220px); aspect-ratio: 16 / 10; margin: 12px 0 12px 18px; border-radius: 12px; background: #e8eef6; float: right; overflow: hidden; }
.story-visual[hidden] { display: none; }
.story-visual img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .24s ease-out; }
.story-visual:hover img { transform: scale(1.025); }
.story-list > .date-divider:first-child + .story h3 { font-size: clamp(1.35rem,2.6vw,2.05rem); max-width: 28ch; }
.story-summary { max-width: 72ch; margin: 9px 0 0; color: #616a80; font-size: .76rem; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.story-event { max-width: 76ch; margin: 11px 0 0; color: #4c5870; font-size: .76rem; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.story-event strong { margin-right: 8px; color: var(--sky-deep); font-size: .66rem; letter-spacing: .04em; }
.story-source-line { margin-top: 11px; display: flex; flex-wrap: wrap; gap: 10px; color: #5d667c; font-size: .64rem; }
.story-source-line strong { color: var(--ink); }
.story-action { min-width: 98px; min-height: 40px; padding: 0 13px; border: 1px solid #cad6e7; border-radius: 12px; background: #fff; color: var(--sky-deep); display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-size: .68rem; font-weight: 750; cursor: pointer; }
.story-action:hover { border-color: var(--sky); background: #f8fcff; }
.feed-loader { min-height: 96px; padding: 22px 0; display: flex; align-items: center; justify-content: center; gap: 11px; color: var(--muted); font-size: .68rem; }
.feed-loader[hidden] { display: none; }
.feed-loader-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--sky); box-shadow: 0 5px 18px rgba(33,164,229,.28); animation: feed-breathe 1.5s ease-in-out infinite; }
.feed-loader button { min-height: 38px; padding: 0 13px; border: 1px solid #cad6e7; border-radius: 12px; background: #fff; color: var(--sky-deep); font: inherit; font-weight: 750; cursor: pointer; }
.feed-loader button:hover { border-color: var(--sky); background: #f8fcff; }
@keyframes feed-breathe { 50% { transform: scale(1.45); opacity: .45; } }

.news-rail { display: grid; gap: 14px; position: sticky; top: 96px; }
.news-rail > section { border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 17px; }
.news-rail header { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.news-rail h2 { margin: 0; font-size: .9rem; letter-spacing: -.015em; }
.news-rail header > span { color: var(--muted); font-size: .6rem; }
.hot-board ol { list-style: none; margin: 13px 0 0; padding: 0; display: grid; }
.hot-board button { width: 100%; min-height: 44px; padding: 8px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); display: grid; grid-template-columns: 25px 1fr auto; gap: 8px; text-align: left; align-items: start; cursor: pointer; }
.hot-board li:last-child button { border-bottom: 0; }
.hot-board b { width: 21px; height: 21px; border-radius: 7px; display: grid; place-items: center; background: #f0f2f7; color: #667087; font-size: .58rem; }
.hot-board li:nth-child(-n+3) b { background: var(--sun); color: #594400; }
.hot-board strong { font-size: .68rem; line-height: 1.45; font-weight: 650; }
.hot-board small { color: var(--muted); font-size: .56rem; white-space: nowrap; }
.catch-log { background: #091f42 !important; border-color: #091f42 !important; color: #fff; }
.catch-log header > span { color: #a8bddb; }
#catchLogEvents { margin-top: 13px; display: grid; gap: 10px; max-height: 260px; overflow-y: auto; scrollbar-width: thin; }
.log-entry { padding-left: 13px; border-left: 1px solid #46648c; }
.log-entry strong { display: block; font-size: .66rem; line-height: 1.45; }
.log-entry time { display: block; margin-top: 3px; color: #9db2d0; font-size: .55rem; }
.log-entry.is-error { border-left-color: #ff8091; }
.log-entry.is-success { border-left-color: #46d9b5; }
.log-empty { color: #a8bddb; font-size: .66rem; line-height: 1.6; }
.editorial-boundary { background: var(--lavender) !important; }
.editorial-boundary p { margin: 10px 0 0; color: #60677d; font-size: .68rem; line-height: 1.7; }
.editorial-boundary a { display: inline-flex; margin-top: 12px; color: var(--violet-deep); font-size: .68rem; font-weight: 750; }

.digest-reader { margin-top: 16px; }
.digest-cover { padding: clamp(22px,4vw,42px); border-radius: 20px; background: #0b2953; color: #fff; }
.digest-cover header { display: flex; justify-content: space-between; gap: 20px; color: #9fcaff; font-size: .65rem; }
.digest-cover h3 { max-width: 20ch; margin: 32px 0 0; font-size: clamp(2rem,5vw,4.7rem); line-height: .98; letter-spacing: -.04em; }
.digest-cover p { max-width: 68ch; margin: 20px 0 0; color: #c8d9ef; font-size: .78rem; line-height: 1.75; }
.digest-stories { margin: 0; padding: 0; list-style: none; counter-reset: digest; }
.digest-stories li { counter-increment: digest; display: grid; grid-template-columns: 44px minmax(0,1fr) auto; gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: center; }
.digest-stories li::before { content: counter(digest, decimal-leading-zero); color: var(--violet); font-size: .72rem; font-weight: 800; }
.digest-stories strong { font-size: .82rem; line-height: 1.45; }
.digest-stories span { color: var(--muted); font-size: .62rem; }
.digest-archive { margin-top: 28px; }
.digest-archive h3 { margin: 0 0 12px; font-size: 1rem; }
.digest-archive-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.digest-archive button { min-height: 86px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink); text-align: left; cursor: pointer; }
.digest-archive button:hover, .digest-archive button.is-current { border-color: var(--violet); background: var(--lavender); }
.digest-archive button strong { display: block; font-size: .75rem; }
.digest-archive button span { display: block; margin-top: 8px; color: var(--muted); font-size: .6rem; }

.source-registry { margin-top: 16px; }
.source-intro { padding: 22px; border-radius: 18px; background: var(--sky-soft); }
.source-intro h3 { margin: 0; font-size: 1.4rem; }
.source-intro p { max-width: 68ch; margin: 10px 0 0; color: #526780; font-size: .73rem; line-height: 1.7; }
.source-list { margin-top: 10px; }
.source-row { min-height: 76px; padding: 14px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: minmax(170px,1fr) minmax(150px,.8fr) auto; align-items: center; gap: 18px; }
.source-row strong { display: block; font-size: .78rem; }
.source-row small { display: block; margin-top: 5px; color: var(--muted); font-size: .6rem; }
.source-row span { color: #4f5870; font-size: .64rem; }
.source-health { min-height: 28px; padding: 0 9px; border-radius: 9px; display: inline-flex !important; align-items: center; background: var(--mint-soft); color: #087d62 !important; font-weight: 750; }
.source-health.is-degraded { background: #fff2e5; color: #945415 !important; }

.empty-state { padding: 60px 20px; text-align: center; }
.empty-state h2 { margin: 0; font-size: 1.4rem; }
.empty-state p { color: var(--muted); font-size: .76rem; }
.empty-state button { min-height: 42px; padding: 0 16px; border: 0; border-radius: 12px; background: var(--violet); color: #fff; font-weight: 700; cursor: pointer; }

.site-footer { min-height: 110px; padding: 24px var(--gutter); border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 28px; color: var(--muted); font-size: .68rem; }
.site-footer p { max-width: 68ch; margin: 0; line-height: 1.6; }
.site-footer div { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.site-footer a { color: var(--violet-deep); }

.news-page.is-reading > :not(.article-reader) { display: none; }
.article-reader { min-height: calc(100vh - 180px); }
.article-reader[hidden] { display: none; }
.reader-article { padding-top: 12px; }
.reader-status { min-height: 60vh; display: grid; grid-template-rows: auto 1fr; }
.reader-status > div { align-self: center; justify-self: center; max-width: 520px; padding: 32px; text-align: center; }
.reader-status strong { font-size: 1.35rem; }
.reader-status p { margin: 12px 0 0; color: var(--muted); font-size: .95rem; line-height: 1.7; }
.reader-status.is-error strong { color: var(--danger); }
.reader-back { min-height: 48px; padding: 0; border: 0; background: transparent; color: var(--sky-deep); font-size: .9rem; font-weight: 700; cursor: pointer; }
.reader-header { max-width: 980px; margin: 12px auto 0; padding: 28px 0 40px; border-bottom: 1px solid var(--line); }
.reader-labels { display: flex; flex-wrap: wrap; gap: 8px; }
.reader-labels span, .reader-tags span { min-height: 30px; padding: 0 10px; border-radius: 9px; background: var(--lavender); color: var(--violet-deep); display: inline-flex; align-items: center; font-size: .76rem; font-weight: 700; }
.reader-labels .trust-primary, .reader-labels .trust-verified { background: var(--mint-soft); color: #087d62; }
.reader-header h1 { max-width: 25ch; margin: 20px 0 0; font-size: clamp(2.35rem,4.5vw,4.3rem); line-height: 1.09; letter-spacing: -.04em; text-wrap: balance; overflow-wrap: anywhere; }
.reader-lead { max-width: 70ch; margin: 24px 0 0; color: #46536a; font-size: clamp(1.05rem,1.5vw,1.2rem); line-height: 1.85; }
.reader-quick-meta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 20px; color: var(--muted); font-size: .78rem; }
.reader-quick-meta span + span { position: relative; }
.reader-quick-meta span + span::before { position: absolute; left: -11px; color: #b9c3d1; content: "·"; }
.reader-facts { margin: 32px 0 0; display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 20px; }
.reader-facts div { min-width: 0; padding-top: 12px; border-top: 1px solid #cdd9e8; }
.reader-facts dt { color: var(--muted); font-size: .76rem; font-weight: 650; }
.reader-facts dd { margin: 7px 0 0; color: var(--ink); font-size: .86rem; line-height: 1.55; overflow-wrap: anywhere; }
.reader-tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.reader-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.reader-actions button, .reader-actions a { min-height: 48px; padding: 0 18px; border: 1px solid #cad6e7; border-radius: 12px; background: #fff; color: var(--ink); display: inline-flex; align-items: center; text-decoration: none; font-size: .86rem; font-weight: 700; cursor: pointer; }
.reader-actions .primary { border-color: var(--sky); background: var(--sky); color: #fff; }
.reader-layout { max-width: 980px; margin: 0 auto; }
.reader-main { min-width: 0; }
.reader-section { margin-top: 56px; }
.reader-section > h2, .reader-boundary h2 { margin: 0 0 20px; font-size: clamp(1.35rem,2.4vw,1.75rem); line-height: 1.28; letter-spacing: -.025em; }
.reader-prose, .source-report-excerpt { color: #28364d; font-size: 1.0625rem; line-height: 1.86; overflow-wrap: anywhere; }
.reader-prose p, .source-report-excerpt p { margin: 0 0 20px; }
.reader-hero { margin: 34px 0 0; }
.reader-hero[hidden] { display: none; }
.reader-hero img { width: 100%; max-height: 540px; border-radius: 18px; background: #edf2f7; display: block; object-fit: cover; }
.reader-hero figcaption { margin-top: 10px; color: var(--muted); font-size: .72rem; line-height: 1.6; }
.reader-hero figcaption a { color: var(--sky-deep); font-weight: 700; }
.primary-reading { margin-top: 44px; padding: 0 0 42px; border-bottom: 1px solid var(--line); }
.primary-reading > header { display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.primary-reading > header span { color: var(--sky-deep); font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.primary-reading > header h2 { margin: 7px 0 0; font-size: clamp(1.55rem,3vw,2.3rem); line-height: 1.18; letter-spacing: -.035em; }
.primary-reading > header > a { min-height: 44px; padding: 0 14px; border: 1px solid #c7d8e9; border-radius: 12px; color: var(--sky-deep); display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; font-size: .78rem; font-weight: 750; }
.primary-reading-note { max-width: 76ch; margin: 18px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.7; }
.primary-reading-prose { max-width: 76ch; margin-top: 30px; color: #25344a; font-size: 1.08rem; line-height: 1.95; }
.primary-reading-prose p { margin: 0 0 22px; }
.reading-outline { margin-top: 34px; padding: 26px; border: 1px solid #dbe8f2; border-radius: 16px; background: #f4f9fd; }
.reading-outline > h3 { margin: 0; font-size: 1.05rem; }
.reading-outline > p { margin: 8px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.6; }
.reading-outline section { padding-top: 20px; }
.reading-outline section + section { margin-top: 18px; border-top: 1px solid #dbe8f2; }
.reading-outline h4 { margin: 0; font-size: .96rem; }
.reading-outline .evidence-list { margin-top: 10px; }
.reader-boundary { margin-top: 56px; padding: 24px; border-radius: 14px; background: var(--sky-soft); color: #214769; }
.reader-boundary p { margin: 0; font-size: 1rem; line-height: 1.8; }
.reader-evidence-disclosure { margin-top: 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reader-evidence-disclosure > summary { position: relative; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 5px 16px; padding: 22px 42px 22px 0; list-style: none; color: var(--ink); cursor: pointer; }
.reader-evidence-disclosure > summary::-webkit-details-marker { display: none; }
.reader-evidence-disclosure > summary::after { position: absolute; right: 8px; top: 27px; width: 9px; height: 9px; border-right: 1px solid var(--violet); border-bottom: 1px solid var(--violet); transform: rotate(45deg); transition: transform .16s ease-out; content: ""; }
.reader-evidence-disclosure[open] > summary::after { transform: rotate(225deg); }
.reader-evidence-disclosure > summary span { font-size: 1rem; font-weight: 800; }
.reader-evidence-disclosure > summary strong { color: var(--violet-deep); font-size: .78rem; }
.reader-evidence-disclosure > summary small { grid-column: 1 / -1; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.reader-evidence-disclosure > div { padding-bottom: 20px; }
.reader-evidence-disclosure .reader-tags { margin-top: 4px; }
.reader-evidence-disclosure .reader-boundary { margin-top: 24px; }
.reader-boundary strong { display: block; margin-bottom: 8px; font-size: 1rem; }
.evidence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 56px; }
.evidence-grid .reader-section { margin-top: 0; }
.evidence-panel { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.evidence-panel.is-confirmed { border-color: #bcded0; background: #f5fbf8; }
.evidence-panel.is-unconfirmed { border-color: #ead7b8; background: #fffbf3; }
.evidence-panel > header span { display: block; margin-bottom: 5px; color: var(--violet-deep); font-size: .68rem; font-weight: 850; letter-spacing: .14em; }
.evidence-panel > header h2 { margin: 0; font-size: 1.25rem; }
.evidence-list { display: grid; gap: 12px; margin: 20px 0 0; padding: 0; list-style: none; }
.evidence-list li { position: relative; padding-left: 18px; color: #28364d; font-size: .94rem; line-height: 1.7; }
.evidence-list li::before { position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 999px; background: #2d9871; content: ""; }
.is-unconfirmed .evidence-list li::before { background: #d58b23; }
.evidence-list small { display: block; margin-top: 3px; color: var(--muted); font-size: .76rem; }
.evidence-list .is-empty { color: var(--muted); }
.evidence-list .is-empty::before { background: #aab3c1; }
.event-timeline { position: relative; display: grid; gap: 0; margin: 8px 0 0; padding: 0; list-style: none; }
.event-timeline::before { position: absolute; top: 12px; bottom: 12px; left: 124px; width: 1px; background: var(--line); content: ""; }
.event-timeline li { display: grid; grid-template-columns: 108px minmax(0,1fr); gap: 32px; padding: 15px 0; }
.event-timeline li::before { position: absolute; left: 119px; width: 11px; height: 11px; margin-top: 5px; border: 3px solid #fff; border-radius: 999px; background: var(--violet); box-shadow: 0 0 0 1px #baaafa; content: ""; }
.event-timeline time { color: var(--muted); font-size: .78rem; line-height: 1.6; }
.event-timeline strong { font-size: .95rem; }
.event-timeline p { margin: 5px 0; color: #46546a; line-height: 1.65; }
.event-timeline a { color: var(--violet-deep); font-size: .78rem; font-weight: 700; }
.source-differences { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 18px; }
.source-differences article { padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #fafbfe; }
.source-differences strong { color: var(--violet-deep); font-size: .76rem; }
.source-differences h3 { margin: 7px 0; font-size: .98rem; line-height: 1.5; }
.source-differences p { margin: 0; color: #536177; font-size: .86rem; line-height: 1.7; }
.corrections { padding: 24px; border: 1px solid #efc7c9; border-radius: 16px; background: #fff8f8; }
.corrections article + article { margin-top: 18px; padding-top: 18px; border-top: 1px solid #f0d8da; }
.corrections article header { display: flex; justify-content: space-between; gap: 16px; }
.corrections article time { color: var(--muted); font-size: .76rem; }
.corrections article p { color: #4d3540; line-height: 1.72; }
.corrections article a { color: #a53649; font-size: .8rem; font-weight: 700; }
.section-intro { max-width: 68ch; margin: -8px 0 24px; color: var(--muted); font-size: .9rem; line-height: 1.7; }
.source-report { padding: 32px 0; border-top: 1px solid var(--line); scroll-margin-top: 100px; }
.source-report header { display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.source-report header span { color: var(--sky-deep); font-size: .76rem; font-weight: 700; }
.source-report h3 { max-width: 40ch; margin: 8px 0 0; font-size: 1.2rem; line-height: 1.5; overflow-wrap: anywhere; }
.source-report header > a { min-height: 44px; padding: 0 12px; color: var(--sky-deep); display: inline-flex; align-items: center; flex: 0 0 auto; font-size: .82rem; font-weight: 700; }
.source-report-meta { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--muted); font-size: .78rem; }
.source-report-meta strong { color: var(--ink); }
.source-report-excerpt { margin-top: 20px; }
.related-reading > div { display: flex; flex-wrap: wrap; gap: 10px; }
.related-reading a { min-height: 44px; gap: 8px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; color: var(--violet-deep); display: inline-flex; align-items: center; text-decoration: none; font-size: .86rem; font-weight: 700; }
.related-reading a span { padding: 3px 6px; border-radius: 6px; background: var(--violet-soft); color: var(--violet-deep); font-size: .68rem; }
.reader-source-index { margin-top: 56px; padding: 20px; border-radius: 14px; background: #f7fbff; position: sticky; top: 98px; }
.reader-source-index h2 { margin: 0; font-size: 1.05rem; }
.reader-source-index > p { margin: 6px 0 0; color: var(--muted); font-size: .76rem; }
.reader-source-index ol { list-style: none; margin: 20px 0 0; padding: 0; display: grid; }
.reader-source-index li + li { border-top: 1px solid #dfeaf5; }
.reader-source-index button { width: 100%; min-height: 64px; padding: 12px 0; border: 0; background: transparent; color: var(--ink); display: flex; flex-direction: column; justify-content: center; text-align: left; cursor: pointer; }
.reader-source-index strong { font-size: .86rem; line-height: 1.45; overflow-wrap: anywhere; }
.reader-source-index span { margin-top: 4px; color: var(--muted); font-size: .72rem; }
.source-note { margin-top: 20px; padding-top: 20px; border-top: 1px solid #d3e3f2; display: grid; gap: 8px; }
.source-note strong { font-size: .82rem; }
.source-note span { color: #51647a; font-size: .76rem; line-height: 1.7; }
.engagement-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.engagement-actions button, .engagement-actions span { min-height: 44px; padding: 0 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: #525c70; display: inline-flex; align-items: center; font-size: .8rem; font-weight: 700; }
.engagement-actions button { cursor: pointer; }
.engagement-actions button.is-active { border-color: var(--violet); background: var(--lavender); color: var(--violet-deep); }
.comment-list { margin-top: 20px; display: grid; gap: 12px; }
.comment-list article { padding: 16px; border-radius: 12px; background: #f7f8fb; }
.comment-list article div { display: flex; justify-content: space-between; gap: 10px; }
.comment-list strong { font-size: .82rem; }
.comment-list time { color: var(--muted); font-size: .72rem; }
.comment-list p { margin: 8px 0 0; font-size: .9rem; line-height: 1.7; white-space: pre-wrap; }
.comment-empty { padding: 16px; border: 1px dashed var(--line); border-radius: 12px; color: var(--muted); font-size: .86rem; line-height: 1.7; }
.comment-form { margin-top: 20px; display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: end; }
.comment-form label { grid-column: 1 / -1; font-size: .86rem; font-weight: 700; }
.comment-form textarea { min-height: 128px; resize: vertical; border: 1px solid #cfd6e3; border-radius: 12px; padding: 14px; color: var(--ink); font-size: .9rem; line-height: 1.7; }
.comment-form button { min-height: 48px; padding: 0 18px; border: 0; border-radius: 12px; background: var(--violet); color: #fff; font-size: .86rem; font-weight: 700; cursor: pointer; }
.comment-form button:disabled { opacity: .55; cursor: wait; }

.toast { position: fixed; left: 50%; bottom: 24px; z-index: 100; max-width: min(430px,calc(100vw - 32px)); padding: 12px 16px; border-radius: 13px; background: #1a2032; color: #fff; font-size: .74rem; opacity: 0; transform: translate(-50%,14px); pointer-events: none; transition: opacity .18s ease,transform .18s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%,0); }

@media (max-width: 1160px) {
  .site-header { gap: 14px; }
  .site-nav a { padding-inline: 7px; font-size: .72rem; }
  .content-layout { grid-template-columns: minmax(0,1fr) 280px; gap: 22px; }
  .collector-stages li { padding: 11px; }
  .reader-layout { grid-template-columns: minmax(0,68ch) minmax(230px,270px); gap: 40px; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; grid-template-rows: 66px 52px; padding-inline: 20px; position: relative; }
  .site-nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; margin: 0 -20px; padding: 0 20px; }
  .news-page { width: min(100% - 40px,var(--max)); padding-top: 28px; }
  .news-masthead { grid-template-columns: 1fr; gap: 24px; }
  .collector { min-height: 500px; }
  .collector > img { height: 230px; object-position: center 58%; }
  .collector-shade { background: linear-gradient(0deg,#dcefff 0%,rgba(220,239,255,.94) 56%,transparent 100%); }
  .collector-copy { min-height: 500px; padding-top: 250px; }
  .collector-stages { grid-template-columns: repeat(2,1fr); margin-top: 18px; }
  .signal { display: none; }
  .filter-bar { grid-template-columns: 1fr; gap: 8px; }
  .content-layout { grid-template-columns: 1fr; }
  .news-rail { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .catch-log { grid-row: span 2; }
  .date-divider + .story { padding: 20px; }
  .reader-header { padding-bottom: 40px; }
  .reader-layout { max-width: 760px; grid-template-columns: minmax(0,1fr); gap: 0; }
  .reader-source-index { position: static; order: 2; margin-top: 56px; }
}

@media (max-width: 620px) {
  .news-masthead h1 { font-size: 3.5rem; }
  .news-masthead p { font-size: .84rem; }
  .view-tabs { margin-top: 20px; }
  .view-tabs button { min-width: auto; padding-inline: 13px; }
  .view-tabs button[data-view="competitions"] { min-width: 108px; margin-inline: 4px; padding-inline: 14px; }
  .collector { margin-inline: -20px; border-radius: 0; box-shadow: none; }
  .collector-copy { padding-inline: 20px; }
  .collector-title-line { display: grid; justify-items: start; }
  .collector-stages { grid-template-columns: 1fr 1fr; }
  .collector-stages li { min-height: 68px; }
  .story { grid-template-columns: 66px minmax(0,1fr); gap: 11px; }
  .story-visual { width: 100%; aspect-ratio: 16 / 9; margin: 14px 0; float: none; }
  .story-action { grid-column: 2; justify-self: start; }
  .date-divider + .story { margin-inline: -8px; }
  .content-heading { align-items: start; flex-direction: column; gap: 5px; }
  .news-rail { grid-template-columns: 1fr; }
  .catch-log { grid-row: auto; }
  .digest-archive-list { grid-template-columns: 1fr; }
  .source-row { grid-template-columns: 1fr auto; gap: 10px; }
  .source-row > span:not(.source-health) { grid-column: 1 / -1; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer div { text-align: left; }
  .reader-header { margin-top: 0; padding: 20px 0 40px; }
  .reader-header h1 { font-size: clamp(2.15rem,11vw,3.2rem); }
  .reader-lead { font-size: 1rem; line-height: 1.8; }
  .reader-facts { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px 12px; }
  .reader-actions { display: grid; }
  .reader-actions button, .reader-actions a { justify-content: center; }
  .reader-hero { margin: 24px -8px 0; }
  .reader-hero img { border-radius: 14px; }
  .primary-reading { margin-top: 34px; }
  .primary-reading > header { align-items: flex-start; flex-direction: column; gap: 14px; }
  .primary-reading > header > a { padding: 0; border: 0; min-height: 36px; }
  .primary-reading-prose { font-size: 1rem; line-height: 1.88; }
  .reading-outline { padding: 20px; }
  .reader-evidence-disclosure > summary { grid-template-columns: 1fr; padding-right: 36px; }
  .reader-evidence-disclosure > summary small { grid-column: 1; }
  .reader-evidence-disclosure > summary strong { grid-row: 2; }
  .reader-section, .reader-boundary, .reader-source-index { margin-top: 40px; }
  .reader-prose, .source-report-excerpt { font-size: 1rem; line-height: 1.82; }
  .evidence-grid, .source-differences { grid-template-columns: 1fr; }
  .event-timeline::before { left: 8px; }
  .event-timeline li { grid-template-columns: 1fr; gap: 5px; padding-left: 28px; }
  .event-timeline li::before { left: 3px; }
  .source-report header { display: grid; }
  .source-report header > a { padding: 0; justify-self: start; }
  .engagement-actions button, .engagement-actions span { min-height: 48px; }
  .comment-form { grid-template-columns: 1fr; }
  .comment-form button { width: 100%; }
}

.source-report-outline { margin-top: 22px; border-top: 1px solid #e2e7ef; }
.source-report-outline summary { padding: 18px 0 8px; color: #5434cd; font-weight: 800; cursor: pointer; }
.source-report-outline > p,.source-report-detail-pending { color: #7b8597; font-size: .82rem; line-height: 1.65; }
.source-report-outline section { padding: 14px 0; border-top: 1px solid #edf0f5; }
.source-report-outline h4 { margin: 0 0 8px; color: #25334d; font-size: .96rem; }
.source-report-outline .evidence-list { margin: 0; color: #526078; }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
