
:root {
  --page-bg: #FFF8F0;
  --header-bg: rgba(38,20,12,0.94);
  --title: #24130C;
  --brand: #FF6B35;
  --deep: #2B1A3F;
  --cyan: #00E5B0;
  --gold: #FFD166;
  --red: #B8336A;
  --mint-soft: #E9FFF8;
  --gold-soft: #FFF1C7;
  --highlight: #FF7A00;
  --text: #2A1F1A;
  --muted: #75645A;
  --note: #A9978C;
  --card: #FFFFFF;
  --dark-card: #24130C;
  --mint-card: #EFFFFA;
  --border: rgba(255,107,53,0.18);
  --shadow: 0 20px 46px rgba(97,45,16,0.14);
  --btn-bg: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%);
  --footer-bg: #1A0F0A;
  --footer-text: #FFF3E8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 6%, rgba(255,209,102,0.20), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(0,229,176,0.16), transparent 30%),
    linear-gradient(180deg, #FFF8F0 0%, #FFFDF8 52%, #F4FFF9 100%);
  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(--header-bg);
  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;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .5px;
}

.site-logo {
  color: #FFF3E8;
  font-size: 25px;
  flex: 0 0 auto;
}

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

.nav-core {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.nav-core a {
  color: #FFF3E8;
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 15px;
  white-space: nowrap;
  transition: .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;
  flex: 0 0 auto;
}

.main-btn,
.soft-btn,
.text-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.main-btn {
  background: var(--btn-bg);
  color: #FFFFFF;
  box-shadow: 0 14px 32px rgba(255,107,53,0.22);
}

.main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255,107,53,0.28);
}

.soft-btn {
  background: rgba(255,255,255,.82);
  color: var(--brand);
  border: 1px solid var(--border);
}

.text-btn {
  padding: 8px 0;
  min-height: auto;
  color: var(--brand);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

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

.menu-left {
  display: none;
}

.drawer-mask {
  position: fixed;
  inset: 0;
  background: rgba(22,10,5,.48);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  transition: .25s ease;
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(370px, 88vw);
  height: 100dvh;
  background: #FFF8F0;
  z-index: 10001;
  transform: translateX(104%);
  transition: .28s ease;
  box-shadow: -20px 0 60px rgba(35,17,8,.25);
  padding: 22px;
  overflow-y: auto;
}

.drawer-open .drawer-mask {
  opacity: 1;
  visibility: visible;
}

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

.drawer-open {
  overflow-x: hidden;
}

.drawer-head,
.drawer-brand {
  display: flex;
  align-items: center;
}

.drawer-head {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.drawer-brand {
  gap: 10px;
  color: var(--title);
  font-size: 22px;
}

.drawer-brand img {
  width: 42px;
  border-radius: 14px;
}

.drawer-close {
  border: 0;
  background: var(--dark-card);
  color: #fff;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.drawer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.drawer-links a {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--title);
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(97,45,16,0.06);
}

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

.drawer-note {
  margin-top: 18px;
  color: var(--muted);
  background: var(--mint-card);
  border: 1px solid rgba(0,229,176,.24);
  border-radius: 18px;
  padding: 14px;
  font-size: 14px;
}

.page-main {
  width: 100%;
}

.wrap,
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 74px 0;
}

.section.compact {
  padding: 46px 0;
}

.hero {
  position: relative;
  padding: 78px 0 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -120px;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,176,.32), transparent 66%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 44px;
  align-items: center;
}

.kicker,
.section-kicker,
.tag,
.label,
.badge {
  color: var(--highlight);
  font-weight: 900;
  letter-spacing: .06em;
}

.kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.10);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 14px;
  font-size: 14px;
}

h1,
h2,
h3,
.section-title {
  color: var(--title);
  line-height: 1.22;
  margin: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 88px);
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: clamp(24px, 3.2vw, 42px);
  color: var(--deep);
  font-weight: 900;
  margin: 10px 0 18px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 760px;
  margin: 0 0 24px;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-points span,
.badge {
  border-radius: 999px;
  padding: 8px 13px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--title);
  box-shadow: 0 10px 22px rgba(97,45,16,0.08);
}

.hero-visual {
  position: relative;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 10% -6% -5% 20%;
  background: linear-gradient(135deg, rgba(255,107,53,.18), rgba(0,229,176,.18));
  border-radius: 38px;
  transform: rotate(-4deg);
  z-index: -1;
}

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

.hero-visual img,
.media-img {
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid rgba(255,255,255,.72);
}

.float-card {
  position: absolute;
  left: -22px;
  bottom: 22px;
  max-width: 230px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,107,53,.18);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 18px 36px rgba(97,45,16,.14);
  backdrop-filter: blur(10px);
}

.float-card strong {
  display: block;
  color: var(--title);
  margin-bottom: 4px;
}

.float-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.channel-pill,
.notice-panel {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 22px;
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: -26px;
  position: relative;
  z-index: 2;
}

.highlight-strip .info-card {
  padding: 22px;
}

.info-card h3,
.zone-card h3,
.review-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.info-card p,
.zone-card p,
.review-card p,
.faq-item p,
.channel-pill p,
.notice-panel p {
  margin: 0;
  color: var(--muted);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 28px;
}

