@charset "UTF-8";

:root {
    --bg: #070809;
    --bg-soft: #0d0e11;
    --surface: #121317;
    --surface-soft: #18191e;
    --surface-hover: #202127;
    --text: #e8e8ea;
    --heading: #ffffff;
    --muted: #a6a6ad;
    --subtle: #777880;
    --red: #ff1f32;
    --red-bright: #ff3445;
    --red-deep: #b20718;
    --red-dark: #68030d;
    --line: rgba(255, 255, 255, 0.08);
    --red-line: rgba(255, 31, 50, 0.38);
    --shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
    --red-shadow: 0 14px 36px rgba(255, 31, 50, 0.18);
    --shell: 1280px;
    --header-height: 164px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 84% 6%, rgba(255, 31, 50, 0.09), transparent 26rem),
        radial-gradient(circle at 7% 28%, rgba(104, 3, 13, 0.13), transparent 23rem),
        var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.panel-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

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

button {
    color: inherit;
}

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

a,
button,
input,
summary {
    outline: none;
}

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

button {
    border: 0;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--heading);
    line-height: 1.23;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.15rem, 5vw, 4.7rem);
}

h2 {
    font-size: clamp(1.55rem, 3vw, 2.55rem);
}

h3 {
    font-size: clamp(1.08rem, 2vw, 1.4rem);
}

p:last-child {
    margin-bottom: 0;
}

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

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    transform: translateY(-150%);
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 8, 9, 0.96);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(16px);
}

.brand-row {
    min-height: 75px;
    display: grid;
    grid-template-columns: minmax(190px, 0.85fr) minmax(220px, 1fr) minmax(310px, 0.85fr);
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    line-height: 1;
}

.brand-logo-img {
    max-width: min(210px, 100%);
    max-height: 54px;
    object-fit: contain;
    object-position: left center;
}

.brand-zh {
    position: relative;
    width: max-content;
    padding-right: 12px;
    font-size: 1.88rem;
    font-weight: 950;
    letter-spacing: -0.08em;
}

.brand-zh::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 1px;
    width: 7px;
    height: 7px;
    background: var(--red);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    pointer-events: none;
}

