:root {
    --bg: #050505;
    --bg-deep: #090907;
    --surface: #10100E;
    --surface-2: #171611;
    --hover: #201E17;
    --title: #FFF8E7;
    --text: #E7E0CF;
    --muted: #AAA18D;
    --dim: #7F7768;
    --gold: #D5AF58;
    --gold-bright: #F3D27B;
    --gold-deep: #9B7127;
    --gold-dark: #604314;
    --warm: #FFF4D8;
    --line: rgba(213, 175, 88, .18);
    --line-strong: rgba(243, 210, 123, .45);
    --shadow: 0 18px 48px rgba(0, 0, 0, .46);
    --gold-shadow: 0 18px 46px rgba(213, 175, 88, .18);
    --header-offset: 146px;
}
*,
*::before,
*::after { box-sizing: border-box; }
html {
    color-scheme: dark;
    scroll-behavior: smooth;
    background: var(--bg);
    overflow-x: hidden;
}
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(213, 175, 88, .07), transparent 29rem),
        radial-gradient(circle at 88% 32%, rgba(155, 113, 39, .05), transparent 31rem),
        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.78;
    -webkit-font-smoothing: antialiased;
}
body.panel-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a, button, summary {
    outline: none;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
}
p, h1, h2, h3, ul, ol, dl, figure { margin-top: 0; }
h1, h2, h3 {
    color: var(--title);
    font-family: Georgia, "Times New Roman", "Songti SC", "SimSun", serif;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .02em;
}
h1 { font-size: clamp(2.35rem, 5vw, 5.75rem); }
h2 { font-size: clamp(1.7rem, 3vw, 3rem); }
h3 { font-size: 1.22rem; }
.shell {
    width: min(1320px, calc(100% - 48px));
    margin-inline: auto;
}
.site-main { position: relative; z-index: 1; min-height: 60vh; }
.section {
    position: relative;
    padding-block: clamp(72px, 9vw, 128px);
}
.section-tight { padding-block: clamp(38px, 5vw, 72px); }
.section-heading {
    max-width: 780px;
    margin-bottom: clamp(28px, 4vw, 50px);
}
.section-heading h2,
.compact-heading h2 { margin-bottom: 16px; }
.section-heading > p:last-child,
.compact-heading > p:last-child { color: var(--muted); margin-bottom: 0; }
.eyebrow {
    margin-bottom: 12px;
    color: var(--gold-bright);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.lead {
    max-width: 800px;
    margin-bottom: 0;
    color: var(--text);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 22px;
    border: 1px solid rgba(243, 210, 123, .58);
    border-radius: 5px;
    background: linear-gradient(135deg, #F4D98B 0%, #D5AF58 48%, #8F651D 100%);
    box-shadow: 0 10px 30px rgba(213, 175, 88, .16);
    color: #17120A;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: var(--gold-shadow); }
.button-dark {
    background: #11100D;
    color: var(--warm);
    border-color: var(--line-strong);
    box-shadow: none;
}
.button-small { min-height: 44px; padding-inline: 17px; font-size: .9rem; }
.button-row, .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.section-action { margin-top: 28px; }
.text-link, .section-action a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--gold-bright);
    font-weight: 700;
}
.text-link:hover, .section-action a:hover { color: var(--warm); }
.skip-link {
    position: fixed;
    left: 12px;
    top: 12px;
    z-index: 500;
    padding: 9px 14px;
    transform: translateY(-160%);
    background: var(--gold-bright);
    color: #111;
    border-radius: 4px;
}
.skip-link:focus { transform: none; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 90; }
.event-status {
    min-height: 34px;
    border-bottom: 1px solid var(--line);
    background: #030303;
    color: var(--muted);
    font-size: .74rem;
}
.status-inner {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    min-height: 34px;
    gap: 24px;
}
.status-brand { margin: 0; white-space: nowrap; }
.status-links { display: flex; align-items: center; gap: 22px; }
.status-links a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    transition: color .2s ease;
}
.status-links a:hover { color: var(--gold-bright); }
.status-links-end { justify-content: flex-end; }
.status-mobile-link { display: none; color: var(--gold-bright); }
.sticky-navigation {
    position: relative;
    z-index: 90;
    background: rgba(5, 5, 5, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}
.brand-nav {
    position: relative;
    display: grid;
    grid-template-columns: 1fr minmax(180px, 300px) 1fr;
    align-items: center;
    min-height: 78px;
    gap: 18px;
}
.brand-side { display: flex; align-items: center; gap: 18px; min-width: 0; }
.brand-side-right { justify-content: flex-end; }
.channel-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
}
.menu-lines {
    display: inline-grid;
    width: 24px;
    gap: 6px;
}
.menu-lines i {
    display: block;
    height: 1px;
    background: var(--gold-bright);
}
.menu-lines i:last-child { width: 16px; }
.stage-mark {
    color: var(--dim);
    font-size: .78rem;
    white-space: nowrap;
}
.brand-logo {
    position: relative;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 58px;
    text-align: center;
}
.brand-logo img { max-height: 58px; width: auto; max-width: 210px; object-fit: contain; }
.brand-cn {
    color: var(--title);
    font-family: Georgia, "Songti SC", "SimSun", serif;
    font-size: 1.48rem;
    letter-spacing: .22em;
    line-height: 1.15;
}
.brand-en {
    margin-top: 5px;
    color: var(--gold);
    font-size: .61rem;
    letter-spacing: .35em;
    line-height: 1;
}
.nav-text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--muted);
    font-size: .9rem;
}
.nav-text-link:hover { color: var(--gold-bright); }
.stage-nav { border-top: 1px solid rgba(213, 175, 88, .1); }
.stage-nav-inner {
    display: flex;
    align-items: stretch;
    min-height: 48px;
}
.stage-scroll {
    display: flex;
    align-items: stretch;
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}
.stage-scroll::-webkit-scrollbar { display: none; }
.stage-link,
.more-menu > summary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 17px;
    color: var(--muted);
    font-size: .9rem;
    white-space: nowrap;
    cursor: pointer;
    list-style: none;
}
.stage-link::after,
.more-menu > summary::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 1px;
    background: var(--gold-bright);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
    pointer-events: none;
}
.stage-link:hover,
.stage-link.is-active,
.more-menu > summary:hover,
.more-menu > summary.is-active { color: var(--gold-bright); }
.stage-link.is-active::after,
.more-menu > summary.is-active::after { transform: scaleX(1); }
.more-menu { position: relative; flex: 0 0 auto; }
.more-menu > summary::-webkit-details-marker { display: none; }
.more-menu > summary::before {
    content: "＋";
    margin-right: 6px;
    color: var(--gold);
    font-size: .86rem;
}
.more-menu[open] > summary::before { content: "－"; }
.more-menu-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 1px);
    display: grid;
    width: 230px;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(16, 16, 14, .98);
    box-shadow: var(--shadow);
}
.more-menu:not([open]) .more-menu-panel {
    display: none;
    visibility: hidden;
    pointer-events: none;
}
.more-menu-panel a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 12px;
    border-bottom: 1px solid rgba(213, 175, 88, .08);
    color: var(--muted);
}
.more-menu-panel a:last-child { border-bottom: 0; }
.more-menu-panel a:hover,
.more-menu-panel a.is-active { background: var(--hover); color: var(--gold-bright); }

