
@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/rajdhani-500.woff2") format("woff2");
}
@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/rajdhani-600.woff2") format("woff2");
}
@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/rajdhani-700.woff2") format("woff2");
}

:root {
  --bg: #0b0a10;
  --bg-2: #100e17;
  --bg-3: #16131f;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f2efe9;
  --text-dim: rgba(242, 239, 233, 0.55);
  --text-faint: rgba(242, 239, 233, 0.35);
  --amber: #f0a63c;
  --amber-2: #ffcf7d;
  --amber-deep: #b0713c;
  --cyan: #35e0e6;
  --grad-amber: linear-gradient(120deg, #ffcf7d 0%, #f0a63c 45%, #e07f2e 100%);
  --font-cn: system-ui, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
  --font-en: "Rajdhani", "PingFang SC", "Microsoft YaHei", sans-serif;
  --nav-h: 76px;
  --section-pad: 120px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-cn);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--amber); color: #1a1208; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2c2839; border-radius: 5px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--amber-deep); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
  white-space: nowrap;
}
.btn svg { transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--grad-amber);
  color: #221503;
  box-shadow: 0 8px 30px rgba(240, 166, 60, 0.28);
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(240, 166, 60, 0.42); }
.btn-primary:hover::after { left: 130%; }

.btn-ghost {
  border: 1px solid rgba(242, 239, 233, 0.28);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-2); transform: translateY(-3px); }

.btn-sm { padding: 11px 22px; font-size: 13px; }

.preloader {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-bottle {
  position: relative;
  width: 84px; height: 84px;
  margin: 0 auto 22px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.preloader-bottle img {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto;
  width: 64px; height: 64px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  z-index: 2;
}
.preloader-liquid {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 0%;
  background: var(--grad-amber);
  animation: fill 1.6s var(--ease) forwards;
}
@keyframes fill { to { height: 50%; } } .preloader-text {
  font-family: var(--font-en);
  font-size: 14px; letter-spacing: 0.5em;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.preloader-bar {
  width: 180px; height: 2px; margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%; width: 0;
  background: var(--grad-amber);
  animation: bar 1.6s var(--ease) forwards;
}
@keyframes bar { to { width: 100%; } }

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s, height 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  height: 64px;
  background: rgba(11, 10, 16, 0.94);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: min(1280px, calc(100% - 80px));
  height: 100%;
  margin: 0 auto;
  display: flex; align-items: center; gap: 36px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo {
  width: 40px; height: 40px;
  filter: brightness(0) invert(1);
  transition: transform 0.4s var(--ease);
}
.nav-brand:hover .nav-logo { transform: rotate(-8deg) scale(1.06); }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1.15; }
.nav-wordmark strong { font-size: 19px; font-weight: 900; letter-spacing: 0.14em; }
.nav-wordmark em {
  font-style: normal;
  font-family: var(--font-en);
  font-size: 10px; letter-spacing: 0.32em;
  color: var(--amber);
}
.nav-menu { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-menu a {
  position: relative;
  padding: 8px 14px;
  font-size: 15px; font-weight: 500;
  color: var(--text-dim);
  border-radius: 6px;
  transition: color 0.3s;
}
.nav-menu a::after {
  content: "";
  position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; border-radius: 2px;
  background: var(--grad-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--text); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s var(--ease); }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: radial-gradient(ellipse 90% 65% at 72% 42%, #1c1526 0%, var(--bg) 68%);
}
#heroCanvas {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero-glow {
  position: absolute;
  top: 18%; right: 6%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(240,166,60,0.16) 0%, transparent 62%);
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 5;
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-cn);
  font-size: 15px; font-weight: 700; letter-spacing: 0.32em;
  color: var(--amber-2);
  border: 1px solid rgba(240, 166, 60, 0.35);
  background: rgba(240, 166, 60, 0.07);
  padding: 9px 18px 9px 20px;
  border-radius: 100px;
  margin-bottom: 30px;
}
.hero-tag i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }

.hero-title {
  font-size: clamp(52px, 7.2vw, 108px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
  text-shadow: 0 10px 60px rgba(0,0,0,0.6);
}
.hero-title-accent {
  display: block;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 26px rgba(240, 166, 60, 0.3));
}
.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 740px;
}
.hero-stat {
  position: relative;
  padding: 20px 18px 16px;
  background: rgba(22, 19, 31, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s var(--ease);
}
.hero-stat::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-amber);
  opacity: 0.75;
}
.hero-stat::after {
  content: "";
  position: absolute; right: -24px; bottom: -24px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(240, 166, 60, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 166, 60, 0.35);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-en);
  font-size: 34px; font-weight: 700;
  line-height: 1.1;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stat strong i {
  font-style: normal;
  font-size: 16px;
  color: var(--amber);
  margin-left: 2px;
}
.hero-stat em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.18em;
}

.hero-side-text {
  position: absolute;
  right: 34px; top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 12px; letter-spacing: 0.5em;
  color: var(--text-faint);
  z-index: 5;
}

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  z-index: 6;
}
.marquee-track {
  display: flex; align-items: center; gap: 44px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: 22px; font-weight: 900; letter-spacing: 0.2em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 239, 233, 0.35);
  white-space: nowrap;
  transition: 0.3s;
}
.marquee-track span:hover { -webkit-text-stroke-color: var(--amber); }
.marquee-track i { color: var(--amber); font-style: normal; font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { position: relative; padding: var(--section-pad) 0; }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.row {
  max-width: none;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 30px;
}
.section-label {
  font-family: var(--font-en);
  font-size: 13px; font-weight: 700; letter-spacing: 0.42em;
  color: var(--amber);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--grad-amber);
}
.section-title {
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.section-title em {
  font-style: normal;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-desc { margin-top: 16px; color: var(--text-dim); font-size: 16px; }
.section-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--amber-2);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(240, 166, 60, 0.4);
  transition: gap 0.3s var(--ease), border-color 0.3s;
  flex-shrink: 0;
}
.section-more:hover { gap: 14px; border-color: var(--amber); }

