* {
    box-sizing: border-box;
}

:root {
    --primary: #8c6de6;
    --primary-dark: #7E5DDD;
    --page-bg: #DDE0F4;
    --soft-bg: #F7F7FC;
    --soft-bg-2: #EEF0FA;
    --card-bg: rgba(255,255,255,0.92);
    --text: #2E2E3A;
    --muted: #66667A;
    --border: rgba(140,109,230,0.16);
    --shadow: 0 14px 36px rgba(140,109,230,0.10);
    --footer: #4B4A6B;
    --footer-text: #F3F2FB;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    background:
        radial-gradient(circle at 10% 10%, rgba(255,255,255,0.55), transparent 28%),
        linear-gradient(135deg, #DDE0F4 0%, #EEF0FA 46%, #F7F7FC 100%);
    min-height: 100vh;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #DDE0F4;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(140,109,230,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.56);
}

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

.brand img,
.drawer-logo img,
.footer-brand img {
    display: block;
    width: 132px;
    max-height: 48px;
    object-fit: contain;
}

.desktop-header {
    justify-content: space-between;
}

.mobile-header {
    display: none;
}

.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}

.main-nav a {
    color: #554B7A;
    padding: 9px 12px;
    border-radius: 999px;
    font-size: 15px;
    white-space: nowrap;
    transition: all .22s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    background: rgba(255,255,255,0.74);
    box-shadow: inset 0 0 0 1px rgba(140,109,230,0.10);
}

.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    background: #8c6de6;
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(140,109,230,0.22);
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
    white-space: nowrap;
}

.main-btn:hover {
    background: #7E5DDD;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(140,109,230,0.30);
}

.page-main {
    min-height: 58vh;
}

.container,
.section {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    margin-top: 54px;
}

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

.eyebrow,
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 700;
}

h1, h2, h3 {
    color: #8c6de6;
    line-height: 1.28;
    margin: 0 0 14px;
}

h1 {
    font-size: clamp(32px, 5vw, 54px);
}

h2 {
    font-size: clamp(25px, 3vw, 36px);
}

h3 {
    font-size: 21px;
}

p {
    margin: 0 0 14px;
}

.text-muted {
    color: var(--muted);
}

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

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

.banner-slider {
    max-width: 1200px;
    height: clamp(190px, 34vw, 410px);
    margin: 28px auto 36px;
    border-radius: 22px;
    background: #FFFFFF;
    box-shadow: 0 18px 40px rgba(140,109,230,0.10);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.70);
}

.slider-track {
    height: 100%;
    display: flex;
    transition: transform .55s ease;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #EEF0FA 100%);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.slide-caption {
    position: absolute;
    left: 28px;
    bottom: 28px;
    max-width: 430px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(140,109,230,0.12);
    box-shadow: 0 12px 28px rgba(75,74,107,0.10);
}

.slide-caption strong {
    display: block;
    color: #8c6de6;
    font-size: 20px;
    margin-bottom: 5px;
}

.slide-caption span {
    color: var(--muted);
    font-size: 14px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(140,109,230,0.18);
    background: rgba(255,255,255,0.75);
    color: #8c6de6;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: all .22s ease;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 8px 18px rgba(140,109,230,0.18);
}

.slider-arrow.prev {
    left: 16px;
}

.slider-arrow.next {
    right: 16px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(140,109,230,0.25);
    cursor: pointer;
    transition: all .22s ease;
}

.slider-dot.active {
    width: 25px;
    border-radius: 999px;
    background: #8c6de6;
}

.quick-capsules {
    max-width: 1220px;
    margin: 0 auto 28px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.capsule {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    min-height: 94px;
    padding: 15px;
    border-radius: 18px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(140,109,230,0.16);
    box-shadow: 0 10px 24px rgba(140,109,230,0.08);
    transition: all .22s ease;
}

.capsule:hover {
    border-color: rgba(140,109,230,0.42);
    transform: translateY(-2px);
}

.capsule b,
.num {
    color: #8c6de6;
    font-size: 14px;
    flex: 0 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #EEF0FA;
    border: 1px solid var(--border);
}

.capsule strong {
    display: block;
    color: var(--text);
    margin-bottom: 3px;
}

.capsule span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.intro-strip,
.glass-panel,
.card,
.zone-card,
.info-card,
.notice-panel,
.faq-item,
.page-hero,
.contact-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(140,109,230,0.16);
    box-shadow: 0 14px 36px rgba(140,109,230,0.10);
}

.intro-strip {
    max-width: 1220px;
    margin: 30px auto;
    padding: 28px 32px;
    border-radius: 24px;
}

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

.info-card,
.card {
    border-radius: 22px;
    padding: 22px;
}

.info-card .num,
.card .num {
    margin-bottom: 14px;
}

.split-list {
    display: grid;
    gap: 26px;
}

.split-row {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 30px;
    align-items: center;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.split-row.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.media-box {
    min-height: 260px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, #FFFFFF, #EEF0FA);
    border: 1px solid rgba(140,109,230,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.content-img,
.zone-card img,
.app-section img,
.banner-slider img {
    max-width: 100%;
    height: auto;
}

.media-box img {
    width: 100%;
    max-height: 310px;
    object-fit: contain;
    display: block;
}

.service-points,
.feature-list,
.check-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 18px 0;
    list-style: none;
}

.service-points li,
.feature-list li,
.check-list li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
}

.service-points li::before,
.feature-list li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #8c6de6;
    box-shadow: 0 0 0 5px rgba(140,109,230,0.10);
}

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

.zone-card {
    border-radius: 24px;
    padding: 16px;
    overflow: hidden;
}