/* Home hero */
.home-hero { position: relative; background: #020202; border-bottom: 1px solid var(--line); }
.hero-media {
    position: relative;
    min-height: clamp(420px, 62vw, 820px);
    max-height: 820px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 2%, rgba(255, 244, 216, .22), transparent 33%),
        linear-gradient(115deg, rgba(213, 175, 88, .08), transparent 42%),
        #050505;
}
.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 2;
}
.hero-fallback {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, transparent 0 21%, rgba(213,175,88,.08) 21.1% 21.25%, transparent 21.35% 78%, rgba(213,175,88,.08) 78.1% 78.25%, transparent 78.35%),
        radial-gradient(ellipse at 50% -8%, rgba(255,248,231,.24), transparent 42%),
        linear-gradient(180deg, #0c0b08, #030303);
    pointer-events: none;
}
.hero-fallback::before,
.hero-fallback::after {
    content: "";
    position: absolute;
    top: -12%;
    width: 22%;
    height: 130%;
    background: linear-gradient(180deg, rgba(243,210,123,.18), transparent 72%);
    filter: blur(18px);
    transform: rotate(13deg);
}
.hero-fallback::before { left: 13%; }
.hero-fallback::after { right: 13%; transform: rotate(-13deg); }
.hero-fallback span {
    position: absolute;
    bottom: 9%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 24px rgba(243,210,123,.8);
    opacity: .55;
}
.hero-fallback span:nth-child(1) { left: 24%; bottom: 24%; }
.hero-fallback span:nth-child(2) { left: 53%; bottom: 35%; }
.hero-fallback span:nth-child(3) { right: 19%; bottom: 18%; }
.hero-stage-rail {
    position: absolute;
    left: max(24px, calc((100% - 1320px)/2 + 24px));
    top: 50%;
    z-index: 4;
    display: grid;
    gap: 18px;
    transform: translateY(-50%);
    color: rgba(255,248,231,.58);
    font-size: .72rem;
    letter-spacing: .28em;
}
.hero-stage-rail::before {
    content: "";
    position: absolute;
    left: -13px;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: linear-gradient(var(--gold-bright), rgba(213,175,88,.1));
    pointer-events: none;
}
.hero-console {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
    margin-top: -172px;
    padding: 33px 38px;
    border: 1px solid var(--line-strong);
    background: linear-gradient(115deg, rgba(5,5,5,.94), rgba(16,16,14,.82));
    box-shadow: var(--shadow);
}
.hero-console h1 { max-width: 940px; margin-bottom: 20px; font-size: clamp(2.15rem, 4.2vw, 4.8rem); }
.hero-console p:not(.eyebrow) { max-width: 900px; margin-bottom: 0; color: var(--muted); }