.brand-en {
    margin-top: 6px;
    color: var(--red-bright);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.brand-slogan {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
}

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

.header-action {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 800;
    transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.header-action:hover {
    border-color: var(--red-line);
    background: var(--surface-hover);
    transform: translateY(-1px);
}

.hour-action {
    border-color: var(--red-line);
    background: linear-gradient(135deg, var(--red-bright) 0%, var(--red) 52%, #9f0615 100%);
    color: #fff;
    box-shadow: var(--red-shadow);
}

.hour-action:hover,
.hour-action.is-current {
    background: linear-gradient(135deg, #ff5260, var(--red) 52%, var(--red-dark));
}

.search-mark {
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
    pointer-events: none;
}

.search-mark::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 6px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
    pointer-events: none;
}

.channel-mark,
.channel-mark::before,
.channel-mark::after {
    width: 16px;
    height: 2px;
    background: currentColor;
    pointer-events: none;
}

.channel-mark {
    position: relative;
}

.channel-mark::before,
.channel-mark::after {
    content: "";
    position: absolute;
    left: 0;
}

.channel-mark::before {
    top: -5px;
}

.channel-mark::after {
    top: 5px;
}

.primary-nav {
    border-block: 1px solid var(--line);
    background: #090a0c;
}

.primary-nav-inner {
    min-height: 49px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    white-space: nowrap;
}

.primary-link {
    position: relative;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: clamp(16px, 2.5vw, 29px);
    color: #d7d7da;
    font-size: 0.94rem;
    font-weight: 800;
}

.primary-link::after {
    content: "";
    position: absolute;
    right: 20%;
    bottom: -1px;
    left: 20%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
    pointer-events: none;
}

.primary-link:hover,
.primary-link.is-current {
    color: #fff;
}

.primary-link:hover::after,
.primary-link.is-current::after {
    transform: scaleX(1);
}

.quick-nav {
    min-height: 39px;
    background: var(--surface);
}

.quick-nav-inner {
    min-height: 39px;
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
}

.quick-nav-inner::-webkit-scrollbar {
    display: none;
}

.quick-label {
    flex: 0 0 auto;
    margin-right: 8px;
    padding-right: 13px;
    border-right: 1px solid var(--red-line);
    color: var(--red-bright);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.quick-link {
    flex: 0 0 auto;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.quick-link:hover,
.quick-link.is-current {
    color: #fff;
    background: rgba(255, 31, 50, 0.1);
}

.mobile-brandbar {
    display: none;
}

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

.section {
    padding-block: clamp(58px, 7vw, 92px);
    border-bottom: 1px solid var(--line);
}

.section-tight {
    padding-block: clamp(42px, 5vw, 68px);
}

.section-dark {
    background: var(--bg-soft);
}

.section-red {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(104, 3, 13, 0.94), rgba(20, 7, 10, 0.98)),
        var(--red-dark);
}

.section-red::before,
.section-red::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.section-red::before {
    top: -100px;
    right: -60px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: rotate(25deg);
}

.section-red::after {
    right: 18%;
    bottom: -130px;
    width: 260px;
    height: 260px;
    border: 50px solid rgba(255, 31, 50, 0.09);
    border-radius: 50%;
}

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

.section-title-wrap {
    max-width: 790px;
}

.eyebrow,
.kicker,
.card-label,
.article-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red-bright);
    font-size: 0.7rem;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
    content: "";
    width: 24px;
    height: 2px;
    background: currentColor;
    pointer-events: none;
}

.section-heading h2 {
    margin: 9px 0 8px;
}

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

.text-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    color: #fff;
    font-weight: 850;
}

.text-link::after {
    content: "→";
    color: var(--red-bright);
    transition: transform 160ms ease;
}

.text-link:hover::after {
    transform: translateX(5px);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid var(--red-line);
    border-radius: 7px;
    background: linear-gradient(135deg, var(--red-bright) 0%, var(--red) 52%, #9f0615 100%);
    color: #fff;
    box-shadow: var(--red-shadow);
    font-size: 0.9rem;
    font-weight: 900;
    white-space: nowrap;
    transition: transform 160ms ease, filter 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.button-secondary {
    background: var(--surface-soft);
    border-color: var(--line);
    box-shadow: none;
}

.button-secondary:hover {
    border-color: var(--red-line);
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 2px 8px;
    border: 1px solid var(--red-line);
    border-radius: 4px;
    background: rgba(255, 31, 50, 0.11);
    color: var(--red-bright);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.status {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 2px 9px;
    border-radius: 4px;
    font-size: 0.69rem;
    font-weight: 900;
}

.status-confirmed {
    background: var(--red);
    color: #fff;
}

.status-partial {
    background: linear-gradient(90deg, var(--red-deep) 0 50%, #404047 50%);
    color: #fff;
}

.status-lacking {
    background: #35363c;
    color: #e2e2e4;
}

.status-outdated {
    background: var(--red-dark);
    color: #fff;
}

.status-misread {
    background: #fff;
    color: var(--red-deep);
}

.card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
}

.card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 31, 50, 0.16) 50%);
    pointer-events: none;
}

.card-body {
    padding: 23px;
}

.card h3 {
    margin: 12px 0 10px;
}

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

.card-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 2px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 850;
}

.card-link::after {
    content: " ↗";
    margin-left: 8px;
    color: var(--red-bright);
}

.media-frame {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255, 31, 50, 0.18), rgba(18, 19, 23, 0.1) 48%),
        radial-gradient(circle at 76% 28%, rgba(255, 52, 69, 0.18), transparent 32%),
        var(--surface-soft);
}

.media-frame::before,
.media-frame::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.media-frame::before {
    top: 18%;
    right: -8%;
    width: 45%;
    height: 64%;
    border: 1px solid var(--red-line);
    transform: skewX(-18deg);
}

.media-frame::after {
    bottom: 20%;
    left: 8%;
    width: 38%;
    height: 2px;
    background: var(--red);
    box-shadow: 0 10px 0 rgba(255, 31, 50, 0.35), 0 20px 0 rgba(255, 31, 50, 0.14);
}

.media-frame img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.media-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: end;
    padding: 28px;
    background: linear-gradient(to top, rgba(7, 8, 9, 0.83), transparent 68%);
}