.features { background: var(--bg); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  position: relative;
  background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 30px 34px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.feature-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 166, 60, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(240, 166, 60, 0.06);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-en);
  font-size: 44px; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 239, 233, 0.14);
  transition: 0.4s;
}
.feature-card:hover .feature-num { -webkit-text-stroke-color: rgba(240, 166, 60, 0.55); }
.feature-icon {
  width: 62px; height: 62px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(240, 166, 60, 0.09);
  border: 1px solid rgba(240, 166, 60, 0.25);
  color: var(--amber-2);
  margin-bottom: 26px;
  transition: 0.4s var(--ease);
}
.feature-icon svg { width: 32px; height: 32px; }
.feature-card:hover .feature-icon {
  background: rgba(240, 166, 60, 0.16);
  box-shadow: 0 0 26px rgba(240, 166, 60, 0.22);
  transform: rotate(-4deg) scale(1.05);
}
.feature-card h3 { font-size: 21px; font-weight: 900; margin-bottom: 12px; letter-spacing: 0.03em; }
.feature-card p { font-size: 14px; color: var(--text-dim); line-height: 1.8; }
.feature-corner {
  position: absolute;
  width: 14px; height: 14px;
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-corner.tl { top: 10px; left: 10px; border-top: 2px solid var(--amber); border-left: 2px solid var(--amber); }
.feature-corner.br { bottom: 10px; right: 10px; border-bottom: 2px solid var(--amber); border-right: 2px solid var(--amber); }
.feature-card:hover .feature-corner { opacity: 1; }

.stores { background: var(--bg-2); }
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.store-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.store-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 166, 60, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
.store-thumb {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.store-thumb::before {
  content: "";
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  transition: transform 0.7s var(--ease);
    background:
    radial-gradient(circle at 30% 20%, rgba(240, 166, 60, 0.35) 0%, transparent 48%),
    radial-gradient(circle at 80% 85%, rgba(53, 224, 230, 0.22) 0%, transparent 45%),
    repeating-linear-gradient(100deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 20px),
    linear-gradient(150deg, #1e1826 0%, #110f1c 100%);
}
.store-card:hover .store-thumb::before { transform: scale(1.08); }
.store-thumb-1::before {
  background:
    radial-gradient(circle at 78% 22%, rgba(53, 224, 230, 0.35) 0%, transparent 42%),
    radial-gradient(circle at 22% 82%, rgba(240, 166, 60, 0.5) 0%, transparent 52%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.045) 0 2px, transparent 2px 18px),
    linear-gradient(150deg, #241a2e 0%, #120f1c 100%);
}
.store-thumb-2::before {
  background:
    radial-gradient(circle at 24% 20%, rgba(240, 166, 60, 0.4) 0%, transparent 45%),
    radial-gradient(circle at 82% 78%, rgba(120, 90, 255, 0.32) 0%, transparent 50%),
    repeating-linear-gradient(65deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 18px),
    linear-gradient(150deg, #1c1a2e 0%, #100e1a 100%);
}
.store-thumb-3::before {
  background:
    radial-gradient(circle at 50% 110%, rgba(240, 166, 60, 0.55) 0%, transparent 55%),
    radial-gradient(circle at 86% 16%, rgba(53, 224, 230, 0.28) 0%, transparent 45%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 22px),
    linear-gradient(150deg, #221826 0%, #110f1c 100%);
}
.store-thumb::after {
  content: "";
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 10, 16, 0.85) 100%);
}
.store-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--grad-amber);
  color: #221503;
}
.store-badge.alt { background: linear-gradient(120deg, #9be7ff, #35e0e6); color: #03222a; }
.store-open {
  position: absolute; bottom: 14px; right: 16px; z-index: 2;
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.42);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.14);
}
.store-open i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s infinite;
}
.store-info { padding: 24px 26px 26px; }
.store-info h3 { font-size: 19px; font-weight: 900; margin-bottom: 10px; transition: color 0.3s; }
.store-card:hover .store-info h3 { color: var(--amber-2); }
.store-addr {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--text-faint);
  margin-bottom: 16px;
}
.store-addr svg { flex-shrink: 0; color: var(--amber); }
.store-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.store-meta span {
  font-family: var(--font-en);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text-dim);
  border: 1px solid var(--line);
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
}