.zone-card .zone-img {
    height: 172px;
    border-radius: 18px;
    background: linear-gradient(145deg, #FFFFFF, #EEF0FA);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid rgba(140,109,230,0.10);
    overflow: hidden;
}

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

.zone-card.text-only {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 330px;
    background: linear-gradient(150deg, rgba(255,255,255,.96), rgba(238,240,250,.86));
}

.app-section {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 34px;
    align-items: center;
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(238,240,250,0.86));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.app-visual {
    min-height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 26px;
    background: rgba(255,255,255,0.60);
    border: 1px solid rgba(140,109,230,0.12);
    padding: 12px;
}

.app-visual img {
    max-height: 330px;
    object-fit: contain;
}

.security-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 24px;
    align-items: stretch;
}

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

.notice-panel {
    border-radius: 26px;
    padding: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(238,240,250,.84));
}

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

.faq-item {
    border-radius: 22px;
    padding: 22px;
}

.page-hero {
    max-width: 1220px;
    margin: 28px auto 0;
    padding: 44px 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 12%, rgba(140,109,230,0.18), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,0.94), rgba(238,240,250,0.86));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
    gap: 30px;
    align-items: center;
}

.page-hero.no-image {
    display: block;
}

.hero-media {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.66);
    border: 1px solid rgba(140,109,230,0.12);
    border-radius: 24px;
    padding: 14px;
}

.hero-media img {
    width: 100%;
    max-height: 330px;
    object-fit: contain;
}

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

.article-card {
    border-radius: 26px;
    padding: 28px;
}

.article-card p {
    color: #3d3d4d;
}

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

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

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

.contact-card {
    border-radius: 22px;
    padding: 24px;
}

.site-footer {
    margin-top: 72px;
    background: #4B4A6B;
    color: #F3F2FB;
}

.footer-inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 42px 20px 30px;
    display: grid;
    grid-template-columns: 1fr 1.25fr .9fr;
    gap: 30px;
}

.footer-brand img {
    filter: brightness(0) invert(1);
    opacity: .96;
    margin-bottom: 16px;
}

.footer-inner p,
.footer-inner a,
.footer-bottom {
    color: rgba(243,242,251,0.82);
}

.footer-links h3,
.footer-safe h3 {
    color: #FFFFFF;
}

.footer-links div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 18px;
}

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

.footer-bottom {
    max-width: 1220px;
    margin: 0 auto;
    padding: 18px 20px 24px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 14px;
}

.drawer-mask,
.mobile-drawer {
    display: none;
}

body.drawer-open {
    overflow: hidden;
}

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

    .mobile-header {
        display: grid;
        grid-template-columns: 48px 1fr auto;
        gap: 10px;
        padding: 10px 14px;
    }

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

    .mobile-brand img {
        width: 118px;
    }

    .mobile-register {
        min-height: 36px;
        padding: 0 14px;
        font-size: 13px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: rgba(255,255,255,0.72);
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 99px;
        background: #8c6de6;
    }

    .drawer-mask {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.36);
        opacity: 0;
        visibility: hidden;
        display: block;
        transition: all .25s ease;
    }

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

    .mobile-drawer {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: min(84vw, 320px);
        height: 100vh;
        transform: translateX(-104%);
        transition: transform .28s ease;
        background: linear-gradient(145deg, #FFFFFF, #EEF0FA);
        box-shadow: 18px 0 34px rgba(75,74,107,0.20);
        z-index: 10000;
        padding: 16px;
        overflow-y: auto;
    }

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

    .drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--border);
    }

    .drawer-logo img {
        width: 122px;
    }

    .drawer-close {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: #FFFFFF;
        color: #8c6de6;
        font-size: 26px;
        line-height: 1;
    }

    .drawer-nav {
        display: grid;
        gap: 8px;
        margin: 18px 0;
    }

    .drawer-nav a {
        padding: 12px 14px;
        border-radius: 16px;
        color: #554B7A;
        background: rgba(255,255,255,0.62);
        border: 1px solid rgba(140,109,230,0.10);
    }

    .drawer-nav a.active {
        color: #8c6de6;
        background: #FFFFFF;
        border-color: rgba(140,109,230,0.28);
    }

    .drawer-note {
        color: var(--muted);
        font-size: 13px;
        padding: 14px;
        border-radius: 16px;
        background: rgba(255,255,255,0.74);
    }

    .quick-capsules {
        grid-template-columns: repeat(8, 220px);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
    }

    .capsule {
        scroll-snap-align: start;
    }

    .info-board,
    .zone-wall,
    .mini-grid,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

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

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

@media (max-width: 760px) {
    .section {
        margin-top: 38px;
    }

    .banner-slider {
        margin: 18px 14px 24px;
        height: clamp(184px, 58vw, 238px);
        border-radius: 18px;
    }

    .slide-caption {
        left: 12px;
        bottom: 36px;
        right: 12px;
        max-width: none;
        padding: 10px 12px;
    }

    .slide-caption strong {
        font-size: 16px;
    }

    .slide-caption span {
        font-size: 12px;
    }

    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 24px;
    }

    .slider-arrow.prev {
        left: 8px;
    }

    .slider-arrow.next {
        right: 8px;
    }

    .intro-strip,
    .page-hero,
    .article-card,
    .notice-panel,
    .app-section {
        border-radius: 22px;
        padding: 22px;
    }

    .info-board,
    .zone-wall,
    .faq-grid,
    .security-cards,
    .mini-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .split-row,
    .split-row.reverse,
    .app-section {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px;
        border-radius: 22px;
    }

    .media-box,
    .hero-media,
    .app-visual {
        min-height: 190px;
    }

    .media-box img,
    .hero-media img,
    .app-visual img {
        max-height: 240px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
    }

    h1 {
        font-size: 32px;
    }
}