.section-head p {
  color: var(--muted);
  max-width: 680px;
  margin: 12px 0 0;
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.channel-pill {
  padding: 18px;
  min-height: 150px;
}

.channel-pill strong {
  display: block;
  color: var(--title);
  margin-bottom: 8px;
  font-size: 18px;
}

.channel-pill a,
.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .84fr);
  gap: 34px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, .84fr) minmax(0, 1fr);
}

.copy-card {
  padding: 32px;
}

.copy-card p {
  color: var(--muted);
  margin: 14px 0 0;
}

.media-stack {
  display: grid;
  gap: 14px;
}

.media-stack img {
  border-radius: 26px;
  box-shadow: var(--shadow);
  background: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}

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

.zone-card {
  padding: 24px;
}

.zone-card img {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 22px;
  background: var(--mint-card);
}

.service-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.service-list span {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.service-list span::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--cyan);
  margin-top: 11px;
}

.safety-panel {
  background:
    radial-gradient(circle at 20% 20%, rgba(0,229,176,.24), transparent 32%),
    linear-gradient(135deg, #24130C 0%, #2B1A3F 100%);
  color: #fff;
  border-radius: 30px;
  padding: 34px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(36,19,12,.24);
}

.safety-panel h2,
.safety-panel h3 {
  color: #fff;
}

.safety-panel p {
  color: rgba(255,243,232,.82);
}

.safety-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

.safety-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.safety-images img {
  border-radius: 22px;
  background: #fff;
}

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

.review-card {
  padding: 22px;
}

.review-card .name {
  display: block;
  color: var(--title);
  font-weight: 900;
  margin-bottom: 8px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px 24px;
}

.faq-item h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.notice-panel {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255,209,102,.38), rgba(233,255,248,.92)),
    #fff;
}

.inner-hero {
  padding: 62px 0 42px;
  background:
    radial-gradient(circle at 88% 0%, rgba(0,229,176,.18), transparent 32%),
    radial-gradient(circle at 5% 15%, rgba(255,107,53,.14), transparent 30%);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: 34px;
  align-items: center;
}

.inner-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
}

.inner-hero .lead {
  margin-top: 18px;
}

.content-block {
  padding: 30px;
}

.content-block p {
  color: var(--muted);
  margin: 0 0 16px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.page-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
}

.faq-wide .faq-item {
  box-shadow: 0 12px 28px rgba(97,45,16,.10);
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.footer-inner {
  padding-top: 54px;
  padding-bottom: 40px;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  margin-top: 40px;
}

.footer-logo {
  color: #fff;
  font-size: 24px;
}

.footer-logo img {
  width: 44px;
  border-radius: 14px;
}

.footer-brand p {
  max-width: 760px;
  color: rgba(255,243,232,.72);
  margin: 14px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 22px;
  border-top: 1px solid rgba(255,243,232,.14);
  padding-top: 26px;
}

.footer-grid h3 {
  color: #fff;
  font-size: 17px;
  margin: 0 0 12px;
}

.footer-grid a {
  display: block;
  color: rgba(255,243,232,.74);
  text-decoration: none;
  margin: 7px 0;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,243,232,.14);
  margin-top: 28px;
  padding-top: 20px;
  color: rgba(255,243,232,.62);
  font-size: 14px;
}

.mobile-tabbar {
  display: none;
}

@media (max-width: 1080px) {
  .nav-core {
    gap: 6px;
  }

  .nav-core a {
    font-size: 14px;
    padding: 7px 9px;
  }

  .channel-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }

  .hero-grid,
  .inner-hero-grid,
  .split,
  .split.reverse,
  .safety-grid,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 680px;
  }

  .highlight-strip,
  .three-col,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 66px;
  }

  .header-inner {
    min-height: 64px;
    padding: 0 14px;
    display: grid;
    grid-template-columns: 46px 1fr auto;
  }

  .site-logo {
    justify-content: center;
    font-size: 22px;
  }

  .site-logo img {
    max-height: 38px;
  }

  .menu-left {
    display: inline-flex;
  }

  .menu-more {
    display: none;
  }

  .nav-core {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .header-cta {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 14px;
  }

  .wrap,
  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding: 48px 0 52px;
  }

  .section {
    padding: 52px 0;
  }

  .highlight-strip,
  .two-col,
  .three-col,
  .review-grid,
  .footer-grid,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .copy-card,
  .content-block,
  .safety-panel {
    padding: 24px;
  }

  .float-card {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .drawer-links {
    grid-template-columns: 1fr;
  }

  .site-drawer {
    right: auto;
    left: 0;
    transform: translateX(-104%);
  }

  .drawer-open .site-drawer {
    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(36,19,12,.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,243,232,.18);
    border-radius: 22px;
    padding: 8px;
    box-shadow: 0 14px 34px rgba(36,19,12,.22);
  }

  .mobile-tabbar a {
    color: #FFF3E8;
    text-decoration: none;
    text-align: center;
    border-radius: 16px;
    padding: 9px 4px;
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-tabbar a:hover {
    background: rgba(0,229,176,0.16);
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin: 6px 0;
  }
}

@media (max-width: 520px) {
  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .action-row {
    align-items: stretch;
  }

  .main-btn,
  .soft-btn {
    width: 100%;
  }

  .header-cta {
    width: auto;
  }

  .safety-images {
    grid-template-columns: 1fr;
  }

  .content-block,
  .copy-card,
  .zone-card,
  .faq-item,
  .notice-panel {
    border-radius: 18px;
  }
}
