* {
    box-sizing: border-box;
}

:root {
    --bg: #151A23;
    --nav-bg: #151A23;
    --panel: #1B2130;
    --panel-2: #202738;
    --panel-3: #252D40;
    --gold: #F1DCA3;
    --gold-hover: #E3C98F;
    --text: #E8ECF5;
    --muted: #B8C0D3;
    --soft: #8F98AD;
    --footer: #0E121A;
    --border: rgba(241,220,163,0.14);
    --shadow: 0 14px 36px rgba(0,0,0,0.28);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    background: #151A23;
    color: #E8ECF5;
    line-height: 1.75;
    overflow-x: hidden;
}

body.drawer-open {
    overflow: hidden;
}

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

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

.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);
    border-bottom: 1px solid rgba(241,220,163,0.10);
}

.topbar {
    max-width: 1240px;
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0 22px;
}

.brand-logo img,
.drawer-logo img,
.footer-logo img {
    width: 118px;
    height: auto;
}

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

.desktop-nav > a,
.nav-drop > button {
    color: #F1DCA3;
    padding: 19px 12px;
    border-radius: 14px;
    font-size: 15px;
    white-space: nowrap;
    transition: 0.2s ease;
}

.nav-drop > button {
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
}

.desktop-nav > a:hover,
.nav-drop:hover > button,
.desktop-nav > a.is-active,
.nav-drop.is-active > 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-drop {
    position: relative;
}

.drop-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 176px;
    padding: 10px;
    border-radius: 16px;
    background: #1B2130;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

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

.drop-menu a {
    display: block;
    padding: 10px 12px;
    color: #F1DCA3;
    border-radius: 11px;
    font-size: 14px;
}

.drop-menu a:hover,
.drop-menu a.is-active {
    background: rgba(241,220,163,0.10);
}

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

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

.header-btn {
    min-width: 104px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(241,220,163,0.20);
    background: #1B2130;
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: #F1DCA3;
    margin: 5px 0;
    border-radius: 3px;
}

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

.mobile-mask.is-show {
    opacity: 1;
}

.mobile-drawer {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 84vw;
    max-width: 320px;
    background: #1B2130;
    border-right: 1px solid var(--border);
    transform: translateX(-105%);
    transition: transform 0.26s ease;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: 16px 0 40px rgba(0,0,0,0.35);
}

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

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

.drawer-close {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(241,220,163,0.18);
    background: #202738;
    color: #F1DCA3;
    border-radius: 12px;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.drawer-nav {
    padding: 14px;
    display: grid;
    gap: 7px;
}

.drawer-nav a {
    color: #F1DCA3;
    background: #202738;
    border: 1px solid rgba(241,220,163,0.10);
    padding: 12px 14px;
    border-radius: 14px;
}

.drawer-nav a.is-active {
    box-shadow: inset 3px 0 0 #F1DCA3;
    background: rgba(241,220,163,0.10);
}

.site-main {
    min-height: 60vh;
    padding: 1px 18px 0;
}

.container {
    max-width: 1200px;
    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.08fr 0.92fr;
    gap: 28px;
    align-items: center;
    padding: 48px;
}

.hero-copy .eyebrow,
.section-eyebrow,
.gold-label {
    color: #F1DCA3;
    letter-spacing: 0.08em;
    font-size: 13px;
    font-weight: 700;
}

.hero-copy h1,
.page-hero h1 {
    margin: 12px 0 18px;
    color: #F1DCA3;
    font-size: clamp(32px, 4.8vw, 58px);
    line-height: 1.15;
}

.hero-copy p,
.page-hero p,
.section-lead,
.card p,
.zone-card p,
.info-card p,
.review-card p,
.faq-item p,
.notice-panel p,
.footer-brand p {
    color: #B8C0D3;
}

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

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

.text-link::after {
    content: "›";
    font-size: 18px;
}

.hero-visual,
.page-visual,
.image-frame {
    background: #202738;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 14px;
}

.hero-section img,
.content-img,
.zone-card img,
.app-section img,
.page-hero img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-visual img,
.page-visual img,
.image-frame img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    border-radius: 16px;
}

.section {
    max-width: 1200px;
    margin: 0 auto 34px;
}

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

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

.section-title {
    margin: 6px 0 0;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.25;
}

.section-lead {
    max-width: 850px;
    margin: 8px 0 0;
}

