:root {
    --bg: #080808;
    --bg-deep: #101010;
    --bg-gold: #15120B;
    --card: #141414;
    --gold: #F7D27A;
    --gold-deep: #D9A84A;
    --gold-dark: #A87420;
    --text: #F4F0E8;
    --muted: #C9BFA9;
    --dim: #9F9278;
    --line: rgba(247, 210, 122, 0.16);
    --line-strong: rgba(247, 210, 122, 0.38);
    --shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
    --glow: 0 0 24px rgba(247, 210, 122, 0.28);
    --header-main-height: 78px;
    --channel-height: 54px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 10% 0%, rgba(217, 168, 74, 0.08), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(247, 210, 122, 0.05), transparent 26%),
        var(--bg);
    color: var(--text);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.drawer-open {
    overflow: hidden;
}

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

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

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

button {
    font: inherit;
}

p {
    margin: 0 0 1em;
    color: var(--muted);
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--gold);
    line-height: 1.25;
    text-shadow: 0 0 20px rgba(247, 210, 122, 0.18);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4.7rem);
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.65rem);
}

h3 {
    font-size: 1.18rem;
}

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

.page-shell {
    padding-top: calc(var(--header-main-height) + var(--channel-height));
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.92);
    border-bottom: 1px solid rgba(247, 210, 122, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-main {
    height: var(--header-main-height);
}

.header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    height: 100%;
}

.logo-text {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    font-family: Georgia, "Songti SC", "SimSun", serif;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 2px;
    white-space: nowrap;
    color: #F7D27A;
    background: linear-gradient(180deg, #FFF3B0 0%, #F7D27A 45%, #C8932E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(247, 210, 122, 0.55), 0 0 28px rgba(200, 147, 46, 0.35);
}

.logo-text--drawer {
    font-size: 27px;
}

.logo-text--footer {
    margin-bottom: 18px;
    font-size: 31px;
}

.nav-core {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    gap: 8px;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.nav-core a {
    padding: 9px 11px;
    border-radius: 999px;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    transition: color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.nav-core a:hover,
.nav-core a.active {
    color: var(--gold);
    background: rgba(247, 210, 122, 0.10);
    box-shadow: 0 0 18px rgba(247, 210, 122, 0.14);
}

.main-btn,
.ghost-btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.main-btn {
    border: 1px solid rgba(255, 243, 176, 0.65);
    background: linear-gradient(180deg, #FFF3B0 0%, #D9A84A 52%, #A87420 100%);
    color: #111111;
    box-shadow: 0 12px 28px rgba(247, 210, 122, 0.22);
}

.main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 34px rgba(247, 210, 122, 0.32);
}

.ghost-btn {
    border: 1px solid var(--line-strong);
    color: var(--gold);
    background: rgba(247, 210, 122, 0.04);
}

.ghost-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(247, 210, 122, 0.7);
    box-shadow: var(--glow);
}

.header-register {
    min-width: 82px;
    padding-inline: 22px;
    white-space: nowrap;
}

.channel-nav {
    height: var(--channel-height);
    overflow: hidden;
    background: rgba(16, 16, 16, 0.94);
    border-top: 1px solid rgba(247, 210, 122, 0.08);
    border-bottom: 1px solid rgba(247, 210, 122, 0.12);
}

.channel-scroll {
    display: flex;
    align-items: center;
    gap: 9px;
    height: 100%;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: rgba(247, 210, 122, 0.35) transparent;
}

.channel-scroll::-webkit-scrollbar {
    height: 4px;
}

.channel-scroll::-webkit-scrollbar-thumb {
    background: rgba(247, 210, 122, 0.35);
    border-radius: 20px;
}

.channel-nav a {
    flex: 0 0 auto;
    padding: 6px 13px;
    border: 1px solid rgba(247, 210, 122, 0.12);
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    transition: all 0.2s ease;
}

.channel-nav a:hover,
.channel-nav a.active {
    color: var(--gold);
    border-color: rgba(247, 210, 122, 0.42);
    background: rgba(247, 210, 122, 0.08);
    box-shadow: 0 0 14px rgba(247, 210, 122, 0.1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(247, 210, 122, 0.04);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: 3px;
    background: var(--gold);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1190;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.68);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1200;
    width: min(84vw, 320px);
    overflow-y: auto;
    transform: translateX(-105%);
    background: linear-gradient(180deg, #15120B 0%, #101010 34%, #0b0b0b 100%);
    border-right: 1px solid var(--line-strong);
    box-shadow: 26px 0 70px rgba(0, 0, 0, 0.6);
    transition: transform 0.28s ease;
}

.drawer-open .drawer-overlay {
    visibility: visible;
    opacity: 1;
}

.drawer-open .mobile-drawer {
    transform: translateX(0);
}

.drawer-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    padding: 14px 18px;
    background: rgba(16, 16, 16, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.drawer-close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #141414;
    color: var(--gold);
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
}

.drawer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 16px;
}

.drawer-nav a {
    padding: 11px 12px;
    border: 1px solid rgba(247, 210, 122, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.015);
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.drawer-nav a:hover,
.drawer-nav a.active {
    color: var(--gold);
    border-color: var(--line-strong);
    background: rgba(247, 210, 122, 0.08);
}

.drawer-foot {
    margin: 0 16px 20px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--card);
}

.drawer-foot p {
    margin-bottom: 15px;
    color: var(--dim);
    font-size: 12px;
}

.drawer-foot .main-btn {
    width: 100%;
}

.section-pad {
    padding: 78px 0;
}

.section-pad--compact {
    padding: 32px 0 76px;
}

.section-surface {
    background:
        linear-gradient(180deg, rgba(21, 18, 11, 0.76), rgba(16, 16, 16, 0.94)),
        radial-gradient(circle at 80% 20%, rgba(247, 210, 122, 0.06), transparent 32%);
    border-top: 1px solid rgba(247, 210, 122, 0.08);
    border-bottom: 1px solid rgba(247, 210, 122, 0.08);
}

.eyebrow,
.section-kicker,
.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--gold-deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
    box-shadow: 0 0 8px rgba(247, 210, 122, 0.5);
}

.section-title {
    margin-bottom: 18px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading--left {
    margin-inline: 0;
    text-align: left;
}

.section-heading p {
    margin-bottom: 0;
}

.page-hero {
    position: relative;
    isolation: isolate;
    min-height: 570px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(100deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.88) 48%, rgba(21, 18, 11, 0.82) 100%),
        radial-gradient(circle at 72% 45%, rgba(247, 210, 122, 0.13), transparent 28%);
    border-bottom: 1px solid rgba(247, 210, 122, 0.12);
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(3px);
}

.page-hero::before {
    width: 420px;
    height: 420px;
    top: -180px;
    right: -80px;
    border: 1px solid rgba(247, 210, 122, 0.13);
    box-shadow: 0 0 90px rgba(247, 210, 122, 0.09) inset;
}

.page-hero::after {
    width: 260px;
    height: 260px;
    bottom: -130px;
    left: 8%;
    border: 1px solid rgba(217, 168, 74, 0.12);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
    align-items: center;
    gap: 52px;
}

.page-hero-grid--single {
    grid-template-columns: minmax(0, 850px);
}

.page-hero-copy {
    max-width: 690px;
}

.hero-lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 28px;
    color: var(--dim);
    font-size: 13px;
}

