:root {
    --bg: #060708;
    --bg-deep: #0B0C0F;
    --panel: #111216;
    --panel-2: #18191E;
    --hover: #202126;
    --text: #E9E9EB;
    --muted: #A5A5AC;
    --soft: #777880;
    --white: #FFFFFF;
    --red: #FF1D31;
    --red-hi: #FF3749;
    --red-deep: #B60819;
    --red-dark: #68040E;
    --border: rgba(255,255,255,0.08);
    --border-red: rgba(255,29,49,0.42);
    --shadow: 0 18px 44px rgba(0,0,0,0.42);
    --red-shadow: 0 14px 38px rgba(255,29,49,0.18);
    --max: 1320px;
    --radius: 8px;
    --sticky-h: 116px;
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 84% -10%, rgba(255,29,49,0.09), transparent 28rem),
        linear-gradient(180deg, var(--bg) 0%, #08090b 48%, var(--bg) 100%);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    line-height: 1.68;
    text-rendering: optimizeLegibility;
}

body.panel-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--red-hi);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

.site-width {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--red);
    color: var(--white);
    border-radius: 4px;
    transition: top .18s ease;
}

.skip-link:focus {
    top: 12px;
}

.status-bar {
    border-bottom: 1px solid rgba(255,29,49,0.35);
    background: #050506;
}

.status-inner {
    min-height: 34px;
    display: grid;
    grid-template-columns: minmax(230px, 1fr) auto 1fr;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: var(--muted);
}

.status-slogan {
    margin: 0;
    letter-spacing: .04em;
}

.status-short {
    display: none;
}

.status-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mobile-verify-link {
    display: none;
}

.status-links a,
.text-button {
    transition: color .18s ease;
}

.status-links a:hover,
.text-button:hover {
    color: var(--white);
}

.status-center {
    justify-content: center;
}

.status-right {
    justify-content: flex-end;
}

.text-button,
.nav-action,
.more-button,
.panel-close,
.mobile-nav button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.sticky-shell {
    position: sticky;
    top: 0;
    z-index: 80;
    box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

.brand-nav {
    border-bottom: 1px solid var(--border);
    background: rgba(6,7,8,.97);
    backdrop-filter: blur(18px);
}

.brand-inner {
    position: relative;
    min-height: 72px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.nav-action {
    justify-self: start;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--panel);
    font-weight: 700;
}

.nav-action:hover {
    border-color: var(--border-red);
    background: var(--hover);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
    width: 18px;
    height: 2px;
    display: block;
    background: var(--red);
    content: "";
}

.menu-lines {
    position: relative;
}

.menu-lines::before {
    position: absolute;
    top: -6px;
}

.menu-lines::after {
    position: absolute;
    top: 6px;
}

.brand-mark {
    min-width: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    line-height: 1;
}

.brand-mark img {
    max-height: 54px;
    width: auto;
}

.brand-mark strong {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 950;
    letter-spacing: -.06em;
    text-shadow: 0 0 26px rgba(255,29,49,.22);
}

.brand-mark strong::first-letter {
    color: var(--red);
}

.brand-mark small {
    margin-top: 7px;
    color: var(--red-hi);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .28em;
}

.brand-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-actions a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--panel);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.brand-actions a:last-child {
    border-color: var(--border-red);
    background: linear-gradient(135deg, #FF3749 0%, #FF1D31 52%, #9D0615 100%);
    color: #fff;
    box-shadow: var(--red-shadow);
}

.category-nav {
    border-bottom: 1px solid var(--border);
    background: rgba(11,12,15,.98);
}

.category-inner {
    min-height: 44px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 8px;
}

.category-scroll {
    min-width: 0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.category-scroll a,
.more-button {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
    white-space: nowrap;
}

.category-scroll a:hover,
.more-button:hover,
.category-scroll a.is-active,
.more-menu a.is-active {
    color: var(--white);
}

.category-scroll a.is-active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 3px;
    background: var(--red);
}

.more-wrap {
    position: relative;
    flex: 0 0 auto;
    border-left: 1px solid var(--border);
}

.more-button {
    padding-inline: 18px;
}

.more-button::after {
    content: "＋";
    margin-left: 7px;
    color: var(--red);
}

.more-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 210px;
    padding: 8px;
    border: 1px solid var(--border-red);
    border-radius: 8px;
    background: var(--panel-2);
    box-shadow: var(--shadow);
}

