
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #FFF8F0;
  color: #2A1F1A;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #FFF3E8;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-logo img {
  max-height: 44px;
  display: block;
  border-radius: 12px;
}

.footer-logo img {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 12px;
}

.nav-core {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.nav-core a {
  color: #FFF3E8;
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 15px;
  white-space: nowrap;
  transition: 0.2s ease;
}

.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;
  white-space: nowrap;
}

.main-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}

.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);
}

.secondary-btn {
  background: rgba(255,255,255,0.72);
  color: #FF6B35;
  border: 1px solid rgba(255,107,53,0.22);
}

.text-link {
  color: #FF6B35;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #FFF3E8;
  border-radius: 999px;
}

.mobile-open {
  display: none;
}

.drawer-mask {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(20,10,7,0.48);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  width: min(380px, 88vw);
  height: 100vh;
  background: #FFF8F0;
  box-shadow: -20px 0 46px rgba(38,20,12,0.22);
  transform: translateX(105%);
  transition: 0.25s ease;
  padding: 22px;
  overflow-y: auto;
}

.drawer-open .drawer-mask {
  opacity: 1;
  pointer-events: auto;
}

.drawer-open .drawer {
  transform: translateX(0);
}

.drawer-open {
  overflow: hidden;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #24130C;
  margin-bottom: 18px;
}

.drawer-head strong {
  font-size: 22px;
  letter-spacing: 0.08em;
}

.drawer-head button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #24130C;
  color: #FFF3E8;
  font-size: 24px;
  cursor: pointer;
}

.drawer-nav {
  display: grid;
  gap: 10px;
}

.drawer-nav a {
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 16px;
  color: #2A1F1A;
  background: #FFFFFF;
  border: 1px solid rgba(255,107,53,0.14);
  font-weight: 700;
}

.drawer-nav a:hover,
.drawer-nav a.active {
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF6B35, #B8336A);
}

.drawer-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: #EFFFFA;
  border: 1px solid rgba(0,229,176,0.22);
}

.drawer-card p {
  margin-top: 0;
  color: #75645A;
}

.site-main {
  min-height: 70vh;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 78px 0 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,209,102,0.38), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(0,229,176,0.22), transparent 30%),
    linear-gradient(135deg, #FFF8F0 0%, #E9FFF8 48%, #FFF1C7 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero::before {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: 24px;
  background: rgba(255,107,53,0.18);
}

.hero::after {
  width: 280px;
  height: 280px;
  right: -110px;
  top: 84px;
  background: rgba(184,51,106,0.14);
}

.hero-grid,
.split,
.page-hero-grid,
.security-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.hero-content,
.hero-visual,
.page-hero-card,
.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.notice-card,
.channel-pill,
.stat-card {
  position: relative;
}

.kicker,
.section-kicker,
.tag,
.label,
.badge {
  display: inline-flex;
  align-items: center;
  color: #FFD166;
  background: rgba(36,19,12,0.86);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
.section-title {
  color: #24130C;
  line-height: 1.22;
  margin: 0;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 78px);
  margin-top: 16px;
  letter-spacing: 0.12em;
}

.hero-subtitle {
  font-size: clamp(22px, 3vw, 32px);
  color: #2B1A3F;
  font-weight: 800;
  margin: 10px 0 16px;
}

.hero-desc,
.lead,
.section-desc,
.page-lead {
  color: #75645A;
  font-size: 17px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-tags,
.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span,
.mini-list span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  color: #2A1F1A;
  border: 1px solid rgba(255,107,53,0.14);
  font-weight: 700;
}

.hero-visual {
  border-radius: 34px;
  padding: 18px;
  background: rgba(255,255,255,0.64);
  box-shadow: 0 20px 46px rgba(97,45,16,0.14);
  border: 1px solid rgba(255,107,53,0.18);
}

.hero-visual img,
.page-hero-card img,
.content-img,
.zone-card img,
.info-card img,
.app-section img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-visual img {
  border-radius: 26px;
  width: 100%;
}

.float-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 14px;
}

.float-panel div {
  background: #24130C;
  color: #FFF3E8;
  border-radius: 16px;
  padding: 12px;
}

.float-panel strong {
  display: block;
  color: #00E5B0;
}

.section {
  padding: 68px 0;
}

.section.alt {
  background: rgba(233,255,248,0.55);
}

.section.gold {
  background: rgba(255,241,199,0.58);
}