.hero-notes span {
    position: relative;
    padding-left: 14px;
}

.hero-notes span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--gold-deep);
    box-shadow: 0 0 9px var(--gold-deep);
}

.page-hero-media,
.hero-banner,
.media-frame {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(247, 210, 122, 0.06), rgba(8, 8, 8, 0.5)),
        #101010;
    box-shadow: var(--shadow), 0 0 40px rgba(247, 210, 122, 0.06);
}

.page-hero-media {
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.content-img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    object-position: center;
}

.content-img--hero {
    max-height: 380px;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: 50px;
}

.split-layout--single {
    grid-template-columns: minmax(0, 880px);
}

.section-copy > p:last-of-type {
    margin-bottom: 24px;
}

.media-frame {
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.feature-grid,
.quick-grid,
.zone-grid,
.review-grid,
.steps-grid,
.summary-grid {
    display: grid;
    gap: 18px;
}

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

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

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

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

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

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

.card,
.zone-card,
.info-card,
.review-card,
.step-card,
.summary-card,
.quick-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.015), transparent 55%), var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.card::after,
.zone-card::after,
.info-card::after,
.review-card::after,
.step-card::after,
.summary-card::after,
.quick-card::after {
    content: "";
    position: absolute;
    inset: auto -70px -90px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 210, 122, 0.08), transparent 68%);
    pointer-events: none;
}

.info-card,
.step-card,
.summary-card,
.quick-card,
.review-card {
    padding: 24px;
}

.info-card,
.step-card,
.summary-card,
.quick-card,
.zone-card,
.review-card {
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.info-card:hover,
.step-card:hover,
.summary-card:hover,
.quick-card:hover,
.zone-card:hover,
.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 210, 122, 0.34);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.54), 0 0 24px rgba(247, 210, 122, 0.06);
}

.card-number,
.step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 30px;
    margin-bottom: 18px;
    padding: 0 10px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--gold-deep);
    background: rgba(247, 210, 122, 0.06);
    font-size: 12px;
    font-weight: 900;
}

.info-card h3,
.step-card h3,
.summary-card h3,
.quick-card h3 {
    margin-bottom: 10px;
}