.more-menu a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 5px;
    color: var(--muted);
}

.more-menu a:hover {
    background: var(--hover);
    color: var(--white);
}

.site-main {
    min-height: 60vh;
}

.hero-shell,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero-shell::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0 68%, rgba(255,29,49,.08) 68% 69%, transparent 69%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 76px);
    mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
}

.section-kicker,
.eyebrow,
.card-tag,
.status-pill,
.fact-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--red-hi);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
    width: 18px;
    height: 2px;
    background: var(--red);
    content: "";
}

.home-hero {
    padding: 44px 0 26px;
}

.editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(260px, .8fr) minmax(250px, .75fr);
    gap: 14px;
}

.feature-card,
.secondary-card,
.news-rail,
.verify-rail,
.content-card,
.rank-item,
.topic-card,
.info-panel,
.faq-panel,
.policy-card,
.service-card,
.timeline-item,
.dossier-card,
.verify-card {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(24,25,30,.96), rgba(17,18,22,.96));
    box-shadow: 0 14px 34px rgba(0,0,0,.24);
}

.feature-card {
    position: relative;
    min-height: 530px;
    overflow: hidden;
    border-color: var(--border-red);
    border-radius: 10px;
}

.feature-card .media-fallback,
.feature-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.feature-card > img {
    object-fit: cover;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(6,7,8,.06), rgba(6,7,8,.35) 34%, rgba(6,7,8,.96) 100%);
}

.feature-copy {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(24px, 4vw, 46px);
}

.feature-copy h1 {
    max-width: 820px;
    margin: 13px 0 16px;
    color: var(--white);
    font-size: clamp(36px, 5.2vw, 72px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.feature-copy p {
    max-width: 760px;
    margin: 0 0 18px;
    color: #d5d5d8;
    font-size: 16px;
}

.meta-row,
.card-footer,
.source-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.status-pill {
    padding: 6px 9px;
    border: 1px solid var(--border-red);
    border-radius: 999px;
    background: rgba(255,29,49,.08);
    letter-spacing: .03em;
}

.read-link,
.text-link {
    position: relative;
    z-index: 1;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 850;
    white-space: nowrap;
}

.read-link::after,
.text-link::after {
    content: "→";
    color: var(--red);
    transition: transform .18s ease;
}

.read-link:hover::after,
.text-link:hover::after {
    transform: translateX(4px);
}

.secondary-stack {
    display: grid;
    gap: 14px;
}

.secondary-card {
    min-height: 258px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
}

.secondary-card .media-fallback,
.secondary-card > img {
    width: 100%;
    height: 118px;
}

.secondary-card > img {
    object-fit: cover;
}

.secondary-copy {
    flex: 1;
    padding: 18px;
}

.secondary-copy h2 {
    margin: 8px 0 10px;
    color: var(--white);
    font-size: 21px;
    line-height: 1.25;
}

.secondary-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.rail-stack {
    display: grid;
    gap: 14px;
}

.news-rail,
.verify-rail {
    padding: 20px;
    border-radius: 8px;
}

.news-rail h2,
.verify-rail h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 18px;
}

.rail-list {
    display: grid;
    gap: 0;
}

.rail-item {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
}

.rail-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.rail-number {
    color: var(--red);
    font-size: 13px;
    font-weight: 950;
}

.rail-item strong {
    display: block;
    color: var(--text);
    font-size: 14px;
    line-height: 1.45;
}

.rail-item span {
    display: block;
    margin-top: 4px;
    color: var(--soft);
    font-size: 12px;
}

.verify-rail {
    border-color: var(--border-red);
    background: linear-gradient(145deg, rgba(104,4,14,.62), rgba(17,18,22,.96));
}

.verify-rail p {
    color: #d9c9cc;
    font-size: 13px;
}

.media-fallback {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 75% 15%, rgba(255,29,49,.22), transparent 20rem),
        linear-gradient(135deg, #15171b 0 45%, #0d0e11 45% 100%);
}

.media-fallback::before {
    content: "";
    position: absolute;
    inset: -30%;
    transform: rotate(-9deg);
    background: repeating-linear-gradient(90deg, transparent 0 42px, rgba(255,255,255,.035) 42px 43px);
}

.media-fallback::after {
    content: "HEILIAO NEWS";
    position: absolute;
    right: 18px;
    bottom: 12px;
    color: rgba(255,255,255,.08);
    font-size: clamp(22px, 5vw, 64px);
    font-weight: 950;
    letter-spacing: -.06em;
}

.media-fallback span {
    position: relative;
    z-index: 1;
    padding: 9px 12px;
    border: 1px solid var(--border-red);
    background: rgba(6,7,8,.68);
    color: var(--white);
    font-weight: 850;
}

.home-section,
.page-section {
    padding: 54px 0;
}

.home-section + .home-section,
.page-section + .page-section {
    border-top: 1px solid var(--border);
}

.section-head {
    margin-bottom: 24px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.section-head h2 {
    margin: 8px 0 0;
    color: var(--white);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.06;
    letter-spacing: -.045em;
}

.section-head p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
}

.live-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--panel);
}

