* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 209, 102, 0.28), transparent 32%),
    radial-gradient(circle at 88% 4%, rgba(0, 229, 176, 0.16), transparent 30%),
    linear-gradient(180deg, #FFF8F0 0%, #FFFDF9 44%, #FFF8F0 100%);
  color: #2A1F1A;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.78;
  overflow-x: hidden;
}

a {
  color: #FF6B35;
  text-decoration: none;
}

a:hover {
  color: #B8336A;
}

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;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #FFF3E8;
}

.site-logo img,
.footer-logo img {
  max-height: 44px;
  width: auto;
  display: block;
}

.site-logo span {
  font-size: 24px;
}

.nav-core {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.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;
  flex-shrink: 0;
}

.main-btn,
.secondary-btn,
.text-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s 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);
  padding: 13px 24px;
}

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

.main-btn.small {
  padding: 9px 18px;
  font-size: 14px;
}

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

.secondary-btn:hover {
  background: #FFF1C7;
}

.text-btn,
.text-link {
  color: #FF6B35;
  font-weight: 800;
}

.menu-toggle {
  border: 1px solid rgba(255,243,232,.28);
  color: #FFF3E8;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  min-width: 44px;
  min-height: 40px;
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-only {
  display: none;
}

.drawer-mask {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26,15,10,.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.menu-drawer {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10001;
  width: min(360px, 86vw);
  height: 100vh;
  overflow-y: auto;
  background: #FFFFFF;
  box-shadow: -24px 0 60px rgba(26,15,10,.22);
  transform: translateX(105%);
  transition: transform .28s ease;
  padding: 18px;
}

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

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

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

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

.drawer-head button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #FFF1C7;
  color: #24130C;
  font-size: 25px;
  cursor: pointer;
}

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

.drawer-nav a {
  padding: 12px 14px;
  border-radius: 16px;
  color: #2A1F1A;
  background: #FFF8F0;
  font-weight: 700;
}

.drawer-nav a.active,
.drawer-nav a:hover {
  background: linear-gradient(135deg, rgba(255,107,53,.14), rgba(0,229,176,.13));
  color: #B8336A;
}

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

.section {
  padding: 82px 22px;
}

.section.tight {
  padding-top: 50px;
  padding-bottom: 50px;
}

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

.hero {
  padding: 88px 22px 58px;
  position: relative;
  overflow: hidden;
}

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

.hero-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
  position: relative;
}

.kicker,
.section-kicker,
.badge,
.tag,
.label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #B8336A;
  background: rgba(255,209,102,.26);
  border: 1px solid rgba(255,107,53,.16);
  border-radius: 999px;
  padding: 7px 13px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .02em;
}

.hero h1,
.page-hero h1 {
  color: #24130C;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.05;
  margin: 18px 0 12px;
  letter-spacing: -0.05em;
}

.hero .subtitle {
  color: #2B1A3F;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.28;
  font-weight: 900;
  margin: 0 0 16px;
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

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

.hero-points span {
  border-radius: 999px;
  padding: 8px 13px;
  background: #FFFFFF;
  border: 1px solid rgba(255,107,53,.16);
  box-shadow: 0 12px 26px rgba(97,45,16,.08);
  color: #2A1F1A;
  font-weight: 800;
}

.hero-visual,
.page-visual,
.media-box {
  position: relative;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(233,255,248,.86)),
    radial-gradient(circle at 20% 20%, rgba(255,209,102,.18), transparent 50%);
  border: 1px solid rgba(255,107,53,.18);
  box-shadow: 0 28px 70px rgba(97,45,16,.18);
  padding: 18px;
}

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

.float-card {
  position: absolute;
  left: -22px;
  bottom: 28px;
  width: min(240px, 54%);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,107,53,.16);
  border-radius: 22px;
  padding: 15px;
  box-shadow: 0 18px 42px rgba(97,45,16,.16);
}

.float-card strong {
  color: #24130C;
}

.float-card p {
  margin-top: 5px;
  font-size: 13px;
  color: #75645A;
}

.card,
.zone-card,
.info-card,
.review-card,
.faq-card,
.channel-pill,
.notice-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;
}

.highlight-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.info-card {
  padding: 24px;
}

.info-card h3,
.zone-card h3,
.card h3,
.review-card h3,
.faq-card h3 {
  margin: 0 0 10px;
  color: #24130C;
  line-height: 1.35;
}

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

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

.section-title,
h2 {
  color: #24130C;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
  margin: 12px 0 0;
  letter-spacing: -0.03em;
}

.section-head p {
  max-width: 650px;
}

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

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

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

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.split.equal {
  align-items: stretch;
}

.card {
  padding: 30px;
}

.card-list {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.card-list li {
  position: relative;
  padding-left: 20px;
  color: #75645A;
}

.card-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .82em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00E5B0;
}

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

