* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: #FFF8F0;
    color: #2A1F1A;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
}
body.no-scroll {
    overflow: hidden;
}
a {
    color: #FF6B35;
    text-decoration: none;
}
a:hover {
    color: #B8336A;
}
img {
    max-width: 100%;
    height: auto;
}
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(38,20,12,0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 26px rgba(97,45,16,0.16);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 24px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF3E8;
    font-weight: 800;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}
.site-logo img {
    max-height: 44px;
    display: block;
}
.site-logo strong {
    color: #FFFFFF;
    font-size: 24px;
}
.nav-core {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-core a {
    color: #FFF3E8;
    text-decoration: none;
    border-radius: 999px;
    padding: 8px 12px;
    white-space: nowrap;
    font-size: 15px;
}
.nav-core a:hover,
.nav-core a.active {
    color: #FFFFFF;
    background: rgba(0,229,176,0.16);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.main-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap;
}
.main-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%);
    color: #FFFFFF;
    box-shadow: 0 14px 32px rgba(255,107,53,0.22);
}
.main-btn:hover {
    color: #FFFFFF;
    transform: translateY(-1px);
}
.ghost-btn {
    color: #FF6B35;
    border: 1px solid rgba(255,107,53,0.22);
    background: rgba(255,255,255,0.72);
}
.drawer-toggle,
.mobile-menu-trigger,
.drawer-close {
    border: 0;
    cursor: pointer;
    background: transparent;
}
.drawer-toggle,
.mobile-menu-trigger {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255,243,232,0.18);
    background: rgba(255,255,255,0.08);
}
.drawer-toggle span,
.mobile-menu-trigger span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #FFF3E8;
}
.mobile-menu-trigger {
    display: none;
}
.drawer-mask {
    position: fixed;
    inset: 0;
    background: rgba(26,15,10,0.48);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
}
.drawer-mask.open {
    opacity: 1;
    pointer-events: auto;
}
.site-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 88vw);
    height: 100vh;
    z-index: 10001;
    background: #FFFFFF;
    box-shadow: -24px 0 48px rgba(36,19,12,0.20);
    transform: translateX(105%);
    transition: transform .26s ease;
    padding: 22px;
    overflow-y: auto;
}
.site-drawer.open {
    transform: translateX(0);
}
.drawer-head,
.drawer-brand {
    display: flex;
    align-items: center;
}
.drawer-head {
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.drawer-brand {
    gap: 10px;
    font-weight: 800;
    color: #24130C;
}
.drawer-brand img {
    width: 42px;
    height: auto;
}
.drawer-close {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 28px;
    line-height: 1;
    color: #2A1F1A;
    background: #FFF1C7;
}
.drawer-links {
    display: grid;
    gap: 10px;
}
.drawer-links a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 16px;
    color: #2A1F1A;
    background: #FFF8F0;
    border: 1px solid rgba(255,107,53,0.12);
}
.drawer-links a:hover,
.drawer-links a.active {
    color: #24130C;
    background: #EFFFFA;
    border-color: rgba(0,229,176,0.32);
}
.site-main {
    min-height: 60vh;
}
.container,
.hero-inner,
.footer-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}
.hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 58px;
    background:
        radial-gradient(circle at 12% 18%, rgba(0,229,176,0.20), transparent 30%),
        radial-gradient(circle at 85% 24%, rgba(255,209,102,0.32), transparent 28%),
        linear-gradient(135deg, #FFF8F0 0%, #E9FFF8 54%, #FFF1C7 100%);
}
.hero:before,
.hero:after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    opacity: .8;
}
.hero:before {
    width: 180px;
    height: 180px;
    background: rgba(255,107,53,0.12);
    left: -50px;
    bottom: 40px;
}
.hero:after {
    width: 220px;
    height: 220px;
    background: rgba(0,229,176,0.16);
    right: -60px;
    top: 100px;
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: center;
    gap: 42px;
}
.hero-copy h1,
.page-hero h1 {
    margin: 12px 0 16px;
    color: #24130C;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}
.hero-copy h2 {
    margin: 0 0 18px;
    color: #2B1A3F;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.25;
}
.hero-copy p,
.page-hero p,
.section-head p,
.card p,
.zone-card p,
.info-card p,
.review-card p,
.page-content p {
    color: #75645A;
}
.hero-copy p {
    max-width: 700px;
    font-size: 17px;
}
.section-kicker,
.badge,
.label,
.tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 6px;
    min-height: 28px;
    border-radius: 999px;
    padding: 4px 12px;
    background: rgba(255,209,102,0.22);
    color: #B8336A;
    font-weight: 800;
    font-size: 13px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 22px;
}
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hero-tags span {
    border: 1px solid rgba(255,107,53,0.22);
    background: rgba(255,255,255,0.68);
    border-radius: 999px;
    padding: 8px 14px;
    color: #2A1F1A;
    font-weight: 700;
}
.hero-visual {
    position: relative;
}
.hero-visual img,
.content-img,
.zone-card img,
.app-section img,
.page-visual img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.hero-card {
    position: relative;
    padding: 18px;
    border-radius: 32px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(255,107,53,0.18);
    box-shadow: 0 20px 46px rgba(97,45,16,0.14);
}
.hero-card img {
    width: 100%;
    border-radius: 24px;
    display: block;
}
.float-card {
    position: absolute;
    left: -20px;
    bottom: 24px;
    width: min(250px, 64%);
    border-radius: 22px;
    padding: 14px 16px;
    background: #24130C;
    color: #FFF3E8;
    box-shadow: 0 20px 46px rgba(97,45,16,0.14);
}
.float-card strong {
    display: block;
    color: #FFD166;
    margin-bottom: 4px;
}
.float-card span {
    font-size: 13px;
    color: #FFF3E8;
}
.section {
    padding: 64px 0;
}
.section.alt {
    background: linear-gradient(180deg, rgba(233,255,248,0.72), rgba(255,248,240,0.12));
}
.section.dark {
    background:
        radial-gradient(circle at top left, rgba(0,229,176,0.16), transparent 34%),
        #24130C;
    color: #FFF3E8;
}
.section.dark h2,
.section.dark h3 {
    color: #FFFFFF;
}
.section.dark p,
.section.dark li {
    color: rgba(255,243,232,0.82);
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}
.section-title {
    margin: 10px 0 0;
    color: #24130C;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.18;
    letter-spacing: -0.02em;
}
.section-head p {
    max-width: 560px;
    margin: 0;
}
.grid-4,
.grid-3,
.grid-2,
.pill-grid,
.review-grid,
.faq-grid {
    display: grid;
    gap: 20px;
}
.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pill-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.notice-card {
    background: #FFFFFF;
    border: 1px solid rgba(255,107,53,0.18);
    box-shadow: 0 20px 46px rgba(97,45,16,0.14);
    border-radius: 22px;
}
.card,
.info-card,
.review-card,
.faq-item,
.notice-card {
    padding: 24px;
}
.card h3,
.zone-card h3,
.info-card h3,
.review-card h3,
.faq-item h3 {
    margin: 8px 0 10px;
    color: #24130C;
    font-size: 21px;
}
.card p,
.info-card p,
.review-card p,
.faq-item p {
    margin: 0;
}
.card ul,
.page-panel ul,
.notice-card ul {
    padding-left: 18px;
    margin: 12px 0 0;
    color: #75645A;
}
.card li,
.page-panel li,
.notice-card li {
    margin: 6px 0;
}
.pill-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 138px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(145deg, #FFFFFF, #EFFFFA);
    border: 1px solid rgba(0,229,176,0.18);
}
.pill-card strong {
    color: #24130C;
    font-size: 18px;
}
.pill-card span {
    color: #75645A;
    font-size: 14px;
}
.pill-card a,
.text-link {
    font-weight: 800;
    color: #FF6B35;
}
.feature-row {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 34px;
}
.feature-row.reverse {
    grid-template-columns: 1.1fr .9fr;
}
.feature-media {
    border-radius: 30px;
    padding: 16px;
    background: #FFFFFF;
    box-shadow: 0 20px 46px rgba(97,45,16,0.14);
    border: 1px solid rgba(255,107,53,0.18);
}
.feature-media img {
    display: block;
    border-radius: 22px;
}
.feature-copy h2 {
    color: #24130C;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.18;
    margin: 10px 0 14px;
}
.feature-copy p {
    color: #75645A;
    margin: 0 0 16px;
}
.zone-card {
    overflow: hidden;
}
.zone-card img {
    width: 100%;
    display: block;
    border-radius: 22px 22px 0 0;
}
.zone-body {
    padding: 24px;
}
.zone-points {
    display: grid;
    gap: 10px;
    margin: 14px 0;
}
.zone-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    padding: 6px 12px;
    background: #FFF1C7;
    color: #2A1F1A;
    font-weight: 700;
    width: fit-content;
}
.safety-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.safety-card {
    display: grid;
    grid-template-columns: 150px minmax(0,1fr);
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid rgba(255,107,53,0.18);
}
.safety-card img {
    width: 150px;
    height: auto;
    object-fit: contain;
}
.page-hero {
    padding: 64px 0 42px;
    background:
        radial-gradient(circle at 14% 18%, rgba(0,229,176,0.18), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(255,209,102,0.26), transparent 24%),
        linear-gradient(135deg, #FFF8F0, #EFFFFA);
}
.page-hero-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
    align-items: center;
    gap: 36px;
}
.page-hero h1 {
    font-size: clamp(34px, 5vw, 62px);
}
.page-visual {
    padding: 14px;
    border-radius: 30px;
    background: #FFFFFF;
    border: 1px solid rgba(255,107,53,0.18);
    box-shadow: 0 20px 46px rgba(97,45,16,0.14);
}
.page-visual img {
    border-radius: 22px;
    display: block;
}
.page-content {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 60px 0;
}
.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 26px;
    align-items: start;
}
.page-panel {
    background: #FFFFFF;
    border: 1px solid rgba(255,107,53,0.18);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 20px 46px rgba(97,45,16,0.14);
}
.page-panel + .page-panel {
    margin-top: 22px;
}
.page-panel h2 {
    color: #24130C;
    font-size: 28px;
    margin: 0 0 14px;
}
.page-panel h3 {
    color: #24130C;
    margin: 12px 0 8px;
}
.side-stack {
    display: grid;
    gap: 18px;
}
.side-card {
    padding: 22px;
    border-radius: 24px;
    background: #24130C;
    color: #FFF3E8;
    box-shadow: 0 20px 46px rgba(97,45,16,0.14);
}
.side-card h3 {
    color: #FFD166;
    margin: 0 0 10px;
}
.side-card p,
.side-card li {
    color: rgba(255,243,232,0.84);
}
.side-card ul {
    margin: 10px 0 0;
    padding-left: 18px;
}
.faq-list {
    display: grid;
    gap: 18px;
}
.faq-list article {
    padding: 24px;
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid rgba(255,107,53,0.18);
    box-shadow: 0 20px 46px rgba(97,45,16,0.14);
}
.faq-list h2 {
    color: #24130C;
    font-size: 22px;
    margin: 0 0 8px;
}
.faq-list p {
    margin: 0;
    color: #75645A;
}
.site-footer {
    background: #1A0F0A;
    color: #FFF3E8;
    padding: 42px 0;
}
.footer-inner {
    display: grid;
    gap: 24px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-brand img {
    width: 54px;
}
.footer-brand strong {
    display: block;
    font-size: 24px;
    color: #FFFFFF;
}
.footer-brand p,
.footer-note {
    color: rgba(255,243,232,0.78);
    margin: 4px 0 0;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-links a {
    color: #FFF3E8;
    border: 1px solid rgba(255,243,232,0.16);
    border-radius: 999px;
    padding: 8px 14px;
}
.footer-links a:hover {
    background: rgba(0,229,176,0.14);
    color: #FFFFFF;
}
.bottom-quick {
    display: none;
}
@media (max-width: 1100px) {
    .nav-core {
        gap: 6px;
    }
    .nav-core a {
        padding: 7px 9px;
        font-size: 14px;
    }
    .grid-4,
    .pill-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid-3,
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 820px) {
    body {
        padding-bottom: 70px;
    }
    .header-inner {
        min-height: 66px;
        padding: 0 14px;
        gap: 10px;
    }
    .mobile-menu-trigger {
        display: inline-flex;
        order: 1;
    }
    .site-logo {
        order: 2;
        flex: 1;
        justify-content: center;
    }
    .site-logo img {
        max-height: 38px;
    }
    .site-logo strong {
        font-size: 22px;
    }
    .nav-core {
        display: none;
    }
    .header-actions {
        order: 3;
    }
    .drawer-toggle {
        display: none;
    }
    .nav-cta {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 13px;
    }
    .hero {
        padding: 46px 0 42px;
    }
    .hero-inner,
    .page-hero-inner,
    .feature-row,
    .feature-row.reverse,
    .page-layout,
    .safety-band {
        grid-template-columns: 1fr;
    }
    .hero-card {
        padding: 12px;
    }
    .float-card {
        position: static;
        width: 100%;
        margin-top: 12px;
    }
    .section {
        padding: 44px 0;
    }
    .section-head {
        display: block;
    }
    .section-head p {
        margin-top: 10px;
    }
    .grid-4,
    .grid-3,
    .grid-2,
    .pill-grid,
    .review-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .safety-card {
        grid-template-columns: 90px minmax(0,1fr);
    }
    .safety-card img {
        width: 90px;
    }
    .page-content {
        padding: 42px 0;
    }
    .page-panel {
        padding: 22px;
    }
    .bottom-quick {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 9998;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        padding: 8px;
        border-radius: 22px;
        background: rgba(38,20,12,0.94);
        backdrop-filter: blur(12px);
        box-shadow: 0 12px 34px rgba(36,19,12,0.24);
    }
    .bottom-quick a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        color: #FFF3E8;
        border-radius: 16px;
        font-weight: 700;
        font-size: 13px;
    }
    .bottom-quick a:hover {
        background: rgba(0,229,176,0.16);
        color: #FFFFFF;
    }
}
@media (max-width: 520px) {
    .container,
    .hero-inner,
    .footer-inner,
    .page-hero-inner,
    .page-content {
        width: min(100% - 28px, 1180px);
    }
    .hero-copy p {
        font-size: 15px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .main-btn,
    .ghost-btn {
        width: 100%;
    }
    .nav-cta {
        width: auto;
    }
    .page-panel h2 {
        font-size: 24px;
    }
}