.live-item {
    min-height: 168px;
    padding: 18px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.live-item:nth-child(4n) {
    border-right: 0;
}

.live-item:nth-last-child(-n+4) {
    border-bottom: 0;
}

.live-time {
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
}

.live-item h3 {
    margin: 8px 0;
    font-size: 17px;
    line-height: 1.38;
}

.live-item p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 13px;
}

.rank-list {
    counter-reset: rank;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.rank-item {
    counter-increment: rank;
    position: relative;
    min-height: 180px;
    padding: 22px 22px 20px 82px;
    border-radius: 8px;
}

.rank-item::before {
    content: counter(rank, decimal-leading-zero);
    position: absolute;
    left: 22px;
    top: 20px;
    color: var(--red);
    font-size: 32px;
    font-weight: 950;
    letter-spacing: -.07em;
}

.rank-item h3,
.content-card h3,
.topic-card h3,
.policy-card h3,
.service-card h3,
.verify-card h3,
.dossier-card h3 {
    margin: 8px 0 9px;
    color: var(--white);
    font-size: 20px;
    line-height: 1.28;
}

.rank-item p,
.content-card p,
.topic-card p,
.policy-card p,
.service-card p,
.verify-card p,
.dossier-card p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.content-card {
    overflow: hidden;
    border-radius: 8px;
}

.content-card .media-fallback,
.content-card > img {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.content-card > img {
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-source {
    color: var(--soft);
    font-size: 12px;
}

.poster-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-color: var(--red-dark) var(--panel);
}

.poster-card {
    min-width: 190px;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--panel);
}

.poster-card .media-fallback,
.poster-card > img {
    aspect-ratio: 3 / 4;
    width: 100%;
}

.poster-card > img {
    object-fit: cover;
}

.poster-copy {
    padding: 16px;
}

.poster-copy h3 {
    margin: 7px 0 8px;
    font-size: 17px;
    line-height: 1.3;
}

.poster-copy p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 13px;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr;
    grid-auto-rows: minmax(190px, auto);
    gap: 12px;
}

.mosaic-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(24,25,30,.98), rgba(12,13,16,.98));
}

.mosaic-card:first-child {
    grid-row: span 2;
}

.mosaic-card:nth-child(4) {
    grid-column: span 2;
}

.mosaic-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 160px;
    height: 160px;
    border: 28px solid rgba(255,29,49,.07);
    transform: rotate(18deg);
    pointer-events: none;
}

.mosaic-card h3 {
    position: relative;
    z-index: 1;
    margin: 12px 0;
    color: var(--white);
    font-size: clamp(20px, 2.5vw, 32px);
    line-height: 1.15;
}

.mosaic-card p,
.mosaic-card a {
    position: relative;
    z-index: 1;
}

.mosaic-card p {
    color: var(--muted);
}

