* {
  box-sizing: border-box;
}

:root {
  --bg: #FFF8F0;
  --ink: #2A1F1A;
  --title: #24130C;
  --muted: #75645A;
  --soft-muted: #A9978C;
  --brand: #FF6B35;
  --brand-strong: #FF7A00;
  --deep: #2B1A3F;
  --neon: #00E5B0;
  --gold: #FFD166;
  --rose: #B8336A;
  --blue-soft: #E9FFF8;
  --mint-soft: #EFFFFA;
  --gold-soft: #FFF1C7;
  --card: #FFFFFF;
  --border: rgba(255,107,53,0.18);
  --shadow: 0 20px 46px rgba(97,45,16,0.14);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container,
.header-inner,
.footer-inner {
  width: min(100% - 40px, 1240px);
  margin-inline: 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 {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #FFF3E8;
  flex-shrink: 0;
}

.site-logo img {
  width: 44px;
  max-height: 44px;
  object-fit: contain;
}

.site-logo strong {
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

.nav-core {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

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

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

.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(255,107,53,0.22);
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.menu-toggle,
.drawer-close,
.drawer-overlay {
  border: 0;
  cursor: pointer;
}

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

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

.menu-toggle-mobile {
  display: none;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26,15,10,0.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.site-drawer {
  position: fixed;
  z-index: 10001;
  top: 0;
  right: 0;
  width: min(390px, 88vw);
  height: 100dvh;
  padding: 24px;
  background: #FFFDF9;
  box-shadow: -24px 0 60px rgba(36,19,12,0.22);
  transform: translateX(105%);
  transition: transform .3s ease;
  overflow-y: auto;
}

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

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

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.drawer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--title);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
}

.drawer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--title);
  font-size: 1.7rem;
}

.drawer-intro {
  color: var(--muted);
  margin: 22px 0 14px;
}

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

.drawer-nav a {
  display: block;
  padding: 12px 14px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--title);
  font-weight: 650;
}

.drawer-nav a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.drawer-note {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--deep);
}

.drawer-note p {
  margin: 6px 0 0;
  font-size: .92rem;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(233,255,248,.7), rgba(255,248,240,.2));
}

.section-tint {
  background: linear-gradient(135deg, rgba(255,241,199,.42), rgba(233,255,248,.72));
}

.section-deep {
  background: linear-gradient(135deg, #24130C, #2B1A3F);
  color: #FFF3E8;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: .82rem;
  letter-spacing: .16em;
  font-weight: 800;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand), var(--neon));
}

.section-kicker.light {
  color: var(--gold);
}

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

h1 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.22rem;
}

p {
  margin-top: 0;
}

.text-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 750;
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,107,53,.18), transparent 32%),
    radial-gradient(circle at 88% 15%, rgba(0,229,176,.2), transparent 28%),
    linear-gradient(135deg, #FFF1F4 0%, #F4EEFF 48%, #E9FFF8 100%);
}

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

.hero::before {
  width: 240px;
  height: 240px;
  left: -80px;
  bottom: 12%;
  background: rgba(255,209,102,.32);
}

.hero::after {
  width: 180px;
  height: 180px;
  right: 4%;
  top: 12%;
  background: rgba(184,51,106,.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-copy h1 {
  margin: 18px 0 16px;
}

.hero-subtitle {
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  color: var(--deep);
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-copy > p {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 700px;
}

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

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

.hero-points span,
.channel-pill {
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(43,26,63,.08);
  box-shadow: 0 10px 30px rgba(43,26,63,.08);
  color: var(--deep);
  font-weight: 700;
  font-size: .9rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -5% -4% 8%;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255,107,53,.22), rgba(0,229,176,.24));
  transform: rotate(3deg);
}

.hero-visual img {
  position: relative;
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(43,26,63,.2));
}

.highlight-strip {
  margin-top: -32px;
  position: relative;
  z-index: 2;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 26px;
  overflow: hidden;
}

.highlight-item {
  padding: 28px;
  border-right: 1px solid rgba(255,107,53,.12);
}

.highlight-item:last-child {
  border-right: 0;
}

.highlight-item strong {
  display: block;
  color: var(--title);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.highlight-item p {
  color: var(--muted);
  margin: 0;
  font-size: .92rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 10px 0 14px;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.channel-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.channel-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding: 14px 18px;
  background: #FFFFFF;
  min-width: 190px;
}

.channel-pill small {
  color: var(--muted);
  font-weight: 500;
}

.channel-pill:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
}