/* Home sections */
.info-triptych {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
}
.info-triptych article { padding: 30px; border-right: 1px solid var(--line); }
.info-triptych article:last-child { border-right: 0; }
.info-triptych h2 { margin-bottom: 13px; font-size: 1.35rem; }
.info-triptych p { color: var(--muted); }
.track-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.track-card {
    position: relative;
    min-height: 325px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(213,175,88,.08), transparent 48%),
        var(--surface);
    box-shadow: var(--shadow);
}
.track-card::before {
    content: "";
    position: absolute;
    inset: auto -30% -60% 20%;
    height: 190px;
    border: 1px solid rgba(243,210,123,.12);
    transform: rotate(-10deg);
    pointer-events: none;
}
.track-card:hover { border-color: var(--line-strong); background-color: var(--surface-2); }
.track-no { color: var(--gold-deep); font-size: .72rem; letter-spacing: .24em; }
.track-card h3 { margin: 45px 0 14px; font-size: 1.65rem; }
.track-card p { color: var(--muted); }
.track-card strong { display: block; margin-bottom: 14px; color: var(--gold-bright); font-size: .84rem; }
.track-card a { position: relative; z-index: 2; display: inline-flex; min-height: 44px; align-items: center; color: var(--warm); font-weight: 700; }
.stage-style {
    background:
        linear-gradient(180deg, rgba(213,175,88,.05), transparent 30%),
        var(--bg-deep);
    border-block: 1px solid var(--line);
}
.split-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 44px;
}
.editorial-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, .92fr);
    border: 1px solid var(--line);
    background: var(--surface);
}
.editorial-image {
    position: relative;
    min-height: 560px;
    margin: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 18%, rgba(243,210,123,.19), transparent 28%),
        linear-gradient(150deg, #19160f, #050505 68%);
}
.editorial-image img { width: 100%; height: 100%; object-fit: contain; }
.editorial-image figcaption { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2; padding: 13px 15px; border-left: 2px solid var(--gold); background: rgba(3,3,3,.78); color: var(--text); }
.editorial-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(243,210,123,.14);
    pointer-events: none;
}
.style-list { display: grid; }
.style-list article {
    display: grid;
    grid-template-columns: 125px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 23px 26px;
    border-bottom: 1px solid var(--line);
}
.style-list article:last-child { border-bottom: 0; }
.style-list h3 { margin: 0; font-size: 1.2rem; }
.style-list p { margin: 0; color: var(--muted); font-size: .92rem; }
.style-list a { display: inline-flex; min-height: 44px; align-items: center; color: var(--gold-bright); }
.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.profile-card {
    padding: 14px;
    border: 1px solid var(--line);
    background: var(--surface);
}
.profile-placeholder {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 5;
    margin-bottom: 20px;
    background:
        linear-gradient(120deg, transparent 0 47%, rgba(213,175,88,.13) 47.1% 47.5%, transparent 47.6%),
        radial-gradient(circle at 50% 35%, rgba(243,210,123,.12), transparent 20%),
        #0b0b09;
    border: 1px solid rgba(213,175,88,.12);
    color: rgba(243,210,123,.3);
    font: 500 2.2rem Georgia, serif;
    letter-spacing: .16em;
}
.profile-id { margin-bottom: 6px; color: var(--gold); font-size: .72rem; letter-spacing: .12em; }
.profile-card h3 { margin-bottom: 15px; }
.profile-card dl { margin: 0; }
.profile-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-block: 8px;
    border-top: 1px solid rgba(213,175,88,.09);
    font-size: .82rem;
}
.profile-card dt { color: var(--dim); }
.profile-card dd { margin: 0; color: var(--muted); }
.journey-section { background: var(--bg-deep); border-block: 1px solid var(--line); }
.journey-line {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.journey-line li {
    position: relative;
    min-height: 245px;
    padding: 28px;
    background: var(--surface);
}
.journey-line li > span {
    display: block;
    margin-bottom: 30px;
    color: var(--gold);
    font-size: .72rem;
    letter-spacing: .18em;
}
.journey-line h3 { margin-bottom: 12px; }
.journey-line p { color: var(--muted); font-size: .92rem; }
.journey-line a { display: inline-flex; min-height: 44px; align-items: center; color: var(--gold-bright); }
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.criteria-grid article {
    padding: 28px;
    border-left: 2px solid var(--gold-deep);
    background: var(--surface);
    box-shadow: var(--shadow);
}
.criteria-grid p { color: var(--muted); margin-bottom: 0; }
.gold-note {
    margin-top: 28px;
    padding: 24px 26px;
    border: 1px solid var(--line-strong);
    background: linear-gradient(100deg, rgba(213,175,88,.12), rgba(16,16,14,.8));
}
.gold-note strong { display: block; margin-bottom: 7px; color: var(--gold-bright); }
.gold-note p { margin-bottom: 0; color: var(--text); }
.program-section {
    background: #030303;
    border-block: 1px solid var(--line);
}
.program-list { border-top: 1px solid var(--line); }
.program-list article {
    display: grid;
    grid-template-columns: 170px 145px 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 92px;
    padding: 17px 12px;
    border-bottom: 1px solid var(--line);
}
.program-list article > span { color: var(--title); font: 500 1.15rem Georgia, "Songti SC", serif; }
.program-list strong { color: var(--gold-bright); font-size: .8rem; }
.program-list p { margin: 0; color: var(--muted); }
.program-list a { display: inline-flex; min-height: 44px; align-items: center; color: var(--warm); }
.magazine-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.magazine-main {
    position: relative;
    min-height: 620px;
    padding: 35px;
    display: flex;
    grid-row: 1 / -1;
    align-items: end;
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, transparent 40%, rgba(0,0,0,.95)),
        radial-gradient(circle at 50% 20%, rgba(243,210,123,.18), transparent 32%),
        #0c0b08;
}
.magazine-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.magazine-main > figcaption { position: relative; z-index: 2; max-width: 650px; }
.magazine-main p { color: var(--muted); }
.magazine-grid > article {
    padding: 26px;
    border: 1px solid var(--line);
    background: var(--surface);
}
.magazine-grid > article p { color: var(--muted); }
.magazine-grid a { display: inline-flex; min-height: 44px; align-items: center; color: var(--gold-bright); }
.honors-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(213,175,88,.12), transparent 25rem),
        var(--bg-deep);
    border-block: 1px solid var(--line);
}
.honors-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 48px;
    align-items: center;
}
.honors-layout figure {
    position: relative;
    min-height: 540px;
    margin: 0;
    background: radial-gradient(circle, rgba(243,210,123,.16), transparent 48%), #080806;
    border: 1px solid var(--line);
}
.honors-layout figure img { width: 100%; height: 100%; object-fit: contain; }
.honors-copy ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0; list-style: none; }
.honors-copy li { padding: 14px; border: 1px solid var(--line); background: rgba(16,16,14,.75); }
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.news-grid article {
    min-height: 260px;
    padding: 26px;
    border: 1px solid var(--line);
    background: var(--surface);
}
.news-grid article > span { color: var(--gold); font-size: .72rem; letter-spacing: .14em; }
.news-grid h3 { margin: 22px 0 12px; }
.news-grid p { color: var(--muted); }
.news-grid a { display: inline-flex; min-height: 44px; align-items: center; color: var(--gold-bright); }
.app-section { background: var(--bg-deep); border-block: 1px solid var(--line); }
.app-layout {
    display: grid;
    grid-template-columns: minmax(350px, .86fr) minmax(0, 1.14fr);
    gap: 50px;
    align-items: center;
}
.app-layout figure {
    min-height: 550px;
    margin: 0;
    border: 1px solid var(--line);
    background: radial-gradient(circle at 50% 20%, rgba(243,210,123,.18), transparent 30%), #080806;
}
.app-layout figure img { width: 100%; height: 100%; object-fit: contain; }
.service-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 26px 0;
}
.service-mini-grid div,
.service-mini-grid span { padding: 16px; border: 1px solid var(--line); background: var(--surface); color: var(--gold-bright); font-weight: 700; }
.service-mini-grid strong { display: block; color: var(--gold-bright); }
.entry-rights {
    padding: clamp(32px, 5vw, 64px);
    border: 1px solid var(--line-strong);
    background:
        linear-gradient(120deg, rgba(213,175,88,.14), transparent 55%),
        var(--surface);
    box-shadow: var(--gold-shadow);
}
.entry-rights p { max-width: 980px; color: var(--text); }
.safety-privacy { background: #030303; }
.dual-topic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.dual-topic article {
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid var(--line);
    background: var(--surface);
}
.dual-topic p { color: var(--muted); }
.about-home { border-top: 1px solid var(--line); }
.about-home-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: center;
}
.about-home-layout figure {
    min-height: 500px;
    margin: 0;
    border: 1px solid var(--line);
    background: radial-gradient(circle, rgba(243,210,123,.13), transparent 40%), #080806;
}
.about-home-layout img { width: 100%; height: 100%; object-fit: contain; }