.focus-layout,
.about-layout,
.app-layout,
.contribute-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr);
    gap: 18px;
    align-items: stretch;
}

.depth-card,
.image-card {
    min-height: 100%;
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--panel);
}

.depth-card h3 {
    margin: 10px 0 16px;
    color: var(--white);
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.12;
}

.depth-card p {
    color: #cacacf;
}

.observation-list {
    display: grid;
    gap: 10px;
}

.observation-item {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--panel-2);
}

.observation-item h4 {
    margin: 0 0 7px;
    color: var(--white);
    font-size: 17px;
}

.observation-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.dossier-grid,
.verify-grid,
.policy-grid,
.service-grid,
.topic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.dossier-card,
.verify-card,
.policy-card,
.service-card,
.topic-card {
    padding: 22px;
    border-radius: 8px;
}

.dossier-no {
    color: var(--red);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .1em;
}

.fact-row {
    margin-top: 14px;
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.fact-label {
    padding: 5px 7px;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--muted);
    letter-spacing: 0;
    background: #0b0c0f;
}

.verify-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.status-supported { background: var(--red); color: #fff; }
.status-partial { background: linear-gradient(90deg, var(--red-dark), #555861); color: #fff; }
.status-weak { background: #4a4c53; color: #fff; }
.status-outdated { background: var(--red-dark); color: #fff; }
.status-misleading { background: #f2f2f3; color: var(--red-deep); }
.status-checking { border: 1px solid var(--red); color: var(--red-hi); background: transparent; }

.opinion-banner {
    padding: 18px 20px;
    border-left: 4px solid var(--red);
    background: rgba(255,29,49,.07);
    color: #d9d9dc;
}

.timeline-list {
    position: relative;
    display: grid;
    gap: 14px;
    padding-left: 38px;
}

.timeline-list::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(var(--red), var(--red-dark));
}

.timeline-item {
    position: relative;
    padding: 22px;
    border-radius: 8px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -33px;
    top: 28px;
    width: 12px;
    height: 12px;
    border: 3px solid var(--bg);
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 3px rgba(255,29,49,.24);
}

.timeline-item h3 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 20px;
}

.timeline-item p {
    margin: 0 0 10px;
    color: var(--muted);
}

.cta-band {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid var(--border-red);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(104,4,14,.9), rgba(20,8,11,.98) 48%, rgba(11,12,15,.98));
    box-shadow: var(--red-shadow);
}

.cta-band::after {
    content: "";
    position: absolute;
    right: -50px;
    top: -80px;
    width: 280px;
    height: 280px;
    border: 44px solid rgba(255,255,255,.035);
    transform: rotate(28deg);
    pointer-events: none;
}

.cta-band h2 {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 10px 0 18px;
    color: var(--white);
    font-size: clamp(28px, 4.5vw, 52px);
    line-height: 1.08;
}

.cta-band p {
    position: relative;
    z-index: 1;
    max-width: 900px;
    color: #d6c5c8;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-link,
.secondary-link {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 6px;
    font-weight: 900;
    white-space: nowrap;
}

.primary-link {
    background: linear-gradient(135deg, #FF3749 0%, #FF1D31 52%, #9D0615 100%);
    color: #fff;
    box-shadow: var(--red-shadow);
}

.secondary-link {
    border: 1px solid var(--border);
    background: rgba(17,18,22,.72);
    color: var(--white);
}

.about-layout .image-card,
.app-layout .image-card,
.contribute-layout .image-card {
    padding: 0;
    overflow: hidden;
}

.image-card .media-fallback,
.image-card > img {
    width: 100%;
    height: 100%;
    min-height: 380px;
}

.image-card > img {
    object-fit: cover;
}

.page-hero {
    padding: 58px 0 44px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(11,12,15,.98), rgba(6,7,8,.92));
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .52fr);
    gap: 40px;
    align-items: end;
}

.page-hero h1 {
    max-width: 900px;
    margin: 12px 0 18px;
    color: var(--white);
    font-size: clamp(42px, 7vw, 88px);
    line-height: .98;
    letter-spacing: -.065em;
}

.page-hero p {
    max-width: 820px;
    margin: 0;
    color: #cacacf;
    font-size: 16px;
}

.hero-index {
    justify-self: end;
    color: rgba(255,255,255,.08);
    font-size: clamp(80px, 14vw, 180px);
    font-weight: 950;
    line-height: .7;
    letter-spacing: -.1em;
}

.page-shell {
    width: min(calc(100% - 40px), 1120px);
    margin-inline: auto;
}

.page-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
}

.lead-copy,
.info-panel,
.faq-panel {
    padding: 26px;
    border-radius: 8px;
}

.lead-copy {
    border: 1px solid var(--border-red);
    background: linear-gradient(145deg, rgba(104,4,14,.42), var(--panel));
}

.lead-copy h2,
.info-panel h2,
.faq-panel h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 24px;
}

.lead-copy p,
.info-panel p,
.faq-panel p {
    margin: 0;
    color: var(--muted);
}

.info-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-list li {
    position: relative;
    padding: 10px 0 10px 18px;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

.info-list li:first-child {
    border-top: 0;
}

.info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 7px;
    height: 7px;
    background: var(--red);
}

.article-stack {
    display: grid;
    gap: 14px;
}

.article-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--panel);
}