.brand-grid,
.content-split,
.intro-panel,
.proof-grid,
.safety-banner,
.guide-grid {
  display: grid;
  align-items: center;
  gap: 54px;
}

.brand-grid {
  grid-template-columns: .9fr 1.1fr;
}

.brand-media,
.media-frame {
  border-radius: 30px;
  background: #FFFFFF;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.brand-copy h2 {
  margin: 12px 0 18px;
}

.brand-copy p {
  color: var(--muted);
}

.feature-grid,
.zone-grid,
.review-grid,
.discovery-grid {
  display: grid;
  gap: 22px;
}

.feature-grid.three,
.discovery-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

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

.card,
.zone-card,
.info-card,
.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 22px;
}

.info-card,
.review-card {
  padding: 28px;
}

.card-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--rose);
  font-weight: 900;
  margin-bottom: 18px;
}

.info-card h3 {
  margin-bottom: 10px;
}

.info-card p,
.review-card p,
.zone-card p,
.discovery-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.zone-card {
  overflow: hidden;
}

.zone-card .zone-media {
  background: linear-gradient(135deg, var(--blue-soft), #FFF1F4);
  padding: 22px;
}

.zone-card img {
  width: 100%;
  max-height: 340px;
}

.zone-body {
  padding: 30px;
}

.zone-body h3 {
  font-size: 1.65rem;
}

.zone-list {
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.zone-list li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
  color: var(--muted);
}

.zone-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--neon));
}

.discovery-card {
  padding: 28px;
  border-radius: 22px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.discovery-card img {
  max-height: 210px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.safety-zone {
  background: linear-gradient(135deg, rgba(43,26,63,.98), rgba(36,19,12,.98));
  color: #FFF3E8;
}

.safety-zone h2,
.safety-zone h3 {
  color: #FFFFFF;
}

.safety-zone .info-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}

.safety-zone .info-card p {
  color: rgba(255,243,232,.78);
}

.review-card blockquote,
.featured-review blockquote {
  margin: 0 0 18px;
  color: var(--title);
  font-size: 1.08rem;
  line-height: 1.8;
}

.review-card .review-name {
  color: var(--brand);
  font-weight: 800;
}

.faq-list details,
.faq-stack details {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0 20px;
  margin-bottom: 12px;
}

.faq-list summary,
.faq-stack summary {
  cursor: pointer;
  color: var(--title);
  font-weight: 800;
  padding: 18px 30px 18px 0;
  position: relative;
}

.faq-list summary::after,
.faq-stack summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--brand);
  font-size: 1.3rem;
}

.faq-list details[open] summary::after,
.faq-stack details[open] summary::after {
  content: "−";
}

.faq-list details p,
.faq-stack details p {
  color: var(--muted);
  padding-bottom: 18px;
  margin: 0;
}

.compliance-card {
  border-radius: 26px;
  padding: 34px;
  background: linear-gradient(135deg, #FFF1C7, #E9FFF8);
  border: 1px solid rgba(255,107,53,.16);
}

.compliance-card h2 {
  margin-bottom: 14px;
}

.compliance-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.inner-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,107,53,.18), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(0,229,176,.18), transparent 24%),
    linear-gradient(135deg, #FFF4F7, #F2EEFF 52%, #E9FFF8);
}

.inner-hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 58px;
  align-items: center;
  padding: 72px 0;
}

.inner-hero-copy h1 {
  margin: 16px 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.inner-hero-copy > p {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 720px;
}

.inner-hero-media img {
  width: 100%;
  max-height: 520px;
}

.intro-panel {
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
}

.intro-panel h2 {
  margin-top: 12px;
}

.rich-copy p,
.content-copy p {
  color: var(--muted);
}

.content-split {
  grid-template-columns: 1.08fr .92fr;
  align-items: start;
}

.content-split.reverse {
  grid-template-columns: .92fr 1.08fr;
}

.content-split.reverse .content-copy {
  order: 2;
}

.content-split.reverse .service-list {
  order: 1;
}

.content-copy h2 {
  margin: 12px 0 18px;
}

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

.service-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(97,45,16,.08);
}

.service-item > span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--deep);
  background: var(--gold);
  font-weight: 900;
}

.service-item p {
  margin: 0;
  color: var(--muted);
}

.section-deep h2 {
  color: #FFFFFF;
}

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

.guide-grid {
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps-list li {
  counter-increment: step;
  position: relative;
  padding: 0 0 24px 72px;
  min-height: 62px;
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--neon));
  color: #FFFFFF;
  font-weight: 900;
}