/* Inner pages */
.inner-hero {
    position: relative;
    padding-block: clamp(72px, 10vw, 140px);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(105deg, rgba(213,175,88,.1), transparent 46%),
        radial-gradient(circle at 85% 30%, rgba(243,210,123,.12), transparent 25rem),
        var(--bg-deep);
}
.inner-hero::before {
    content: "";
    position: absolute;
    right: 7%;
    top: -45%;
    width: 1px;
    height: 190%;
    background: linear-gradient(transparent, var(--gold), transparent);
    transform: rotate(27deg);
    opacity: .35;
    pointer-events: none;
}
.inner-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 55px;
    align-items: center;
}
.inner-hero h1 { max-width: 900px; margin-bottom: 22px; }
.inner-hero-image,
.inner-hero-emblem {
    position: relative;
    min-height: 390px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    background:
        radial-gradient(circle at 50% 23%, rgba(243,210,123,.17), transparent 31%),
        linear-gradient(140deg, #18150f, #050505 69%);
    box-shadow: var(--shadow);
}
.inner-hero-image img { position: relative; z-index: 2; width: 100%; height: 100%; min-height: 390px; object-fit: contain; }
.image-fallback {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0 46%, rgba(213,175,88,.12) 46.1% 46.4%, transparent 46.5%),
        radial-gradient(circle at 50% 28%, rgba(243,210,123,.12), transparent 22%),
        #090907;
    pointer-events: none;
}
.inner-hero-emblem {
    display: grid;
    place-content: center;
    text-align: center;
}
.inner-hero-emblem::before,
.inner-hero-emblem::after {
    content: "";
    position: absolute;
    inset: 14%;
    border: 1px solid rgba(243,210,123,.18);
    transform: rotate(45deg);
    pointer-events: none;
}
.inner-hero-emblem::after { inset: 25%; transform: rotate(0deg); }
.inner-hero-emblem span {
    position: relative;
    z-index: 1;
    color: var(--gold-bright);
    font: 500 clamp(2.5rem, 7vw, 6.5rem) Georgia, serif;
    letter-spacing: .12em;
}
.inner-hero-emblem small {
    position: relative;
    z-index: 1;
    color: var(--muted);
    letter-spacing: .35em;
}
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.content-card {
    min-height: 250px;
    padding: clamp(26px, 3vw, 36px);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
}
.content-card h2 { margin-bottom: 16px; font-size: clamp(1.35rem, 2vw, 1.8rem); }
.content-card p { margin-bottom: 0; color: var(--muted); }
.checklist-section {
    background:
        linear-gradient(90deg, rgba(213,175,88,.07), transparent 40%),
        var(--bg-deep);
    border-block: 1px solid var(--line);
}
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0;
    list-style: none;
}
.checklist-grid li {
    position: relative;
    min-height: 92px;
    padding: 20px 18px 18px 43px;
    border: 1px solid var(--line);
    background: var(--surface);
}
.checklist-grid li::before {
    content: "◆";
    position: absolute;
    left: 18px;
    top: 21px;
    color: var(--gold);
    font-size: .68rem;
}
.process-section {
    background: #030303;
    border-block: 1px solid var(--line);
}
.process-list {
    display: grid;
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}
.process-list li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    padding: 26px 12px;
    border-bottom: 1px solid var(--line);
}
.process-list li > span {
    color: var(--gold-deep);
    font: 500 1.4rem Georgia, serif;
}
.process-list h3 { margin-bottom: 7px; }
.process-list p { margin: 0; color: var(--muted); }
.faq-list { display: grid; gap: 10px; }
.faq-list details {
    border: 1px solid var(--line);
    background: var(--surface);
}
.faq-list summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 15px 56px 15px 20px;
    color: var(--title);
    cursor: pointer;
    list-style: none;
    font-weight: 700;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "＋";
    position: absolute;
    right: 20px;
    color: var(--gold-bright);
}
.faq-list details[open] summary::after { content: "－"; }
.faq-list details p {
    margin: 0;
    padding: 0 56px 22px 20px;
    color: var(--muted);
}
.faq-page-list { grid-template-columns: repeat(2, 1fr); align-items: start; }
.related-section {
    padding-block: 50px;
    border-block: 1px solid var(--line);
    background: var(--bg-deep);
}
.related-section > .shell {
    display: grid;
    grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
    gap: 42px;
    align-items: start;
}
.related-section h2 { margin-bottom: 0; }
.related-section nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.related-section nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    background: var(--surface);
}
.related-section nav a:hover { border-color: var(--line-strong); color: var(--gold-bright); }
.page-ending {
    padding-block: 42px;
    background: linear-gradient(90deg, rgba(213,175,88,.13), transparent 60%), #050505;
}
.page-ending > .shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.page-ending p { max-width: 900px; margin: 0; }