.welcome-panel,
.notice-panel,
.summary-panel,
.app-service-panel {
    background: linear-gradient(135deg, #1B2130, #202738);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 28px;
}

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

.pill-card,
.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.step-item,
.service-item {
    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;
}

.pill-card {
    padding: 18px;
    min-height: 168px;
}

.pill-card .num,
.step-num {
    color: #F1DCA3;
    font-weight: 800;
    display: inline-flex;
    margin-bottom: 6px;
}

.pill-card h3,
.card h3,
.zone-card h3,
.info-card h3,
.review-card h3,
.faq-item h3,
.step-item h3,
.service-item h3 {
    margin: 0 0 8px;
    color: #F1DCA3;
}

.pill-card p {
    margin: 0 0 10px;
    color: #B8C0D3;
    font-size: 14px;
}

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

.card,
.info-card,
.review-card,
.service-item {
    padding: 22px;
}

.info-card ul,
.service-item ul,
.notice-panel ul {
    margin: 12px 0 0;
    padding-left: 19px;
    color: #B8C0D3;
}

.info-card li,
.service-item li,
.notice-panel li {
    margin: 6px 0;
}

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

.feature-list .card {
    min-height: 190px;
}

.story-row {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 22px;
    background: #1B2130;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
}

.story-row.reverse {
    grid-template-columns: 1.05fr 0.95fr;
}

.story-copy {
    padding: 12px 10px;
}

.story-copy h3 {
    font-size: clamp(22px, 2.2vw, 30px);
    margin: 0 0 12px;
    color: #F1DCA3;
}

.point-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 16px 0;
    list-style: none;
}

.point-list li {
    color: #E8ECF5;
    border: 1px solid rgba(241,220,163,0.16);
    background: #202738;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 14px;
}

.zone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.zone-card {
    overflow: hidden;
}

.zone-card .zone-img {
    padding: 12px 12px 0;
    background: #202738;
}

.zone-card img {
    width: 100%;
    max-height: 174px;
    object-fit: contain;
    border-radius: 16px;
}

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

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.review-card .role {
    color: #F1DCA3;
    font-weight: 700;
    margin-bottom: 6px;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.faq-item {
    padding: 22px;
}

.page-hero {
    max-width: 1200px;
    margin: 28px auto 34px;
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 24px;
    align-items: center;
    background:
        radial-gradient(circle at 85% 20%, rgba(241,220,163,0.10), rgba(241,220,163,0) 28%),
        linear-gradient(135deg, #1B2130 0%, #202738 62%, #151A23 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 34px;
}

.page-hero h1 {
    font-size: clamp(30px, 4vw, 48px);
}

.page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.page-meta span {
    color: #F1DCA3;
    background: rgba(241,220,163,0.08);
    border: 1px solid rgba(241,220,163,0.16);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 14px;
}

.page-section {
    max-width: 1200px;
    margin: 0 auto 34px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

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

.step-item {
    padding: 20px;
}

.bottom-reminder {
    max-width: 1200px;
    margin: 0 auto 44px;
    padding: 24px;
    border-radius: 22px;
    background: #202738;
    border: 1px solid var(--border);
    color: #B8C0D3;
}

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

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 34px;
}

.footer-brand p {
    margin-top: 14px;
}

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

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

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

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

.footer-note {
    max-width: 1200px;
    margin: 26px auto 0;
    border-top: 1px solid rgba(241,220,163,0.12);
    padding-top: 18px;
    color: #B8C0D3;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 0;
    }
    .desktop-nav > a,
    .nav-drop > button {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 14px;
    }
    .pill-grid,
    .zone-grid,
    .feature-list,
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .topbar {
        min-height: 64px;
        display: grid;
        grid-template-columns: 66px 1fr 100px;
        gap: 8px;
        padding: 0 12px;
    }
    .menu-toggle {
        display: block;
    }
    .desktop-nav {
        display: none;
    }
    .brand-logo {
        justify-self: center;
    }
    .brand-logo img {
        width: 106px;
    }
    .header-btn {
        justify-self: end;
        min-width: 92px;
        padding: 0 13px;
        min-height: 38px;
        font-size: 14px;
    }
    .site-main {
        padding-left: 12px;
        padding-right: 12px;
    }
    .hero-grid,
    .page-hero,
    .story-row,
    .story-row.reverse,
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .story-row.reverse .image-frame {
        order: 2;
    }
    .story-row.reverse .story-copy {
        order: 1;
    }
    .hero-grid,
    .page-hero {
        padding: 24px;
    }
    .card-grid,
    .review-grid,
    .faq-list,
    .two-col {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .hero-section,
    .page-hero,
    .welcome-panel,
    .notice-panel,
    .summary-panel,
    .app-service-panel {
        border-radius: 18px;
    }
    .hero-grid,
    .page-hero {
        padding: 20px;
    }
    .pill-grid,
    .zone-grid,
    .feature-list,
    .steps {
        grid-template-columns: 1fr;
    }
    .section-head {
        display: block;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }
    .main-btn {
        min-height: 40px;
    }
}
