* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background: #FFF8F0;
  color: #2A1F1A;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}
a {
  color: inherit;
}
img {
  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;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #FFF3E8;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.site-logo img {
  max-height: 44px;
  width: auto;
  display: block;
}
.nav-core {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1;
}
.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: 10px;
  white-space: nowrap;
}
.main-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
}
.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 {
  color: #FF6B35;
  border: 1px solid rgba(255,107,53,0.28);
  background: #FFFFFF;
}
.menu-btn,
.drawer-close {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.12);
  color: #FFF3E8;
  font-weight: 700;
  cursor: pointer;
}
.mobile-menu-open {
  display: none;
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,15,10,0.48);
  opacity: 0;
  pointer-events: none;
  transition: 0.24s ease;
  z-index: 10000;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  background: #FFFFFF;
  transform: translateX(110%);
  transition: 0.26s ease;
  z-index: 10001;
  padding: 24px;
  box-shadow: -24px 0 42px rgba(38,20,12,0.22);
  overflow-y: auto;
}
.site-drawer.open {
  transform: translateX(0);
}
.drawer-lock {
  overflow: hidden;
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #24130C;
  margin-bottom: 18px;
}
.drawer-close {
  background: #FFF1C7;
  color: #24130C;
}
.drawer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.drawer-links a {
  text-decoration: none;
  color: #2A1F1A;
  background: #FFF8F0;
  border: 1px solid rgba(255,107,53,0.18);
  border-radius: 16px;
  padding: 12px 14px;
}
main {
  display: block;
}
.section,
.hero,
.page-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.hero {
  padding: 72px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 36px;
  align-items: center;
}
.hero-copy,
.page-hero-copy,
.media-card,
.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.notice-card,
.channel-pill,
.service-panel {
  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;
}
.hero-copy {
  padding: 42px;
  position: relative;
  overflow: hidden;
}
.hero-copy:before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,229,176,0.24), rgba(255,107,53,0.02));
  right: -90px;
  top: -90px;
}
.hero-copy > * {
  position: relative;
}
h1,
h2,
h3,
.section-title {
  color: #24130C;
  line-height: 1.25;
}
h1 {
  font-size: clamp(42px, 7vw, 76px);
  margin: 12px 0 18px;
}
h2,
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 16px;
}
h3 {
  font-size: 22px;
  margin: 0 0 10px;
}
p {
  margin: 0 0 14px;
}
.lead {
  font-size: 18px;
  color: #75645A;
}
.section-kicker,
.tag,
.label,
.badge {
  display: inline-flex;
  color: #FF7A00;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.hero-actions,
.page-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-points span,
.badge-soft {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #EFFFFA;
  color: #2B1A3F;
  font-weight: 700;
}
.hero-visual {
  position: relative;
}
.hero-visual img,
.content-img,
.zone-card img,
.app-section img,
.media-card img,
.page-hero img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
}
.hero-visual img {
  width: 100%;
  background: linear-gradient(135deg, #E9FFF8, #FFF1C7);
  box-shadow: 0 24px 60px rgba(97,45,16,0.16);
}
.floating-card {
  position: absolute;
  left: -18px;
  bottom: 24px;
  max-width: 240px;
  padding: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,229,176,0.22);
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(43,26,63,0.14);
}
.section {
  padding: 46px 0;
}
.section-head {
  max-width: 820px;
  margin-bottom: 24px;
}
.grid-4,
.grid-3,
.grid-2,
.review-grid,
.faq-grid,
.channel-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}
.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);
}
.channel-grid {
  grid-template-columns: repeat(5, 1fr);
}
.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}
.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.channel-pill,
.service-panel,
.notice-card,
.media-card {
  padding: 24px;
}
.info-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F0 100%);
}
.channel-pill {
  box-shadow: none;
  border-radius: 999px;
  padding: 16px 18px;
}
.channel-pill a,
.text-link {
  color: #FF6B35;
  font-weight: 800;
  text-decoration: none;
}
.media-split,
.page-hero,
.app-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: center;
}
.media-card {
  background: linear-gradient(135deg, #FFFFFF, #EFFFFA);
}
.zone-card img,
.media-card img,
.page-hero img {
  margin-bottom: 18px;
}
ul.clean-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}
ul.clean-list li {
  position: relative;
  padding-left: 22px;
  color: #75645A;
}
ul.clean-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00E5B0;
  position: absolute;
  left: 0;
  top: 12px;
}
.notice-card {
  background: #24130C;
  color: #FFF3E8;
}
.notice-card h2,
.notice-card h3 {
  color: #FFFFFF;
}
.notice-card p {
  color: #FFF3E8;
}
.page-hero {
  padding: 64px 0 34px;
}
.page-hero-copy {
  padding: 36px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF1C7 52%, #EFFFFA 100%);
}
.page-content {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 60px;
}
.content-block {
  margin-bottom: 22px;
}
.content-block p {
  color: #75645A;
}
.content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0;
}
.faq-item h3 {
  font-size: 19px;
}
.review-card p {
  color: #5f5149;
}
.site-footer {
  background: #1A0F0A;
  color: #FFF3E8;
  padding: 52px 0 82px;
}
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 30px;
}
.footer-brand img {
  width: 54px;
  height: auto;
}
.footer-brand p,
.footer-note {
  color: rgba(255,243,232,0.74);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
.footer-grid h3 {
  color: #FFFFFF;
  font-size: 17px;
}
.footer-grid a {
  display: block;
  color: rgba(255,243,232,0.78);
  text-decoration: none;
  margin: 8px 0;
}
.bottom-nav {
  display: none;
}
@media (max-width: 1100px) {
  .nav-core {
    gap: 8px;
  }
  .nav-core a {
    padding: 8px 9px;
  }
  .grid-4,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  body {
    padding-bottom: 70px;
  }
  .header-inner {
    min-height: 64px;
    padding: 0 14px;
  }
  .mobile-menu-open {
    display: inline-flex;
  }
  .drawer-open {
    display: none;
  }
  .nav-core {
    display: none;
  }
  .site-logo span {
    font-size: 16px;
  }
  .site-logo img {
    max-height: 36px;
  }
  .header-btn {
    padding: 9px 14px;
    font-size: 14px;
  }
  .hero,
  .page-hero,
  .media-split,
  .app-section,
  .content-columns {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 34px;
  }
  .hero-copy,
  .page-hero-copy,
  .card,
  .zone-card,
  .info-card,
  .review-card,
  .faq-item,
  .notice-card,
  .media-card,
  .service-panel {
    padding: 20px;
  }
  .grid-3,
  .review-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .floating-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }
  .bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 9998;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    background: rgba(38,20,12,0.92);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 22px;
    padding: 8px;
    backdrop-filter: blur(12px);
  }
  .bottom-nav a {
    color: #FFF3E8;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    padding: 8px 4px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
  }
}
@media (max-width: 560px) {
  .section,
  .hero,
  .page-hero,
  .page-content {
    width: min(100% - 26px, 1180px);
  }
  .grid-4,
  .feature-grid,
  .channel-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 42px;
  }
  .drawer-links {
    grid-template-columns: 1fr;
  }
}