.info-card p,
.step-card p,
.summary-card p,
.quick-card p {
    margin-bottom: 14px;
    font-size: 14px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 800;
}

.text-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

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

.check-list {
    display: grid;
    gap: 15px;
    margin-top: 22px;
}

.check-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 13px;
    padding: 15px 16px;
    border: 1px solid rgba(247, 210, 122, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.012);
}

.check-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #111;
    background: linear-gradient(180deg, #FFF3B0, #D9A84A);
    font-weight: 900;
    box-shadow: 0 0 18px rgba(247, 210, 122, 0.18);
}

.check-item h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.check-item p {
    margin: 0;
    font-size: 13px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.avatar-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(247, 210, 122, 0.07);
    font-family: Georgia, serif;
    font-weight: 900;
}

.review-meta strong,
.review-meta span {
    display: block;
}

.review-meta strong {
    color: var(--text);
}

.review-meta span {
    color: var(--dim);
    font-size: 12px;
}

.review-card > p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

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

.faq-item {
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--card);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
}

.faq-item summary {
    position: relative;
    padding: 19px 54px 19px 20px;
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(247, 210, 122, 0.04);
}

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

.faq-item p {
    margin: 0;
    padding: 0 20px 20px;
    font-size: 14px;
}

.section-cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
}

.about-panel {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 50px;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(120deg, rgba(247, 210, 122, 0.06), rgba(20, 20, 20, 0.92) 44%),
        var(--card);
    box-shadow: var(--shadow);
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.compliance-panel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding: 25px 28px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    background: linear-gradient(120deg, rgba(217, 168, 74, 0.11), rgba(20, 20, 20, 0.94));
    box-shadow: var(--shadow);
}

.compliance-badge {
    margin: 0;
    padding: 7px 11px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(247, 210, 122, 0.06);
    letter-spacing: 0.08em;
}

.compliance-panel h2 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.compliance-panel p {
    margin: 0;
    font-size: 13px;
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 62px 0 70px;
    background:
        linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.85) 48%, rgba(8, 8, 8, 0.55) 100%),
        radial-gradient(circle at 82% 42%, rgba(247, 210, 122, 0.16), transparent 32%);
    border-bottom: 1px solid var(--line);
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
    align-items: center;
    gap: 46px;
}

.home-hero h1 {
    max-width: 760px;
}

.home-hero .hero-banner {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.hero-banner img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
}

.brand-intro-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 40px;
    align-items: center;
    padding: 35px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(247, 210, 122, 0.06), rgba(20, 20, 20, 0.96) 48%);
    box-shadow: var(--shadow);
}

.brand-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.brand-intro-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.brand-intro-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.16);
    font-weight: 800;
}

.brand-intro-links a::after {
    content: "↗";
    color: var(--gold);
}

.brand-intro-links a:hover {
    color: var(--gold);
    border-color: var(--line-strong);
}

.summary-card {
    min-height: 170px;
}

.quick-card {
    min-height: 180px;
}

.zone-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.zone-card-media {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(247, 210, 122, 0.045), rgba(10, 10, 10, 0.32));
}

.zone-card img {
    width: 100%;
    height: 170px;
    object-fit: contain;
}

.zone-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 21px;
}

.zone-card-body h3 {
    margin-bottom: 10px;
}

.zone-card-body p {
    flex: 1;
    margin-bottom: 14px;
    font-size: 13px;
}

.notice-strip {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #111;
}

.notice-strip strong {
    color: var(--gold);
}

.notice-strip p {
    margin: 0;
    font-size: 13px;
}

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

.content-panel {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--card);
    box-shadow: var(--shadow);
}

.content-panel h3 {
    margin-bottom: 12px;
}

.content-panel p:last-child {
    margin-bottom: 0;
}

