:root {
    --ink-950: #0b1322;
    --ink-900: #101a2d;
    --ink-800: #18253d;
    --ink-700: #233455;
    --ink-640: #30466e;
    --steel-600: #5f739f;
    --steel-500: #7488b0;
    --steel-420: #8c9dbd;
    --sky-300: #a8d3ea;
    --sky-200: #c6e1f0;
    --ivory-100: #f6f1e8;
    --ivory-200: #e7dece;
    --gold-500: #b8965a;
    --gold-400: #c7a972;
    --gold-300: #dbc394;
    --white: #ffffff;
    --text-900: #152030;
    --text-700: #49586f;
    --text-500: #6d7b90;
    --line: rgba(20, 32, 54, 0.11);
    --line-strong: rgba(20, 32, 54, 0.22);
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: rgba(255, 255, 255, 0.97);
    --shadow-soft: 0 22px 60px rgba(12, 23, 41, 0.05);
    --shadow-card: 0 12px 30px rgba(12, 23, 41, 0.07);
    --shadow-strong: 0 30px 72px rgba(12, 23, 41, 0.18);
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 8px;
    --container: 1240px;
    --nav-height: 86px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
    color: var(--text-900);
    background:
        linear-gradient(180deg, #f2f6fb 0%, #edf2f8 34%, #f8fafc 100%);
    line-height: 1.75;
    min-width: 320px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.1;
    background-image:
        linear-gradient(rgba(22, 34, 55, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 34, 55, 0.03) 1px, transparent 1px);
    background-size: 100% 72px, 72px 100%;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0));
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

ul,
ol {
    padding-left: 1.2rem;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.page-shell {
    padding-top: calc(var(--nav-height) + 10px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: 0.35s ease;
    background: rgba(253, 252, 249, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(23, 34, 52, 0.09);
}

.site-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-400) 15%, var(--gold-400) 85%, transparent);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 34px rgba(12, 23, 41, 0.08);
}

.nav {
    min-height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    box-shadow: 0 10px 26px rgba(95, 115, 159, 0.18);
    background: rgba(255, 255, 255, 0.75);
}

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

.brand-text strong {
    display: block;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--ink-900);
}

.brand-text span {
    display: block;
    color: var(--steel-600);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
}

.nav-links a {
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-700);
    padding: 10px 0 12px;
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--ink-900);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(23, 34, 52, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.84);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.menu-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink-900);
    transition: 0.25s ease;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.menu-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, #1a2a45, #2c4267);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 28px rgba(26, 42, 69, 0.24);
}

.button-secondary {
    color: var(--ink-900);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(23, 34, 52, 0.14);
    box-shadow: 0 8px 20px rgba(15, 25, 42, 0.05);
}

.button-ghost {
    color: var(--ink-900);
    border-color: rgba(23, 34, 52, 0.14);
    background: transparent;
}

.hero-home {
    position: relative;
    overflow: hidden;
    padding: 28px 0 76px;
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 18px 0 0;
    border-radius: 22px;
    background:
        linear-gradient(140deg, rgba(11, 19, 34, 0.98), rgba(25, 38, 61, 0.96) 56%, rgba(53, 73, 112, 0.92) 100%);
    box-shadow: var(--shadow-strong);
}

.hero-home::before,
.page-hero-card,
.training-band,
.cta-banner {
    background-image:
        linear-gradient(140deg, rgba(11, 19, 34, 0.98), rgba(25, 38, 61, 0.96) 56%, rgba(53, 73, 112, 0.92) 100%),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: auto, 100% 90px, 90px 100%;
    box-shadow: var(--shadow-strong);
}

.hero-home::after {
    content: "";
    position: absolute;
    inset: 18px 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(219, 195, 148, 0.45), transparent);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 56px;
    padding: 84px 72px 58px;
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 3px solid var(--gold-300);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
}

.display-title {
    font-weight: 700;
    font-size: clamp(2.45rem, 4.2vw, 4.2rem);
    line-height: 1.18;
    letter-spacing: 0.01em;
    margin: 24px 0 14px;
    max-width: 12ch;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.display-title em,
.section-title span,
.page-title span {
    color: var(--gold-300);
}

.display-title em {
    font-style: normal;
}

.hero-summary {
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.14rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-copy .lede {
    max-width: 760px;
    margin-top: 18px;
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 36px;
}

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

.metric-card {
    padding: 20px 18px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid rgba(219, 195, 148, 0.8);
}

.metric-card strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--white);
    margin-bottom: 2px;
}

.metric-card span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.hero-panel {
    align-self: end;
    padding: 36px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.panel-tag {
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.12em;
    font-size: 0.8rem;
}

.panel-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 12px 0 20px;
}

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

.panel-item {
    padding: 20px 20px 18px;
    border-radius: 10px;
    background: rgba(7, 14, 25, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 2px solid rgba(219, 195, 148, 0.65);
}

.panel-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.panel-item p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.93rem;
}

.section {
    padding: 92px 0;
}

