* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #FFF8F0;
  color: #2A1F1A;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.78;
  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: 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;
  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;
  text-decoration: none;
  color: #FFF3E8;
  font-weight: 900;
  letter-spacing: .02em;
  white-space: nowrap;
}
.site-logo img, .footer-logo img { max-height: 44px; width: auto; }
.nav-core { display: flex; align-items: center; gap: 10px; }
.nav-core a {
  color: #FFF3E8;
  text-decoration: none;
  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: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.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);
}
.ghost-btn { color: #FF6B35; border: 1px solid rgba(255,107,53,0.28); background: #FFFFFF; }
.main-btn:hover, .ghost-btn:hover { transform: translateY(-2px); }
.menu-btn, .drawer-close {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #FFF3E8;
  font-weight: 800;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
}
.mobile-menu { display: none; }
.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 88vw);
  height: 100vh;
  z-index: 10050;
  background: #FFF8F0;
  box-shadow: -22px 0 60px rgba(36,19,12,0.22);
  transform: translateX(110%);
  transition: transform .25s ease;
  overflow-y: auto;
}
.drawer-open .site-drawer { transform: translateX(0); }
.drawer-mask {
  position: fixed;
  inset: 0;
  z-index: 10040;
  background: rgba(26,15,10,0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.drawer-open .drawer-mask { opacity: 1; pointer-events: auto; }
.drawer-open { overflow-x: hidden; }
.drawer-head {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: linear-gradient(135deg, #2B1A3F, #B8336A 58%, #FF6B35);
  color: #FFFFFF;
}
.drawer-close { background: rgba(255,255,255,0.16); font-size: 26px; }
.drawer-nav { padding: 18px; display: grid; gap: 10px; }
.drawer-nav a {
  text-decoration: none;
  color: #24130C;
  background: #FFFFFF;
  border: 1px solid rgba(255,107,53,0.18);
  border-radius: 18px;
  padding: 12px 14px;
  font-weight: 700;
}
main { min-height: 70vh; }
.section, .hero-section, .page-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 22px;
}
.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: 46px;
  min-height: calc(100vh - 72px);
}
.hero-wrap {
  background:
    radial-gradient(circle at 16% 20%, rgba(255,209,102,0.38), transparent 25%),
    radial-gradient(circle at 86% 14%, rgba(0,229,176,0.22), transparent 30%),
    linear-gradient(135deg, #FFF8F0 0%, #F1F4FF 45%, #E9FFF8 100%);
}
.kicker, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #B8336A;
  background: rgba(255,107,53,0.10);
  border: 1px solid rgba(255,107,53,0.18);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
  font-size: 14px;
}
h1, h2, h3, .section-title { color: #24130C; line-height: 1.18; margin: 0 0 18px; }
h1 { font-size: clamp(46px, 8vw, 92px); letter-spacing: -.06em; }
.page-hero h1 { font-size: clamp(34px, 5vw, 62px); }
h2 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -.03em; }
h3 { font-size: 22px; }
p { margin: 0 0 16px; }
.lead { font-size: clamp(17px, 2vw, 21px); color: #2A1F1A; max-width: 760px; }
.muted { color: #75645A; }
.subtle { color: #A9978C; }
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-tags span, .badge, .tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: #FFFFFF;
  border: 1px solid rgba(255,107,53,0.18);
  color: #FF7A00;
  font-weight: 800;
}
.hero-visual { position: relative; }
.hero-visual img, .content-img, .zone-card img, .app-section img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 30px;
}
.hero-visual img { box-shadow: 0 30px 80px rgba(43,26,63,0.16); }
.float-card {
  position: absolute;
  left: -22px;
  bottom: 28px;
  width: min(280px, 70%);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,107,53,0.18);
  box-shadow: 0 20px 46px rgba(97,45,16,0.14);
  border-radius: 22px;
  padding: 16px;
}
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.card, .zone-card, .info-card, .review-card, .faq-item {
  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;
  padding: 24px;
}
.card.dark, .notice-panel {
  background: #24130C;
  color: #FFF3E8;
  border-color: rgba(255,209,102,0.22);
}
.card.soft, .info-card.soft { background: #EFFFFA; }
.card.gold { background: #FFF1C7; }
.card h3, .zone-card h3, .info-card h3 { margin-top: 14px; }
.text-link { color: #FF6B35; text-decoration: none; font-weight: 800; }
.text-link:hover { text-decoration: underline; }
.capsule-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.capsule {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  background: #FFFFFF;
  border: 1px solid rgba(255,107,53,0.18);
  border-radius: 999px;
  padding: 14px 18px;
  min-height: 92px;
  box-shadow: 0 14px 30px rgba(97,45,16,0.08);
}
.capsule strong { color: #24130C; }
.capsule span { color: #75645A; font-size: 13px; line-height: 1.55; }
.media-row { display: grid; grid-template-columns: .95fr 1.05fr; gap: 32px; align-items: center; }
.media-row.reverse { grid-template-columns: 1.05fr .95fr; }
.feature-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.feature-list li { position: relative; padding-left: 24px; color: #2A1F1A; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: .78em; width: 9px; height: 9px; border-radius: 50%; background: #00E5B0; box-shadow: 0 0 0 5px rgba(0,229,176,0.12); }
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
  gap: 36px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,209,102,0.26), transparent 26%),
    radial-gradient(circle at 88% 6%, rgba(0,229,176,0.18), transparent 28%);
}
.page-hero img { border-radius: 30px; box-shadow: 0 24px 70px rgba(97,45,16,0.14); }
.content-block { max-width: 980px; margin: 0 auto; }
.content-block p { font-size: 17px; color: #2A1F1A; }
.service-strip { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
.service-strip span { border-radius: 999px; padding: 8px 12px; background: #FFF1C7; color: #24130C; font-weight: 800; }
.review-card p { color: #2A1F1A; }
.faq-list { display: grid; gap: 16px; }
.faq-item h3 { margin: 0 0 8px; }
.notice-panel { padding: 28px; border-radius: 28px; box-shadow: 0 20px 46px rgba(97,45,16,0.14); }
.notice-panel h2, .notice-panel h3 { color: #FFFFFF; }
.notice-panel p, .card.dark p { color: #FFF3E8; }
.site-footer { background: #1A0F0A; color: #FFF3E8; margin-top: 42px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 46px 22px; display: grid; gap: 28px; }
.footer-brand p { max-width: 820px; color: rgba(255,243,232,.82); }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-links a { color: #FFF3E8; text-decoration: none; border: 1px solid rgba(255,243,232,.18); border-radius: 999px; padding: 8px 12px; }
.footer-note { color: rgba(255,243,232,.72); font-size: 14px; }
.mobile-tabbar { display: none; }
@media (max-width: 1060px) {
  .nav-core { display: none; }
  .mobile-menu { display: inline-flex; align-items: center; justify-content: center; }
  .desktop-menu { display: none; }
  .site-logo span { display: inline; }
  .hero-section, .page-hero, .media-row, .media-row.reverse { grid-template-columns: 1fr; min-height: auto; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capsule-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  body { padding-bottom: 72px; }
  .header-inner { min-height: 64px; padding: 0 14px; gap: 10px; }
  .site-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .site-logo img { max-height: 36px; }
  .site-logo span { display: none; }
  .header-cta { min-height: 38px; padding: 8px 12px; font-size: 13px; }
  .menu-btn { min-width: 40px; height: 40px; }
  .hero-section, .section, .page-hero { padding: 42px 16px; }
  h1 { font-size: 46px; }
  .page-hero h1 { font-size: 36px; }
  .grid-4, .grid-3, .grid-2, .capsule-grid { grid-template-columns: 1fr; }
  .capsule { border-radius: 22px; }
  .float-card { position: static; width: 100%; margin-top: 14px; }
  .mobile-tabbar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 9998;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(38,20,12,0.95);
    border-radius: 22px;
    padding: 8px;
    box-shadow: 0 14px 40px rgba(36,19,12,0.24);
  }
  .mobile-tabbar a { color: #FFF3E8; text-decoration: none; text-align: center; font-size: 13px; padding: 8px 4px; border-radius: 16px; }
  .mobile-tabbar a:hover { background: rgba(0,229,176,0.16); }
}