.article-number {
    color: var(--red);
    font-size: 34px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.06em;
}

.article-card h2 {
    margin: 0 0 9px;
    color: var(--white);
    font-size: clamp(22px, 3vw, 31px);
    line-height: 1.2;
}

.article-card p {
    margin: 0 0 12px;
    color: var(--muted);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.article-meta span {
    padding: 4px 7px;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--soft);
    font-size: 12px;
}

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

.notice-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--panel-2);
}

.notice-card h2 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: 21px;
}

.notice-card p {
    margin: 0;
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--panel);
}

.faq-list summary {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    cursor: pointer;
    color: var(--white);
    font-weight: 850;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "＋";
    flex: 0 0 auto;
    color: var(--red);
    font-size: 22px;
}

.faq-list details[open] summary::after {
    content: "－";
}

.faq-answer {
    padding: 0 18px 18px;
    color: var(--muted);
}

.related-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.related-links a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--panel);
    color: var(--text);
}

.related-links a:hover {
    border-color: var(--border-red);
    background: var(--hover);
}

.page-end-note {
    padding: 24px;
    border-left: 4px solid var(--red);
    background: rgba(255,29,49,.06);
    color: #cacacf;
}

.site-footer {
    padding: 56px 0 calc(28px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,29,49,.28);
    background: #040405;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 28px;
}

.footer-brand p {
    max-width: 360px;
    color: var(--muted);
    font-size: 13px;
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.footer-logo img {
    max-width: 180px;
}

.footer-logo strong {
    color: var(--white);
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -.06em;
}

.footer-logo small {
    color: var(--red);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .24em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.footer-links h2 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 14px;
}

.footer-links a {
    color: var(--muted);
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-note {
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: var(--soft);
    font-size: 12px;
}

.footer-note p {
    margin: 0;
}

.footer-note p:first-child {
    max-width: 900px;
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(0,0,0,.72);
    transition: opacity .22s ease, visibility .22s ease;
}

.overlay.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.channel-panel,
.search-panel {
    position: fixed;
    z-index: 220;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: transform .24s ease, opacity .24s ease, visibility .24s ease;
}

.channel-panel {
    left: 0;
    top: 0;
    bottom: 0;
    width: min(500px, 90vw);
    overflow-y: auto;
    transform: translateX(-102%);
    border-right: 1px solid var(--border-red);
    background: var(--bg-deep);
    box-shadow: var(--shadow);
}

.channel-panel.is-open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0);
}

.panel-head {
    position: sticky;
    top: 0;
    z-index: 2;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(11,12,15,.97);
    backdrop-filter: blur(16px);
}

.panel-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.panel-brand img {
    max-width: 180px;
    max-height: 52px;
    object-fit: contain;
}

.panel-brand strong {
    color: var(--white);
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -.06em;
}

.panel-brand small {
    margin-top: 6px;
    color: var(--red);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .22em;
}

.panel-close {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--panel);
    color: var(--white);
    font-size: 26px;
}