.media-fallback span {
    color: var(--red-bright);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.media-fallback strong {
    display: block;
    max-width: 12ch;
    margin-top: 5px;
    color: #fff;
    font-size: clamp(1.55rem, 4vw, 3.4rem);
    line-height: 1.04;
}

.home-hero {
    padding-block: clamp(26px, 4vw, 48px) clamp(58px, 7vw, 84px);
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(300px, 1fr);
    gap: 20px;
}

.hero-main {
    min-height: 580px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border: 1px solid var(--line);
    border-radius: 4px 18px 4px 4px;
    background:
        linear-gradient(to top, rgba(7, 8, 9, 0.98) 4%, rgba(7, 8, 9, 0.55) 50%, rgba(7, 8, 9, 0.14) 100%),
        radial-gradient(circle at 82% 26%, rgba(255, 31, 50, 0.36), transparent 26%),
        linear-gradient(125deg, #17181d, #090a0c 72%);
    box-shadow: var(--shadow);
}

.hero-main::before {
    content: "HEILIAO NEWS";
    position: absolute;
    top: 32px;
    right: -65px;
    color: rgba(255, 255, 255, 0.035);
    font-size: clamp(3rem, 7vw, 7.5rem);
    font-weight: 950;
    line-height: 1;
    transform: rotate(90deg);
    transform-origin: center;
    pointer-events: none;
}

.hero-main::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 54%;
    height: 8px;
    background: linear-gradient(90deg, transparent, var(--red));
    pointer-events: none;
}

.hero-main > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-main > img + .hero-overlay {
    background: linear-gradient(to top, rgba(7, 8, 9, 0.98) 8%, rgba(7, 8, 9, 0.32) 75%, transparent);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(28px, 5vw, 52px);
}

.hero-overlay h1 {
    max-width: 10.5em;
    margin: 13px 0 16px;
}

.hero-overlay p {
    max-width: 780px;
    margin: 0;
    color: #d6d6da;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.hero-side {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 14px;
}

.hero-summary {
    padding: 25px;
    border-left: 4px solid var(--red);
    background: var(--surface);
}

.hero-summary h2 {
    margin: 8px 0 12px;
    font-size: 1.45rem;
}

.hero-summary p {
    color: var(--muted);
}

.hero-brief-list {
    display: grid;
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.hero-brief {
    display: block;
    min-height: 120px;
    padding: 19px 20px;
    background: var(--surface);
    transition: background-color 160ms ease;
}

.hero-brief:hover {
    background: var(--surface-hover);
}

.hero-brief h3 {
    margin: 6px 0;
    font-size: 1rem;
}

.hero-brief p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.58;
}

.hero-24 {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 21px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
    color: #fff;
    box-shadow: var(--red-shadow);
}

.hero-24 strong {
    display: block;
    font-size: 1.1rem;
}

.hero-24 span {
    font-size: 0.77rem;
    opacity: 0.84;
}

.hero-24 b {
    font-size: 1.8rem;
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.rank-item {
    min-height: 180px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 17px;
    padding: 24px;
    background: var(--surface);
    transition: background-color 160ms ease;
}

.rank-item:hover {
    background: var(--surface-hover);
}

.rank-number {
    color: var(--red);
    font-size: 2rem;
    font-weight: 950;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.rank-item h3 {
    margin: 7px 0 9px;
    font-size: 1.08rem;
}

.rank-item p {
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 0.88rem;
}

.rank-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    color: var(--subtle);
    font-size: 0.74rem;
}

.rank-meta a {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 800;
}

.feature-split {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(0, 1.55fr);
    gap: 24px;
}

.feature-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--surface);
}

.feature-card .media-frame {
    min-height: 360px;
    border-radius: 0;
}

.feature-card .card-body {
    padding: 28px;
}

.story-list {
    display: grid;
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.story-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    padding: 22px 24px;
    background: var(--surface);
}

.story-item:hover {
    background: var(--surface-hover);
}

.story-item h3 {
    margin: 7px 0 8px;
    font-size: 1.08rem;
}

.story-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.story-arrow {
    align-self: center;
    color: var(--red-bright);
    font-size: 1.4rem;
}

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

.six-grid .card:nth-child(1),
.six-grid .card:nth-child(5) {
    grid-row: span 2;
}

.six-grid .card:nth-child(1) .card-body,
.six-grid .card:nth-child(5) .card-body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(to top, rgba(7, 8, 9, 0.94), transparent 100%),
        radial-gradient(circle at 70% 15%, rgba(255, 31, 50, 0.22), transparent 34%),
        var(--surface-soft);
}

.mosaic-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    grid-auto-rows: minmax(180px, auto);
    gap: 16px;
}

.mosaic-card {
    min-height: 220px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.mosaic-card:nth-child(1) {
    grid-row: span 2;
    min-height: 456px;
    background:
        linear-gradient(to top, rgba(7, 8, 9, 0.96), transparent 90%),
        radial-gradient(circle at 77% 21%, rgba(255, 31, 50, 0.3), transparent 30%),
        var(--surface-soft);
}

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

.mosaic-card h3 {
    margin: 10px 0;
}

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

.report-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 22px;
}

