
:root {
  --bg: #FFF8F0;
  --nav: rgba(38,20,12,0.94);
  --title: #24130C;
  --brand: #FF6B35;
  --deep: #2B1A3F;
  --neon: #00E5B0;
  --gold: #FFD166;
  --rose: #B8336A;
  --mint: #E9FFF8;
  --cream: #FFF1C7;
  --hot: #FF7A00;
  --text: #2A1F1A;
  --muted: #75645A;
  --soft: #A9978C;
  --card: #FFFFFF;
  --border: 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 top left, rgba(233,255,248,0.95), transparent 32rem), radial-gradient(circle at 88% 12%, rgba(255,209,102,0.35), transparent 28rem), 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;
}
a { color: inherit; }
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, .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #FFF3E8;
  text-decoration: none;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: .04em;
  white-space: nowrap;
}
.site-logo img, .footer-logo img { max-height: 44px; width: auto; }
.nav-core { display: flex; align-items: center; gap: 8px; }
.nav-core a {
  color: #FFF3E8;
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  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;
  border-radius: 999px;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 900;
  border: none;
  cursor: pointer;
}
.main-btn { background: var(--grad); color: #FFFFFF; box-shadow: 0 14px 32px rgba(255,107,53,0.22); }
.main-btn.small { padding: 9px 16px; font-size: 14px; }
.ghost-btn { border: 1px solid rgba(255,107,53,0.25); color: var(--brand); background: rgba(255,255,255,0.72); }
.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span { width: 18px; height: 2px; border-radius: 10px; background: #FFF3E8; }
.mobile-menu { display: none; }
.drawer-mask {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26,15,10,0.42);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}
.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 88vw);
  height: 100dvh;
  z-index: 10001;
  background: #FFF8F0;
  box-shadow: -24px 0 64px rgba(43,26,63,0.2);
  transform: translateX(110%);
  transition: .28s ease;
  padding: 22px;
  overflow-y: auto;
}
.drawer-open .drawer-mask { opacity: 1; visibility: visible; }
.drawer-open .site-drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.drawer-brand { display: flex; align-items: center; gap: 10px; color: var(--title); font-size: 22px; }
.drawer-brand img { max-height: 38px; }
.drawer-close {
  width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--title); color: #fff; font-size: 24px; cursor: pointer;
}
.drawer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.drawer-link {
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
}
.drawer-link.active, .drawer-link:hover { background: var(--mint); color: var(--brand); }
.drawer-note { margin-top: 20px; padding: 18px; border-radius: 20px; background: var(--deep); color: #FFF3E8; }
.drawer-note p { margin: 8px 0 0; color: rgba(255,243,232,0.78); }
.site-main { width: 100%; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 64px;
}
.hero::before, .hero::after, .page-hero::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}
.hero::before { width: 360px; height: 360px; background: rgba(0,229,176,0.22); right: -80px; top: 80px; }
.hero::after { width: 260px; height: 260px; background: rgba(184,51,106,0.12); left: -60px; bottom: 70px; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0,1.02fr) minmax(360px,.98fr); align-items: center; gap: 42px; }
.kicker, .section-kicker, .badge, .tag, .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 12px;
  color: #8A4A00;
  background: rgba(255,209,102,0.34);
  font-size: 14px;
  font-weight: 900;
}
h1, h2, h3, .section-title { color: var(--title); line-height: 1.22; margin: 0; }
h1 { font-size: clamp(44px, 7vw, 90px); letter-spacing: .02em; }
.hero h2 { margin-top: 10px; font-size: clamp(26px, 4vw, 44px); color: var(--deep); }
p { margin: 0; }
.lead { margin-top: 22px; font-size: 17px; color: var(--muted); max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-points span { padding: 8px 13px; border-radius: 999px; background: #fff; border: 1px solid var(--border); color: var(--title); font-weight: 800; }
.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(43,26,63,0.2);
  object-fit: contain;
}
.float-card {
  position: absolute;
  left: -16px;
  bottom: 26px;
  max-width: 260px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,107,53,0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.float-card strong { display: block; color: var(--title); margin-bottom: 5px; }
.float-card p { color: var(--muted); font-size: 14px; }
.section { padding: 54px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.section-head > div { max-width: 760px; }
.section-head h2 { font-size: clamp(26px, 3.6vw, 42px); margin-top: 10px; }
.section-head p { margin-top: 12px; color: var(--muted); }
.card, .zone-card, .info-card, .review-card, .question-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 22px;
}
.highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.highlight-card { padding: 22px; }
.highlight-card h3 { font-size: 20px; margin-bottom: 8px; }
.highlight-card p { color: var(--muted); font-size: 15px; }
.capsules { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.capsule {
  padding: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--border);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(97,45,16,0.08);
  min-height: 90px;
}
.capsule strong { display: block; color: var(--title); }
.capsule span { display: block; color: var(--muted); font-size: 13px; line-height: 1.45; margin-top: 4px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.split.reverse > .media-box { order: 2; }
.media-box img, .zone-card img, .app-section img, .hero-visual img, .content-img { max-width: 100%; height: auto; object-fit: contain; }
.media-box img { border-radius: 28px; box-shadow: var(--shadow); background: #fff; }
.text-box h2 { font-size: clamp(26px, 3.4vw, 40px); margin: 10px 0 16px; }
.text-box p { color: var(--muted); margin-bottom: 14px; }
.text-list { display: grid; gap: 10px; margin: 18px 0; padding: 0; list-style: none; }
.text-list li { padding: 12px 14px; background: rgba(233,255,248,0.72); border-radius: 16px; color: var(--text); }
.text-link { color: var(--brand); font-weight: 900; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.two-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.three-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.zone-card { overflow: hidden; }
.zone-card img { width: 100%; max-height: 260px; padding: 14px; border-radius: 28px; }
.zone-body { padding: 0 22px 24px; }
.zone-body h3 { font-size: 24px; margin: 10px 0; }
.zone-body p { color: var(--muted); margin-bottom: 12px; }
.mini-list { margin: 14px 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.mini-list li { padding-left: 18px; position: relative; color: var(--text); }
.mini-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); position: absolute; left: 0; top: .72em; }
.safe-panel { background: linear-gradient(135deg, #24130C 0%, #2B1A3F 56%, #104840 100%); color: #FFF3E8; border-radius: 32px; padding: 30px; overflow: hidden; }
.safe-panel h2 { color: #fff; }
.safe-panel p { color: rgba(255,243,232,0.82); }
.safe-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items: center; }
.safe-images { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.safe-images img { border-radius: 24px; background: rgba(255,255,255,.08); padding: 8px; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { padding: 22px; }
.review-card p { color: var(--muted); }
.review-card strong { display: block; margin-top: 14px; color: var(--title); }
.faq-list { display: grid; gap: 14px; }
.question-card { padding: 22px; }
.question-card h3 { font-size: 19px; margin-bottom: 8px; }
.question-card p { color: var(--muted); }
.reminder { background: #FFF1C7; border: 1px solid rgba(255,183,3,0.32); border-radius: 26px; padding: 24px; color: #5c3b00; }
.about-strip { background: rgba(255,255,255,0.74); border: 1px solid var(--border); border-radius: 30px; padding: 28px; }
.page-hero { position: relative; padding: 70px 0 34px; overflow: hidden; }
.page-hero::before { width: 320px; height: 320px; right: -120px; top: 20px; background: rgba(0,229,176,.18); }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; position: relative; }
.page-hero h1 { font-size: clamp(34px, 5vw, 64px); }
.page-hero p { margin-top: 18px; color: var(--muted); }
.page-hero img { width: 100%; border-radius: 30px; box-shadow: var(--shadow); background: #fff; }
.article { padding: 34px 0 60px; }
.article-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.article-main { display: grid; gap: 22px; }
.content-card { padding: 28px; }
.content-card h2 { font-size: 30px; margin-bottom: 14px; }
.content-card h3 { font-size: 22px; margin: 10px 0; }
.content-card p { color: var(--muted); margin-bottom: 14px; }
.notice-list { margin: 0; padding-left: 20px; color: var(--muted); }
.notice-list li { margin: 8px 0; }
.side-panel { position: sticky; top: 96px; display: grid; gap: 16px; }
.side-card { padding: 22px; background: #fff; border: 1px solid var(--border); border-radius: 22px; box-shadow: 0 14px 34px rgba(97,45,16,0.09); }
.side-card h3 { font-size: 20px; margin-bottom: 10px; }
.side-card a { display: block; margin-top: 8px; color: var(--brand); font-weight: 800; text-decoration: none; }
.steps { counter-reset: step; display: grid; gap: 12px; }
.step { position: relative; padding: 16px 16px 16px 54px; border-radius: 18px; background: var(--mint); color: var(--text); }
.step::before { counter-increment: step; content: counter(step); position: absolute; left: 16px; top: 16px; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--grad); color: #fff; font-weight: 900; }
.feedback-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.feedback { padding: 18px; border-radius: 18px; background: rgba(255,255,255,.72); border: 1px solid var(--border); color: var(--muted); }
.faq-page-list { display: grid; gap: 16px; }
.faq-item { padding: 24px; border-radius: 22px; background: #fff; border: 1px solid var(--border); box-shadow: 0 14px 34px rgba(97,45,16,.09); }
.faq-item h2 { font-size: 22px; margin-bottom: 8px; }
.faq-item p { color: var(--muted); }
.site-footer { background: #1A0F0A; color: #FFF3E8; margin-top: 20px; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 46px 22px; display: grid; grid-template-columns: 1fr 1.6fr; gap: 38px; }
.footer-brand p { color: rgba(255,243,232,.76); margin-top: 16px; }
.footer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.footer-grid h3 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.footer-grid a { display: block; color: rgba(255,243,232,.78); text-decoration: none; margin: 6px 0; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 22px; text-align: center; color: rgba(255,243,232,.68); }
.bottom-tabs { display: none; }
@media (max-width: 1060px) {
  .nav-core { display: none; }
  .desktop-menu { display: inline-flex; }
  .mobile-menu { display: inline-flex; }
  .header-inner { min-height: 66px; }
  .hero-grid, .page-hero-grid, .safe-grid, .article-grid { grid-template-columns: 1fr; }
  .side-panel { position: static; }
  .highlights { grid-template-columns: repeat(2,1fr); }
  .capsules { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { padding-bottom: 70px; }
  .header-actions .main-btn { padding: 8px 12px; font-size: 13px; }
  .site-logo span { font-size: 20px; }
  .hero { padding: 52px 0 36px; }
  .hero-grid, .split, .two-grid, .three-grid, .reviews, .feedback-list { grid-template-columns: 1fr; }
  .split.reverse > .media-box { order: initial; }
  .highlights { grid-template-columns: 1fr; }
  .capsules { grid-template-columns: 1fr; }
  .capsule { border-radius: 22px; min-height: auto; }
  .section { padding: 38px 0; }
  .section-head { display: block; }
  .safe-panel { padding: 22px; border-radius: 24px; }
  .safe-images { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .bottom-tabs { position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 9998; display: grid; grid-template-columns: repeat(4,1fr); background: rgba(38,20,12,.94); border-radius: 999px; padding: 8px; box-shadow: 0 14px 38px rgba(26,15,10,.25); backdrop-filter: blur(10px); }
  .bottom-tabs a { color: #FFF3E8; text-align: center; text-decoration: none; font-size: 13px; font-weight: 800; padding: 8px 4px; }
  .site-drawer { right: auto; left: 0; transform: translateX(-110%); }
  .drawer-open .site-drawer { transform: translateX(0); }
  .drawer-nav { grid-template-columns: 1fr; }
  .float-card { position: static; margin-top: 14px; max-width: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 0 14px; gap: 8px; }
  .site-logo img { max-height: 36px; }
  .main-btn, .ghost-btn { width: 100%; }
  .hero-actions { align-items: stretch; }
  .content-card { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
}