.panel-close:hover {
    border-color: var(--border-red);
}

.channel-content {
    padding: 22px;
}

.channel-group + .channel-group {
    margin-top: 30px;
}

.channel-group h2 {
    margin: 0 0 12px;
    color: var(--red-hi);
    font-size: 13px;
    letter-spacing: .12em;
}

.channel-links {
    display: grid;
    gap: 8px;
}

.channel-links a {
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--panel);
}

.channel-links a:hover {
    border-color: var(--border-red);
    background: var(--hover);
}

.channel-links strong {
    color: var(--white);
}

.channel-links span {
    color: var(--muted);
    font-size: 12px;
}

.search-panel {
    inset: 0;
    overflow-y: auto;
    transform: translateY(-20px);
    background: rgba(6,7,8,.98);
}

.search-panel.is-open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.search-shell {
    width: min(calc(100% - 40px), 1000px);
    margin: 0 auto;
    padding: 48px 0 80px;
}

.search-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.search-head h2 {
    margin: 8px 0 0;
    color: var(--white);
    font-size: clamp(30px, 5vw, 58px);
    line-height: 1.05;
}

.search-label {
    display: block;
    margin-top: 42px;
    color: var(--muted);
    font-size: 13px;
}

.search-input {
    width: 100%;
    min-height: 66px;
    margin-top: 8px;
    padding: 0 20px;
    border: 1px solid var(--border-red);
    border-radius: 6px;
    background: var(--panel);
    color: var(--white);
    font-size: 18px;
}

.search-hint,
.no-results {
    color: var(--soft);
    font-size: 13px;
}

.search-groups {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.search-groups section {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--panel);
}

.search-groups h3 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 16px;
}

.search-groups a {
    min-height: 42px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}

.search-groups a:hover {
    color: var(--white);
}

.mobile-nav {
    display: none;
}