.lead-report {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(28px, 4vw, 46px);
    border-left: 5px solid var(--red);
    background:
        linear-gradient(to top, rgba(7, 8, 9, 0.98), rgba(18, 19, 23, 0.62)),
        radial-gradient(circle at 80% 22%, rgba(255, 31, 50, 0.25), transparent 34%),
        var(--surface);
}

.lead-report h3 {
    max-width: 17em;
    margin: 11px 0 15px;
    font-size: clamp(1.6rem, 3.2vw, 2.9rem);
}

.lead-report p {
    max-width: 760px;
    color: #ceced2;
}

.related-stack {
    display: grid;
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.related-stack article {
    padding: 20px 22px;
    background: var(--surface);
}

.related-stack article:hover {
    background: var(--surface-hover);
}

.related-stack h3 {
    margin: 6px 0;
    font-size: 1rem;
}

.related-stack p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.timeline {
    position: relative;
    max-width: 960px;
    margin-inline: auto;
    padding-left: 56px;
}

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

.timeline-item {
    position: relative;
    margin-bottom: 15px;
    padding: 23px 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 29px;
    left: -46px;
    width: 15px;
    height: 15px;
    border: 3px solid var(--bg);
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(255, 31, 50, 0.16);
    pointer-events: none;
}

.timeline-item h3 {
    margin: 7px 0 10px;
}

.timeline-item p {
    color: var(--muted);
}

.timeline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--subtle);
    font-size: 0.76rem;
}

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

.check-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 21px;
    border-top: 3px solid var(--red);
}

.check-card h3 {
    margin: 15px 0 10px;
    font-size: 1.05rem;
}

.check-card p {
    color: var(--muted);
    font-size: 0.86rem;
}

.check-card .card-link {
    margin-top: auto;
}

.hour-list {
    display: grid;
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.hour-item {
    display: grid;
    grid-template-columns: 130px 115px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: 86px;
    padding: 15px 21px;
    background: var(--surface);
}

.hour-item:hover {
    background: var(--surface-hover);
}

.hour-period {
    color: var(--red-bright);
    font-size: 0.8rem;
    font-weight: 900;
}

.hour-item h3 {
    margin: 0 0 3px;
    font-size: 0.98rem;
}

.hour-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.hour-item > a {
    min-width: 44px;
    min-height: 44px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    font-size: 1.2rem;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.topic-card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: 8px 8px 24px 8px;
    background:
        linear-gradient(145deg, rgba(255, 31, 50, 0.08), transparent 46%),
        var(--surface);
}

.topic-number {
    color: rgba(255, 31, 50, 0.35);
    font-size: 2.8rem;
    font-weight: 950;
    line-height: 1;
}

.topic-card h3 {
    margin: 13px 0 9px;
}

.topic-card p {
    color: var(--muted);
    font-size: 0.86rem;
}

.topic-card .card-link {
    margin-top: auto;
}

.promo-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    align-items: center;
    gap: clamp(30px, 7vw, 90px);
}

.promo-copy h2 {
    max-width: 16em;
    margin: 11px 0 17px;
}

.promo-copy p {
    max-width: 780px;
    color: #dedee2;
}

.promo-aside {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 8, 9, 0.4);
}

.promo-aside h3 {
    margin-bottom: 15px;
}

.promo-aside ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.promo-aside li {
    position: relative;
    padding: 9px 0 9px 21px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #d8d8dc;
}

.promo-aside li:last-child {
    border-bottom: 0;
}

.promo-aside li::before {
    content: "";
    position: absolute;
    top: 1.35em;
    left: 1px;
    width: 8px;
    height: 8px;
    background: var(--red);
    transform: rotate(45deg);
    pointer-events: none;
}

.app-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(30px, 6vw, 78px);
}

.app-visual {
    min-height: 490px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--red-line);
    border-radius: 14px;
    background:
        linear-gradient(to top, rgba(7, 8, 9, 0.9), transparent 78%),
        radial-gradient(circle at 50% 35%, rgba(255, 31, 50, 0.3), transparent 37%),
        var(--surface);
    box-shadow: var(--red-shadow);
}