/* Footer */
.site-footer {
    position: relative;
    z-index: 2;
    padding-top: 70px;
    border-top: 1px solid var(--line);
    background: #030303;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(130px, .65fr));
    gap: 34px;
}
.footer-brand p { max-width: 360px; color: var(--muted); }
.footer-logo {
    display: inline-flex;
    flex-direction: column;
    min-height: 60px;
    justify-content: center;
    margin-bottom: 18px;
}
.footer-logo img { max-width: 190px; max-height: 70px; object-fit: contain; }
.footer-logo span { color: var(--title); font: 500 1.5rem Georgia, "Songti SC", serif; letter-spacing: .18em; }
.footer-logo small { color: var(--gold); letter-spacing: .25em; }
.footer-group { display: grid; align-content: start; gap: 5px; }
.footer-group h2 { margin-bottom: 12px; font: 700 .86rem/1.4 inherit; color: var(--gold-bright); }
.footer-group a { display: flex; align-items: center; min-height: 37px; color: var(--muted); font-size: .88rem; }
.footer-group a:hover { color: var(--warm); }
.footer-notice {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 55px;
    padding-block: 24px calc(24px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
}
.footer-notice p { margin: 0; color: var(--dim); font-size: .8rem; }
.footer-notice p:first-child { max-width: 850px; }

/* Channel drawer */
.channel-overlay {
    position: fixed;
    inset: 0;
    z-index: 180;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(0, 0, 0, .72);
    transition: opacity .25s ease, visibility 0s linear .25s;
}
.channel-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}
.channel-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 190;
    width: min(520px, 90vw);
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    border-left: 1px solid var(--line-strong);
    background: #080806;
    box-shadow: -22px 0 60px rgba(0,0,0,.6);
    transition: transform .28s ease, visibility 0s linear .28s;
}
.channel-panel.is-open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}
.panel-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 84px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(8,8,6,.96);
    backdrop-filter: blur(12px);
}
.panel-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.panel-brand img { width: 58px; height: 58px; object-fit: contain; }
.panel-brand > span { display: flex; flex-direction: column; }
.panel-brand strong { color: var(--title); font-family: Georgia, "Songti SC", serif; }
.panel-brand small { color: var(--gold); letter-spacing: .16em; }
.panel-close {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--warm);
    cursor: pointer;
}
.panel-content { padding: 26px 22px 50px; }
.channel-group { padding-block: 20px; border-bottom: 1px solid var(--line); }
.channel-group:last-child { border-bottom: 0; }
.channel-group h2 { margin-bottom: 14px; color: var(--gold-bright); font: 700 .78rem/1.4 inherit; letter-spacing: .14em; }
.channel-group a {
    display: block;
    min-height: 62px;
    padding: 10px 12px;
    border: 1px solid transparent;
}
.channel-group a:hover { border-color: var(--line); background: var(--surface); }
.channel-group strong { display: block; color: var(--title); }
.channel-group span { display: block; color: var(--dim); font-size: .78rem; }