.zone-card {
  overflow: hidden;
}

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

.zone-card .zone-body {
  padding: 24px;
}

.safe-band {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(43,26,63,.97), rgba(36,19,12,.96)),
    radial-gradient(circle at 85% 12%, rgba(0,229,176,.16), transparent 40%);
  border-radius: 34px;
  padding: 34px;
  color: #FFF3E8;
  box-shadow: 0 24px 60px rgba(26,15,10,.18);
}

.safe-band h2,
.safe-band h3 {
  color: #FFFFFF;
}

.safe-band p,
.safe-band li {
  color: rgba(255,243,232,.82);
}

.safe-band .main-btn {
  margin-top: 18px;
}

.safe-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.safe-img img {
  border-radius: 24px;
  background: #FFFFFF;
}

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

.review-card {
  padding: 22px;
}

.review-card .stars {
  color: #FF7A00;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

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

.faq-card {
  padding: 24px;
}

.notice-card {
  padding: 28px;
  background: linear-gradient(135deg, #FFFFFF, #EFFFFA);
}

.about-mini {
  background: linear-gradient(135deg, rgba(255,209,102,.22), rgba(0,229,176,.13));
  border-radius: 34px;
  padding: 34px;
  border: 1px solid rgba(255,107,53,.16);
}

.page-hero {
  padding: 72px 22px 44px;
}

.page-hero-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 38px;
  align-items: center;
}

.breadcrumb {
  color: #A9978C;
  font-weight: 800;
  margin-bottom: 12px;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 26px;
  align-items: start;
}

.article-card {
  background: #FFFFFF;
  border: 1px solid rgba(255,107,53,.18);
  border-radius: 26px;
  box-shadow: 0 20px 46px rgba(97,45,16,.12);
  padding: 34px;
}

.article-card h2 {
  font-size: clamp(24px, 3vw, 36px);
}

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

.article-card p:last-child {
  margin-bottom: 0;
}

.aside-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.aside-card .card {
  padding: 22px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.step-item {
  counter-increment: step;
  padding: 18px;
  border-radius: 18px;
  background: #FFF8F0;
  border: 1px solid rgba(255,107,53,.14);
}

.step-item:before {
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF6B35, #00E5B0);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-weight: 900;
  margin-right: 8px;
}

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

.check-grid span {
  background: #EFFFFA;
  border: 1px solid rgba(0,229,176,.16);
  border-radius: 16px;
  padding: 12px 14px;
  color: #2A1F1A;
  font-weight: 700;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  margin: 20px 0;
}

.service-table th,
.service-table td {
  padding: 14px;
  border: 1px solid rgba(255,107,53,.14);
  text-align: left;
  vertical-align: top;
}

.service-table th {
  color: #24130C;
  background: #FFF1C7;
}

.service-table td {
  color: #75645A;
  background: #FFFFFF;
}

.site-footer {
  background: #1A0F0A;
  color: #FFF3E8;
  padding: 58px 22px 88px;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr .75fr .75fr .75fr;
  gap: 32px;
}

.footer-brand p {
  color: rgba(255,243,232,.72);
  margin: 18px 0 0;
}

.footer-links {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-links h3 {
  color: #FFFFFF;
  margin: 0 0 8px;
}

.footer-links a {
  color: rgba(255,243,232,.74);
}

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

.footer-bottom {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  border-top: 1px solid rgba(255,243,232,.12);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,243,232,.62);
}

.mobile-bottom {
  display: none;
}

@media (max-width: 1024px) {
  .nav-core {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

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

  .hero-grid,
  .page-hero-grid,
  .split,
  .safe-band,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .highlight-strip,
  .zone-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capsule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aside-card {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 68px;
  }

  .header-inner {
    min-height: 64px;
    padding: 0 12px;
  }

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

  .site-logo span {
    font-size: 20px;
  }

  .desktop-menu {
    display: none;
  }

  .main-btn.small {
    padding: 8px 12px;
    font-size: 13px;
  }

  .section,
  .hero,
  .page-hero {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero {
    padding-top: 54px;
  }

  .highlight-strip,
  .capsule-grid,
  .zone-grid,
  .review-grid,
  .faq-grid,
  .footer-inner,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .card,
  .article-card,
  .safe-band,
  .about-mini {
    padding: 22px;
    border-radius: 24px;
  }

  .safe-img {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-bottom {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 9998;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    background: rgba(38,20,12,.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,243,232,.16);
    box-shadow: 0 18px 40px rgba(26,15,10,.22);
    border-radius: 22px;
    padding: 8px;
  }

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

  .mobile-bottom a:hover {
    background: rgba(0,229,176,.16);
    color: #FFFFFF;
  }

  .float-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
}