.app-visual::before {
    content: "";
    position: absolute;
    top: 9%;
    right: 20%;
    bottom: 9%;
    left: 20%;
    border: 8px solid #28292f;
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255, 31, 50, 0.18), transparent 45%),
        #090a0c;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.app-visual::after {
    content: "黑料网\A HEILIAO NEWS";
    white-space: pre;
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: clamp(1.25rem, 3vw, 2.2rem);
    font-weight: 950;
    line-height: 1.3;
    text-align: center;
    pointer-events: none;
}

.app-visual img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 490px;
    object-fit: contain;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 25px;
}

.service-item {
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.service-item strong {
    display: block;
    color: #fff;
}

.service-item span {
    color: var(--muted);
    font-size: 0.83rem;
}

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

.principle-card {
    min-height: 210px;
    padding: 24px;
    border-top: 3px solid var(--red);
    background: var(--surface);
}

.principle-card span {
    color: rgba(255, 31, 50, 0.35);
    font-size: 2rem;
    font-weight: 950;
}

.principle-card h3 {
    margin: 10px 0;
}

.principle-card p {
    color: var(--muted);
    font-size: 0.88rem;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
    gap: clamp(30px, 6vw, 70px);
    align-items: center;
}

.about-copy p {
    color: #c9c9ce;
}

.about-statement {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    border: 1px solid var(--line);
    background:
        linear-gradient(to top, rgba(7, 8, 9, 0.98), transparent),
        radial-gradient(circle at 70% 18%, rgba(255, 31, 50, 0.28), transparent 35%),
        var(--surface);
}

.about-statement strong {
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 3.1rem);
    line-height: 1.1;
}

.about-statement span {
    margin-top: 10px;
    color: var(--red-bright);
    font-weight: 900;
    letter-spacing: 0.1em;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(62px, 9vw, 126px) clamp(50px, 7vw, 88px);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(110deg, rgba(7, 8, 9, 1) 20%, rgba(7, 8, 9, 0.78)),
        radial-gradient(circle at 78% 24%, rgba(255, 31, 50, 0.28), transparent 28%),
        var(--bg-soft);
}

.page-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: -5%;
    width: 42%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 0 48%, rgba(255, 31, 50, 0.06) 48% 52%, transparent 52%),
        linear-gradient(45deg, transparent 0 47%, rgba(255, 255, 255, 0.025) 47% 53%, transparent 53%);
    background-size: 74px 74px, 96px 96px;
    transform: skewX(-10deg);
    pointer-events: none;
}

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

.page-hero h1 {
    max-width: 11em;
    margin: 12px 0 17px;
}

.page-hero .lead {
    max-width: 820px;
    margin: 0;
    color: #cacacf;
    font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.page-hero-note {
    padding: 22px;
    border-left: 3px solid var(--red);
    background: rgba(18, 19, 23, 0.78);
}

.page-hero-note strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
}

.page-hero-note span {
    color: var(--muted);
    font-size: 0.87rem;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
    align-items: start;
}

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

.content-article {
    position: relative;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.content-article::before {
    content: attr(data-index);
    position: absolute;
    top: 19px;
    right: 22px;
    color: rgba(255, 31, 50, 0.16);
    font-size: 2.6rem;
    font-weight: 950;
    line-height: 1;
    pointer-events: none;
}

.content-article h2 {
    max-width: 80%;
    margin: 10px 0 14px;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.content-article p {
    color: #c0c0c5;
}

.content-article ul {
    margin: 16px 0 0;
    padding-left: 1.25em;
    color: #c8c8cd;
}

.content-article li + li {
    margin-top: 8px;
}

.content-aside {
    position: sticky;
    top: calc(var(--header-height) + 18px);
    display: grid;
    gap: 15px;
}

.aside-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--surface);
}

.aside-card h2 {
    margin-bottom: 13px;
    font-size: 1.1rem;
}

.aside-card p {
    color: var(--muted);
    font-size: 0.86rem;
}

.aside-links {
    display: grid;
    gap: 7px;
}

.aside-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    border-bottom: 1px solid var(--line);
    color: #d8d8dc;
    font-size: 0.86rem;
    font-weight: 750;
}

.aside-links a::after {
    content: "→";
    color: var(--red-bright);
}

.aside-links a:hover {
    background: var(--surface-hover);
}

.notice-box {
    padding: 23px 25px;
    border: 1px solid var(--red-line);
    border-left: 4px solid var(--red);
    background: rgba(104, 3, 13, 0.13);
}

.notice-box h2,
.notice-box h3 {
    margin-bottom: 9px;
    font-size: 1.12rem;
}

.notice-box p {
    color: #c8c8cc;
}

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

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

