:root {
    --bg: #FFF8F0;
    --nav: rgba(38,20,12,0.94);
    --title: #24130C;
    --brand: #FF6B35;
    --deep: #2B1A3F;
    --neon: #00E5B0;
    --gold: #FFD166;
    --rose: #B8336A;
    --pale-blue: #E9FFF8;
    --pale-gold: #FFF1C7;
    --highlight: #FF7A00;
    --text: #2A1F1A;
    --muted: #75645A;
    --soft: #A9978C;
    --card: #FFFFFF;
    --line: rgba(255,107,53,0.18);
    --shadow: 0 20px 46px rgba(97,45,16,0.14);
    --grad: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: radial-gradient(circle at 10% 8%, rgba(255,209,102,0.28), transparent 25%), radial-gradient(circle at 90% 18%, rgba(0,229,176,0.22), transparent 24%), var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
    padding-bottom: 0;
}
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--rose); }
img { max-width: 100%; height: auto; display: block; }
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: var(--nav);
    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;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.site-logo, .drawer-brand, .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFF3E8;
    font-weight: 800;
    letter-spacing: .02em;
    white-space: nowrap;
}
.site-logo img, .drawer-brand img, .footer-logo img {
    max-height: 44px;
    width: auto;
    object-fit: contain;
}
.nav-core { display: flex; align-items: center; gap: 10px; min-width: 0; }
.nav-core a {
    color: #FFF3E8;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 15px;
    white-space: nowrap;
}
.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; }
.main-btn, .ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 20px;
    border-radius: 999px;
    font-weight: 800;
    border: 0;
    transition: transform .2s ease, box-shadow .2s ease;
}
.main-btn {
    background: var(--grad);
    color: #FFFFFF;
    box-shadow: 0 14px 32px rgba(255,107,53,0.22);
}
.main-btn:hover { color: #FFFFFF; transform: translateY(-2px); box-shadow: 0 18px 38px rgba(255,107,53,0.27); }
.ghost-btn { color: var(--brand); background: #fff; border: 1px solid var(--line); }
.menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,243,232,.24);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span { width: 18px; height: 2px; border-radius: 9px; background: #FFF3E8; display: block; }
.menu-left { display: none; }
.drawer-mask {
    position: fixed;
    inset: 0;
    background: rgba(26,15,10,0.45);
    z-index: 10000;
}
.drawer {
    position: fixed;
    right: 0;
    top: 0;
    width: min(390px, 88vw);
    height: 100vh;
    background: #fff;
    z-index: 10001;
    transform: translateX(105%);
    transition: transform .25s ease;
    box-shadow: -20px 0 50px rgba(36,19,12,.22);
    padding: 20px;
    overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.drawer-brand { color: var(--title); }
.drawer-close { border: 0; background: #FFF1C7; color: var(--title); width: 40px; height: 40px; border-radius: 999px; font-size: 28px; line-height: 1; cursor: pointer; }
.drawer-nav { display: grid; gap: 10px; }
.drawer-nav a { padding: 13px 14px; border-radius: 16px; background: #FFF8F0; color: var(--title); font-weight: 700; border: 1px solid var(--line); }
body.drawer-open { overflow: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 22px; }
.page-main { padding: 36px 0 72px; }
.hero {
    position: relative;
    padding: 56px 0 58px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 22px 2vw;
    border-radius: 42px;
    background: linear-gradient(135deg, rgba(255,241,199,.78), rgba(233,255,248,.86), rgba(255,214,235,.62));
    border: 1px solid rgba(255,107,53,.15);
    z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr); gap: 32px; align-items: center; }
.eyebrow, .section-kicker, .badge, .tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--highlight);
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,107,53,.16);
    border-radius: 999px;
    padding: 5px 12px;
    font-weight: 800;
    font-size: 14px;
}
h1, h2, h3, .section-title { color: var(--title); line-height: 1.2; margin: 0 0 16px; }
h1 { font-size: clamp(40px, 6vw, 74px); letter-spacing: -0.04em; }
h2 { font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.025em; }
h3 { font-size: 22px; }
p { margin: 0 0 16px; }
.lead { color: var(--muted); font-size: clamp(17px, 2vw, 20px); max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.hero-points span { padding: 8px 12px; background: #fff; border: 1px solid var(--line); border-radius: 999px; color: var(--deep); font-weight: 700; }
.hero-visual { position: relative; }
.hero-visual img, .content-img, .zone-card img, .info-card img, .page-hero img, .feature-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 28px;
}
.hero-visual img { background: #fff; padding: 10px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.float-card {
    position: absolute;
    left: -18px;
    bottom: 26px;
    max-width: 260px;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 18px 36px rgba(43,26,63,.12);
}
.section { padding: 58px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.section-head p { max-width: 720px; color: var(--muted); }
.card, .zone-card, .info-card, .review-card, .faq-item, .channel-pill, .notice-card {
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 22px;
}
.highlight-row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.info-card { padding: 22px; }
.info-card p, .zone-card p, .review-card p, .faq-item p, .notice-card p { color: var(--muted); }
.channel-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; }
.channel-pill { padding: 18px; box-shadow: 0 14px 30px rgba(97,45,16,0.08); }
.channel-pill strong { display: block; color: var(--title); margin-bottom: 7px; }
.channel-pill p { color: var(--muted); font-size: 14px; min-height: 48px; }
.channel-pill a, .text-link { font-weight: 800; }
.brand-grid, .split-grid, .safe-grid, .page-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.88fr); gap: 28px; align-items: center; }
.content-panel { padding: 30px; }
.soft-panel { background: linear-gradient(135deg, #FFFFFF, #EFFFFA); }
.deep-panel { background: linear-gradient(135deg, #24130C, #2B1A3F); color: #FFF3E8; }
.deep-panel h2, .deep-panel h3 { color: #fff; }
.deep-panel p { color: rgba(255,243,232,.82); }
.zone-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.triple-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.zone-card { overflow: hidden; }
.zone-card img { width: 100%; border-radius: 22px 22px 0 0; }
.zone-body { padding: 24px; }
.service-list { display: grid; gap: 10px; margin: 18px 0; padding: 0; list-style: none; }
.service-list li { position: relative; padding-left: 24px; color: var(--muted); }
.service-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 9px; height: 9px; border-radius: 50%; background: var(--grad); }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.review-card { padding: 22px; }
.review-card strong { display: block; color: var(--title); margin-bottom: 8px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.faq-item { padding: 22px; }
.notice-card { padding: 26px; background: linear-gradient(135deg, #FFF1C7, #E9FFF8); }
.page-hero { padding: 52px 0 42px; }
.page-hero-card { padding: 34px; background: linear-gradient(135deg, rgba(255,241,199,.82), rgba(233,255,248,.92)); border: 1px solid var(--line); border-radius: 34px; box-shadow: var(--shadow); }
.content-stack { display: grid; gap: 24px; }
.article-card { padding: 28px; }
.article-card h2 { font-size: clamp(24px, 3vw, 34px); }
.two-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-top: 16px; }
.step-card { padding: 18px; background: #FFF8F0; border: 1px solid var(--line); border-radius: 18px; }
.step-card strong { color: var(--title); display: block; margin-bottom: 6px; }
.page-footer-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.faq-long { display: grid; gap: 16px; }
.faq-long .faq-item h2 { font-size: 22px; }
.site-footer { background: #1A0F0A; color: #FFF3E8; padding: 52px 0 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 22px; display: grid; grid-template-columns: minmax(260px,.9fr) minmax(0,1.4fr); gap: 30px; }
.footer-brand p { color: rgba(255,243,232,.72); margin-top: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.footer-links h3 { color: #fff; font-size: 18px; }
.footer-links a { display: block; color: rgba(255,243,232,.76); margin: 8px 0; }
.footer-bottom { max-width: 1200px; margin: 32px auto 0; padding: 22px 22px 0; border-top: 1px solid rgba(255,243,232,.12); color: rgba(255,243,232,.72); }
.mobile-tabbar { display: none; }
@media (max-width: 1040px) {
    .nav-core { display: none; }
    .menu-left { display: inline-flex; }
    .site-logo strong { display: inline; }
    .hero-grid, .brand-grid, .split-grid, .safe-grid, .page-hero-grid { grid-template-columns: 1fr; }
    .highlight-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .channel-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .triple-grid, .review-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px) {
    body { padding-bottom: 72px; }
    .header-inner { min-height: 64px; padding: 0 14px; gap: 8px; }
    .site-logo { position: absolute; left: 50%; transform: translateX(-50%); }
    .site-logo strong { display: none; }
    .site-logo img { max-height: 38px; }
    .header-actions { margin-left: auto; }
    .menu-right { display: none; }
    .header-cta { min-height: 38px; padding: 8px 13px; font-size: 13px; }
    .hero { padding: 34px 0 36px; }
    .hero::before { inset: 12px 12px; border-radius: 28px; }
    .float-card { position: static; max-width: none; margin-top: 14px; }
    .section { padding: 38px 0; }
    .section-head { display: block; }
    .highlight-row, .channel-grid, .zone-grid, .triple-grid, .review-grid, .faq-grid, .two-list, .footer-inner, .footer-links { grid-template-columns: 1fr; }
    .content-panel, .page-hero-card, .article-card { padding: 22px; }
    .drawer { left: 0; right: auto; transform: translateX(-105%); }
    .drawer.open { transform: translateX(0); }
    .mobile-tabbar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 10px;
        z-index: 9998;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        background: rgba(38,20,12,.94);
        border: 1px solid rgba(255,243,232,.16);
        box-shadow: 0 16px 34px rgba(36,19,12,.22);
        border-radius: 22px;
        padding: 8px;
        backdrop-filter: blur(12px);
    }
    .mobile-tabbar a { color: #FFF3E8; text-align: center; border-radius: 16px; padding: 8px 4px; font-size: 13px; font-weight: 700; }
    .mobile-tabbar a:hover { background: rgba(0,229,176,.14); color: #fff; }
}
