* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #151A23;
    color: #E8ECF5;
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
    line-height: 1.75;
}

body.drawer-open {
    overflow: hidden;
}

a {
    color: #F1DCA3;
    text-decoration: none;
}

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

p {
    margin: 0;
    color: #B8C0D3;
}

h1,
h2,
h3,
.section-title,
.desktop-nav a {
    color: #F1DCA3;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #151A23;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-logo img {
    width: 132px;
    max-height: 48px;
    object-fit: contain;
}

.desktop-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.desktop-nav a,
.nav-more > button {
    color: #F1DCA3;
    padding: 11px 13px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.desktop-nav a.active,
.nav-more.active > button,
.desktop-nav a:hover,
.nav-more:hover > button {
    background: linear-gradient(180deg, rgba(241,220,163,0.10), rgba(241,220,163,0.02));
    box-shadow: inset 0 -2px 0 #F1DCA3, 0 10px 22px rgba(241,220,163,0.16);
}

.nav-more {
    position: relative;
}

.nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    padding: 10px;
    border-radius: 16px;
    background: #1B2130;
    border: 1px solid rgba(241,220,163,0.14);
    box-shadow: 0 16px 36px rgba(0,0,0,0.34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.nav-more:hover .nav-panel,
.nav-more:focus-within .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-panel a {
    display: block;
    margin: 2px 0;
    padding: 10px 12px;
}

.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F1DCA3;
    color: #151A23;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(241,220,163,0.18);
    padding: 10px 22px;
    font-weight: 800;
    border: 0;
    transition: 0.22s ease;
    white-space: nowrap;
}

.main-btn:hover {
    background: #E3C98F;
    transform: translateY(-1px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    color: #F1DCA3;
}

.text-link::after {
    content: "›";
    font-size: 20px;
    line-height: 1;
}

.mobile-top {
    display: none;
}

.menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(241,220,163,0.24);
    border-radius: 12px;
    background: #1B2130;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #F1DCA3;
    border-radius: 4px;
}

.mobile-logo img {
    width: 112px;
    max-height: 44px;
    object-fit: contain;
}

.top-btn {
    padding: 8px 14px;
    font-size: 13px;
}

.drawer-mask {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.58);
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    transition: 0.22s ease;
}

.drawer-mask.show {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 84vw;
    max-width: 320px;
    height: 100vh;
    background: #1B2130;
    z-index: 10000;
    transform: translateX(-105%);
    transition: 0.26s ease;
    box-shadow: 18px 0 36px rgba(0,0,0,0.34);
    overflow-y: auto;
}

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

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border-bottom: 1px solid rgba(241,220,163,0.14);
}

.drawer-head img {
    width: 118px;
    max-height: 44px;
    object-fit: contain;
}

.drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(241,220,163,0.22);
    background: #202738;
    color: #F1DCA3;
    font-size: 24px;
    line-height: 1;
}

.drawer-nav {
    padding: 10px 14px 28px;
}

.drawer-nav a {
    display: block;
    color: #F1DCA3;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 700;
    margin: 4px 0;
}

.drawer-nav a.active,
.drawer-nav a:hover {
    background: linear-gradient(180deg, rgba(241,220,163,0.10), rgba(241,220,163,0.02));
    box-shadow: inset 0 -2px 0 #F1DCA3, 0 10px 22px rgba(241,220,163,0.16);
}

.page-wrap {
    min-height: 62vh;
}

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

.hero-section {
    max-width: 1200px;
    margin: 28px auto 36px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 16% 18%, rgba(241,220,163,0.12) 0%, rgba(241,220,163,0) 32%),
        linear-gradient(135deg, #1B2130 0%, #202738 56%, #151A23 100%);
    box-shadow: 0 18px 40px rgba(0,0,0,0.30);
    overflow: hidden;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 28px;
    padding: 54px;
}

.hero-eyebrow,
.card-tag,
.step-num,
.badge {
    color: #F1DCA3;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.hero-section h1 {
    font-size: clamp(34px, 4.8vw, 62px);
    line-height: 1.12;
    margin: 12px 0 18px;
}

.hero-section p {
    font-size: 17px;
    color: #E8ECF5;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.hero-media,
.image-box {
    background: #202738;
    border: 1px solid rgba(241,220,163,0.14);
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.25);
}

.hero-media img,
.content-img,
.zone-card img,
.app-section img,
.image-box img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    border-radius: 16px;
}

.section-block {
    padding: 34px 0;
}

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

.section-head h2,
.inner-hero h1 {
    margin: 0;
    color: #F1DCA3;
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.18;
}

.section-head p {
    max-width: 760px;
}

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

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

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

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

.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.notice-box {
    background: #1B2130;
    border: 1px solid rgba(241,220,163,0.14);
    box-shadow: 0 14px 36px rgba(0,0,0,0.25);
    border-radius: 20px;
}

.card,
.info-card,
.review-card,
.faq-item,
.notice-box {
    padding: 24px;
}

.card h3,
.zone-card h3,
.info-card h3,
.review-card h3,
.faq-item h3,
.notice-box h3 {
    color: #F1DCA3;
    margin: 8px 0 10px;
    font-size: 20px;
}