.section-head {
  width: min(780px, 100%);
  margin-bottom: 30px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2,
.page-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 12px 0 14px;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.notice-card,
.channel-pill,
.stat-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,
.stat-card {
  padding: 24px;
}

.card h3,
.info-card h3,
.zone-card h3,
.review-card h3,
.faq-item h3,
.notice-card h3,
.stat-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.card p,
.info-card p,
.zone-card p,
.review-card p,
.faq-item p,
.notice-card p,
.stat-card p {
  color: #75645A;
  margin: 0;
}

.channels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.channel-pill {
  padding: 18px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.channel-pill:hover {
  transform: translateY(-4px);
}

.channel-pill strong {
  display: block;
  color: #24130C;
  font-size: 18px;
  margin-bottom: 6px;
}

.channel-pill p {
  color: #75645A;
  margin: 0 0 8px;
  font-size: 14px;
}

.channel-pill span {
  color: #FF6B35;
  font-weight: 800;
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.zone-card {
  overflow: hidden;
}

.zone-card img,
.info-card img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 16px;
}

.zone-card img {
  border-radius: 22px 22px 0 0;
  margin-bottom: 0;
}

.zone-body {
  padding: 24px;
}

.service-points,
.page-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.service-points li,
.page-list li {
  position: relative;
  padding-left: 24px;
  color: #75645A;
}

.service-points li::before,
.page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00E5B0;
  box-shadow: 0 0 0 5px rgba(0,229,176,0.12);
}

.page-hero {
  padding: 64px 0 44px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,107,53,0.16), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(0,229,176,0.18), transparent 30%),
    linear-gradient(135deg, #FFF8F0 0%, #E9FFF8 100%);
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 62px);
  margin: 14px 0;
}

.page-hero-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,107,53,0.18);
  border-radius: 30px;
  padding: 16px;
  box-shadow: 0 20px 46px rgba(97,45,16,0.14);
}

.page-hero-card img {
  width: 100%;
  border-radius: 24px;
}

.page-content {
  padding: 58px 0 72px;
}

.content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.article-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: 28px;
  padding: clamp(24px, 4vw, 38px);
}

.article-card p {
  color: #75645A;
  margin: 0 0 18px;
}

.aside-panel {
  display: grid;
  gap: 18px;
}

.dark-card {
  background: #24130C;
  color: #FFF3E8;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 46px rgba(97,45,16,0.14);
}

.dark-card h3 {
  color: #FFF3E8;
  margin-top: 0;
}

.dark-card p,
.dark-card li {
  color: rgba(255,243,232,0.78);
}

.deep-section {
  background: linear-gradient(135deg, #24130C 0%, #2B1A3F 100%);
  color: #FFF3E8;
  padding: 66px 0;
}

.deep-section h2,
.deep-section h3 {
  color: #FFF3E8;
}

.deep-section p {
  color: rgba(255,243,232,0.78);
}

.deep-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.deep-grid img {
  border-radius: 26px;
  background: rgba(255,255,255,0.08);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card strong {
  display: block;
  margin-top: 14px;
  color: #24130C;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.notice-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #EFFFFA 100%);
}

.site-footer {
  background: #1A0F0A;
  color: #FFF3E8;
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 34px;
}

.footer-brand p,
.footer-note p {
  color: rgba(255,243,232,0.76);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.footer-links a {
  color: #FFF3E8;
  text-decoration: none;
}

.footer-links a:hover {
  color: #00E5B0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,243,232,0.1);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,243,232,0.66);
  font-size: 14px;
}

.bottom-nav {
  display: none;
}

.form-like {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.form-like div {
  background: #FFF8F0;
  border: 1px solid rgba(255,107,53,0.18);
  border-radius: 18px;
  padding: 14px 16px;
  color: #75645A;
}

@media (max-width: 1080px) {
  .nav-core {
    gap: 8px;
  }
  .nav-core a {
    font-size: 14px;
    padding: 7px 9px;
  }
  .hero-grid,
  .split,
  .page-hero-grid,
  .security-grid,
  .deep-grid {
    grid-template-columns: 1fr;
  }
  .channels {
    grid-template-columns: repeat(3, 1fr);
  }
  .highlights,
  .triple-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 68px;
  }
  .header-inner {
    min-height: 64px;
    padding: 0 14px;
    gap: 10px;
  }
  .mobile-open {
    display: inline-flex;
    order: 1;
  }
  .site-logo {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .site-logo span {
    font-size: 15px;
  }
  .site-logo img {
    max-height: 38px;
  }
  .nav-core {
    display: none;
  }
  .header-actions {
    order: 3;
    margin-left: auto;
  }
  .desktop-open {
    display: none;
  }
  .nav-cta {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 13px;
  }
  .hero {
    padding-top: 46px;
  }
  .hero h1 {
    letter-spacing: 0.08em;
  }
  .float-panel {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 46px 0;
  }
  .highlights,
  .channels,
  .zone-grid,
  .triple-grid,
  .faq-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .bottom-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: rgba(38,20,12,0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,243,232,0.12);
  }
  .bottom-nav a {
    color: #FFF3E8;
    text-decoration: none;
    text-align: center;
    padding: 10px 4px;
    font-size: 13px;
  }
  .drawer {
    right: auto;
    left: 0;
    transform: translateX(-105%);
  }
  .drawer-open .drawer {
    transform: translateX(0);
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .main-btn,
  .secondary-btn {
    width: 100%;
  }
  .hero-actions,
  .section-actions {
    width: 100%;
  }
}