.section-tight {
    padding: 72px 0;
}

.section-header {
    position: relative;
    display: grid;
    gap: 12px;
    margin-bottom: 34px;
    padding-left: 20px;
}

.section-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(180deg, var(--gold-400), rgba(95, 115, 159, 0.18));
}

.section-kicker {
    color: var(--steel-600);
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

.section-title,
.page-title {
    font-weight: 700;
    font-size: clamp(1.8rem, 2.7vw, 2.8rem);
    line-height: 1.28;
    letter-spacing: 0.01em;
    color: var(--ink-900);
}

.section-intro,
.page-intro {
    max-width: 760px;
    color: var(--text-700);
    font-size: 1.02rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 68px 0 52px;
}

.page-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 58px 58px;
    color: var(--white);
}

.page-hero-card::after {
    content: "";
    position: absolute;
    right: 28px;
    top: 24px;
    width: 90px;
    height: 2px;
    background: var(--gold-300);
    border-radius: 999px;
}

.page-hero .page-title,
.page-hero .page-intro {
    position: relative;
    z-index: 1;
}

.page-hero .page-title {
    color: var(--white);
    margin-bottom: 14px;
}

.page-hero .page-intro {
    color: rgba(255, 255, 255, 0.76);
}

.hero-meta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.surface {
    background: var(--surface);
    border: 1px solid rgba(23, 34, 52, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.surface-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 238, 0.96));
}

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

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

.intro-panel {
    padding: 34px;
}

.quote-card {
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 240, 232, 0.96));
    border: 1px solid rgba(23, 34, 52, 0.12);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.quote-mark {
    font-family: "Baskerville", "Times New Roman", serif;
    font-size: 4rem;
    line-height: 0.8;
    color: var(--gold-400);
    margin-bottom: 18px;
}

.quote-card p {
    color: var(--text-700);
    font-size: 1.06rem;
}

.quote-card strong {
    display: inline-block;
    margin-top: 18px;
    color: var(--ink-900);
}

.card-grid {
    display: grid;
    gap: 20px;
}

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

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

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

.card {
    position: relative;
    overflow: hidden;
    padding: 28px 24px 24px;
    border-radius: var(--radius-lg);
    background: var(--surface-strong);
    border: 1px solid rgba(23, 34, 52, 0.1);
    box-shadow: var(--shadow-card);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-400), var(--steel-500) 70%, transparent);
    opacity: 1;
}

.card h3,
.card h4 {
    color: var(--ink-900);
    margin-bottom: 10px;
}

.card p,
.card li {
    color: var(--text-700);
}

.index-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ink-800), var(--steel-500));
    color: var(--white);
    font-family: "Baskerville", "Times New Roman", serif;
    font-size: 1.18rem;
    margin-bottom: 16px;
}

.card-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--steel-600);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.feature-list {
    display: grid;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 1px;
    background: var(--gold-400);
}

.detail-box {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(15, 28, 46, 0.03);
    border: 1px solid rgba(23, 34, 52, 0.08);
}

.detail-box strong {
    color: var(--ink-900);
}

.timeline-preview {
    display: grid;
    gap: 16px;
}

.timeline-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 20px 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(23, 34, 52, 0.12);
    box-shadow: var(--shadow-card);
}

.timeline-year {
    font-family: "Baskerville", "Times New Roman", serif;
    font-size: 1.8rem;
    color: var(--steel-600);
    line-height: 1;
}

.timeline-row h3 {
    margin-bottom: 6px;
    color: var(--ink-900);
}

.timeline-row p {
    color: var(--text-700);
}

.training-band {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 18px;
    color: var(--white);
}

.training-band::after {
    content: "";
    position: absolute;
    inset: 24px 24px auto auto;
    width: 88px;
    height: 2px;
    background: rgba(219, 195, 148, 0.8);
}

.training-band p,
.training-band li {
    color: rgba(255, 255, 255, 0.76);
}

.price-grid,
.steps-grid,
.contact-grid,
.download-grid {
    display: grid;
    gap: 20px;
}

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

.price-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 243, 235, 0.94));
    border: 1px solid rgba(23, 34, 52, 0.12);
    box-shadow: var(--shadow-card);
}

.price-card strong {
    display: block;
    font-family: "Baskerville", "Times New Roman", serif;
    font-size: 2.2rem;
    color: var(--ink-900);
    margin: 12px 0 10px;
}

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

.step-card {
    padding: 26px 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(23, 34, 52, 0.12);
    box-shadow: var(--shadow-card);
}

.step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(95, 115, 159, 0.1);
    color: var(--steel-600);
    font-family: "Baskerville", "Times New Roman", serif;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.94);
}

th,
td {
    padding: 18px 18px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    color: var(--text-700);
}

th {
    background: rgba(15, 28, 46, 0.94);
    color: var(--white);
    font-weight: 600;
}

tr:last-child td {
    border-bottom: none;
}

.chip-list,
.roster-grid {
    display: grid;
    gap: 12px;
}

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