.site-footer {
    padding: 64px 0 0;
    border-top: 1px solid rgba(247, 210, 122, 0.14);
    background: #050505;
    color: var(--muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.65fr repeat(3, 0.78fr);
    gap: 42px;
}

.footer-brand p {
    max-width: 430px;
    font-size: 14px;
}

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

.footer-column h2 {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 1rem;
}

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

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

.footer-notice {
    margin-top: 45px;
    padding: 20px 22px;
    border: 1px solid rgba(247, 210, 122, 0.12);
    border-radius: 14px;
    background: #0c0c0c;
}

.footer-notice p {
    margin: 0;
    color: var(--dim);
    font-size: 12px;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(247, 210, 122, 0.09);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    gap: 20px;
    color: var(--dim);
    font-size: 12px;
}

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

@media (max-width: 1080px) {
    .header-inner {
        gap: 18px;
    }

    .nav-core {
        gap: 3px;
    }

    .nav-core a {
        padding-inline: 8px;
        font-size: 14px;
    }

    .page-hero-grid,
    .home-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
        gap: 34px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1.4fr repeat(3, 0.8fr);
        gap: 28px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-main-height: 72px;
        --channel-height: 48px;
    }

    .logo-text {
        font-size: 27px;
    }

    .nav-core a {
        padding-inline: 6px;
        font-size: 13px;
    }

    .header-register {
        min-width: 74px;
        padding-inline: 18px;
    }

    .split-layout,
    .brand-intro-panel,
    .about-panel {
        grid-template-columns: 1fr;
    }

    .page-hero-grid,
    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: auto;
    }

    .page-hero-media,
    .home-hero .hero-banner {
        min-height: 300px;
    }

    .content-img--hero,
    .hero-banner img {
        max-height: 330px;
    }

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

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

    .footer-column:last-child {
        grid-column: 2 / 4;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: center;
    }

    .footer-column:last-child h2 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    :root {
        --header-main-height: 66px;
        --channel-height: 0px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .page-shell {
        padding-top: var(--header-main-height);
    }

    .header-inner {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .header-inner > .logo-text {
        justify-self: center;
        font-size: 24px;
        letter-spacing: 1px;
    }

    .nav-core,
    .channel-nav {
        display: none;
    }

    .header-register {
        min-width: 68px;
        min-height: 40px;
        padding: 9px 15px;
        font-size: 14px;
    }

    .section-pad {
        padding: 58px 0;
    }

    .section-pad--compact {
        padding: 22px 0 56px;
    }

    .home-hero {
        padding: 52px 0 56px;
    }

    .page-hero-grid,
    .home-hero-grid {
        gap: 28px;
    }

    .page-hero-media,
    .home-hero .hero-banner,
    .media-frame {
        min-height: 240px;
        padding: 12px;
    }

    .content-img,
    .content-img--hero,
    .hero-banner img {
        max-height: 260px;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .about-panel,
    .brand-intro-panel {
        padding: 25px;
    }

    .compliance-panel,
    .notice-strip {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

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

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

    .footer-column:last-child {
        grid-column: auto;
        display: flex;
    }

    .footer-bottom-inner {
        min-height: 82px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .site-footer {
        padding-bottom: 80px;
    }

    .mobile-bottom-nav {
        position: fixed;
        inset: auto 0 0;
        z-index: 950;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        min-height: 62px;
        padding-bottom: env(safe-area-inset-bottom);
        background: rgba(8, 8, 8, 0.96);
        border-top: 1px solid rgba(247, 210, 122, 0.18);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .mobile-bottom-nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        font-size: 13px;
        font-weight: 800;
    }

    .mobile-bottom-nav a.active {
        color: var(--gold);
        background: rgba(247, 210, 122, 0.07);
        box-shadow: 0 -8px 20px rgba(247, 210, 122, 0.04) inset;
    }
}

@media (max-width: 620px) {
    h1 {
        font-size: clamp(2rem, 10vw, 3.15rem);
    }

    h2 {
        font-size: clamp(1.5rem, 7vw, 2.05rem);
    }

    .section-pad {
        padding: 48px 0;
    }

    .page-hero,
    .home-hero {
        padding-top: 44px;
    }

    .feature-grid,
    .summary-grid,
    .quick-grid,
    .zone-grid,
    .steps-grid,
    .content-columns {
        grid-template-columns: 1fr;
    }

    .page-hero-media,
    .home-hero .hero-banner,
    .media-frame {
        min-height: 200px;
        border-radius: 18px;
    }

    .content-img,
    .content-img--hero,
    .hero-banner img {
        max-height: 220px;
    }

    .hero-lead {
        font-size: 0.98rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-actions .main-btn,
    .hero-actions .ghost-btn {
        width: 100%;
    }

    .hero-notes {
        gap: 6px 12px;
        font-size: 12px;
    }

    .brand-intro-links {
        grid-template-columns: 1fr;
    }

    .about-panel,
    .brand-intro-panel,
    .content-panel {
        padding: 21px;
    }

    .info-card,
    .step-card,
    .summary-card,
    .quick-card,
    .review-card {
        padding: 21px;
    }

    .zone-card-media {
        min-height: 160px;
    }

    .zone-card img {
        height: 150px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 22px;
    }

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

@media (max-width: 430px) {
    .container {
        width: min(calc(100% - 22px), var(--container));
    }

    .header-inner {
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 7px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .header-inner > .logo-text {
        font-size: 21px;
    }

    .header-register {
        min-width: 62px;
        padding-inline: 13px;
    }

    .drawer-nav {
        grid-template-columns: 1fr 1fr;
        padding: 13px;
    }

    .drawer-nav a {
        padding-inline: 10px;
        font-size: 13px;
    }

    .hero-actions {
        grid-template-columns: 1fr;
    }

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

    .footer-brand,
    .footer-column:last-child {
        grid-column: auto;
    }
}

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