/* Mobile navigation */
.mobile-nav { display: none; }

@media (max-width: 1100px) {
    .stage-mark, .nav-text-link { display: none; }
    .brand-nav { grid-template-columns: 1fr minmax(170px, 240px) 1fr; }
    .track-grid, .criteria-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-grid { grid-template-columns: repeat(2, 1fr); }
    .journey-line { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-brand { grid-column: 1 / -1; }
    .checklist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
    :root { --header-offset: 130px; }
    .shell { width: min(100% - 30px, 1320px); }
    .status-inner { grid-template-columns: 1fr auto; gap: 12px; }
    .status-links-center, .status-links-end { display: none; }
    .status-mobile-link { display: inline-flex; align-items: center; min-height: 34px; justify-self: end; }
    .brand-nav { min-height: 70px; grid-template-columns: 1fr minmax(145px, 210px) 1fr; gap: 9px; }
    .channel-trigger > span:last-child { display: none; }
    .brand-side-right .button { padding-inline: 13px; }
    .brand-logo { min-width: 140px; }
    .brand-logo img { max-width: 165px; max-height: 52px; }
    .brand-cn { font-size: 1.22rem; }
    .brand-en { font-size: .53rem; }
    .stage-link, .more-menu > summary { padding-inline: 14px; }
    .home-hero { padding-bottom: 0; }
    .hero-media { min-height: 510px; }
    .hero-stage-rail { display: none; }
    .hero-console {
        width: min(100% - 30px, 1320px);
        grid-template-columns: 1fr;
        align-items: start;
        margin-top: -118px;
        padding: 27px 23px;
        gap: 24px;
    }
    .info-triptych { grid-template-columns: 1fr; }
    .info-triptych article { border-right: 0; border-bottom: 1px solid var(--line); }
    .info-triptych article:last-child { border-bottom: 0; }
    .editorial-feature,
    .honors-layout,
    .app-layout,
    .about-home-layout,
    .inner-hero-grid,
    .magazine-grid { grid-template-columns: 1fr; }
    .magazine-grid { grid-template-rows: auto; }
    .magazine-main { grid-row: auto; }
    .editorial-image, .magazine-main, .honors-layout figure, .app-layout figure, .about-home-layout figure { min-height: 460px; }
    .style-list article { grid-template-columns: 105px 1fr; }
    .style-list article a { grid-column: 2; }
    .program-list article { grid-template-columns: 130px 120px 1fr; }
    .program-list article a { grid-column: 3; }
    .inner-hero-image, .inner-hero-emblem { min-height: 330px; }
    .inner-hero-image img { min-height: 330px; }
    .content-grid { grid-template-columns: 1fr; }
    .faq-page-list { grid-template-columns: 1fr; }
    .related-section > .shell { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
    body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
    .shell { width: calc(100% - 28px); }
    .event-status { font-size: .66rem; }
    .status-brand {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .brand-nav { min-height: 66px; grid-template-columns: 48px 1fr auto; }
    .brand-side-left { width: 48px; }
    .channel-trigger { width: 44px; justify-content: center; }
    .brand-logo { min-width: 0; }
    .brand-logo img { max-width: 138px; max-height: 48px; }
    .brand-cn { font-size: 1.08rem; letter-spacing: .13em; }
    .brand-en { font-size: .46rem; letter-spacing: .25em; }
    .brand-side-right .button { min-height: 44px; padding: 8px 12px; font-size: .78rem; }
    .stage-nav-inner { width: 100%; padding-left: 14px; }
    .stage-scroll { padding-right: 2px; }
    .more-menu > summary { padding-inline: 13px; }
    .more-menu-panel { position: fixed; top: 116px; right: 14px; width: min(260px, calc(100vw - 28px)); max-height: calc(100dvh - 196px); overflow-y: auto; }
    .section { padding-block: 66px; }
    .hero-media { min-height: 440px; }
    .hero-console { margin-top: -72px; padding: 22px 18px; }
    .hero-console h1 { font-size: 2.1rem; }
    .hero-actions, .button-row { display: grid; grid-template-columns: 1fr; }
    .hero-actions .button, .button-row .button { width: 100%; }
    .track-grid, .criteria-grid, .profile-grid, .news-grid, .dual-topic { grid-template-columns: 1fr; }
    .track-card { min-height: auto; }
    .journey-line { grid-template-columns: 1fr; }
    .editorial-image, .magazine-main, .honors-layout figure, .app-layout figure, .about-home-layout figure { min-height: 380px; }
    .style-list article { grid-template-columns: 1fr; }
    .style-list article a { grid-column: 1; }
    .honors-copy ul, .service-mini-grid { grid-template-columns: 1fr; }
    .program-list article { grid-template-columns: 1fr 1fr; gap: 7px 15px; padding-block: 20px; }
    .program-list article p, .program-list article a { grid-column: 1 / -1; }
    .inner-hero { padding-block: 66px; }
    .inner-hero-grid { gap: 34px; }
    .inner-hero h1 { font-size: 2.35rem; }
    .inner-hero-image, .inner-hero-emblem { min-height: 280px; }
    .inner-hero-image img { min-height: 280px; }
    .content-card { min-height: 0; }
    .checklist-grid { grid-template-columns: 1fr; }
    .process-list li { grid-template-columns: 48px 1fr; gap: 15px; }
    .related-section nav { grid-template-columns: 1fr; }
    .page-ending > .shell { align-items: stretch; flex-direction: column; }
    .page-ending .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-notice { flex-direction: column; gap: 14px; }
    .mobile-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 120;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        min-height: calc(60px + env(safe-area-inset-bottom));
        padding-bottom: env(safe-area-inset-bottom);
        border-top: 1px solid var(--line-strong);
        background: rgba(5,5,5,.97);
        backdrop-filter: blur(14px);
    }
    .mobile-nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 58px;
        color: var(--dim);
        font-size: .78rem;
    }
    .mobile-nav a.is-active { color: var(--gold-bright); }
    .channel-panel { z-index: 190; }
    .channel-overlay { z-index: 180; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}