.chip {
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(23, 34, 52, 0.12);
    color: var(--text-700);
    box-shadow: 0 8px 20px rgba(12, 23, 41, 0.06);
}

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

.roster-item {
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(23, 34, 52, 0.08);
    color: var(--text-700);
    box-shadow: 0 10px 26px rgba(12, 23, 41, 0.05);
}

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

.contact-card,
.download-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(23, 34, 52, 0.12);
    box-shadow: var(--shadow-card);
}

.contact-card h3,
.download-card h3 {
    margin-bottom: 10px;
    color: var(--ink-900);
}

.contact-card p,
.contact-card li,
.download-card p {
    color: var(--text-700);
}

.info-pairs {
    display: grid;
    gap: 16px;
}

.info-pair {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.info-pair:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.info-pair strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink-900);
}

.year-section {
    padding: 28px 30px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(23, 34, 52, 0.12);
    box-shadow: var(--shadow-card);
}

.year-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.year-heading strong {
    font-size: 2rem;
    font-weight: 700;
    color: var(--steel-600);
}

.year-section ul {
    display: grid;
    gap: 10px;
}

.year-section li {
    color: var(--text-700);
}

.footnote {
    color: var(--text-500);
    font-size: 0.92rem;
}

.cta-banner {
    padding: 32px 34px;
    border-radius: 18px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-strong);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.76);
}

.site-footer {
    margin-top: 48px;
    padding: 52px 0 26px;
    background:
        linear-gradient(180deg, rgba(8, 16, 29, 0.99), rgba(13, 22, 39, 0.99));
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 0.9fr 0.9fr;
    gap: 24px;
}

.footer-brand strong {
    display: block;
    margin: 16px 0 10px;
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--white);
}

.news-layout {
    display: grid;
    gap: 28px;
}

.featured-news {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 24px;
}

.featured-story,
.news-brief,
.news-card,
.article-card,
.article-body {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(23, 34, 52, 0.12);
    box-shadow: var(--shadow-card);
}

.featured-story {
    overflow: hidden;
}

.featured-story img,
.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-story img {
    aspect-ratio: 16 / 9;
}

.featured-content,
.news-brief,
.news-card-body {
    padding: 26px 28px;
}

.news-stack {
    display: grid;
    gap: 20px;
}

.news-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(48, 70, 110, 0.08);
    color: var(--ink-800);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.news-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 14px;
    color: var(--text-500);
    font-size: 0.92rem;
}

.featured-content h2,
.news-brief h3,
.news-card h3,
.article-content h2,
.article-content h3 {
    color: var(--ink-900);
}

.featured-content h2 {
    margin-top: 14px;
    font-size: 1.72rem;
    line-height: 1.42;
}

.news-brief h3,
.news-card h3 {
    margin-top: 14px;
    font-size: 1.24rem;
    line-height: 1.46;
}

.featured-content p,
.news-brief p,
.news-card p {
    color: var(--text-700);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--ink-800);
    font-weight: 700;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.news-card {
    overflow: hidden;
}

.news-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(48, 70, 110, 0.18), rgba(168, 211, 234, 0.22));
}

.news-thumb img {
    transition: transform 0.35s ease;
}

.news-card:hover .news-thumb img,
.featured-story:hover img {
    transform: scale(1.03);
}

.news-card footer {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--text-500);
    font-size: 0.92rem;
}

.news-note {
    padding: 18px 22px;
    border-radius: 14px;
    background: rgba(48, 70, 110, 0.06);
    border: 1px solid rgba(48, 70, 110, 0.1);
    color: var(--text-700);
}

.article-breadcrumb {
    position: relative;
    z-index: 1;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.94rem;
}

.article-breadcrumb a:hover {
    color: var(--white);
}

.article-shell {
    padding-bottom: 36px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.52fr);
    gap: 24px;
    align-items: start;
}

.article-body {
    padding: 36px 38px 42px;
}

.article-content h2,
.article-content h3 {
    margin: 28px 0 12px;
    font-size: 1.34rem;
}

.article-content p {
    margin-bottom: 18px;
    color: var(--text-700);
    font-size: 1.03rem;
}

.article-cover,
.article-gallery figure {
    display: grid;
    gap: 10px;
}

.article-cover {
    margin-bottom: 26px;
}

.article-cover img,
.article-gallery img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(23, 34, 52, 0.08);
}

.article-caption {
    color: var(--text-500);
    font-size: 0.92rem;
}

.article-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0;
}

.article-gallery--documents {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.article-side {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 18px;
}

.article-card {
    padding: 22px 24px;
}

.article-card h3 {
    margin-bottom: 12px;
    color: var(--ink-900);
    font-size: 1.12rem;
}

.article-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.article-list li,
.article-card p {
    color: var(--text-700);
}

.footer-brand img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.84);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-col li,
.footer-col p {
    color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.92rem;
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ink-800), var(--steel-500));
    color: var(--white);
    box-shadow: 0 16px 36px rgba(12, 23, 41, 0.22);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 1000;
}

.back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