.faq-list details[open] {
    border-color: var(--red-line);
}

.faq-list summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 19px;
    color: #fff;
    cursor: pointer;
    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-bright);
    font-size: 1.4rem;
    font-weight: 400;
}

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

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

.related-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.related-nav a {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--surface);
}

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

.related-nav strong {
    color: #fff;
}

.related-nav span {
    color: var(--red-bright);
    font-size: 0.76rem;
    font-weight: 850;
}

.page-ending {
    text-align: center;
}

.page-ending p {
    max-width: 780px;
    margin-inline: auto;
    color: var(--muted);
}

.data-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.data-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    background: var(--surface);
}

.data-table th,
.data-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.data-table th {
    background: var(--surface-soft);
    color: #fff;
    font-size: 0.82rem;
}

.data-table td {
    color: var(--muted);
    font-size: 0.87rem;
}

.data-table tr:last-child td {
    border-bottom: 0;
}

.site-footer {
    padding-top: 58px;
    background: #050506;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(250px, 1.55fr) repeat(4, minmax(130px, 0.72fr));
    gap: 35px;
    padding-bottom: 42px;
}

.footer-brand p {
    max-width: 420px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 0.85rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column h2 {
    margin-bottom: 7px;
    color: #fff;
    font-size: 0.92rem;
}

.footer-column a {
    min-height: 35px;
    display: flex;
    align-items: center;
    color: var(--muted);
    font-size: 0.82rem;
}

.footer-column a:hover {
    color: var(--red-bright);
}

.footer-notice {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-block: 22px calc(22px + var(--safe-bottom));
    border-top: 1px solid var(--line);
}

.footer-notice p {
    margin: 0;
    color: var(--subtle);
    font-size: 0.75rem;
}

.footer-notice p:first-child {
    max-width: 760px;
}

.site-overlay {
    position: fixed;
    z-index: 98;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.72);
    transition: opacity 180ms ease, visibility 180ms step-end;
}

.site-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 180ms ease;
}

.floating-panel {
    position: fixed;
    z-index: 130;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    border-bottom: 1px solid var(--red-line);
    background: rgba(13, 14, 17, 0.99);
    box-shadow: var(--shadow);
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms step-end;
}

.floating-panel.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform 180ms ease, opacity 180ms ease;
}

.panel-shell {
    padding-block: 30px 36px;
}

.panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 24px;
}

.panel-heading h2 {
    margin: 6px 0 0;
    font-size: 1.8rem;
}

.panel-close {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: #fff;
    cursor: pointer;
    font-size: 1.55rem;
    line-height: 1;
}

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

.channel-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.channel-group {
    position: relative;
    padding: 22px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.channel-index {
    position: absolute;
    top: 16px;
    right: 18px;
    color: rgba(255, 31, 50, 0.25);
    font-size: 1.45rem;
    font-weight: 950;
}

.channel-group h3 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.channel-group a {
    min-height: 66px;
    display: block;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.channel-group strong,
.channel-group span {
    display: block;
}

.channel-group strong {
    color: #fff;
    font-size: 0.87rem;
}

.channel-group span {
    margin-top: 3px;
    color: var(--subtle);
    font-size: 0.73rem;
    line-height: 1.5;
}

.channel-group a:hover strong {
    color: var(--red-bright);
}

.search-shell {
    max-width: 980px;
}

.search-field {
    display: block;
}

.search-field input {
    width: 100%;
    min-height: 62px;
    padding: 0 19px;
    border: 1px solid var(--red-line);
    border-radius: 7px;
    background: #090a0c;
    color: #fff;
}

.search-field input::placeholder {
    color: var(--subtle);
}

.search-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-block: 15px 23px;
}

.search-keywords button {
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted);
    cursor: pointer;
    font-size: 0.75rem;
}

.search-keywords button:hover {
    border-color: var(--red-line);
    color: #fff;
}

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

.search-links a {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.search-links strong {
    color: #fff;
}

.search-links span {
    color: var(--muted);
    font-size: 0.76rem;
    text-align: right;
}

.search-links a:hover {
    border-color: var(--red-line);
}

.search-empty {
    padding: 20px;
    border: 1px dashed var(--line);
    color: var(--muted);
    text-align: center;
}

.mobile-menu {
    position: fixed;
    z-index: 140;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(88vw, 390px);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    background: var(--bg-soft);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.48);
    transition: transform 190ms ease, opacity 190ms ease, visibility 190ms step-end;
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    transition: transform 190ms ease, opacity 190ms ease;
}