.showcase {
  background: var(--bg);
  overflow: hidden;
}
.showcase-bg-text {
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: clamp(90px, 14vw, 220px);
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 239, 233, 0.05);
  pointer-events: none;
  user-select: none;
}
.gear-list { position: relative; z-index: 2; }
.gear-item {
  display: flex; align-items: center; gap: 40px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.45s var(--ease), background 0.45s;
  position: relative;
}
.gear-item:first-child { border-top: 1px solid var(--line); }
.gear-item::after {
  content: "→";
  position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%) translateX(-14px);
  font-size: 26px;
  color: var(--amber);
  opacity: 0;
  transition: 0.45s var(--ease);
}
.gear-item:hover { padding-left: 26px; background: linear-gradient(90deg, rgba(240,166,60,0.05), transparent 60%); }
.gear-item:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.gear-idx {
  font-family: var(--font-en);
  font-size: 64px; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 166, 60, 0.5);
  width: 90px; flex-shrink: 0;
  text-align: center;
  transition: 0.4s;
}
.gear-item:hover .gear-idx {
  color: var(--amber);
  -webkit-text-stroke-color: transparent;
  text-shadow: 0 0 30px rgba(240, 166, 60, 0.4);
}
.gear-body { flex: 1; }
.gear-body h3 { font-size: 26px; font-weight: 900; margin-bottom: 8px; letter-spacing: 0.03em; }
.gear-body p { color: var(--text-dim); font-size: 15px; max-width: 640px; }
.gear-spec { text-align: right; flex-shrink: 0; }
.gear-spec strong {
  display: block;
  font-family: var(--font-en);
  font-size: 44px; font-weight: 700; line-height: 1;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gear-spec strong small { font-size: 22px; }
.gear-spec em {
  font-style: normal;
  font-family: var(--font-en);
  font-size: 12px; letter-spacing: 0.4em;
  color: var(--text-faint);
}

.franchise { background: var(--bg-2); }
.franchise-box {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 60px;
  border: 1px solid rgba(240, 166, 60, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(240, 166, 60, 0.13) 0%, transparent 46%),
    linear-gradient(150deg, #191423 0%, #100e17 100%);
  padding: 64px;
  overflow: hidden;
}
.franchise-glow {
  position: absolute;
  top: -140px; right: -140px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(240,166,60,0.22), transparent 65%);
  pointer-events: none;
}
.franchise-list {
  list-style: none;
  margin: 26px 0 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.franchise-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-dim);
}
.franchise-list i {
  font-style: normal;
  width: 22px; height: 22px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(240, 166, 60, 0.14);
  border: 1px solid rgba(240, 166, 60, 0.4);
  color: var(--amber);
  font-size: 12px;
}
.franchise-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-content: center;
}
.franchise-stat {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  transition: 0.4s var(--ease);
}
.franchise-stat:hover {
  border-color: rgba(240, 166, 60, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.franchise-stat strong {
  display: block;
  font-family: var(--font-en);
  font-size: 42px; font-weight: 700; line-height: 1.1;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.franchise-stat em { font-style: normal; font-size: 13px; color: var(--text-faint); }

.news { background: var(--bg); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 166, 60, 0.35);
  box-shadow: 0 26px 60px rgba(0,0,0,0.5);
}
.news-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.news-thumb::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; transition: transform 0.7s var(--ease); }
.news-card:hover .news-thumb::before { transform: scale(1.07); }
.news-thumb-1::before {
  background:
    radial-gradient(circle at 80% 20%, rgba(240,166,60,0.45) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 16px),
    linear-gradient(140deg, #2a1f2e, #12101c);
}
.news-thumb-2::before {
  background:
    radial-gradient(circle at 20% 80%, rgba(53,224,230,0.35) 0%, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 16px),
    linear-gradient(140deg, #18222e, #0f1119);
}
.news-thumb-3::before {
  background:
    radial-gradient(circle at 60% 100%, rgba(138,92,246,0.4) 0%, transparent 55%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 20px),
    linear-gradient(140deg, #201a30, #12101a);
}
.news-date {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  background: rgba(11, 10, 16, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(240, 166, 60, 0.35);
  border-radius: 10px;
  padding: 8px 14px;
}
.news-date strong {
  font-family: var(--font-en);
  font-size: 26px; font-weight: 700; line-height: 1;
  color: var(--amber-2);
}
.news-date span { font-size: 11px; color: var(--text-faint); letter-spacing: 0.08em; }
.news-body { padding: 24px 26px 28px; }
.news-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--amber);
  background: rgba(240, 166, 60, 0.1);
  border: 1px solid rgba(240, 166, 60, 0.3);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.news-body h3 {
  font-size: 17px; font-weight: 700; line-height: 1.55;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}
.news-card:hover .news-body h3 { color: var(--amber-2); }
.news-body p {
  font-size: 13px; color: var(--text-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.staff { background: var(--bg-2); }
.staff-box {
  display: flex; align-items: center; justify-content: space-between; gap: 50px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 88%, rgba(53, 224, 230, 0.08) 0%, transparent 42%),
    linear-gradient(140deg, var(--bg-3), var(--bg-2));
  padding: 64px;
}
.staff-left { max-width: 520px; }
.staff-left .hero-btns { margin-bottom: 0; margin-top: 30px; }
.staff-avatars {
  display: grid;
  grid-template-columns: repeat(3, 92px);
  gap: 16px;
}
.staff-avatar {
  position: relative;
  width: 92px; height: 92px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 30%, hsla(28, 80%, calc(55% + var(--i) * 3%), 0.5) 0%, transparent 65%),
    linear-gradient(150deg, #241c2c, #141120);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
  transition: 0.4s var(--ease);
  animation: floaty 4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.35s);
}
.staff-avatar::before {
  content: "";
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(242, 239, 233, 0.75);
}
.staff-avatar::after {
  content: "";
  position: absolute;
  top: 54px; left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 30px;
  border-radius: 16px 16px 0 0;
  background: rgba(242, 239, 233, 0.55);
}
.staff-avatar span {
  position: relative; z-index: 2;
  font-size: 11px; font-weight: 700;
  color: rgba(11,10,16,0.85);
  background: rgba(242, 239, 233, 0.85);
  border-radius: 100px;
  padding: 1px 9px;
  margin-bottom: 8px;
}
.staff-avatar.more {
  background: var(--grad-amber);
  align-items: center; justify-content: center;
  animation-delay: 1.8s;
}
.staff-avatar.more::before, .staff-avatar.more::after { display: none; }
.staff-avatar.more span {
  background: none;
  font-family: var(--font-en);
  font-size: 20px; font-weight: 700;
  color: #221503;
  margin: 0; padding: 0;
}
.staff-avatar:hover { transform: translateY(-6px) rotate(-2deg); border-color: rgba(240,166,60,0.5); }
@keyframes floaty { 50% { transform: translateY(-7px); } }

.footer {
  background: #080710;
  border-top: 1px solid var(--line);
  padding: var(--section-pad) 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr 1.2fr 1.2fr;
  gap: 44px;
  padding-bottom: 60px;
}
.footer-brand p { margin: 22px 0; font-size: 14px; color: var(--text-faint); }
.footer-hotline em {
  display: block;
  font-style: normal;
  font-size: 12px; letter-spacing: 0.3em;
  color: var(--text-faint);
}
.footer-hotline strong {
  font-family: var(--font-en);
  font-size: 30px; font-weight: 700;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-col h4 {
  font-size: 15px; font-weight: 900; letter-spacing: 0.1em;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}
.footer-col h4::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 24px; height: 2px;
  background: var(--grad-amber);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-faint);
  margin-bottom: 12px;
  transition: color 0.3s, transform 0.3s var(--ease);
}
.footer-col a:hover { color: var(--amber-2); transform: translateX(4px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding: 24px 0;
  font-size: 13px;
  color: var(--text-faint);
}
.footer-qr { display: flex; gap: 18px; }
.qr-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.qr-item img {
  width: 78px; height: 78px;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 4px;
  background: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.qr-item:hover img {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(240, 166, 60, 0.25);
}
.qr-item span {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
.hero [data-reveal]:nth-child(1) { transition-delay: 0.15s; }
.hero [data-reveal]:nth-child(2) { transition-delay: 0.28s; }
.hero [data-reveal]:nth-child(3) { transition-delay: 0.41s; }
.hero [data-reveal]:nth-child(4) { transition-delay: 0.54s; }
.hero [data-reveal]:nth-child(5) { transition-delay: 0.67s; }

@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .franchise-box { grid-template-columns: 1fr; padding: 46px 40px; }
  .franchise-right { grid-template-columns: repeat(4, 1fr); }
  .staff-box { flex-direction: column; align-items: flex-start; padding: 46px 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .nav-actions { margin-left: auto; }
  .nav-cta { display: none; }
  .nav-toggle {
    display: flex;
    align-items: center; justify-content: center;
    width: 44px; height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(22, 19, 31, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 5px;
  }
  .nav-toggle span {
    width: 20px; height: 2px;
    background: var(--amber);
    border-radius: 2px;
    transition: 0.3s var(--ease);
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-logo {
    filter: none;
    width: 38px; height: 38px;
    padding: 5px;
    border-radius: 10px;
    background: radial-gradient(circle at 50% 35%, rgba(255, 207, 125, 0.95), rgba(240, 166, 60, 0.8) 70%);
    box-shadow: 0 3px 12px rgba(240, 166, 60, 0.3);
    box-sizing: border-box;
  }
  .nav-wordmark strong { font-size: 17px; }

    .nav-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    counter-reset: navitem;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 2px;
    padding: calc(var(--nav-h) + 20px) 36px 32px;
    background: rgba(11, 10, 16, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
    z-index: 890;
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-menu > a {
    display: flex; align-items: baseline; gap: 14px;
    padding: 15px 4px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav-menu > a::before {
    counter-increment: navitem;
    content: "0" counter(navitem);
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 700;
    color: var(--amber);
  }
  .nav-menu a::after { display: none; }
  .nav-menu a:active,
  .nav-menu a.active {
    color: var(--amber-2);
    background: none;
  }
  .nav-menu a.active::before { color: var(--amber-2); }
    .nav-menu-close {
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 14px);
    right: 20px;
    width: 44px; height: 44px;
    font-size: 26px;
    line-height: 1;
    color: var(--text-dim);
    background: rgba(22, 19, 31, 0.7);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s;
  }
  .nav-menu-close:hover { color: var(--amber-2); border-color: rgba(240, 166, 60, 0.45); }

    .nav-drawer-foot {
    display: flex; flex-direction: column; gap: 16px;
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
  }
  .nav-drawer-cta { justify-content: center; }
  .nav-drawer-tel {
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--text-faint);
  }
  .nav-drawer-tel:hover { color: var(--amber-2); }

    .hero-sub { max-width: 100%; font-size: 15px; }
  .store-grid, .news-grid { grid-template-columns: 1fr; }
  .gear-item { gap: 22px; }
  .gear-spec { display: none; }
  .hero-side-text { display: none; }
    #heroCanvas { display: none; }
}

@media (min-width: 901px) {
  .nav-drawer-foot, .nav-menu-close { display: none; }
}

@media (max-width: 600px) {
  .container { width: calc(100% - 40px); }
  .nav-inner { width: calc(100% - 40px); gap: 16px; }
  .hero { padding-top: var(--nav-h); }
  .hero-content { width: calc(100% - 48px); }
  .hero-btns { gap: 12px; margin-bottom: 48px; }
  .hero-btns .btn { padding: 14px 24px; font-size: 14px; }
  .section { padding: 84px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .franchise-right { grid-template-columns: 1fr 1fr; }
  .franchise-list { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-stat { padding: 16px 14px 13px; }
  .hero-stat strong { font-size: 28px; }
  .staff-avatars { grid-template-columns: repeat(3, 78px); }
  .staff-avatar { width: 78px; height: 78px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .gear-idx { font-size: 44px; width: 60px; }
  .gear-body h3 { font-size: 21px; }
}

.store-thumb .thumb-img,
.news-thumb .thumb-img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.store-card:hover .store-thumb .thumb-img { transform: scale(1.08); }
.news-card:hover .news-thumb .thumb-img { transform: scale(1.07); }

.nav-menu a.active { color: var(--amber-2); }

.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 90px) 0 80px;
  background:
    radial-gradient(700px 320px at 15% 0%, rgba(240, 166, 60, 0.12), transparent 60%),
    radial-gradient(600px 300px at 90% 100%, rgba(53, 224, 230, 0.06), transparent 60%),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero-grid {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 30% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 14px 0 12px;
  background: linear-gradient(120deg, #f2efe9 30%, var(--amber-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero-desc { color: var(--text-dim); font-size: 16px; margin-bottom: 22px; }
.page-hero-pos {
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}
.page-hero-pos a { color: var(--text-dim); transition: color 0.3s; }
.page-hero-pos a:hover { color: var(--amber-2); }

.stores-page .store-grid { margin-top: 8px; }
.store-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 13px; font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.08em;
}
.store-more svg { transition: transform 0.35s var(--ease); }
.store-card:hover .store-more svg { transform: translateX(4px); }

.bp-pagination {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 8px;
  margin-top: 56px;
}
.bp-pagination a,
.bp-pagination .page-num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 14px;
  font-size: 14px;
  color: var(--text-dim);
  background: rgba(22, 19, 31, 0.6);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.bp-pagination a:hover {
  color: var(--amber-2);
  border-color: rgba(240, 166, 60, 0.4);
  transform: translateY(-2px);
}
.bp-pagination .page-num-current,
.bp-pagination a.page-num-current {
  background: var(--grad-amber);
  color: #221503;
  font-weight: 700;
  border-color: transparent;
}
.bp-pagination .page-num-current:hover { color: #221503; transform: none; }

.bp-empty {
  text-align: center;
  padding: 90px 20px;
  color: var(--text-faint);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.bp-empty-ico { font-size: 42px; margin-bottom: 14px; }

.store-map {
  position: relative;
  height: 460px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.store-map-sm { height: 380px; }
.store-map-loading {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint);
  font-size: 14px; letter-spacing: 0.2em;
}
.store-map-error { color: #ff7a6b; letter-spacing: 0.05em; padding: 0 30px; text-align: center; }

.amap-marker-bp {
  position: relative;
  display: flex; align-items: center; gap: 6px;
}
.amap-marker-bp i {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad-amber);
  border: 2px solid #221503;
  box-shadow: 0 0 0 3px rgba(240, 166, 60, 0.35), 0 4px 12px rgba(0, 0, 0, 0.5);
  animation: bp-marker-pulse 2s infinite;
}
.amap-marker-bp span {
  padding: 3px 10px;
  font-size: 12px; font-weight: 700;
  color: #221503;
  background: var(--grad-amber);
  border-radius: 100px;
  white-space: nowrap;
}
@keyframes bp-marker-pulse {
  0% { box-shadow: 0 0 0 3px rgba(240, 166, 60, 0.35), 0 4px 12px rgba(0,0,0,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(240, 166, 60, 0.12), 0 4px 12px rgba(0,0,0,0.5); }
  100% { box-shadow: 0 0 0 3px rgba(240, 166, 60, 0.35), 0 4px 12px rgba(0,0,0,0.5); }
}

.amap-info-bp {
  min-width: 200px;
  padding: 4px 2px;
  font-family: var(--font-cn);
}
.amap-info-bp strong { display: block; font-size: 15px; color: #221503; margin-bottom: 6px; }
.amap-info-bp p { font-size: 13px; color: #6b5a44; margin-bottom: 8px; line-height: 1.6; }
.amap-info-bp a { font-size: 13px; font-weight: 700; color: #b0713c; }
.amap-info-bp a:hover { color: #e07f2e; }

.detail-meta {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  padding-bottom: 22px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.article-content {
  max-width: 860px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.9;
}
.article-content p { margin-bottom: 1.2em; }
.article-content h1, .article-content h2, .article-content h3, .article-content h4 {
  color: var(--text);
  margin: 1.6em 0 0.8em;
  line-height: 1.4;
}
.article-content h2 { font-size: 24px; }
.article-content h3 { font-size: 20px; }
.article-content img { max-width: 100%; height: auto; border-radius: 10px; margin: 10px 0; }
.article-content a { color: var(--amber); text-decoration: underline; }
.article-content ul, .article-content ol { padding-left: 1.6em; margin-bottom: 1.2em; }
.article-content blockquote {
  margin: 1.4em 0;
  padding: 14px 20px;
  border-left: 4px solid var(--amber);
  background: rgba(240, 166, 60, 0.06);
  border-radius: 0 10px 10px 0;
}
.article-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.4em; }
.article-content td, .article-content th { border: 1px solid var(--line); padding: 10px 14px; }

.detail-map-box { margin-top: 56px; }
.detail-map-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.detail-map-title svg { color: var(--amber); }
.detail-map-addr { color: var(--text-dim); margin-bottom: 20px; }

.detail-prenext {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.pre-next-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  min-width: 0;
}
.pre-next-item em {
  flex-shrink: 0;
  font-style: normal;
  font-size: 12px; font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.1em;
}
.pre-next-item a {
  color: var(--text-dim);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  transition: color 0.3s;
}
.pre-next-item a:hover { color: var(--amber-2); }
.detail-back { margin-top: 40px; text-align: center; }

@media (max-width: 600px) {
  .page-hero { padding: calc(var(--nav-h) + 56px) 0 52px; }
  .store-map { height: 340px; }
  .store-map-sm { height: 300px; }
  .detail-prenext { grid-template-columns: 1fr; }
}

.store-filter {
  display: flex; align-items: flex-end; gap: 22px;
  flex-wrap: wrap;
  padding: 24px 28px;
  background: rgba(22, 19, 31, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.store-filter-item { display: flex; flex-direction: column; gap: 10px; }
.store-filter-item label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--amber);
}
.store-filter-search { flex: 1; min-width: 240px; }
.store-select-box { position: relative; }
.store-select-box::after {
  content: "";
  position: absolute; right: 16px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.store-filter select,
.store-filter input {
  height: 46px;
  padding: 0 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: rgba(11, 10, 16, 0.6);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.store-filter select {
  min-width: 180px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.store-filter select option { background: var(--bg-3); color: var(--text); }
.store-filter input { width: 100%; }
.store-filter input::placeholder { color: var(--text-faint); }
.store-filter select:focus,
.store-filter input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(240, 166, 60, 0.15);
}
.store-filter-count {
  margin-left: auto;
  padding-bottom: 12px;
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.store-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 12px;
}
.store-meta span {
  padding: 4px 12px;
  font-size: 12px;
  color: var(--amber-2);
  background: rgba(240, 166, 60, 0.1);
  border: 1px solid rgba(240, 166, 60, 0.22);
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.detail-spec {
  position: relative;
  padding: 18px 20px 15px;
  background: rgba(22, 19, 31, 0.55);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.detail-spec::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-amber);
  opacity: 0.7;
}
.detail-spec em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.detail-spec strong {
  font-size: 19px;
  color: var(--amber-2);
  font-weight: 700;
}

@media (max-width: 900px) {
  .detail-specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .store-filter { gap: 16px; padding: 18px; }
  .store-filter-item, .store-filter-search { width: 100%; min-width: 0; }
  .store-filter select { width: 100%; }
  .store-filter-count { margin-left: 0; padding-bottom: 0; }
}

.page-hero-row {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.page-hero-row .page-hero-inner { flex: 1 1 380px; min-width: 0; }

.store-hero-tools {
  flex: 0 1 560px;
  display: flex; flex-direction: column; gap: 10px;
}
.store-hero-tools .store-filter { width: 100%; }
.store-hero-tools .store-filter-count {
  margin-left: 0;
  padding-bottom: 0;
  text-align: right;
}

.store-map-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 46px;
  padding: 0 22px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em;
  color: #221503;
  background: var(--grad-amber);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(240, 166, 60, 0.28);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.store-map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(240, 166, 60, 0.42);
}

.map-modal {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.map-modal.open { visibility: visible; opacity: 1; }
.map-modal-mask {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(5, 4, 8, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.map-modal-box {
  position: relative;
  width: min(1080px, 100%);
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s var(--ease);
}
.map-modal.open .map-modal-box { transform: translateY(0) scale(1); }
.map-modal-box::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-amber);
  z-index: 2;
}
.map-modal-head {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.map-modal-head strong { font-size: 17px; color: var(--text); letter-spacing: 0.05em; }
.map-modal-tip { font-size: 12px; color: var(--text-faint); }
.map-modal-close {
  margin-left: auto;
  width: 34px; height: 34px;
  font-size: 20px;
  line-height: 1;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.map-modal-close:hover { color: var(--amber-2); border-color: rgba(240, 166, 60, 0.4); }
.map-modal-map {
  height: min(60vh, 560px);
  border: none;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 900px) {
  .page-hero-row { align-items: stretch; }
  .store-hero-tools { flex: 1 1 100%; }
  .store-hero-tools .store-filter-count { text-align: left; }
}
@media (max-width: 600px) {
  .map-modal { padding: 14px; }
  .map-modal-map { height: 62vh; }
}

.map-modal-box { width: min(1200px, 100%); }
.map-modal-body {
  display: grid;
  grid-template-columns: 340px 1fr;
  height: min(62vh, 580px);
}

.map-store-side {
  border-right: 1px solid var(--line);
  overflow-y: auto;
  background: rgba(11, 10, 16, 0.45);
}
.map-store-side::-webkit-scrollbar { width: 6px; }
.map-store-side::-webkit-scrollbar-thumb { background: #2c2839; border-radius: 3px; }
.map-store-side::-webkit-scrollbar-thumb:hover { background: var(--amber-deep); }
.map-store-list { list-style: none; }
.map-store-item {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.3s;
}
.map-store-item:hover { background: rgba(240, 166, 60, 0.06); }
.map-store-item.active {
  background: rgba(240, 166, 60, 0.1);
  box-shadow: inset 3px 0 0 var(--amber);
}
.map-store-item-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-bottom: 6px;
}
.map-store-item-head strong {
  font-size: 14px; color: var(--text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.map-store-badge {
  flex-shrink: 0;
  padding: 2px 10px;
  font-size: 11px; font-weight: 700;
  color: #221503;
  background: var(--grad-amber);
  border-radius: 100px;
}
.map-store-item p {
  font-size: 12px; color: var(--text-faint);
  margin-bottom: 8px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.map-store-item-foot {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
}
.map-store-item-foot span { color: var(--amber-2); }
.map-store-item-foot a { color: var(--text-dim); transition: color 0.3s; }
.map-store-item-foot a:hover { color: var(--amber-2); }

.map-modal-map {
  height: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 900px) {
  .map-modal-body { grid-template-columns: 1fr; grid-template-rows: 220px 1fr; }
  .map-store-side { border-right: none; border-bottom: 1px solid var(--line); }
}

.map-store-badge:empty { display: none; }
.map-store-item p:empty { display: none; }
.map-store-machines:empty { display: none; }
.map-store-machines::after { content: " 台设备"; }
.detail-map-addr:empty { display: none; }

.news-thumb::before {
  background:
    radial-gradient(circle at 70% 25%, rgba(240, 166, 60, 0.35) 0%, transparent 48%),
    repeating-linear-gradient(60deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 18px),
    linear-gradient(140deg, #241c2c, #12101c);
}

.news-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 13px; font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.08em;
}
.news-more svg { transition: transform 0.35s var(--ease); }
.news-card:hover .news-more svg { transform: translateX(4px); }

.page-hero-title-sm { font-size: clamp(26px, 3.4vw, 40px); }

.detail-tags {
  display: flex; align-items: center; gap: 12px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.detail-tags-label {
  flex-shrink: 0;
  font-size: 12px; font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.15em;
}
.detail-tags-val { color: var(--text-faint); letter-spacing: 0.04em; }
.detail-tags:has(.detail-tags-val:empty) { display: none; }

.detail-specs-job { grid-template-columns: repeat(5, 1fr); }
.detail-spec:has(strong:empty) { display: none; }

.job-benefits {
  display: flex; align-items: baseline; gap: 14px;
  margin: -14px 0 36px;
  font-size: 14px;
}
.job-benefits-label {
  flex-shrink: 0;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--amber);
}
.job-benefits-val { color: var(--text-dim); line-height: 1.8; }
.job-benefits:has(.job-benefits-val:empty) { display: none; }

@media (max-width: 1100px) {
  .detail-specs-job { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .detail-specs-job { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
}

.jobs-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}

.jobs-side {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.jobs-side-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.jobs-side-head span {
  font-size: 14px; font-weight: 700;
  color: var(--text);
  letter-spacing: 0.08em;
}
.jobs-side-head em {
  font-style: normal;
  font-size: 12px;
  color: var(--amber);
}
.jobs-nav { list-style: none; max-height: 62vh; overflow-y: auto; }
.jobs-nav::-webkit-scrollbar { width: 6px; }
.jobs-nav::-webkit-scrollbar-thumb { background: #2c2839; border-radius: 3px; }
.jobs-nav-item {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.3s;
}
.jobs-nav-item:last-child { border-bottom: none; }
.jobs-nav-item:hover { background: rgba(240, 166, 60, 0.06); }
.jobs-nav-item.active {
  background: rgba(240, 166, 60, 0.1);
  box-shadow: inset 3px 0 0 var(--amber);
}
.jobs-nav-title {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.jobs-nav-title strong {
  font-size: 15px; color: var(--text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.jobs-nav-item.active .jobs-nav-title strong { color: var(--amber-2); }
.jobs-nav-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 12px;
}
.jobs-nav-loc { color: var(--text-faint); }
.jobs-nav-loc:empty { display: none; }
.jobs-nav-salary {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--amber-2);
}
.jobs-nav-salary:empty { display: none; }

.job-panel { display: none; }
.job-panel.active {
  display: block;
  animation: bp-panel-in 0.45s var(--ease);
}
@keyframes bp-panel-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.job-panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.job-panel-title {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  min-width: 0;
}
.job-panel-head h2 { font-size: 28px; color: var(--text); font-weight: 900; }
.job-panel-head .btn { flex-shrink: 0; }
.btn-sm { padding: 11px 22px; font-size: 13px; }

@media (max-width: 900px) {
  .jobs-layout { grid-template-columns: 1fr; }
  .jobs-side { position: static; }
  .jobs-nav {
    display: flex;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .jobs-nav::-webkit-scrollbar { height: 4px; width: auto; }
  .jobs-nav-item {
    flex: 0 0 240px;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }
  .jobs-nav-item.active { box-shadow: inset 0 -3px 0 var(--amber); }
  .job-panel-head h2 { font-size: 22px; }
}

.apply-modal-box { width: min(620px, 100%); }
.apply-modal-body { padding: 26px 30px 30px; }
@media (max-width: 600px) {
  .apply-modal-body { padding: 20px 18px 22px; }
}
.bp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bp-form-item { margin-bottom: 18px; }
.bp-form-item label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}
.bp-form-item label i { color: var(--amber); font-style: normal; }
.bp-form-item input,
.bp-form-item textarea,
.bp-form-item select {
  width: 100%;
  padding: 13px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: rgba(11, 10, 16, 0.6);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.bp-form-item textarea { resize: vertical; min-height: 100px; }
.bp-form-item input::placeholder,
.bp-form-item textarea::placeholder { color: var(--text-faint); }
.bp-form-item input:focus,
.bp-form-item textarea:focus,
.bp-form-item select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(240, 166, 60, 0.15);
}
.bp-form-item select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}
.bp-form-item select option { background: var(--bg-3); color: var(--text); }
.bp-form-code-row {
  grid-template-columns: 1fr auto;
  align-items: end;
}
.bp-codeimg {
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--line);
  cursor: pointer;
  margin-bottom: 18px;
}
.bp-form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.bp-form-safe {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .bp-form-row { grid-template-columns: 1fr; }
  .bp-form-code-row { grid-template-columns: 1fr auto; }
}

.jobs-nav-item { position: relative; padding-right: 40px; }
.jobs-nav-item::after {
  content: "→";
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%) translateX(-6px);
  font-size: 15px;
  color: var(--amber);
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.jobs-nav-item:hover::after,
.jobs-nav-item.active::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.apply-job-chip {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
  padding: 15px 18px;
  background: rgba(240, 166, 60, 0.08);
  border: 1px solid rgba(240, 166, 60, 0.28);
  border-radius: 12px;
}
.apply-job-chip svg { flex-shrink: 0; color: var(--amber); }
.apply-job-chip em {
  display: block;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  margin-bottom: 3px;
}
.apply-job-chip strong {
  font-size: 16px;
  color: var(--amber-2);
}

.job-apply-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding: 22px 28px;
  background: rgba(240, 166, 60, 0.06);
  border: 1px solid rgba(240, 166, 60, 0.28);
  border-radius: 12px;
}
.job-apply-bar p { color: var(--text-dim); font-size: 14px; }
.job-apply-bar .btn { flex-shrink: 0; }
@media (max-width: 600px) {
  .job-apply-bar { padding: 18px 20px; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-card { display: block; }
.gallery-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 20%, rgba(240, 166, 60, 0.3) 0%, transparent 50%),
    repeating-linear-gradient(100deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 20px),
    linear-gradient(150deg, #1e1826 0%, #110f1c 100%);
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.gallery-card:hover .gallery-thumb {
  transform: translateY(-6px);
  border-color: rgba(240, 166, 60, 0.4);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
}
.gallery-thumb img {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-card:hover .gallery-thumb img { transform: scale(1.06); }

@supports not (aspect-ratio: 1 / 1) {
  .gallery-thumb { height: 0; padding-top: 75%; }
}

.gallery-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(11, 10, 16, 0.45) 0%, transparent 35%, rgba(11, 10, 16, 0.85) 100%);
  opacity: 0.92;
  transition: opacity 0.4s;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-top {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.gallery-tag {
  padding: 4px 12px;
  font-size: 11px; font-weight: 700;
  color: #221503;
  background: var(--grad-amber);
  border-radius: 100px;
  letter-spacing: 0.06em;
}
.gallery-view {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px;
  color: var(--amber-2);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.gallery-card:hover .gallery-view { opacity: 1; transform: translateY(0); }
.gallery-overlay-bottom h3 {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 4px;
}
.gallery-date { font-size: 12px; color: var(--text-faint); }

.gallery-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}
.gallery-wall:empty { display: none; }
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: zoom-in;
  margin: 0;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 14px 10px;
  font-size: 12px;
  color: var(--text-dim);
  background: linear-gradient(180deg, transparent, rgba(11, 10, 16, 0.85));
}
.gallery-item figcaption:empty { display: none; }

@supports not (aspect-ratio: 1 / 1) {
  .gallery-item { height: 0; padding-top: 75%; }
  .gallery-item img { position: absolute; top: 0; left: 0; }
}

.article-content video,
.article-content iframe {
  max-width: 100%;
  border-radius: 12px;
}
.article-content video { width: 100%; height: auto; background: #000; }

.bp-lightbox {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.bp-lightbox.open { visibility: visible; opacity: 1; }
.bp-lightbox-mask {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(5, 4, 8, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.bp-lightbox-stage {
  position: relative; z-index: 2;
  max-width: min(1100px, 88vw);
  text-align: center;
}
.bp-lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}
.bp-lightbox-cap {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-dim);
}
.bp-lightbox-cap:empty { display: none; }
.bp-lightbox-bar {
  position: absolute; top: 22px; left: 26px; right: 26px; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
}
.bp-lightbox-count {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--amber-2);
  letter-spacing: 0.1em;
}
.bp-lightbox-close {
  width: 38px; height: 38px;
  font-size: 22px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.bp-lightbox-close:hover { color: var(--amber-2); border-color: rgba(240, 166, 60, 0.4); }
.bp-lightbox-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  font-size: 26px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.bp-lightbox-arrow:hover { color: var(--amber-2); border-color: rgba(240, 166, 60, 0.4); }
.bp-lightbox-prev { left: 26px; }
.bp-lightbox-next { right: 26px; }

@media (max-width: 900px) {
  .gallery-grid, .gallery-wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid, .gallery-wall { grid-template-columns: 1fr; }
  .bp-lightbox-arrow { width: 38px; height: 38px; font-size: 20px; }
  .bp-lightbox-prev { left: 12px; }
  .bp-lightbox-next { right: 12px; }
}

.hero { padding-bottom: 64px; } .hero .marquee {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 6;
  border-top: 1px solid var(--line);
  border-bottom: none;
  background: rgba(16, 14, 23, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero .marquee::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 166, 60, 0.5), transparent);
}

@media (max-width: 900px) {
  .hero { padding-bottom: 58px; }
  .hero .marquee { padding: 16px 0; }
  .hero .marquee-track span { font-size: 18px; }
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}
.about-intro-side { position: sticky; top: calc(var(--nav-h) + 30px); }
.about-intro-sign {
  margin-top: 34px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.3em;
  line-height: 2;
  color: var(--amber);
  border-left: 2px solid var(--amber);
  padding-left: 16px;
}
.about-intro-body { font-size: 17px; }
.about-intro-body p:first-child {
  font-size: 20px;
  color: var(--text);
  line-height: 1.9;
}

.about-stats { padding-top: 0; }
.about-stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 34px 34px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.about-stats-band::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-amber);
}
.about-stat { text-align: center; position: relative; }
.about-stat + .about-stat::before {
  content: "";
  position: absolute; left: 0; top: 15%;
  height: 70%;
  width: 1px;
  background: var(--line);
}
.about-stat strong {
  display: block;
  font-family: var(--font-en);
  font-size: 42px; font-weight: 700;
  line-height: 1.1;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-stat strong i {
  font-style: normal;
  font-size: 20px;
  color: var(--amber);
  margin-left: 2px;
}
.about-stat em {
  font-style: normal;
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.12em;
}

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--amber), rgba(240, 166, 60, 0.08));
}
.timeline-item {
  position: relative;
  display: flex; gap: 28px;
  padding: 26px 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -40px; top: 38px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--amber);
  box-shadow: 0 0 0 5px rgba(240, 166, 60, 0.15);
}
.timeline-year {
  flex-shrink: 0;
  width: 90px;
  font-family: var(--font-en);
  font-size: 34px; font-weight: 700;
  line-height: 1.2;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.timeline-body {
  flex: 1;
  padding: 20px 26px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.timeline-body:hover {
  transform: translateX(6px);
  border-color: rgba(240, 166, 60, 0.35);
}
.timeline-body h3 { font-size: 17px; color: var(--text); margin-bottom: 8px; }
.timeline-body p { font-size: 14px; color: var(--text-dim); }

.about-cta { padding-top: 0; }
.about-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.about-cta-card {
  position: relative;
  padding: 40px 42px;
  background: var(--bg-3);
  border: 1px solid rgba(240, 166, 60, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.about-cta-card.alt { border-color: rgba(53, 224, 230, 0.25); }
.about-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.5);
}
.about-cta-card h3 { font-size: 24px; color: var(--text); margin: 12px 0 8px; }
.about-cta-card p { font-size: 14px; color: var(--text-faint); }
.about-cta-arrow {
  position: absolute;
  right: 36px; bottom: 30px;
  font-size: 26px;
  color: var(--amber);
  transition: transform 0.35s var(--ease);
}
.about-cta-card:hover .about-cta-arrow { transform: translateX(6px); }

@media (max-width: 900px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-intro-side { position: static; }
  .about-stats-band { grid-template-columns: repeat(2, 1fr); gap: 26px 14px; }
  .about-stat + .about-stat::before { display: none; }
  .about-cta-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 30px; }
  .timeline-item::before { left: -30px; }
  .timeline-year { width: 70px; font-size: 26px; }
  .timeline-item { gap: 16px; }
}

.fr-hero {
  position: relative;
  padding: calc(var(--nav-h) + 90px) 0 90px;
  background:
    radial-gradient(900px 420px at 12% 10%, rgba(240, 166, 60, 0.14), transparent 60%),
    radial-gradient(700px 400px at 95% 90%, rgba(53, 224, 230, 0.07), transparent 60%),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.fr-hero-glow {
  position: absolute;
  top: -180px; right: -100px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(240, 166, 60, 0.12) 0%, transparent 62%);
  pointer-events: none;
}
.fr-hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.fr-hero-title {
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin: 18px 0 18px;
  color: var(--text);
}
.fr-hero-title em {
  font-style: normal;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 26px rgba(240, 166, 60, 0.3));
}
.fr-hero-desc {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 30px;
}
.fr-hero-chips {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 34px;
}
.fr-hero-chip {
  padding: 14px 22px;
  background: rgba(22, 19, 31, 0.6);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
  min-width: 118px;
}
.fr-hero-chip strong {
  display: block;
  font-family: var(--font-en);
  font-size: 26px; font-weight: 700;
  line-height: 1.2;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fr-hero-chip em {
  font-style: normal;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}
.fr-hero-tel {
  display: inline-block;
  margin-top: 22px;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  transition: color 0.3s;
}
.fr-hero-tel:hover { color: var(--amber-2); }

.fr-hero-qr { display: flex; justify-content: flex-end; }
.fr-qr-card {
  padding: 26px 30px 24px;
  background: rgba(22, 19, 31, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(240, 166, 60, 0.3);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(240, 166, 60, 0.06);
  transform: rotate(1.5deg);
  transition: transform 0.4s var(--ease);
}
.fr-qr-card:hover { transform: rotate(0deg) translateY(-4px); }
.fr-qr-frame {
  width: 190px; height: 190px;
  margin: 0 auto 16px;
  padding: 10px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
.fr-qr-frame img { width: 100%; height: 100%; object-fit: contain; display: block; }
.fr-qr-empty {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  color: #b0a898;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.03) 0 8px, transparent 8px 16px);
  border-radius: 8px;
  font-size: 12px;
}
.fr-qr-card strong { display: block; font-size: 17px; color: var(--text); margin-bottom: 6px; }
.fr-qr-card em { font-style: normal; font-size: 12px; color: var(--text-faint); }
.fr-qr-card.sm { transform: none; padding: 20px 24px 18px; }
.fr-qr-card.sm .fr-qr-frame { width: 150px; height: 150px; margin-bottom: 12px; }

.feature-stat {
  font-family: var(--font-en);
  font-size: 20px; font-weight: 700;
  margin: 2px 0 12px;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.support-item {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 32px 16px 28px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.support-item:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 166, 60, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.support-item svg {
  width: 40px; height: 40px;
  color: var(--amber);
  transition: transform 0.35s var(--ease);
}
.support-item:hover svg { transform: scale(1.12); }
.support-item span {
  font-size: 15px; font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.stepper-item {
  position: relative;
  padding: 0 18px;
  text-align: center;
}
.stepper-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px; left: calc(50% + 40px); right: calc(-50% + 40px);
  height: 2px;
  background: linear-gradient(90deg, rgba(240, 166, 60, 0.55), rgba(240, 166, 60, 0.15));
}
.stepper-dot {
  position: relative; z-index: 2;
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid rgba(240, 166, 60, 0.45);
  box-shadow: 0 0 0 6px rgba(240, 166, 60, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.stepper-item:hover .stepper-dot {
  transform: scale(1.1);
  box-shadow: 0 0 0 9px rgba(240, 166, 60, 0.14);
}
.stepper-dot span {
  font-family: var(--font-en);
  font-size: 19px; font-weight: 700;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stepper-item h3 { font-size: 16px; color: var(--text); margin-bottom: 8px; }
.stepper-item p { font-size: 12px; color: var(--text-faint); line-height: 1.7; }

.franchise-final { padding-top: 0; }
.fr-final-box {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 50px;
  padding: 60px 64px;
  background: var(--bg-3);
  border: 1px solid rgba(240, 166, 60, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
}
.fr-final-glow {
  position: absolute; top: -160px; left: -80px;
  width: 520px; height: 420px;
  background: radial-gradient(ellipse, rgba(240, 166, 60, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.fr-final-left { position: relative; flex: 1; min-width: 0; }
.fr-final-left .hero-btns { margin-bottom: 0; margin-top: 26px; }
.fr-final-left .section-title { margin: 10px 0 12px; }
.fr-final-desc { color: var(--text-dim); font-size: 15px; }
.fr-final-qr { position: relative; flex-shrink: 0; }

@media (max-width: 1100px) {
  .stepper { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .stepper-item:nth-child(3)::after { display: none; }
}
@media (max-width: 900px) {
  .fr-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .fr-hero-qr { justify-content: flex-start; }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .fr-final-box { flex-direction: column; text-align: center; padding: 46px 30px; }
  .fr-final-left .hero-btns { justify-content: center; }
  .fr-final-left .section-label { justify-content: center; }
}
@media (max-width: 600px) {
  .fr-hero { padding: calc(var(--nav-h) + 56px) 0 60px; }
  .fr-hero-chip { min-width: calc(50% - 7px); }
  .stepper { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .stepper-item::after { display: none !important; }
}

.hero-reticle {
  position: absolute;
  top: 0; left: 0;
  z-index: 8;
  width: 0; height: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.hero-reticle.on { opacity: 1; }
.hr-ring {
  position: absolute;
  left: -22px; top: -22px;
  width: 44px; height: 44px;
  border: 1px solid rgba(240, 166, 60, 0.75);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(240, 166, 60, 0.25) inset;
}
.hr-dot {
  position: absolute;
  left: -2px; top: -2px;
  width: 4px; height: 4px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--amber);
}
.hr-line { position: absolute; background: rgba(240, 166, 60, 0.75); }
.hr-l-t { left: 0; top: -32px; width: 1px; height: 10px; }
.hr-l-b { left: 0; top: 22px; width: 1px; height: 10px; }
.hr-l-l { left: -32px; top: 0; width: 10px; height: 1px; }
.hr-l-r { left: 22px; top: 0; width: 10px; height: 1px; }
.hero-reticle.pulse .hr-ring { animation: hr-pulse 0.45s var(--ease); }
@keyframes hr-pulse {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 900px) {
  .hero-reticle { display: none; }
}

.float-bar {
  position: fixed;
  right: 40px; bottom: 34px;
  bottom: calc(34px + env(safe-area-inset-bottom, 0px));
  z-index: 900;
  display: flex; flex-direction: column; gap: 12px;
}
.float-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  width: 76px;
  padding: 18px 6px 15px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--text-dim);
  background: rgba(22, 19, 31, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--ease), color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.float-item svg { color: var(--amber); transition: transform 0.3s var(--ease); }
.float-item:hover {
  transform: translateY(-4px);
  color: var(--amber-2);
  border-color: rgba(240, 166, 60, 0.45);
  box-shadow: 0 16px 40px rgba(240, 166, 60, 0.18);
}
.float-item:hover svg { transform: scale(1.15); }

.float-item-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s,
    color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.float-bar.scrolled .float-item-top {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.float-bar.scrolled .float-item-top:hover { transform: translateY(-4px); }

.float-qr-box { width: min(420px, 100%); }
.float-qr-body {
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 26px 26px;
}
.float-qr-body .fr-qr-frame { margin-bottom: 16px; }
.float-qr-tel {
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--amber-2);
  transition: color 0.3s;
}
.float-qr-tel:hover { color: var(--amber); }

@media (max-width: 600px) {
    body { padding-bottom: 76px; }
  .float-bar {
    right: 16px; bottom: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    flex-direction: row;
    gap: 10px;
  }
  .float-item {
    width: 48px; height: 48px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
  }
  .float-item span { display: none; }
  .float-item svg { width: 20px; height: 20px; }
  .float-item-top { transform: translateY(10px); }
}

.store-slider-sec { margin-bottom: 44px; }
.store-slider-sec .detail-map-title { margin-bottom: 18px; }
.store-slider {
  position: relative;
  touch-action: pan-y;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
}
.store-slider-track {
  display: flex;
  transition: transform 0.55s var(--ease);
}
.store-slide {
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}
.store-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.store-slide-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 22px 14px;
  font-size: 13px;
  color: var(--text-dim);
  background: linear-gradient(180deg, transparent, rgba(11, 10, 16, 0.85));
}
.store-slide-cap:empty { display: none; }

@supports not (aspect-ratio: 1 / 1) {
  .store-slide { height: 0; padding-top: 50%; }
  .store-slide img { position: absolute; top: 0; left: 0; }
}

.store-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  font-size: 24px;
  line-height: 1;
  color: var(--text);
  background: rgba(11, 10, 16, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, color 0.3s, border-color 0.3s;
}
.store-slider:hover .store-slider-arrow { opacity: 1; }
.store-slider-arrow:hover { color: var(--amber-2); border-color: rgba(240, 166, 60, 0.45); }
.store-slider-arrow.prev { left: 16px; }
.store-slider-arrow.next { right: 16px; }

.store-slider-dots {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  z-index: 3;
  display: flex; justify-content: center; gap: 8px;
}
.store-slider-dot {
  width: 8px; height: 8px;
  padding: 0;
  border: none;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.3s;
}
.store-slider-dot.active {
  width: 24px;
  background: var(--amber);
}
.store-slide-cap:not(:empty) ~ .store-slider-dots { bottom: 40px; }

@media (hover: none) {
  .store-slider-arrow { opacity: 1; }
}
@media (max-width: 600px) {
  .store-slide { aspect-ratio: 16 / 10; }
  .store-slider-arrow { width: 36px; height: 36px; font-size: 19px; }
}
@supports not (aspect-ratio: 1 / 1) {
  @media (max-width: 600px) {
    .store-slide { padding-top: 62.5%; }
  }
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0 1000px #16131f inset;
  caret-color: var(--text);
  border-color: var(--line) !important;
  transition: background-color 99999s ease-out 0s;
}
input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #16131f inset, 0 0 0 3px rgba(240, 166, 60, 0.15);
  border-color: var(--amber) !important;
}

.store-province { display: none; }