.card .text-link,
.info-card .text-link,
.zone-card .text-link {
    margin-top: 14px;
}

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

.capsule {
    border-radius: 999px;
    border: 1px solid rgba(241,220,163,0.16);
    background: #202738;
    padding: 14px 16px;
}

.capsule strong {
    display: block;
    color: #F1DCA3;
    font-size: 15px;
}

.capsule span {
    display: block;
    color: #B8C0D3;
    font-size: 13px;
    line-height: 1.55;
}

.story-row {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
}

.story-row.reverse {
    grid-template-columns: 1.08fr 0.92fr;
}

.story-text {
    background: #1B2130;
    border: 1px solid rgba(241,220,163,0.14);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.25);
}

.story-text h2 {
    color: #F1DCA3;
    margin: 0 0 12px;
    font-size: 28px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 8px;
}

.service-list li {
    color: #E8ECF5;
    padding-left: 24px;
    position: relative;
}

.service-list li::before {
    content: "◆";
    color: #F1DCA3;
    position: absolute;
    left: 0;
    top: 0;
}

.zone-card {
    overflow: hidden;
}

.zone-card .zone-body {
    padding: 22px;
}

.zone-card img {
    border-radius: 0;
    max-height: 240px;
    padding: 12px;
    background: #202738;
}

.split-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.highlight-panel {
    border-radius: 22px;
    padding: 28px;
    background:
        radial-gradient(circle at 88% 12%, rgba(241,220,163,0.12), rgba(241,220,163,0) 30%),
        #202738;
    border: 1px solid rgba(241,220,163,0.14);
}

.steps {
    counter-reset: step;
}

.step-card {
    position: relative;
    padding-left: 54px;
}

.step-card::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 20px;
    top: 24px;
    color: #F1DCA3;
    font-weight: 900;
}

.review-card p {
    color: #E8ECF5;
}

.review-card .user {
    color: #F1DCA3;
    font-weight: 800;
    margin-top: 12px;
}

.inner-hero {
    width: min(1200px, calc(100% - 40px));
    margin: 28px auto 22px;
    padding: 44px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 12% 18%, rgba(241,220,163,0.12), rgba(241,220,163,0) 30%),
        linear-gradient(135deg, #1B2130, #202738 58%, #151A23);
    border: 1px solid rgba(241,220,163,0.14);
    box-shadow: 0 18px 40px rgba(0,0,0,0.30);
}

.inner-hero p {
    max-width: 850px;
    color: #E8ECF5;
    margin-top: 14px;
}

.inner-layout {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 24px;
    align-items: start;
}

.article-panel {
    background: #1B2130;
    border: 1px solid rgba(241,220,163,0.14);
    box-shadow: 0 14px 36px rgba(0,0,0,0.25);
    border-radius: 22px;
    padding: 30px;
}

.article-panel h2 {
    color: #F1DCA3;
    margin: 0 0 12px;
}

.article-panel p + p {
    margin-top: 14px;
}

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

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

.notice-box {
    background: #202738;
}

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

.muted {
    color: #8F98AD;
}

.site-footer {
    margin-top: 42px;
    background: #0E121A;
    color: #D5DBEA;
}

.footer-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 44px 0 28px;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 36px;
}

.footer-brand img {
    width: 138px;
    max-height: 50px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-brand p,
.footer-bottom p {
    color: #D5DBEA;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-links h3 {
    color: #F1DCA3;
    margin: 0 0 12px;
}

.footer-links a {
    display: block;
    color: #D5DBEA;
    margin: 7px 0;
}

.footer-links a:hover {
    color: #F1DCA3;
}

.footer-bottom {
    border-top: 1px solid rgba(241,220,163,0.10);
    padding: 18px 20px 24px;
    text-align: center;
}

.footer-bottom p + p {
    margin-top: 4px;
}

@media (max-width: 1100px) {
    .desktop-nav a,
    .nav-more > button {
        padding: 10px 9px;
        font-size: 14px;
    }

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

@media (max-width: 860px) {
    .header-inner {
        display: none;
    }

    .mobile-top {
        display: grid;
        grid-template-columns: 54px 1fr auto;
        align-items: center;
        padding: 10px 14px;
        gap: 10px;
        background: #151A23;
    }

    .mobile-logo {
        justify-self: center;
    }

    .hero-section,
    .inner-hero {
        width: calc(100% - 28px);
        margin-top: 18px;
        border-radius: 18px;
    }

    .hero-grid,
    .inner-layout,
    .split-panel,
    .story-row,
    .story-row.reverse,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding: 30px 22px;
    }

    .inner-hero {
        padding: 30px 22px;
    }

    .section-head {
        display: block;
    }

    .grid.three,
    .grid.two,
    .grid.four,
    .capsule-grid {
        grid-template-columns: 1fr;
    }

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

    .story-text,
    .article-panel,
    .card,
    .info-card,
    .review-card,
    .faq-item,
    .notice-box {
        padding: 22px;
    }

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

@media (max-width: 420px) {
    .top-btn {
        padding: 7px 11px;
        font-size: 12px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}