@media (max-width: 1120px) {
    .editorial-grid {
        grid-template-columns: minmax(0, 1.6fr) minmax(280px, .8fr);
    }

    .rail-stack {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
    }

    .poster-row {
        grid-template-columns: repeat(3, minmax(210px, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.5fr repeat(2, 1fr);
    }

    .footer-brand {
        grid-row: span 2;
    }

    .search-groups {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 880px) {
    :root {
        --sticky-h: 104px;
    }

    .status-inner {
        grid-template-columns: 1fr auto;
    }

    .status-center,
    .status-right a {
        display: none;
    }

    .status-right .mobile-verify-link {
        min-height: 34px;
        display: inline-flex;
        align-items: center;
        color: var(--red-hi);
        font-weight: 800;
    }

    .status-right {
        gap: 10px;
    }

    .status-long {
        display: none;
    }

    .status-short {
        display: inline;
    }

    .status-right .text-button {
        min-height: 34px;
        padding: 0 8px;
    }

    .brand-inner {
        min-height: 66px;
        gap: 8px;
    }

    .nav-action {
        padding-inline: 10px;
    }

    .brand-mark {
        min-width: 150px;
    }

    .brand-mark strong {
        font-size: 29px;
    }

    .brand-mark small {
        letter-spacing: .18em;
        font-size: 8px;
    }

    .desktop-action {
        display: none !important;
    }

    .brand-actions a {
        padding-inline: 11px;
        font-size: 12px;
    }

    .category-inner {
        width: 100%;
        padding-left: 14px;
    }

    .category-scroll {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .category-scroll::-webkit-scrollbar {
        display: none;
    }

    .category-scroll a {
        padding-inline: 13px;
    }

    .more-wrap {
        margin-left: auto;
        background: var(--bg-deep);
    }

    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 500px;
    }

    .secondary-stack {
        grid-template-columns: 1fr 1fr;
    }

    .rail-stack {
        grid-template-columns: 1fr;
    }

    .live-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .live-item:nth-child(4n) {
        border-right: 1px solid var(--border);
    }

    .live-item:nth-child(2n) {
        border-right: 0;
    }

    .live-item:nth-last-child(-n+4) {
        border-bottom: 1px solid var(--border);
    }

    .live-item:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .rank-list,
    .content-grid,
    .dossier-grid,
    .verify-grid,
    .policy-grid,
    .service-grid,
    .topic-grid,
    .notice-grid {
        grid-template-columns: 1fr;
    }

    .mosaic-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mosaic-card:first-child,
    .mosaic-card:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .focus-layout,
    .about-layout,
    .app-layout,
    .contribute-layout,
    .page-hero-inner,
    .page-intro-grid {
        grid-template-columns: 1fr;
    }

    .hero-index {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .footer-note {
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .site-width,
    .page-shell,
    .search-shell {
        width: calc(100% - 28px);
    }

    body {
        padding-bottom: calc(66px + env(safe-area-inset-bottom));
    }

    .status-inner {
        min-height: 32px;
        gap: 8px;
        font-size: 11px;
    }

    .brand-inner {
        min-height: 64px;
        grid-template-columns: auto 1fr auto;
    }

    .nav-action {
        width: 48px;
        padding: 0;
        justify-content: center;
    }

    .nav-action span:last-child {
        display: none;
    }

    .brand-mark {
        min-width: 0;
    }

    .brand-mark strong {
        font-size: 25px;
    }

    .brand-mark small {
        margin-top: 5px;
        font-size: 7px;
        letter-spacing: .13em;
    }

    .brand-actions a {
        min-height: 44px;
        padding-inline: 9px;
        font-size: 11px;
    }

    .category-scroll a,
    .more-button {
        min-height: 42px;
        padding-inline: 12px;
        font-size: 13px;
    }

    .home-hero {
        padding-top: 20px;
    }

    .feature-card {
        min-height: 470px;
    }

    .feature-copy {
        padding: 22px;
    }

    .feature-copy h1 {
        font-size: clamp(35px, 12vw, 54px);
    }

    .feature-copy p {
        font-size: 14px;
    }

    .secondary-stack {
        grid-template-columns: 1fr;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .home-section,
    .page-section {
        padding: 40px 0;
    }

    .live-strip,
    .mosaic-grid {
        grid-template-columns: 1fr;
    }

    .live-item,
    .live-item:nth-child(4n),
    .live-item:nth-child(2n),
    .live-item:nth-last-child(-n+4),
    .live-item:nth-last-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .live-item:last-child {
        border-bottom: 0;
    }

    .rank-item {
        padding-left: 70px;
    }

    .rank-item::before {
        left: 18px;
    }

    .poster-row {
        grid-template-columns: repeat(6, minmax(230px, 75vw));
    }

    .cta-band {
        padding: 26px 20px;
    }

    .image-card .media-fallback,
    .image-card > img {
        min-height: 270px;
    }

    .page-hero {
        padding: 42px 0 32px;
    }

    .page-hero h1 {
        font-size: clamp(42px, 16vw, 66px);
    }

    .lead-copy,
    .info-panel,
    .faq-panel,
    .article-card,
    .notice-card {
        padding: 20px;
    }

    .article-card {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .article-number {
        font-size: 25px;
    }

    .search-shell {
        padding-top: 28px;
    }

    .search-groups {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .mobile-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 150;
        min-height: calc(58px + env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        padding-bottom: env(safe-area-inset-bottom);
        border-top: 1px solid var(--border-red);
        background: rgba(5,5,6,.97);
        backdrop-filter: blur(16px);
    }

    .mobile-nav a,
    .mobile-nav button {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        font-size: 12px;
        font-weight: 800;
    }

    .mobile-nav a.is-active {
        color: var(--red-hi);
    }

    .mobile-nav a.is-active::before {
        content: "";
        position: absolute;
        top: 0;
        width: 34px;
        height: 2px;
        background: var(--red);
    }
}

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

.page-media-section {
    padding-top: 28px;
    padding-bottom: 0;
    border-top: 0 !important;
}

.page-media-card {
    overflow: hidden;
    min-height: 280px;
    border: 1px solid var(--border-red);
    border-radius: 8px;
    background: var(--panel);
}

.page-media-card .media-fallback,
.page-media-card > img {
    width: 100%;
    min-height: 280px;
    max-height: 520px;
}

.page-media-card > img {
    object-fit: contain;
}
