* {
  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;
}
a {
  color: inherit;
  text-decoration: none;
}
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 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.site-logo {
  color: #FFF3E8;
  white-space: nowrap;
}
.site-logo img {
  max-height: 44px;
  display: block;
}
.footer-logo img {
  max-height: 42px;
}
.nav-core {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
}
.nav-core a {
  color: #FFF3E8;
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 15px;
  white-space: nowrap;
  transition: all .22s ease;
}
.nav-core a:hover,
.nav-core a.active {
  color: #FFFFFF;
  background: rgba(0,229,176,0.16);
}
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.main-btn,
.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
}
.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);
}
.light-btn {
  color: #FF6B35;
  background: #FFFFFF;
  border: 1px solid rgba(255,107,53,0.18);
}
.menu-toggle,
.drawer-head button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(255,255,255,0.12);
  color: #FFF3E8;
  font-weight: 800;
}
.menu-mobile {
  display: none;
}
.drawer-mask {
  position: fixed;
  inset: 0;
  background: rgba(26,15,10,0.46);
  opacity: 0;
  visibility: hidden;
  transition: .24s ease;
  z-index: 10000;
}
.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 88vw);
  height: 100vh;
  background: #FFF8F0;
  transform: translateX(105%);
  transition: .28s ease;
  z-index: 10001;
  padding: 24px;
  box-shadow: -18px 0 52px rgba(97,45,16,0.22);
  overflow-y: auto;
}
.drawer-open .drawer-mask {
  opacity: 1;
  visibility: visible;
}
.drawer-open .site-drawer {
  transform: translateX(0);
}
.drawer-open {
  overflow: hidden;
}
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #24130C;
  margin-bottom: 18px;
}
.drawer-head button {
  color: #FFFFFF;
  background: #FF6B35;
}
.drawer-links {
  display: grid;
  gap: 10px;
}
.drawer-links a {
  padding: 13px 14px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(255,107,53,0.14);
  color: #2A1F1A;
  font-weight: 700;
}
.drawer-links a:hover,
.drawer-links a.active {
  background: #EFFFFA;
  color: #FF6B35;
}
main {
  min-height: 70vh;
}
.container,
.section-inner,
.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.hero {
  position: relative;
  padding: 86px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(0,229,176,0.22), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(255,209,102,0.36), transparent 24%),
    linear-gradient(135deg, #FFF8F0 0%, #EFFFFA 52%, #FFF1C7 100%);
}
.hero:after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255,107,53,0.13);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.hero-copy h1,
h1,
h2,
h3,
.section-title {
  color: #24130C;
  line-height: 1.22;
}
.hero-copy h1 {
  font-size: clamp(42px, 8vw, 76px);
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}
.hero-copy .subtitle {
  font-size: clamp(22px, 3vw, 34px);
  color: #2B1A3F;
  margin: 0 0 18px;
  font-weight: 900;
}
.hero-copy p {
  margin: 0 0 22px;
  color: #75645A;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0;
}
.hero-tags,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tags span,
.tag,
.label,
.badge,
.section-kicker {
  color: #FFD166;
}
.hero-tags span,
.badge,
.section-kicker {
  background: #24130C;
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 800;
  font-size: 14px;
}
.hero-visual {
  position: relative;
}
.hero-visual img,
.content-img,
.zone-card img,
.app-section img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-visual img {
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(97,45,16,0.18);
  border: 10px solid rgba(255,255,255,0.72);
  background: #FFFFFF;
}
.floating-card {
  position: absolute;
  left: -24px;
  bottom: 30px;
  width: 210px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,107,53,0.18);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 20px 46px rgba(97,45,16,0.14);
}
.floating-card strong {
  display: block;
  color: #FF6B35;
  margin-bottom: 5px;
}
.section {
  padding: 70px 0;
}
.section.alt {
  background: #EFFFFA;
}
.section.gold {
  background: #FFF1C7;
}
.section-head {
  margin-bottom: 28px;
  max-width: 820px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 8px 0 12px;
}
.section-head p {
  margin: 0;
  color: #75645A;
}
.grid-4,
.grid-3,
.grid-2,
.review-grid,
.faq-grid,
.pill-grid {
  display: grid;
  gap: 20px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.pill-grid { grid-template-columns: repeat(5, 1fr); }
.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.pill-card,
.notice-box,
.page-panel,
.text-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,
.pill-card,
.notice-box,
.text-card {
  padding: 24px;
}
.card h3,
.info-card h3,
.zone-card h3,
.review-card h3,
.faq-item h3,
.pill-card h3,
.text-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}
.card p,
.info-card p,
.zone-card p,
.review-card p,
.faq-item p,
.pill-card p,
.text-card p {
  margin: 0;
  color: #75645A;
}
.text-link,
.nav a,
.pill-card a,
.zone-card a,
.info-card a,
.faq-link {
  color: #FF6B35;
  font-weight: 800;
  display: inline-flex;
  margin-top: 14px;
}
.pill-card {
  border-radius: 999px;
  min-height: 132px;
}
.pill-card p {
  font-size: 14px;
}
.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 32px;
  align-items: center;
}
.split.reverse {
  grid-template-columns: 1.05fr .95fr;
}
.content-img {
  border-radius: 30px;
  box-shadow: 0 20px 46px rgba(97,45,16,0.14);
  border: 8px solid rgba(255,255,255,0.82);
  background: #FFFFFF;
}
.zone-card {
  overflow: hidden;
}
.zone-card img {
  width: 100%;
  background: #EFFFFA;
}
.zone-body {
  padding: 24px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 9px;
}
.feature-list li {
  padding-left: 24px;
  position: relative;
  color: #75645A;
}
.feature-list li:before {
  content: "";
  width: 9px;
  height: 9px;
  background: #00E5B0;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}
.dark-band {
  background: #24130C;
  color: #FFF3E8;
}
.dark-band h2,
.dark-band h3 {
  color: #FFFFFF;
}
.dark-band p,
.dark-band li {
  color: rgba(255,243,232,0.78);
}
.dark-band .card,
.dark-band .text-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
.page-hero {
  padding: 76px 0 54px;
  background:
    radial-gradient(circle at 18% 0%, rgba(0,229,176,0.18), transparent 30%),
    linear-gradient(135deg, #FFF8F0 0%, #FFF1C7 56%, #EFFFFA 100%);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  margin: 8px 0 12px;
}
.page-hero p {
  color: #75645A;
  font-size: 17px;
  margin: 0 0 18px;
}
.page-content {
  padding: 66px 0;
}
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.article-body,
.side-stack {
  display: grid;
  gap: 20px;
}
.page-panel {
  padding: 30px;
}
.page-panel h2 {
  margin-top: 0;
  font-size: 30px;
}
.page-panel p {
  color: #75645A;
  margin: 0 0 16px;
}
.page-panel p:last-child {
  margin-bottom: 0;
}
.notice-box {
  background: #24130C;
  color: #FFF3E8;
}
.notice-box h3 {
  color: #FFFFFF;
  margin-top: 0;
}
.notice-box p {
  color: rgba(255,243,232,0.82);
}
.faq-list {
  display: grid;
  gap: 18px;
}
.faq-list .faq-item h2 {
  font-size: 22px;
  margin: 0 0 8px;
}
.site-footer {
  background: #1A0F0A;
  color: #FFF3E8;
  padding: 54px 0 92px;
}
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}
.footer-brand p,
.footer-note p {
  color: rgba(255,243,232,0.76);
  margin: 14px 0 0;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.footer-links a {
  color: #FFF3E8;
  opacity: .9;
}
.mobile-bottom {
  display: none;
}
@media (max-width: 1080px) {
  .nav-core { display: none; }
  .menu-mobile { display: inline-flex; }
  .header-inner { min-height: 66px; padding: 0 16px; }
  .site-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .site-logo span { display: none; }
  .menu-toggle:not(.menu-mobile) { display: none; }
  .hero-inner,
  .split,
  .split.reverse,
  .page-hero-inner,
  .article-grid {
    grid-template-columns: 1fr;
  }
  .grid-4,
  .pill-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3,
  .review-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .floating-card { position: static; width: auto; margin-top: 14px; }
  .page-hero-inner .content-img { max-height: 360px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { padding-bottom: 64px; }
  .container,
  .section-inner,
  .hero-inner,
  .footer-inner { width: min(100% - 28px, 1180px); }
  .hero { padding: 58px 0 46px; }
  .section { padding: 48px 0; }
  .header-cta { padding: 8px 12px; min-height: 38px; font-size: 13px; }
  .grid-4,
  .grid-2,
  .pill-grid { grid-template-columns: 1fr; }
  .pill-card { border-radius: 22px; }
  .page-panel { padding: 22px; }
  .site-drawer { right: auto; left: 0; transform: translateX(-105%); }
  .drawer-open .site-drawer { transform: translateX(0); }
  .mobile-bottom {
    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.94);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    padding: 8px;
    box-shadow: 0 18px 42px rgba(97,45,16,0.18);
    backdrop-filter: blur(10px);
  }
  .mobile-bottom a {
    color: #FFF3E8;
    text-align: center;
    font-size: 13px;
    padding: 7px 0;
    border-radius: 14px;
  }
  .mobile-bottom a:hover { background: rgba(0,229,176,0.14); }
}