.steps-list li span {
  color: #FFFFFF;
  font-weight: 800;
}

.steps-list li p {
  margin: 3px 0 0;
}

.proof-grid {
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
}

.featured-review {
  background: linear-gradient(135deg, #FFFFFF, #FFF7E7);
  position: sticky;
  top: 110px;
}

.featured-review blockquote {
  font-size: 1.26rem;
  margin-top: 16px;
}

.faq-stack h2 {
  margin: 10px 0 20px;
}

.safety-banner {
  grid-template-columns: 1.2fr .8fr;
  background: linear-gradient(135deg, var(--blue-soft), var(--gold-soft));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 38px;
}

.safety-banner h2 {
  margin: 12px 0 14px;
}

.safety-banner p {
  color: var(--muted);
  margin: 0;
}

.safety-links {
  display: grid;
  gap: 12px;
}

.safety-links a {
  padding: 14px 18px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  color: var(--brand);
  text-decoration: none;
  font-weight: 800;
}

.site-footer {
  background: #1A0F0A;
  color: #FFF3E8;
  padding: 70px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}

.footer-brand p {
  color: rgba(255,243,232,.68);
  max-width: 480px;
  margin-top: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-links h2 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 14px;
}

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

.footer-links a:hover {
  color: var(--neon);
}

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,243,232,.58);
  font-size: .88rem;
}

.mobile-quick-nav {
  display: none;
}

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

  .nav-core a {
    padding: 8px 9px;
    font-size: .88rem;
  }

  .hero-grid,
  .inner-hero-grid {
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .container,
  .header-inner,
  .footer-inner {
    width: min(100% - 28px, 760px);
  }

  .nav-core,
  .menu-toggle-desktop {
    display: none;
  }

  .menu-toggle-mobile {
    display: inline-flex;
    order: 1;
  }

  .site-logo {
    order: 2;
    margin-inline: auto;
  }

  .header-actions {
    order: 3;
  }

  .header-actions .menu-toggle-desktop {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 8px 14px;
    font-size: .88rem;
  }

  .hero,
  .inner-hero-grid {
    min-height: auto;
  }

  .hero-grid,
  .inner-hero-grid,
  .brand-grid,
  .content-split,
  .content-split.reverse,
  .intro-panel,
  .proof-grid,
  .safety-banner,
  .guide-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .inner-hero-grid {
    padding: 58px 0 70px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-visual img {
    max-height: 520px;
  }

  .highlight-grid,
  .feature-grid.three,
  .discovery-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-split.reverse .content-copy,
  .content-split.reverse .service-list {
    order: initial;
  }

  .featured-review {
    position: static;
  }

  .footer-links {
    gap: 18px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

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

  .site-logo strong {
    font-size: 1.12rem;
  }

  .section {
    padding: 66px 0;
  }

  .hero-grid,
  .inner-hero-grid {
    padding-top: 44px;
  }

  .hero-copy h1,
  .inner-hero-copy h1 {
    font-size: clamp(2.7rem, 16vw, 4.4rem);
  }

  .highlight-strip {
    margin-top: -20px;
  }

  .highlight-grid,
  .feature-grid.three,
  .zone-grid,
  .discovery-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,107,53,.12);
  }

  .highlight-item:last-child {
    border-bottom: 0;
  }

  .channel-pill {
    min-width: calc(50% - 8px);
    flex: 1 1 calc(50% - 8px);
  }

  .brand-media,
  .media-frame {
    padding: 12px;
    border-radius: 22px;
  }

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

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

  .mobile-quick-nav {
    position: fixed;
    z-index: 9998;
    left: 12px;
    right: 12px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 8px;
    border-radius: 20px;
    background: rgba(36,19,12,.95);
    box-shadow: 0 18px 46px rgba(36,19,12,.28);
    backdrop-filter: blur(14px);
  }

  .mobile-quick-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #FFF3E8;
    font-size: .72rem;
    text-decoration: none;
  }

  .mobile-quick-nav span {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,229,176,.15);
    color: var(--neon);
    font-weight: 900;
  }

  .safety-banner,
  .compliance-card {
    padding: 26px;
  }
}

@media (max-width: 420px) {
  .container,
  .header-inner,
  .footer-inner {
    width: min(100% - 22px, 760px);
  }

  .header-inner {
    gap: 8px;
  }

  .site-logo strong {
    display: none;
  }

  .main-btn {
    padding-inline: 17px;
  }

  .channel-pill {
    min-width: 100%;
  }

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