.mobile-menu-heading {
    position: sticky;
    z-index: 1;
    top: 0;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 17px;
    border-bottom: 1px solid var(--line);
    background: rgba(13, 14, 17, 0.98);
}

.mobile-drawer-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.mobile-drawer-brand span {
    color: #fff;
    font-size: 1.42rem;
    font-weight: 950;
}

.mobile-drawer-brand small {
    margin-top: 4px;
    color: var(--red-bright);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.mobile-menu-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 16px 16px calc(92px + var(--safe-bottom));
}

.mobile-menu-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
    color: #dddde1;
    font-size: 0.87rem;
    font-weight: 750;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a[aria-current="page"] {
    border-color: var(--red-line);
    background: rgba(255, 31, 50, 0.1);
    color: #fff;
}

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 1120px) {
    .brand-row {
        grid-template-columns: minmax(180px, 0.8fr) minmax(180px, 0.8fr) minmax(295px, 1fr);
        gap: 14px;
    }

    .primary-link {
        padding-inline: 17px;
    }

    .check-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .check-card:nth-child(4),
    .check-card:nth-child(5) {
        grid-column: span 1;
    }

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

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

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

@media (max-width: 900px) {
    .brand-row,
    .primary-nav {
        display: none;
    }

    .mobile-brandbar {
        min-height: 62px;
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr) 52px;
        align-items: center;
        padding-inline: 13px;
    }

    .icon-button {
        width: 46px;
        height: 46px;
        display: inline-grid;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: 7px;
        background: var(--surface);
        cursor: pointer;
    }

    .menu-lines,
    .menu-lines::before,
    .menu-lines::after {
        width: 19px;
        height: 2px;
        background: #fff;
        pointer-events: none;
    }

    .menu-lines {
        position: relative;
    }

    .menu-lines::before,
    .menu-lines::after {
        content: "";
        position: absolute;
        left: 0;
    }

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

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

    .mobile-logo {
        min-width: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-logo .brand-logo-img {
        max-width: 155px;
        max-height: 40px;
        object-position: center;
    }

    .mobile-logo-text {
        position: relative;
        color: #fff;
        font-size: 1.52rem;
        font-weight: 950;
        letter-spacing: -0.08em;
    }

    .mobile-logo-text::after {
        content: "";
        position: absolute;
        right: -9px;
        bottom: 3px;
        width: 6px;
        height: 6px;
        background: var(--red);
        pointer-events: none;
    }

    .mobile-24 {
        min-width: 46px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 7px;
        background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
        color: #fff;
        font-size: 0.76rem;
        font-weight: 950;
    }

    .quick-nav {
        border-top: 1px solid var(--line);
    }

    .quick-nav-inner {
        width: 100%;
        padding-inline: 14px;
    }

    .quick-label {
        display: none;
    }

    .floating-panel {
        top: var(--header-height);
    }

    .hero-grid,
    .feature-split,
    .report-grid,
    .app-grid,
    .about-grid,
    .promo-grid,
    .page-hero-inner,
    .content-layout {
        grid-template-columns: 1fr;
    }

    .hero-main {
        min-height: 530px;
    }

    .hero-side {
        grid-template-rows: auto;
    }

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

    .six-grid .card:nth-child(1),
    .six-grid .card:nth-child(5) {
        grid-row: auto;
    }

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

    .mosaic-card:nth-child(1) {
        grid-row: span 1;
        min-height: 300px;
    }

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

    .content-aside {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hour-item {
        grid-template-columns: 115px 100px minmax(0, 1fr);
    }

    .hour-item > a {
        display: none;
    }

    .related-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-hero-note {
        max-width: 620px;
    }

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

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

@media (max-width: 680px) {
    .shell {
        width: calc(100% - 28px);
    }

    body {
        padding-bottom: calc(70px + var(--safe-bottom));
        font-size: 15px;
    }

    .section {
        padding-block: 49px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
        margin-bottom: 23px;
    }

    .section-heading .text-link {
        min-height: 38px;
    }

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

    .hero-main {
        min-height: 500px;
        border-radius: 4px 13px 4px 4px;
    }

    .hero-overlay {
        padding: 25px 20px;
    }

    .hero-overlay h1 {
        font-size: clamp(2rem, 12vw, 3.3rem);
    }

    .hero-summary {
        padding: 21px;
    }

    .ranking-grid,
    .six-grid,
    .mosaic-grid,
    .check-grid,
    .topic-grid,
    .principle-grid,
    .service-grid,
    .related-nav,
    .content-aside,
    .search-links {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 48px minmax(0, 1fr);
        min-height: 0;
        padding: 20px 17px;
    }

    .rank-number {
        font-size: 1.65rem;
    }

    .feature-card .media-frame {
        min-height: 285px;
    }

    .story-item {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 19px;
    }

    .story-arrow {
        display: none;
    }

    .mosaic-card,
    .mosaic-card:nth-child(1) {
        min-height: 240px;
    }

    .lead-report {
        min-height: 430px;
        padding: 26px 21px;
    }

    .timeline {
        padding-left: 38px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        padding: 20px 18px;
    }

    .timeline-item::before {
        left: -36px;
    }

    .check-card {
        min-height: 0;
    }

    .hour-item {
        grid-template-columns: 91px minmax(0, 1fr);
        gap: 10px 14px;
        padding: 17px;
    }

    .hour-item .tag {
        grid-column: 1;
        width: max-content;
    }

    .hour-item > div {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .app-visual,
    .app-visual img {
        min-height: 410px;
    }

    .promo-aside {
        padding: 21px;
    }

    .page-hero {
        padding-block: 50px;
    }

    .page-hero h1 {
        font-size: clamp(2.15rem, 13vw, 3.7rem);
    }

    .content-article {
        padding: 23px 18px;
    }

    .content-article h2 {
        max-width: 86%;
    }

    .content-article::before {
        top: 17px;
        right: 15px;
        font-size: 2rem;
    }

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

    .panel-shell {
        padding-block: 21px 30px;
    }

    .panel-heading {
        margin-bottom: 18px;
    }

    .panel-heading h2 {
        font-size: 1.45rem;
    }

    .search-links a {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .search-links span {
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 26px 20px;
    }

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

    .footer-notice {
        flex-direction: column;
        gap: 13px;
        padding-bottom: 24px;
    }

    .mobile-bottom-nav {
        position: fixed;
        z-index: 95;
        right: 0;
        bottom: 0;
        left: 0;
        min-height: calc(64px + var(--safe-bottom));
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        padding-bottom: var(--safe-bottom);
        border-top: 1px solid var(--line);
        background: rgba(9, 10, 12, 0.97);
        box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(14px);
    }

    .mobile-bottom-nav a,
    .mobile-bottom-nav button {
        min-width: 0;
        min-height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        padding: 7px 2px;
        background: transparent;
        color: var(--subtle);
        cursor: pointer;
        font-size: 0.66rem;
        font-weight: 800;
    }

    .mobile-bottom-nav a.is-current {
        color: var(--red-bright);
    }

    .bottom-icon {
        position: relative;
        width: 18px;
        height: 18px;
        display: block;
        pointer-events: none;
    }

    .home-icon {
        border: 2px solid currentColor;
        border-top: 0;
        border-radius: 2px;
    }

    .home-icon::before {
        content: "";
        position: absolute;
        top: -5px;
        left: 2px;
        width: 10px;
        height: 10px;
        border-top: 2px solid currentColor;
        border-left: 2px solid currentColor;
        transform: rotate(45deg);
        pointer-events: none;
    }

    .hot-icon::before,
    .hot-icon::after {
        content: "";
        position: absolute;
        bottom: 0;
        width: 4px;
        background: currentColor;
        pointer-events: none;
    }

    .hot-icon::before {
        left: 2px;
        height: 10px;
        box-shadow: 6px -5px 0 currentColor, 12px -10px 0 currentColor;
    }

    .play-icon {
        border: 2px solid currentColor;
        border-radius: 50%;
    }

    .play-icon::after {
        content: "";
        position: absolute;
        top: 4px;
        left: 6px;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 6px solid currentColor;
        pointer-events: none;
    }

    .clock-icon {
        border: 2px solid currentColor;
        border-radius: 50%;
    }

    .clock-icon::after {
        content: "";
        position: absolute;
        top: 3px;
        left: 7px;
        width: 4px;
        height: 6px;
        border-left: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        pointer-events: none;
    }

    .grid-icon {
        background:
            radial-gradient(circle, currentColor 0 2px, transparent 2.5px) 0 0 / 9px 9px;
    }
}

@media (max-width: 420px) {
    .quick-link {
        padding-inline: 10px;
    }

    .hero-main {
        min-height: 455px;
    }

    .hero-brief {
        min-height: 0;
    }

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

    .footer-brand {
        grid-column: auto;
    }
}

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