/* ════════════════════════════════════════════════════════
   Z.A.P 个人品牌站 · 主样式
   ════════════════════════════════════════════════════════ */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--zap-black);
  color: var(--txt-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* 全局黑粉底纹：径向粉光 + 数据网格 */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1200px 800px at 78% -8%, var(--zap-pink-14), transparent 60%),
    radial-gradient(900px 700px at 8% 12%, rgba(176,0,109,0.12), transparent 55%),
    radial-gradient(1000px 900px at 50% 108%, var(--zap-bright-08), transparent 60%),
    var(--zap-black);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(var(--zap-white-04) 1px, transparent 1px),
    linear-gradient(90deg, var(--zap-white-04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, #000 40%, transparent 85%);
  opacity: 0.6;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ── 通用排版 ─────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--zap-bright); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--zap-pink); box-shadow: var(--zap-glow-pink); }

.sec-title {
  font-family: var(--font-display);
  font-weight: 900; letter-spacing: -0.01em;
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.05; margin: 16px 0 18px;
}
.sec-lead { color: var(--txt-2); max-width: 62ch; font-size: clamp(15px, 1.5vw, 18px); }
.lead-line { display: block; }
.split-lead .lead-line + .lead-line { margin-top: 0.38em; }
.team-lead { max-width: 72ch; }
.team-motto {
  display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: start; gap: 12px;
  margin-top: 18px; padding: 16px 18px;
  border-left: 2px solid var(--zap-pink); border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, var(--zap-pink-14), rgba(255,46,159,0.025));
  box-shadow: inset 14px 0 28px -28px var(--zap-pink), 0 18px 42px -36px var(--zap-pink-35);
}
.team-motto-label {
  margin-top: 0.24em; font-family: var(--font-mono); font-size: 11px; font-weight: 800;
  line-height: 1; letter-spacing: .16em; color: var(--zap-bright); white-space: nowrap;
}
.team-motto-copy {
  font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 32px); font-weight: 900;
  line-height: 1.32; letter-spacing: .01em; color: var(--zap-white); text-wrap: balance;
}
.store-feature-link {
  display: inline-flex; align-items: center; gap: 9px; width: fit-content;
  margin-top: 13px; padding: 9px 14px 10px;
  border: 1px solid var(--zap-pink-35); border-radius: 999px;
  background: linear-gradient(100deg, var(--zap-pink-14), var(--zap-bright-08));
  font-family: var(--font-display); font-size: clamp(14px, 1.3vw, 17px); font-weight: 900;
  line-height: 1; letter-spacing: .02em; color: var(--zap-bright);
  box-shadow: 0 14px 32px -26px var(--zap-pink-35);
  transition: color var(--zap-t-fast), border-color var(--zap-t-fast), transform var(--zap-t-fast), box-shadow var(--zap-t-fast);
}
.store-feature-link:hover { color: var(--zap-white); border-color: var(--zap-pink); transform: translateY(-2px); box-shadow: var(--zap-glow-pink); }
.store-feature-link:focus-visible { outline: 2px solid var(--zap-bright); outline-offset: 3px; }
.gear-store-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.gear-store-row > span, .gear-store-row .store-feature-link { white-space: nowrap; }
.gear-store-row .store-feature-link { margin-top: 0; }

.pink { color: var(--zap-pink); }
.bright { color: var(--zap-bright); }
.gradient-text {
  background: linear-gradient(92deg, var(--zap-pink), var(--zap-bright) 60%, var(--zap-white));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

section { position: relative; padding: clamp(72px, 11vw, 132px) 0; }
.sec-head { margin-bottom: clamp(34px, 5vw, 60px); }

/* ── 按钮 ─────────────────────────────────── */
.btn {
  --b: var(--zap-pink);
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.02em;
  padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform var(--zap-t-fast) var(--ease), box-shadow var(--zap-t-med) var(--ease), background var(--zap-t-med);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  color: #0a0410;
  background: linear-gradient(100deg, var(--zap-pink), var(--zap-bright));
  box-shadow: 0 10px 34px -8px var(--zap-pink-35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px -8px var(--zap-bright-55), var(--zap-glow-bright); }
.btn-ghost {
  color: var(--zap-white);
  border-color: var(--zap-pink-35);
  background: var(--zap-pink-06);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--zap-pink); transform: translateY(-2px); box-shadow: var(--zap-glow-pink); }

/* ── 顶栏 ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad);
  transition: background var(--zap-t-med), border-color var(--zap-t-med), padding var(--zap-t-med);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,6,11,0.72); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--zap-white-10); padding-block: 11px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 900; }
.brand .mark { font-size: 22px; letter-spacing: 0.04em; }
.brand .tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; color: var(--txt-3); }
.brand-logo { height: 50px; width: auto; filter: drop-shadow(0 0 14px var(--zap-pink-35)); transition: height var(--zap-t-med); }
.nav.scrolled .brand-logo { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14px; color: var(--txt-2); transition: color var(--zap-t-fast); position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--zap-pink); box-shadow: var(--zap-glow-pink); transition: width var(--zap-t-med) var(--ease); }
.nav-links a:hover { color: var(--zap-white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: inline-flex; align-items: center; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--zap-white); margin: 5px 0; transition: transform var(--zap-t-fast), opacity var(--zap-t-fast); }

/* ── 首屏 Hero：战术人物、烟雾火星、HUD 与多层视差 ── */
.hero {
  position: relative; isolation: isolate; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  padding: 104px 0 clamp(56px, 10vh, 104px); text-align: center; background: #050307;
  cursor: default; caret-color: transparent; -webkit-user-select: none; user-select: none; touch-action: pan-y pinch-zoom;
}
.hero * { caret-color: transparent; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(52% 46% at 50% 40%, rgba(255,46,159,.13), transparent 72%);
}
.hero-atmosphere { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-photo {
  position: absolute; inset: -4%; display: block; overflow: hidden;
  opacity: .86; transform: translate3d(0,0,0) scale(1.035); transform-origin: 50% 42%;
  will-change: transform; animation: heroBackdropIn .9s var(--ease) both;
}
.hero-photo img {
  width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 16%;
  filter: saturate(1.08) contrast(1.1) brightness(.79);
  transform: scale(1.035); will-change: transform;
  animation: heroPhotoBreath 18s ease-in-out .9s infinite alternate;
}
.hero-smoke-field { position: absolute; inset: -14%; z-index: 1; will-change: transform; }
.hero-smoke {
  position: absolute; display: block; border-radius: 50%; filter: blur(72px);
  mix-blend-mode: screen; opacity: .18; will-change: transform, opacity;
}
.hero-smoke-a {
  left: -10%; top: 2%; width: 62vw; height: 48vw;
  background: radial-gradient(circle at 45% 48%, rgba(255,46,159,.82), rgba(176,0,109,.22) 44%, transparent 72%);
  animation: heroSmokeA 13s ease-in-out infinite alternate;
}
.hero-smoke-b {
  right: -12%; top: 7%; width: 58vw; height: 46vw;
  background: radial-gradient(circle at 52% 44%, rgba(255,79,216,.72), rgba(176,0,109,.2) 48%, transparent 73%);
  animation: heroSmokeB 16s ease-in-out -4s infinite alternate;
}
.hero-smoke-c {
  left: 28%; bottom: -30%; width: 48vw; height: 38vw; opacity: .1;
  background: radial-gradient(circle, rgba(255,46,159,.64), transparent 70%);
  animation: heroSmokeC 19s ease-in-out -8s infinite alternate;
}
.hero-particles { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; opacity: .9; }
.hero-grid-field {
  position: absolute; inset: 0; z-index: 2; opacity: .2;
  background-image:
    linear-gradient(rgba(255,46,159,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,46,159,.12) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, transparent 5%, #000 36%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 5%, #000 36%, #000 88%, transparent 100%);
  animation: heroGridPulse 5.8s ease-in-out infinite;
}
.hero-scanline {
  position: absolute; z-index: 3; left: 0; right: 0; top: -28%; height: 24%; opacity: .42;
  background: linear-gradient(180deg, transparent, rgba(255,46,159,.025) 44%, rgba(255,79,216,.18) 50%, rgba(255,46,159,.03) 56%, transparent);
  filter: blur(.3px) drop-shadow(0 0 18px rgba(255,46,159,.32));
  animation: heroScan 5.4s linear 1.1s infinite;
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 4;
  background:
    linear-gradient(180deg, rgba(5,3,7,.4) 0%, rgba(5,3,7,.02) 34%, rgba(5,3,7,.2) 60%, rgba(5,3,7,.93) 100%),
    radial-gradient(ellipse 31% 55% at 50% 40%, rgba(4,2,6,.02), rgba(4,2,6,.54) 100%);
}
.hero-click-layer { position: absolute; inset: 0; z-index: 4; overflow: hidden; pointer-events: none; }
.hero-click-meter {
  position: absolute; right: clamp(18px, 4vw, 64px); bottom: clamp(46px, 7vh, 82px); z-index: 6;
  display: flex; align-items: center; gap: 12px; padding: 8px 12px;
  border: 1px solid var(--zap-pink-35); border-radius: 8px;
  background: rgba(7, 3, 10, .72); box-shadow: 0 0 28px -14px var(--zap-pink);
  color: var(--txt-3); font-family: var(--font-mono); font-size: 9px; letter-spacing: .17em;
  opacity: 0; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.hero-click-meter b { color: var(--zap-bright); font-size: 11px; letter-spacing: .1em; }
.hero-click-meter.is-visible { opacity: 1; transform: none; }
.hero-prop {
  --dx: 0px; --dy: -60px; --rot: 0deg;
  position: absolute; left: 50%; top: 50%; width: 54px; height: 54px;
  display: grid; place-items: center; border: 1px solid rgba(255, 46, 159, .52); border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 46, 159, .18), rgba(7, 3, 10, .04) 68%);
  box-shadow: 0 0 26px -8px var(--zap-pink), inset 0 0 18px rgba(255, 46, 159, .09);
  pointer-events: none; will-change: transform, opacity;
  animation: heroPropBurst 1.45s cubic-bezier(.18, .72, .2, 1) forwards;
}
.hero-prop i { position: relative; display: block; width: 23px; height: 28px; filter: drop-shadow(0 0 7px rgba(255, 79, 216, .72)); }
.hero-prop span {
  position: absolute; top: calc(100% + 5px); left: 50%; transform: translateX(-50%);
  color: var(--zap-bright); font-family: var(--font-mono); font-size: 8px; font-style: normal;
  letter-spacing: .12em; line-height: 1; white-space: nowrap; text-shadow: 0 0 8px var(--zap-pink);
}
.hero-prop--flash i { width: 14px; height: 27px; border: 1px solid #fff; border-radius: 4px; background: linear-gradient(90deg, #f8f5f8, #ff4fd8 72%, #361027); }
.hero-prop--flash i::before { content: ""; position: absolute; left: 2px; top: -5px; width: 9px; height: 5px; border: 1px solid var(--zap-bright); border-bottom: 0; border-radius: 3px 3px 0 0; }
.hero-prop--smoke i { width: 22px; height: 26px; border: 1px solid var(--zap-bright); border-radius: 48% 48% 42% 42%; background: repeating-linear-gradient(0deg, #150b14 0 4px, #58103b 4px 6px); }
.hero-prop--smoke i::before { content: ""; position: absolute; left: 6px; top: -6px; width: 9px; height: 7px; border: 1px solid var(--zap-pink); border-radius: 3px 3px 0 0; }
.hero-prop--he i { width: 25px; height: 25px; border: 1px solid var(--zap-bright); border-radius: 50%; background: conic-gradient(from 20deg, #ff2e9f, #1c0a18 18%, #ff2e9f 34%, #1c0a18 54%, #ff2e9f 72%, #1c0a18); }
.hero-prop--he i::before { content: ""; position: absolute; left: 8px; top: -6px; width: 9px; height: 7px; border: 1px solid var(--zap-pink); border-radius: 3px 3px 0 0; }
.hero-prop--ammo i { width: 18px; height: 28px; border: 1px solid var(--zap-bright); border-radius: 3px 3px 6px 6px; transform: skewY(-8deg); background: repeating-linear-gradient(90deg, #24101f 0 4px, #ff2e9f 4px 5px); }
.hero-prop--kit i { width: 28px; height: 22px; border: 1px solid var(--zap-bright); border-radius: 3px; background: linear-gradient(#ff2e9f, #ff2e9f) center / 13px 3px no-repeat, linear-gradient(#ff2e9f, #ff2e9f) center / 3px 13px no-repeat, #160a14; }
.hero-prop--shell i { width: 8px; height: 28px; border: 1px solid #ffe7a6; border-radius: 5px 5px 2px 2px; background: linear-gradient(90deg, #6c4018, #ffe59a 45%, #8c5117); }
.hero-prop--decoy i { width: 25px; height: 25px; border: 1px solid var(--zap-bright); transform: rotate(45deg); background: radial-gradient(circle, #fff 0 2px, #ff2e9f 3px 5px, #170812 6px); }
.flashbang-overlay {
  position: fixed; inset: 0; z-index: 99999; pointer-events: none;
  background: #fff; opacity: 0; visibility: hidden;
}
.flashbang-overlay.is-active { pointer-events: auto; animation: flashbangBlind 3s linear both; }
.hero-inner {
  position: relative; z-index: 5; width: 100%; display: flex; flex-direction: column;
  align-items: center; gap: clamp(34px, 5.8vh, 68px);
}
.hero-logo-stage {
  position: relative; display: grid; place-items: center; width: min(720px, 90vw);
  transform-origin: center;
  animation: heroStageRecoil .48s cubic-bezier(.2,.75,.2,1) 1.58s both,
    heroStageImpact .46s cubic-bezier(.16,.84,.16,1) 2.64s forwards;
}
.hero-scope {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(68%, 440px); aspect-ratio: 1 / 1; z-index: 0; pointer-events: none;
  color: var(--zap-pink); opacity: .58; filter: drop-shadow(0 0 22px var(--zap-pink-35));
  animation: heroTargetIn .28s var(--ease) both, heroScopeBreathe 4.8s ease-in-out 3s infinite;
}
.hero-scope::before {
  content: ""; position: absolute; inset: 4%; border-radius: 50%; opacity: 0;
  background: conic-gradient(from 0deg, transparent 0 78%, rgba(255,79,216,.32) 91%, rgba(255,255,255,.82) 96%, transparent 100%);
  -webkit-mask: radial-gradient(circle, transparent 0 50%, #000 51% 52%, transparent 53% 66%, #000 67% 68%, transparent 69%);
  mask: radial-gradient(circle, transparent 0 50%, #000 51% 52%, transparent 53% 66%, #000 67% 68%, transparent 69%);
  animation: heroRadarSweep 1.56s cubic-bezier(.18,.72,.18,1) .08s both;
}
.hero-scope::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 26%; aspect-ratio: 1;
  border: 1px solid #fff; border-radius: 50%; opacity: 0;
  box-shadow: 0 0 16px #fff, 0 0 32px var(--zap-pink), inset 0 0 18px rgba(255,46,159,.48);
  animation: heroScopeLockPing .58s cubic-bezier(.1,.72,.14,1) 1.12s both;
}
.scope-ring {
  position: absolute; border-radius: 50%; pointer-events: none; opacity: 0;
  transform-origin: center; filter: drop-shadow(0 0 7px rgba(255,46,159,.72));
}
.scope-ring--outer {
  inset: -10%;
  background: repeating-conic-gradient(from 4deg, rgba(255,79,216,.95) 0 1.2deg, transparent 1.2deg 7.5deg);
  -webkit-mask: radial-gradient(circle, transparent 0 76%, #000 76.5% 78%, transparent 78.5%);
  mask: radial-gradient(circle, transparent 0 76%, #000 76.5% 78%, transparent 78.5%);
  animation: heroScopeRingOuter 1.62s cubic-bezier(.14,.78,.18,1) both, heroScopeRingIdle 13s linear 3s infinite;
}
.scope-ring--middle {
  inset: 9%;
  background: repeating-conic-gradient(from 2deg, rgba(255,255,255,.88) 0 .8deg, transparent .8deg 4.8deg, rgba(255,46,159,.74) 4.8deg 6deg, transparent 6deg 13deg);
  -webkit-mask: radial-gradient(circle, transparent 0 68%, #000 68.5% 70%, transparent 70.5%);
  mask: radial-gradient(circle, transparent 0 68%, #000 68.5% 70%, transparent 70.5%);
  animation: heroScopeRingMiddle 1.58s cubic-bezier(.14,.8,.18,1) both, heroScopeRingIdleReverse 9s linear 3s infinite;
}
.scope-ring--inner {
  inset: 25%;
  border: 1px dashed rgba(255,79,216,.82); box-shadow: inset 0 0 15px rgba(255,46,159,.2);
  animation: heroScopeRingInner 1.52s cubic-bezier(.14,.82,.18,1) both, heroScopeRingPulse 3.2s ease-in-out 3s infinite;
}
.scope-orbit-node {
  position: absolute; inset: -2%; border-radius: 50%; opacity: 0; transform-origin: center;
  animation: heroScopeNodeOrbit 1.5s cubic-bezier(.12,.78,.18,1) .08s both;
}
.scope-orbit-node::before {
  content: ""; position: absolute; left: 50%; top: 0; width: 7px; height: 7px;
  border: 1px solid #fff; border-radius: 50%; background: var(--zap-bright);
  box-shadow: 0 0 8px #fff, 0 0 22px var(--zap-pink); transform: translate(-50%,-50%);
}
.scope-data {
  position: absolute; z-index: 2; left: 50%; padding: 3px 7px; border: 1px solid rgba(255,46,159,.35);
  background: rgba(5,3,7,.72); color: var(--zap-bright); font-family: var(--font-mono);
  font-size: 8px; line-height: 1; letter-spacing: .15em; white-space: nowrap;
  text-shadow: 0 0 8px var(--zap-pink); opacity: 0;
}
.scope-data--boot { top: -12%; animation: heroScopeBootReadout 1.28s steps(6,end) .08s both; }
.scope-data--lock { bottom: -12%; animation: heroScopeLockReadout .62s steps(3,end) 1.14s both; }
.hero-scope svg {
  width: 100%; height: 100%; display: block; transform-origin: 50% 50%;
  animation: heroScopeStartup 1.62s cubic-bezier(.16,.82,.18,1) both;
}
.hero-scope .scope-dash { animation: heroScopeDash 1.05s linear 2, heroScopeDash 9s linear 2.5s infinite; }
.hero-scope .scope-lock {
  transform-box: fill-box; transform-origin: center;
  animation: heroScopeAcquire 1.7s cubic-bezier(.18,.82,.2,1) both, heroScopeLock 3.2s ease-in-out 3s infinite;
}
.hero-logo-wrap { position: relative; z-index: 1; width: 100%; will-change: transform; }
.hero-logo-wrap::after {
  content: ""; position: absolute; inset: 0; z-index: 5; pointer-events: none; opacity: 0;
  background: linear-gradient(105deg, transparent 34%, rgba(255,255,255,.9) 48%, var(--zap-bright) 52%, transparent 66%);
  -webkit-mask: url("../assets/logo/zap-logo.png") center / contain no-repeat;
  mask: url("../assets/logo/zap-logo.png") center / contain no-repeat;
  mix-blend-mode: screen; animation: heroLogoSweep 6.8s ease-in-out 4.1s infinite;
}
.hero-logo-final {
  position: relative; z-index: 1;
  width: 100%; height: auto; display: block; filter: drop-shadow(0 0 46px rgba(255,46,159,.46));
  opacity: 0; will-change: opacity, transform, filter;
  animation: heroLogoFinalReveal .56s cubic-bezier(.16,.82,.18,1) 2.68s both, heroLogoPulse 6.2s ease-in-out 3.4s infinite;
}
.hero-logo-pieces { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-logo-piece {
  position: absolute; inset: 0; display: block; opacity: 0; isolation: isolate;
  will-change: transform, opacity, filter;
}
.hero-logo-piece::before,
.hero-logo-piece::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("../assets/logo/zap-logo.png") center / contain no-repeat;
  mix-blend-mode: screen; pointer-events: none;
  animation: heroPieceAfterimage .98s ease-out var(--piece-delay) both;
}
.hero-logo-piece::before {
  opacity: .58; transform: translate3d(var(--trail-x-near),var(--trail-y-near),0);
  filter: blur(2px) saturate(1.5) brightness(1.45);
}
.hero-logo-piece::after {
  opacity: .28; transform: translate3d(var(--trail-x-far),var(--trail-y-far),0);
  filter: blur(5px) saturate(1.7) brightness(1.7);
}
.hero-logo-piece img { position: relative; z-index: 2; width: 100%; height: auto; display: block; }
.hero-logo-piece--z {
  --piece-delay: 1.78s; --trail-x-near: -7%; --trail-y-near: -2%; --trail-x-far: -14%; --trail-y-far: -5%;
  clip-path: polygon(3% 2%, 44% 2%, 44% 81%, 3% 81%);
  animation: heroPieceZ .98s cubic-bezier(.13,.78,.16,1.02) 1.78s both, heroPieceVanish .25s ease 2.83s forwards;
}
.hero-logo-piece--v {
  --piece-delay: 1.84s; --trail-x-near: 0; --trail-y-near: 7%; --trail-x-far: 0; --trail-y-far: 15%;
  clip-path: polygon(35% 4%, 66% 4%, 66% 82%, 35% 82%);
  animation: heroPieceV .98s cubic-bezier(.13,.78,.16,1.02) 1.84s both, heroPieceVanish .25s ease 2.83s forwards;
}
.hero-logo-piece--p {
  --piece-delay: 1.8s; --trail-x-near: 7%; --trail-y-near: -2%; --trail-x-far: 14%; --trail-y-far: -5%;
  clip-path: polygon(59% 2%, 97% 2%, 97% 81%, 59% 81%);
  animation: heroPieceP .98s cubic-bezier(.13,.78,.16,1.02) 1.8s both, heroPieceVanish .25s ease 2.83s forwards;
}
.hero-shot-flash {
  position: absolute; left: 50%; top: 47%; z-index: 4; width: 42%; aspect-ratio: 1;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, #fff 0 4%, #ffcdf0 8%, rgba(255,79,216,.92) 16%, rgba(255,46,159,.38) 34%, transparent 68%);
  mix-blend-mode: screen; filter: blur(.2px) drop-shadow(0 0 36px #ff2e9f);
  animation: heroShotFlash .86s ease-out 1.5s both;
}
.hero-shot-wave {
  position: absolute; left: 50%; top: 47%; z-index: 3; width: 18%; aspect-ratio: 1;
  border: 2px solid rgba(255,255,255,.88); border-radius: 50%; pointer-events: none;
  box-shadow: 0 0 22px #ff2e9f, inset 0 0 18px rgba(255,46,159,.48);
  animation: heroShotWave .92s cubic-bezier(.12,.72,.14,1) 1.54s both;
}
.hero-impact-flash {
  position: absolute; z-index: 0; left: 50%; top: 47%; width: 180vw; height: 100vh;
  pointer-events: none; opacity: 0; transform: translate(-50%,-50%);
  background:
    linear-gradient(180deg, transparent 45%, rgba(255,255,255,.36) 49.7%, rgba(255,79,216,.78) 50%, transparent 50.8%),
    radial-gradient(ellipse 24% 26% at 50% 50%, rgba(255,255,255,.92), rgba(255,79,216,.38) 24%, transparent 67%);
  mix-blend-mode: screen; animation: heroImpactFlash .58s ease-out 2.58s both;
}
.hero-merge-core {
  position: absolute; z-index: 6; left: 50%; top: 47%; width: 18%; aspect-ratio: 1;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, #fff 0 5%, #ffd8f2 6% 12%, #ff4fd8 18%, rgba(255,46,159,.48) 34%, transparent 68%);
  filter: drop-shadow(0 0 38px #ff2e9f); mix-blend-mode: screen;
  animation: heroMergeCore .74s cubic-bezier(.12,.78,.16,1) 2.34s both;
}
.hero-merge-ring {
  position: absolute; z-index: 5; left: 50%; top: 47%; width: 16%; aspect-ratio: 1;
  border: 2px solid rgba(255,255,255,.96); border-radius: 50%; pointer-events: none;
  box-shadow: 0 0 20px #fff, 0 0 44px #ff2e9f, inset 0 0 24px rgba(255,46,159,.55);
  animation: heroMergeRing .72s cubic-bezier(.1,.72,.14,1) 2.58s both;
}
.hero-logo-chroma {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0;
  -webkit-mask: url("../assets/logo/zap-logo.png") center / contain no-repeat;
  mask: url("../assets/logo/zap-logo.png") center / contain no-repeat;
  mix-blend-mode: screen;
}
.hero-logo-chroma--hot { background: #ff2e9f; animation: heroChromaHot .48s steps(4,end) 2.63s both; }
.hero-logo-chroma--white { background: #fff; animation: heroChromaWhite .48s steps(4,end) 2.63s both; }
.hero-electric-field { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.hero-electric-field i {
  --arc-rotate: 0deg; --arc-delay: 0s;
  position: absolute; left: 50%; top: 47%; width: 56%; height: 10px;
  background: linear-gradient(90deg, transparent 0 3%, #ff2e9f 12%, #fff 51%, #ff4fd8 78%, transparent 97%);
  clip-path: polygon(0 44%, 11% 8%, 20% 72%, 31% 18%, 43% 82%, 54% 24%, 66% 76%, 78% 12%, 88% 68%, 100% 42%, 100% 58%, 88% 84%, 78% 30%, 66% 92%, 54% 40%, 43% 96%, 31% 34%, 20% 88%, 11% 28%, 0 60%);
  transform-origin: center; filter: blur(.2px) drop-shadow(0 0 7px #fff) drop-shadow(0 0 14px #ff2e9f);
  animation: heroElectricArc .46s steps(3,end) calc(2.46s + var(--arc-delay)) both;
}
.hero-electric-field i:nth-child(1) { --arc-rotate: 13deg; --arc-delay: 0s; }
.hero-electric-field i:nth-child(2) { --arc-rotate: -17deg; --arc-delay: .04s; }
.hero-electric-field i:nth-child(3) { --arc-rotate: 52deg; --arc-delay: .07s; width: 40%; }
.hero-electric-field i:nth-child(4) { --arc-rotate: -57deg; --arc-delay: .1s; width: 42%; }
.hero-impact-shards { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.hero-impact-shards i {
  --tx: 0px; --ty: -100px; --r: 0deg; --d: 0s;
  position: absolute; left: 50%; top: 47%; width: 5px; height: 17px;
  background: linear-gradient(180deg, #fff, #ff2e9f 58%, transparent);
  clip-path: polygon(50% 0, 100% 100%, 0 72%); filter: drop-shadow(0 0 6px #ff2e9f);
  animation: heroShardBurst .7s cubic-bezier(.12,.7,.18,1) calc(2.58s + var(--d)) both;
}
.hero-impact-shards i:nth-child(1) { --tx: -250px; --ty: -94px; --r: -76deg; }
.hero-impact-shards i:nth-child(2) { --tx: -188px; --ty: -166px; --r: -42deg; --d: .02s; }
.hero-impact-shards i:nth-child(3) { --tx: -98px; --ty: -206px; --r: -18deg; --d: .05s; }
.hero-impact-shards i:nth-child(4) { --tx: 20px; --ty: -224px; --r: 8deg; --d: .01s; }
.hero-impact-shards i:nth-child(5) { --tx: 128px; --ty: -192px; --r: 30deg; --d: .06s; }
.hero-impact-shards i:nth-child(6) { --tx: 224px; --ty: -126px; --r: 66deg; --d: .03s; }
.hero-impact-shards i:nth-child(7) { --tx: 270px; --ty: -26px; --r: 92deg; }
.hero-impact-shards i:nth-child(8) { --tx: 230px; --ty: 94px; --r: 118deg; --d: .04s; }
.hero-impact-shards i:nth-child(9) { --tx: 132px; --ty: 164px; --r: 150deg; --d: .02s; }
.hero-impact-shards i:nth-child(10) { --tx: 18px; --ty: 194px; --r: 178deg; --d: .07s; }
.hero-impact-shards i:nth-child(11) { --tx: -105px; --ty: 168px; --r: 210deg; --d: .04s; }
.hero-impact-shards i:nth-child(12) { --tx: -206px; --ty: 110px; --r: 244deg; --d: .01s; }
.hero-impact-shards i:nth-child(13) { --tx: -274px; --ty: 24px; --r: 270deg; --d: .06s; }
.hero-impact-shards i:nth-child(14) { --tx: 186px; --ty: 148px; --r: 136deg; --d: .08s; }
.hero-logo-stage:not(.is-intro-running) .hero-logo-pieces,
.hero-logo-stage:not(.is-intro-running) .hero-shot-flash,
.hero-logo-stage:not(.is-intro-running) .hero-shot-wave,
.hero-logo-stage:not(.is-intro-running) .hero-impact-flash,
.hero-logo-stage:not(.is-intro-running) .hero-merge-core,
.hero-logo-stage:not(.is-intro-running) .hero-merge-ring,
.hero-logo-stage:not(.is-intro-running) .hero-logo-chroma,
.hero-logo-stage:not(.is-intro-running) .hero-electric-field,
.hero-logo-stage:not(.is-intro-running) .hero-impact-shards { display: none; }
.hero-logo-stage:not(.is-intro-running) .hero-logo-final { will-change: auto; }
.hero-copy { max-width: min(92vw, 880px); animation: heroCopyIn .72s var(--ease) 3.05s both; }
.hero .lead-tag { margin-bottom: 18px; }
.hero-copy .eyebrow { justify-content: center; }
.tri {
  display: inline-flex; gap: 16px; font-family: var(--font-mono);
  font-size: clamp(12px, 1.5vw, 15px); letter-spacing: 0.24em; color: var(--txt-2);
  margin: 18px 0 10px; text-transform: uppercase; flex-wrap: wrap; justify-content: center;
}
.tri b { color: var(--zap-bright); font-weight: 700; }
.tri .sep { color: var(--zap-pink); }
.hero-slogan { font-family: var(--font-display); font-weight: 900; font-size: clamp(17px, 4.3vw, 44px); line-height: 1.1; margin: 6px 0 10px; white-space: nowrap; }
.hero-slogan-cn { color: var(--txt-2); font-size: clamp(14px, 1.7vw, 18px); letter-spacing: 0.1em; margin-bottom: 26px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

@keyframes heroBackdropIn { from { opacity: 0; } to { opacity: .86; } }
@keyframes heroPhotoBreath {
  0% { transform: scale(1.035) translate3d(-.4%, .2%, 0); }
  100% { transform: scale(1.095) translate3d(.5%, -.55%, 0); }
}
@keyframes heroSmokeA { from { transform: translate3d(-3%, -2%, 0) scale(.94); opacity: .12; } to { transform: translate3d(9%, 5%, 0) scale(1.12); opacity: .24; } }
@keyframes heroSmokeB { from { transform: translate3d(4%, -3%, 0) scale(1.08); opacity: .12; } to { transform: translate3d(-10%, 6%, 0) scale(.94); opacity: .23; } }
@keyframes heroSmokeC { from { transform: translate3d(-4%, 5%, 0) scale(.9); } to { transform: translate3d(8%, -8%, 0) scale(1.18); } }
@keyframes heroGridPulse { 0%,100% { opacity: .12; } 50% { opacity: .27; } }
@keyframes heroScan { from { transform: translateY(0); } to { transform: translateY(575%); } }
@keyframes heroTargetIn { from { opacity: 0; filter: blur(10px); } to { opacity: .58; filter: blur(0) drop-shadow(0 0 22px var(--zap-pink-35)); } }
@keyframes heroRadarSweep {
  0% { opacity: 0; transform: rotate(-560deg) scale(.52); }
  14% { opacity: .8; }
  70% { opacity: .92; transform: rotate(22deg) scale(1.08); }
  86% { opacity: .52; transform: rotate(-4deg) scale(.99); }
  100% { opacity: 0; transform: rotate(0) scale(1); }
}
@keyframes heroScopeStartup {
  0% { opacity: 0; transform: rotate(-265deg) scale(.42); filter: blur(9px); }
  18% { opacity: .88; }
  70% { transform: rotate(20deg) scale(1.1); filter: blur(0); }
  86% { transform: rotate(-5deg) scale(.97); }
  100% { opacity: 1; transform: rotate(0) scale(1); filter: none; }
}
@keyframes heroScopeAcquire {
  0%,45% { opacity: .16; transform: scale(1.85); stroke-width: .45; }
  67% { opacity: .9; transform: scale(.72); stroke-width: 1.5; }
  78% { opacity: 1; transform: scale(1.08); }
  100% { opacity: .78; transform: scale(1); stroke-width: .8; }
}
@keyframes heroScopeRingOuter {
  0% { opacity: 0; transform: rotate(-760deg) scale(.32); filter: blur(5px); }
  18% { opacity: .92; }
  72% { transform: rotate(38deg) scale(1.09); filter: blur(0); }
  88% { transform: rotate(-7deg) scale(.98); }
  100% { opacity: .76; transform: rotate(0) scale(1); }
}
@keyframes heroScopeRingMiddle {
  0% { opacity: 0; transform: rotate(920deg) scale(1.74); filter: blur(6px); }
  18% { opacity: .9; }
  70% { transform: rotate(-42deg) scale(.9); filter: blur(0); }
  88% { transform: rotate(8deg) scale(1.03); }
  100% { opacity: .72; transform: rotate(0) scale(1); }
}
@keyframes heroScopeRingInner {
  0% { opacity: 0; transform: rotate(-420deg) scale(2.5); }
  42% { opacity: .86; }
  70% { transform: rotate(24deg) scale(.68); }
  84% { transform: rotate(-6deg) scale(1.12); }
  100% { opacity: .68; transform: rotate(0) scale(1); }
}
@keyframes heroScopeRingIdle { to { transform: rotate(360deg); } }
@keyframes heroScopeRingIdleReverse { to { transform: rotate(-360deg); } }
@keyframes heroScopeRingPulse { 0%,100% { opacity: .38; transform: scale(.97); } 50% { opacity: .82; transform: scale(1.04); } }
@keyframes heroScopeNodeOrbit {
  0% { opacity: 0; transform: rotate(-620deg) scale(.52); }
  14%,78% { opacity: 1; }
  100% { opacity: 0; transform: rotate(18deg) scale(1); }
}
@keyframes heroScopeBootReadout {
  0% { opacity: 0; transform: translate(-50%,-8px) skewX(-12deg); }
  16%,28% { opacity: 1; }
  29%,38% { opacity: .18; }
  39%,76% { opacity: 1; transform: translate(-50%,0) skewX(0); }
  100% { opacity: 0; transform: translate(-50%,4px); }
}
@keyframes heroScopeLockReadout {
  0% { opacity: 0; transform: translate(-50%,6px) scaleX(.55); color: #fff; }
  22%,66% { opacity: 1; transform: translate(-50%,0) scaleX(1); }
  67%,76% { opacity: .25; }
  77%,90% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%,-3px); }
}
@keyframes heroScopeLockPing {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(2.8); }
  20% { opacity: 1; }
  58% { opacity: .92; transform: translate(-50%,-50%) scale(.62); }
  72% { opacity: .26; }
  84% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1); }
}
@keyframes heroScopeBreathe { 0%,100% { opacity: .48; filter: drop-shadow(0 0 14px var(--zap-pink-35)); } 50% { opacity: .72; filter: drop-shadow(0 0 30px var(--zap-pink-35)); } }
@keyframes heroScopeDash { to { stroke-dashoffset: -92; } }
@keyframes heroScopeLock { 0%,100% { opacity: .35; stroke-width: .7; } 50% { opacity: .95; stroke-width: 1.15; } }
@keyframes heroStageRecoil {
  0%,28% { transform: translate3d(0,0,0) scale(1); }
  42% { transform: translate3d(-5px,3px,0) scale(.985); }
  55% { transform: translate3d(7px,-3px,0) scale(1.018); }
  72% { transform: translate3d(-3px,1px,0) scale(.997); }
  100% { transform: translate3d(0,0,0) scale(1); }
}
@keyframes heroStageImpact {
  0% { transform: translate3d(0,0,0) scale(1); filter: none; }
  18% { transform: translate3d(-11px,4px,0) scale(.965); filter: brightness(1.32); }
  32% { transform: translate3d(13px,-5px,0) scale(1.035); }
  48% { transform: translate3d(-7px,3px,0) scale(.985); }
  64% { transform: translate3d(5px,-2px,0) scale(1.012); }
  82% { transform: translate3d(-2px,1px,0) scale(.998); }
  100% { transform: translate3d(0,0,0) scale(1); filter: none; }
}
@keyframes heroShotFlash {
  0%,6% { opacity: 0; transform: translate(-50%,-50%) scale(.04); }
  11% { opacity: 1; transform: translate(-50%,-50%) scale(.22); }
  24% { opacity: .94; transform: translate(-50%,-50%) scale(1.05); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.62); }
}
@keyframes heroShotWave {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(.12); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(4.9); border-width: .5px; }
}
@keyframes heroPieceZ {
  0% { opacity: 0; transform: translate3d(-68vw,-22vh,0) rotate(-24deg) scale(.54); filter: blur(9px) brightness(1.8); }
  16% { opacity: 1; }
  76% { transform: translate3d(2.2%,1%,0) rotate(2.5deg) scale(1.035); filter: blur(0) brightness(1.18); }
  100% { opacity: 1; transform: translate3d(0,0,0) rotate(0) scale(1); filter: blur(0) brightness(1); }
}
@keyframes heroPieceV {
  0% { opacity: 0; transform: translate3d(0,62vh,0) rotate(16deg) scale(.38); filter: blur(9px) brightness(2); }
  16% { opacity: 1; }
  76% { transform: translate3d(0,-1.8%,0) rotate(-2deg) scale(1.045); filter: blur(0) brightness(1.22); }
  100% { opacity: 1; transform: translate3d(0,0,0) rotate(0) scale(1); filter: blur(0) brightness(1); }
}
@keyframes heroPieceP {
  0% { opacity: 0; transform: translate3d(68vw,-18vh,0) rotate(25deg) scale(.54); filter: blur(9px) brightness(1.8); }
  16% { opacity: 1; }
  76% { transform: translate3d(-2.2%,.8%,0) rotate(-2.5deg) scale(1.035); filter: blur(0) brightness(1.18); }
  100% { opacity: 1; transform: translate3d(0,0,0) rotate(0) scale(1); filter: blur(0) brightness(1); }
}
@keyframes heroPieceAfterimage {
  0%,8% { opacity: 0; }
  18% { opacity: .72; }
  56% { opacity: .46; }
  82% { opacity: .18; }
  100% { opacity: 0; }
}
@keyframes heroPieceVanish { from { opacity: 1; } to { opacity: 0; } }
@keyframes heroImpactFlash {
  0%,8% { opacity: 0; filter: blur(8px); }
  15% { opacity: 1; filter: blur(0); }
  28% { opacity: .82; }
  100% { opacity: 0; filter: blur(3px); }
}
@keyframes heroMergeCore {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(2.8); }
  26% { opacity: .56; transform: translate(-50%,-50%) scale(1.2); }
  43% { opacity: 1; transform: translate(-50%,-50%) scale(.06); filter: brightness(2.2) drop-shadow(0 0 50px #fff); }
  54% { opacity: 1; transform: translate(-50%,-50%) scale(.22); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(3.9); }
}
@keyframes heroMergeRing {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(.08); outline: 1px solid rgba(255,79,216,.92); outline-offset: 4px; }
  13% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(6.2); border-width: .5px; outline-offset: 18px; }
}
@keyframes heroChromaHot {
  0%,10% { opacity: 0; transform: translateX(-18px) scale(.97); }
  22% { opacity: .82; }
  46% { opacity: .38; transform: translateX(12px) scale(1.025); }
  70% { opacity: .64; transform: translateX(-5px) scale(.99); }
  100% { opacity: 0; transform: none; }
}
@keyframes heroChromaWhite {
  0%,10% { opacity: 0; transform: translateX(16px) scale(1.03); }
  22% { opacity: .7; }
  48% { opacity: .28; transform: translateX(-10px) scale(.985); }
  72% { opacity: .5; transform: translateX(4px) scale(1.01); }
  100% { opacity: 0; transform: none; }
}
@keyframes heroElectricArc {
  0%,8% { opacity: 0; transform: translate(-50%,-50%) rotate(var(--arc-rotate)) scaleX(.12); }
  20%,48% { opacity: 1; }
  58% { opacity: .22; }
  68% { opacity: .9; transform: translate(-50%,-50%) rotate(var(--arc-rotate)) scaleX(1.05); }
  100% { opacity: 0; transform: translate(-50%,-50%) rotate(var(--arc-rotate)) scaleX(.86); }
}
@keyframes heroShardBurst {
  0% { opacity: 0; transform: translate(-50%,-50%) rotate(0) scale(.15); }
  12% { opacity: 1; }
  78% { opacity: .82; }
  100% { opacity: 0; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) rotate(var(--r)) scale(1.1); }
}
@keyframes heroLogoFinalReveal {
  0% { opacity: 0; transform: scale(.82); filter: blur(5px) drop-shadow(0 0 86px rgba(255,79,216,1)) brightness(2); }
  34% { opacity: 1; transform: scale(1.09); filter: blur(0) drop-shadow(0 0 92px rgba(255,79,216,.96)) brightness(1.42); }
  56% { transform: scale(.965); filter: drop-shadow(0 0 58px rgba(255,46,159,.72)) brightness(.96); }
  78% { transform: scale(1.025); }
  100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 46px rgba(255,46,159,.46)) brightness(1); }
}
@keyframes heroLogoPulse { 0%,46%,54%,100% { filter: drop-shadow(0 0 40px rgba(255,46,159,.4)); } 49% { filter: drop-shadow(0 0 64px rgba(255,79,216,.82)) brightness(1.16); } 51% { filter: drop-shadow(0 0 48px rgba(255,46,159,.58)) brightness(.94); } }
@keyframes heroLogoSweep { 0%,68% { opacity: 0; transform: translateX(-125%); } 72% { opacity: .85; } 80% { opacity: 0; transform: translateX(125%); } 100% { opacity: 0; transform: translateX(125%); } }
@keyframes heroCopyIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes heroPropBurst {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(.18) rotate(0); }
  13% { opacity: 1; }
  68% { opacity: .95; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.04) rotate(var(--rot)); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy) - 14px)) scale(.72) rotate(var(--rot)); }
}
@keyframes flashbangBlind {
  0%,24% { opacity: 1; visibility: visible; }
  56% { opacity: .98; visibility: visible; }
  82% { opacity: .62; visibility: visible; }
  99% { opacity: .04; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

.hero.hero-paused .hero-photo,
.hero.hero-paused .hero-photo img,
.hero.hero-paused .hero-smoke,
.hero.hero-paused .hero-grid-field,
.hero.hero-paused .hero-scanline,
.hero.hero-paused .hero-logo-stage,
.hero.hero-paused .hero-scope,
.hero.hero-paused .hero-scope::before,
.hero.hero-paused .hero-scope::after,
.hero.hero-paused .scope-ring,
.hero.hero-paused .scope-orbit-node,
.hero.hero-paused .scope-data,
.hero.hero-paused .hero-scope svg,
.hero.hero-paused .hero-scope .scope-dash,
.hero.hero-paused .hero-scope .scope-lock,
.hero.hero-paused .hero-logo-piece,
.hero.hero-paused .hero-logo-piece::before,
.hero.hero-paused .hero-logo-piece::after,
.hero.hero-paused .hero-logo-final,
.hero.hero-paused .hero-shot-flash,
.hero.hero-paused .hero-shot-wave,
.hero.hero-paused .hero-impact-flash,
.hero.hero-paused .hero-merge-core,
.hero.hero-paused .hero-merge-ring,
.hero.hero-paused .hero-logo-chroma,
.hero.hero-paused .hero-electric-field i,
.hero.hero-paused .hero-impact-shards i,
.hero.hero-paused .hero-logo-wrap::after,
.hero.hero-paused .hero-logo-wrap img {
  animation-play-state: paused;
}

@media (max-width: 700px) {
  .hero-photo { inset: -2%; opacity: .63; }
  .hero-photo img { object-position: center 12%; filter: saturate(1.08) contrast(1.08) brightness(.58); }
  .hero-smoke { filter: blur(52px); opacity: .12; }
  .hero-smoke-c { display: none; }
  .hero-grid-field { background-size: 48px 48px; opacity: .13; }
  .hero-scanline { opacity: .26; }
  .hero-click-meter { right: 12px; bottom: 44px; }
  .hero-click-meter span { display: none; }
  .hero-prop { width: 48px; height: 48px; }
  .scope-data { font-size: 7px; }
  .hero-electric-field i:nth-child(n+3),
  .hero-impact-shards i:nth-child(n+9) { display: none; }
  .hero-logo-chroma--white { display: none; }
  .hero-impact-flash { width: 120vw; height: 60vh; filter: none !important; }
  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(5,3,7,.32), rgba(5,3,7,.18) 38%, rgba(5,3,7,.86) 78%, rgba(5,3,7,.98)),
      radial-gradient(ellipse 56% 42% at 50% 36%, rgba(4,2,6,.02), rgba(4,2,6,.48));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo, .hero-photo img, .hero-smoke, .hero-grid-field, .hero-scanline,
  .hero-logo-stage, .hero-scope, .hero-scope::before, .hero-scope::after, .hero-scope svg,
  .scope-ring, .scope-orbit-node, .scope-data,
  .hero-scope .scope-dash, .hero-scope .scope-lock, .hero-logo-piece,
  .hero-logo-piece::before, .hero-logo-piece::after,
  .hero-logo-final, .hero-shot-flash, .hero-shot-wave, .hero-impact-flash,
  .hero-merge-core, .hero-merge-ring, .hero-logo-chroma,
  .hero-electric-field i, .hero-impact-shards i,
  .hero-logo-wrap::after, .hero-logo-wrap img, .hero-copy { animation: none !important; }
  .hero-photo { transform: none !important; opacity: .72; }
  .hero-photo img { transform: none !important; }
  .hero-particles, .hero-scanline { display: none; }
  .hero-logo-pieces, .hero-shot-flash, .hero-shot-wave, .hero-impact-flash,
  .hero-merge-core, .hero-merge-ring, .hero-logo-chroma,
  .hero-electric-field, .hero-impact-shards, .scope-ring,
  .scope-orbit-node, .scope-data { display: none; }
  .hero-logo-final { opacity: 1 !important; transform: none !important; }
  .hero-prop { animation: none !important; opacity: .9; transform: translate(-50%,-50%); }
  .hero-click-meter { transition: none; }
}

/* Hero 向下滚动提示 */
.hero-scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 2;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.34em; color: var(--txt-3);
  writing-mode: vertical-rl; transition: color var(--zap-t-fast);
}
.hero-scroll::after { content: ""; display: block; width: 1px; height: 26px; margin: 8px auto 0; background: linear-gradient(var(--zap-pink), transparent); }
.hero-scroll:hover { color: var(--zap-bright); }

/* ── 品牌精神：黑粉=数据 ───────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar {
  position: relative; padding: 30px 26px; border-radius: var(--radius);
  border: 1px solid var(--zap-white-10); background: linear-gradient(180deg, var(--zap-white-04), transparent);
  overflow: hidden; transition: transform var(--zap-t-med) var(--ease), border-color var(--zap-t-med), box-shadow var(--zap-t-med);
}
.pillar::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 200px at 100% 0%, var(--zap-pink-14), transparent 70%); opacity: 0; transition: opacity var(--zap-t-med); }
.pillar:hover { transform: translateY(-6px); border-color: var(--zap-pink-35); box-shadow: 0 24px 50px -28px var(--zap-pink-35); }
.pillar:hover::before { opacity: 1; }
.pillar .idx { font-family: var(--font-mono); font-size: 12px; color: var(--zap-bright); letter-spacing: 0.2em; }
.pillar h3 { font-family: var(--font-display); font-weight: 900; font-size: 26px; margin: 12px 0 6px; }
.pillar .en { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; color: var(--txt-3); text-transform: uppercase; margin-bottom: 12px; }
.pillar p { color: var(--txt-2); font-size: 15px; }
.spirit-quote {
  margin-top: 40px; padding: 28px 30px; border-left: 3px solid var(--zap-pink);
  background: linear-gradient(90deg, var(--zap-pink-06), transparent);
  font-size: clamp(17px, 2.2vw, 24px); font-weight: 600; line-height: 1.5;
}
.spirit-quote b { color: var(--zap-bright); }

/* ── 关于：履历时间线 ─────────────────────── */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.about-portrait { float: right; width: clamp(150px, 22vw, 226px); margin: 4px 0 14px 22px; border-radius: 16px; overflow: hidden; border: 1px solid var(--zap-pink-35); box-shadow: 0 20px 50px -24px var(--zap-pink-35); }
.about-portrait img { width: 100%; display: block; }
.about-lead p { color: var(--txt-2); margin-bottom: 16px; }
.about-lead .signature { font-family: var(--font-display); font-weight: 900; line-height: 1.3; color: var(--zap-white); margin: 8px 0 16px; text-align: left; }
.signature-title {
  display: block; width: max-content; max-width: 100%;
  font-size: clamp(17px, 1.72vw, 23px); line-height: 1.22; letter-spacing: -.025em;
  color: var(--zap-bright); white-space: nowrap; text-align: left;
}
.signature-copy {
  display: block; margin-top: 9px;
  font-size: clamp(19px, 2.1vw, 27px); line-height: 1.38; letter-spacing: -.01em;
  color: var(--zap-white); text-wrap: balance; text-align: left;
}
.stats-inline { display: flex; gap: 26px; margin-top: 26px; flex-wrap: wrap; }
.stat b { font-family: var(--font-display); font-weight: 900; font-size: clamp(26px,3vw,38px); color: var(--zap-bright); display: block; text-shadow: 0 0 22px var(--zap-bright-22); }
.stat span { font-size: 12px; color: var(--txt-3); letter-spacing: 0.06em; }

.timeline { position: relative; padding-left: 26px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 1px; background: linear-gradient(var(--zap-pink), var(--zap-magenta), transparent); }
.tl-item { position: relative; padding: 0 0 26px 8px; }
.tl-item::before { content: ""; position: absolute; left: -23px; top: 5px; width: 11px; height: 11px; border-radius: 50%; background: var(--zap-black); border: 2px solid var(--zap-pink); box-shadow: var(--zap-glow-pink); }
.tl-item .yr { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--zap-bright); }
.tl-item h4 { font-size: 17px; font-weight: 700; margin: 3px 0 2px; }
.tl-item p { color: var(--txt-2); font-size: 14px; }

/* ── 通用卡片网格（战队/副业） ─────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.card {
  padding: 28px 26px; border-radius: var(--radius);
  border: 1px solid var(--zap-white-10); background: linear-gradient(180deg, var(--zap-white-04), transparent);
  transition: transform var(--zap-t-med) var(--ease), border-color var(--zap-t-med), box-shadow var(--zap-t-med);
}
.card:hover { transform: translateY(-5px); border-color: var(--zap-pink-35); box-shadow: 0 22px 46px -28px var(--zap-pink-35); }
.card .ic { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 11px; background: var(--zap-pink-14); border: 1px solid var(--zap-pink-35); margin-bottom: 16px; }
.card .ic svg { width: 22px; height: 22px; stroke: var(--zap-bright); }
.card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--txt-2); font-size: 14.5px; }
.card { display: flex; flex-direction: column; }
.card-media { position: relative; margin: -28px -26px 16px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; border-bottom: 1px solid var(--zap-white-10); }
.card-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.media-note { position: absolute; right: 10px; bottom: 10px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; color: var(--txt-2); background: rgba(7,6,11,0.72); border: 1px solid var(--zap-white-10); padding: 3px 8px; border-radius: 999px; }
.card-link { margin-top: auto; padding-top: 14px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .03em; color: var(--zap-bright); transition: color var(--zap-t-fast); }
.card:hover .card-link { color: var(--zap-white); }
a.card-link { display: inline-block; }
a.card-link:hover { color: var(--zap-white); }

/* 电脑整机三视图 */
.pc-card { cursor: default; }
.pc-gallery-main { position: relative; margin: -28px -26px 14px; aspect-ratio: 1708 / 921; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; border-bottom: 1px solid var(--zap-white-10); background: radial-gradient(120% 130% at 50% 0%, var(--zap-pink-14), transparent 62%), linear-gradient(160deg, var(--zap-deep-1), var(--zap-black)); }
.pc-gallery-main img { width: 100%; height: 100%; object-fit: contain !important; object-position: center; display: block; padding: clamp(12px, 1.4vw, 20px); transition: opacity .18s var(--ease); }
.pc-gallery-switch { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.pc-switch { font-family: var(--font-mono); font-size: 12px; letter-spacing: .05em; color: var(--txt-2); background: var(--zap-white-04); border: 1px solid var(--zap-white-10); border-radius: 999px; padding: 7px 15px; cursor: pointer; transition: color var(--zap-t-fast), border-color var(--zap-t-fast), background var(--zap-t-fast), box-shadow var(--zap-t-fast); }
.pc-switch:hover { color: var(--zap-white); border-color: var(--zap-pink-35); }
.pc-switch.is-active { color: #0a0410; background: linear-gradient(100deg, var(--zap-pink), var(--zap-bright)); border-color: transparent; box-shadow: 0 6px 18px -8px var(--zap-pink-35); }
.pc-switch:focus-visible { outline: 2px solid var(--zap-bright); outline-offset: 2px; }

.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.panel {
  border-radius: var(--radius); border: 1px solid var(--zap-white-10);
  background: linear-gradient(150deg, var(--zap-deep-1), var(--zap-deep-2));
  padding: 34px; position: relative; overflow: hidden;
}
.panel .badge { position: absolute; top: 20px; right: 20px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--txt-3); border: 1px solid var(--zap-white-10); padding: 4px 9px; border-radius: 999px; }
.panel h3 { font-family: var(--font-display); font-weight: 900; font-size: 24px; margin-bottom: 12px; }
.panel ul.ticks li { position: relative; padding-left: 24px; margin: 10px 0; color: var(--txt-2); font-size: 15px; }
.panel ul.ticks li::before { content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 10px; border-left: 2px solid var(--zap-bright); border-bottom: 2px solid var(--zap-bright); transform: rotate(-45deg); }

/* 战队个人身份卡：保留用户提供的完整原图 */
.team-profile-grid { display: grid; grid-template-columns: minmax(270px, .72fr) minmax(0, 1.38fr); gap: 24px; align-items: stretch; }
.team-panel-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 22px; }
.team-panel-stack .panel { display: flex; flex-direction: column; justify-content: center; }
.identity-card {
  position: relative; width: 100%; max-width: 420px; margin: 0;
  aspect-ratio: 1254 / 1888; align-self: start; overflow: hidden;
  border: 1px solid var(--zap-pink-35); border-radius: 20px;
  background: var(--zap-black); box-shadow: 0 34px 80px -46px var(--zap-pink-35);
  transition: transform var(--zap-t-med) var(--ease), border-color var(--zap-t-med), box-shadow var(--zap-t-med);
}
.identity-card:hover { transform: translateY(-5px); border-color: var(--zap-pink); box-shadow: 0 38px 90px -42px var(--zap-pink-35); }
.identity-card > img { width: 100%; height: 100%; object-fit: contain; display: block; }
.identity-card > img.identity-avatar { position: absolute; top: 16px; left: 16px; z-index: 2; width: 68px; height: 68px; border-radius: 50%; object-fit: cover; border: 2px solid var(--zap-pink); box-shadow: 0 0 20px -2px var(--zap-pink-35), 0 8px 18px -8px rgba(0,0,0,.65); background: var(--zap-black); }

/* ── 主播/内容：平台入口 ─────────────────── */
.platforms { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.plat {
  --platform: var(--zap-bright); --platform-border: var(--zap-pink-35);
  --platform-bg: var(--zap-pink-06); --platform-shadow: var(--zap-glow-pink);
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  border-radius: 14px; border: 1px solid var(--zap-white-10);
  background: rgba(255,255,255,0.02);
  transition: transform var(--zap-t-fast) var(--ease), border-color var(--zap-t-med), background var(--zap-t-med), box-shadow var(--zap-t-med);
}
.plat:hover { transform: translateY(-4px); border-color: var(--platform); background: var(--platform-bg); box-shadow: var(--platform-shadow); }
.plat .pic { width: 40px; height: 40px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 10px; background: var(--zap-black); border: 1px solid var(--platform-border); }
.plat .pic img { width: 24px; height: 24px; object-fit: contain; display: block; }
.plat .meta { min-width: 0; }
.plat .meta b { display: block; font-size: 15px; color: var(--platform); }
.plat .meta span { font-family: var(--font-mono); font-size: 12px; color: var(--txt-3); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.plat .go { margin-left: auto; color: var(--txt-3); transition: transform var(--zap-t-fast), color var(--zap-t-fast); }
.plat:hover .go { color: var(--platform); transform: translate(3px,-3px); }
.plat--douyin { --platform: #25F4EE; --platform-border: rgba(37,244,238,.42); --platform-bg: linear-gradient(120deg, rgba(37,244,238,.08), rgba(254,44,85,.08)); --platform-shadow: 0 20px 48px -34px #FE2C55; }
.plat--douyin .pic { border-color: #25F4EE; box-shadow: inset 0 0 18px rgba(254,44,85,.12); }
.plat--douyin .pic img { filter: drop-shadow(-1.5px 0 #25F4EE) drop-shadow(1.5px 0 #FE2C55); }
.plat--faceit { --platform: #FF5500; --platform-border: rgba(255,85,0,.42); --platform-bg: rgba(255,85,0,.075); --platform-shadow: 0 20px 48px -34px #FF5500; }
.plat--faceit .pic img { width: 27px; height: 27px; }
.plat--bilibili { --platform: #FB7299; --platform-border: rgba(251,114,153,.62); --platform-bg: linear-gradient(120deg, rgba(251,114,153,.12), rgba(255,255,255,.05)); --platform-shadow: 0 20px 48px -32px #FB7299; }
.plat--bilibili .pic { background: #FB7299; border-color: rgba(255,255,255,.82); box-shadow: 0 0 22px -9px #FB7299, inset 0 0 14px rgba(255,255,255,.12); }
.plat--bilibili .pic img { filter: drop-shadow(0 1px 3px rgba(47,4,28,.28)); }

/* 斗鱼 × Z∀P 联合直播入口 */
.douyu-feature { display: block; position: relative; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--zap-white-10); background: var(--zap-black); transition: transform var(--zap-t-med) var(--ease), border-color var(--zap-t-med), box-shadow var(--zap-t-med); }
.douyu-feature img { width: 100%; height: clamp(150px, 22vw, 300px); object-fit: cover; display: block; }
.douyu-feature .df-meta { position: absolute; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; gap: 2px; padding: 16px 20px; background: linear-gradient(0deg, rgba(7,6,11,0.88), rgba(7,6,11,0.1) 72%, transparent); }
.douyu-feature .df-meta b { font-family: var(--font-display); font-weight: 900; font-size: clamp(16px, 2.4vw, 22px); }
.douyu-feature .df-meta span { font-family: var(--font-mono); font-size: 12px; color: var(--txt-3); }
.douyu-feature:hover { transform: translateY(-4px); border-color: var(--zap-pink); box-shadow: 0 22px 50px -26px var(--zap-pink-35); }

.content-note { margin-top: 22px; font-size: 13px; color: var(--txt-3); font-family: var(--font-mono); letter-spacing: 0.04em; }

/* ── 周边展示墙 ─────────────────────────── */
.gear-wall { margin-top: clamp(40px, 6vw, 68px); }
.wall-head { margin-bottom: 26px; }
.wall-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(22px, 3vw, 34px); margin-top: 10px; }
.wall-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ware { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--zap-white-10); background: linear-gradient(180deg, var(--zap-white-04), transparent); transition: transform var(--zap-t-med) var(--ease), border-color var(--zap-t-med), box-shadow var(--zap-t-med); }
.ware img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.ware figcaption { padding: 12px 14px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--txt-2); border-top: 1px solid var(--zap-white-10); }
.ware:hover { transform: translateY(-6px); border-color: var(--zap-pink-35); box-shadow: 0 26px 54px -30px var(--zap-pink-35); }

/* 华哥同款外设 · 设备卡（统一深色卡 + 图片比例；缺图=图片待补） */
.gear-devices { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; align-items: start; }
.dev-card { display: flex; flex-direction: column; border: 1px solid var(--zap-white-10); border-radius: var(--radius); background: linear-gradient(180deg, var(--zap-white-04), transparent); overflow: hidden; transition: transform var(--zap-t-med) var(--ease), border-color var(--zap-t-med), box-shadow var(--zap-t-med); }
.dev-card:hover { transform: translateY(-5px); border-color: var(--zap-pink-35); box-shadow: 0 22px 46px -28px var(--zap-pink-35); }
/* 媒体区统一锁定卡尺寸（设备 4:3、周边 1:1）；object-fit:contain 完整缩放，不裁主体、不拉伸、深色留白；可点击放大 */
.dev-media { position: relative; aspect-ratio: 4 / 3; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--zap-white-10); background: radial-gradient(120% 130% at 50% 0%, var(--zap-pink-14), transparent 62%), linear-gradient(160deg, var(--zap-deep-1), var(--zap-black)); cursor: zoom-in; }
button.dev-media { width: 100%; border: 0; border-bottom: 1px solid var(--zap-white-10); padding: 0; appearance: none; color: inherit; font: inherit; text-align: left; }
.dev-media img { width: 88%; height: 88%; max-width: 88%; max-height: 88%; min-width: 0; min-height: 0; object-fit: contain !important; object-position: center; padding: 0; display: block; }
.merch-card .dev-media { aspect-ratio: 1 / 1; }
.dev-media::after { content: "点击看大图"; position: absolute; top: 10px; left: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--zap-white); background: rgba(7,6,11,0.66); border: 1px solid var(--zap-pink-35); border-radius: 999px; padding: 4px 10px; opacity: 0; transform: translateY(-4px); transition: opacity var(--zap-t-fast) var(--ease), transform var(--zap-t-fast) var(--ease); pointer-events: none; }
.dev-card:hover .dev-media::after { opacity: 1; transform: none; }
.dev-media:focus-visible { outline: 2px solid var(--zap-bright); outline-offset: -2px; }
.pending-tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; color: var(--txt-3); border: 1px dashed var(--zap-white-10); padding: 8px 16px; border-radius: 999px; }
.dev-body { padding: 14px 16px; }
.dev-body .pc-gallery-switch { margin-bottom: 12px; }
.dev-body .n { font-family: var(--font-mono); font-size: 11px; color: var(--txt-3); letter-spacing: .14em; }
.dev-body h4 { font-size: 16px; margin-top: 3px; }
.dev-body .dev-view { font-family: var(--font-mono); font-size: 11px; color: var(--txt-3); margin-top: 5px; letter-spacing: .06em; }

/* 华哥同款外设：统一 4:3 产品棚拍画布与等高卡片。原图完整保留，大图仍读取原始资源。 */
.gear-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(14px, 1.5vw, 20px);
  align-items: stretch;
}
.gear-product-grid .dev-card {
  position: relative;
  height: 100%;
  border-color: rgba(255,255,255,.085);
  border-radius: 18px;
  background:
    radial-gradient(130% 75% at 50% -12%, rgba(255,46,159,.10), transparent 58%),
    linear-gradient(180deg, rgba(27,8,24,.78), rgba(8,6,11,.98));
  box-shadow: 0 18px 48px -38px rgba(0,0,0,.95), inset 0 1px 0 rgba(255,255,255,.025);
}
.gear-product-grid .dev-card:hover {
  transform: none;
  border-color: rgba(255,255,255,.085);
  box-shadow: 0 18px 48px -38px rgba(0,0,0,.95), inset 0 1px 0 rgba(255,255,255,.025);
}
.gear-product-grid .dev-card::before {
  content: "LOADOUT / " attr(data-slot);
  position: absolute;
  z-index: 5;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(7,6,11,.72);
  color: rgba(255,255,255,.72);
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1;
  letter-spacing: .12em;
  pointer-events: none;
  backdrop-filter: blur(8px);
}
.gear-product-grid .dev-card::after {
  content: "";
  position: absolute;
  z-index: 6;
  top: -1px;
  left: 17%;
  right: 17%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,79,216,.76), transparent);
  opacity: .62;
  pointer-events: none;
}
.gear-product-grid .dev-media {
  aspect-ratio: 4 / 3;
  box-sizing: border-box;
  padding: 12px;
  isolation: isolate;
  border-bottom-color: rgba(255,255,255,.085);
  background:
    radial-gradient(72% 58% at 50% 46%, rgba(255,46,159,.17), transparent 68%),
    linear-gradient(145deg, #130711, #07060b 70%);
}
.gear-product-grid .dev-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 13%;
  right: 13%;
  bottom: 7%;
  height: 13%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,46,159,.22), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.gear-product-grid .dev-media::after {
  top: auto;
  left: auto;
  right: 12px;
  bottom: 12px;
  z-index: 6;
  color: rgba(255,255,255,.88);
  background: rgba(7,6,11,.76);
  backdrop-filter: blur(8px);
}
.gear-product-grid .dev-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 11px;
  background: #e9e8ea;
  object-fit: contain !important;
  box-shadow: 0 16px 34px -23px rgba(0,0,0,.88);
  filter: saturate(.96) contrast(1.018);
  transition: transform .42s var(--ease), filter .42s var(--ease), opacity .18s var(--ease);
}
.gear-product-grid .media-note {
  z-index: 7;
  top: 12px;
  right: 12px;
  bottom: auto;
  border-color: rgba(255,255,255,.22);
  background: rgba(7,6,11,.72);
  color: rgba(255,255,255,.74);
  backdrop-filter: blur(8px);
}
.gear-product-grid .pc-gallery-switch {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 12px;
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  margin: 0;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(7,6,11,.78);
  box-shadow: 0 10px 24px -16px rgba(0,0,0,.95);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}
.gear-product-grid .pc-switch {
  flex: 0 0 auto;
  padding: 5px 10px;
  border-color: transparent;
  background: transparent;
  font-size: 10px;
  white-space: nowrap;
}
.gear-product-grid .pc-card .dev-media::after { display: none; }
.gear-product-grid .dev-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 104px;
  padding: 16px 16px 15px;
  background: linear-gradient(180deg, rgba(255,255,255,.012), rgba(255,255,255,0));
}
.gear-product-grid .dev-body .n {
  color: rgba(255,119,222,.72);
  font-size: 10px;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.gear-product-grid .dev-body h4 {
  min-height: 2.7em;
  margin-top: 6px;
  color: rgba(255,255,255,.96);
  font-size: 16px;
  line-height: 1.35;
  text-wrap: balance;
}
.gear-product-grid .dev-body .dev-view {
  margin-top: auto;
  padding-top: 6px;
  color: rgba(255,255,255,.42);
}
@media (hover: hover) and (pointer: fine) {
  .gear-product-grid .dev-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,46,159,.56);
    box-shadow: 0 25px 58px -34px rgba(255,46,159,.48), inset 0 1px 0 rgba(255,255,255,.04);
  }
  .gear-product-grid .dev-card:hover .dev-media img {
    transform: scale(1.018);
    filter: saturate(1) contrast(1.028);
  }
}
@media (max-width: 1100px) {
  .gear-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .gear-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .gear-product-grid { grid-template-columns: 1fr; }
  .gear-product-grid .dev-media { padding: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .gear-product-grid .dev-media img { transition: none; }
}

/* 周边卡（复用 .dev-card 卡壳；名称 + 简短说明 + 逐色缩略图） */
.merch-card { margin: 0; }
.merch-grid { align-items: stretch; }
.merch-grid .merch-card { height: 100%; }
.merch-grid .dev-body { display: flex; flex: 1; flex-direction: column; }
.merch-grid .merch-card .merch-mini-gallery { margin-top: auto; padding-top: 12px; }
.merch-card .dev-media img { transition: opacity .16s var(--ease), filter .16s var(--ease); }
.merch-card .dev-media img.is-switching { opacity: .18; filter: blur(1.5px) brightness(.72); }
.merch-card:hover .dev-media::after { opacity: 1; transform: none; }
.keep-word { white-space: nowrap; }
.merch-card .merch-desc { color: var(--txt-2); font-size: 13px; margin-top: 6px; line-height: 1.5; }
.merch-mini-gallery { display: flex; flex-wrap: wrap; gap: 5px; min-height: 29px; }
.merch-mini-thumb {
  appearance: none; position: relative; flex: 0 0 29px; width: 29px; height: 29px;
  overflow: hidden; padding: 2px; border: 1px solid var(--zap-white-10); border-radius: 7px;
  background: linear-gradient(150deg, var(--zap-deep-1), var(--zap-black)); cursor: pointer;
  transition: transform var(--zap-t-fast) var(--ease), border-color var(--zap-t-fast), box-shadow var(--zap-t-fast);
}
.merch-mini-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 4px; }
.merch-mini-thumb:hover { z-index: 1; transform: translateY(-2px) scale(1.08); border-color: var(--zap-pink); box-shadow: 0 8px 22px -12px var(--zap-pink); }
.merch-mini-thumb.is-current,
.merch-mini-thumb[aria-pressed="true"] { border-color: var(--zap-pink); box-shadow: inset 0 0 0 1px rgba(255,79,216,.22), 0 0 14px -5px var(--zap-pink); }
.merch-mini-thumb:focus-visible { z-index: 1; outline: 2px solid var(--zap-bright); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  .merch-card .dev-media img { transition: none; }
}

/* ── 大图预览 Lightbox（原生零依赖；点击设备/周边图打开，contain 完整可见） ── */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; overflow-y: auto; padding: clamp(16px, 4vw, 48px); background: rgba(4,3,8,0.86); backdrop-filter: blur(6px); }
.lightbox.open { display: flex; }
.lightbox-stage { position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px; width: min(1100px, 94vw); max-width: min(1100px, 94vw); }
.lightbox-view { position: relative; display: grid; place-items: center; width: 100%; }
.lightbox-img { max-width: 100%; max-height: 82vh; width: auto; height: auto; object-fit: contain; display: block; border-radius: 12px; border: 1px solid var(--zap-white-10); background: linear-gradient(160deg, var(--zap-deep-1), var(--zap-black)); box-shadow: 0 40px 100px -30px rgba(0,0,0,0.9); }
.lightbox.has-gallery .lightbox-img { max-height: 64vh; }
.lightbox.is-loading .lightbox-img { opacity: .35; }
.lightbox-nav {
  position: absolute; z-index: 3; top: 50%; display: grid; place-items: center;
  width: 48px; height: 48px; padding: 0; border: 1px solid var(--zap-pink-35); border-radius: 50%;
  background: rgba(7,6,11,.84); color: var(--zap-white); font-family: Arial, sans-serif; font-size: 38px; line-height: 1;
  cursor: pointer; box-shadow: 0 14px 34px -18px rgba(0,0,0,.9), 0 0 24px -14px var(--zap-pink);
  transform: translateY(-50%); transition: transform var(--zap-t-fast), border-color var(--zap-t-fast), background var(--zap-t-fast), box-shadow var(--zap-t-fast);
}
.lightbox-nav[hidden] { display: none; }
.lightbox-prev { left: clamp(8px, 2vw, 22px); }
.lightbox-next { right: clamp(8px, 2vw, 22px); }
.lightbox-nav:hover { border-color: var(--zap-pink); background: rgba(47,4,28,.94); box-shadow: var(--zap-glow-pink); transform: translateY(-50%) scale(1.08); }
.lightbox-nav:focus-visible { outline: 2px solid var(--zap-bright); outline-offset: 3px; }
.lightbox-cap { font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em; color: var(--txt-2); text-align: center; max-width: 80ch; }
.lightbox-thumbs { display: flex; gap: 10px; width: min(100%, 760px); overflow-x: auto; padding: 3px 3px 8px; scrollbar-width: thin; scrollbar-color: var(--zap-pink-35) transparent; }
.lightbox-thumbs[hidden] { display: none; }
.lightbox-thumb { flex: 0 0 92px; min-width: 0; padding: 6px; border: 1px solid var(--zap-white-10); border-radius: 11px; background: rgba(255,255,255,.025); color: var(--txt-3); cursor: pointer; transition: border-color var(--zap-t-fast), background var(--zap-t-fast), color var(--zap-t-fast), box-shadow var(--zap-t-fast); }
.lightbox-thumb img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; display: block; border-radius: 7px; background: var(--zap-black); }
.lightbox-thumb span { display: block; overflow: hidden; margin-top: 5px; font-family: var(--font-mono); font-size: 10px; line-height: 1.2; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.lightbox-thumb:hover { color: var(--zap-white); border-color: var(--zap-pink-35); }
.lightbox-thumb.is-active, .lightbox-thumb[aria-pressed="true"] { color: var(--zap-white); border-color: var(--zap-pink); background: var(--zap-pink-14); box-shadow: 0 0 18px rgba(255,46,159,.18); }
.lightbox-thumb:focus-visible { outline: 2px solid var(--zap-bright); outline-offset: 2px; }
.lightbox-close { position: absolute; top: -16px; right: -16px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--zap-pink-35); background: var(--zap-black); color: var(--zap-white); font-size: 18px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: transform var(--zap-t-fast), border-color var(--zap-t-fast), box-shadow var(--zap-t-fast); }
.lightbox-close:hover { transform: scale(1.08); border-color: var(--zap-pink); box-shadow: var(--zap-glow-pink); }
.lightbox-close:focus-visible { outline: 2px solid var(--zap-bright); outline-offset: 2px; }
.lightbox-error { display: none; flex-direction: column; align-items: center; gap: 14px; padding: 46px 30px; text-align: center; color: var(--txt-2); }
.lightbox-error p { font-size: 15px; }
.lightbox-error .ec { font-family: var(--font-mono); font-size: 12px; color: #ff5d6c; word-break: break-all; }
.lightbox.is-error .lightbox-view { display: none; }
.lightbox.is-error .lightbox-error { display: flex; }
@media (max-width: 600px) {
  .lightbox { align-items: flex-start; }
  .lightbox-close { top: 4px; right: 4px; }
  .lightbox.has-gallery .lightbox-img { max-height: 56vh; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 31px; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  .lightbox-thumb { flex-basis: 74px; }
}
@media (prefers-reduced-motion: reduce) { .lightbox-close, .lightbox-nav { transition: none; } }

/* ── 能力轨迹：横向五段（技术→商务→解说→管理→AI；桌面同轨，移动横向滚动，主词永不换行） ── */
.ability-track {
  display: flex; align-items: stretch; gap: 0;
  margin-bottom: clamp(28px, 4.5vw, 46px);
  padding: 4px 2px 12px; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--zap-pink-35) transparent;
}
.ability-track::-webkit-scrollbar { height: 6px; }
.ability-track::-webkit-scrollbar-track { background: transparent; }
.ability-track::-webkit-scrollbar-thumb { background: var(--zap-pink-35); border-radius: 999px; }
.atk-node {
  flex: 1 1 0; min-width: 134px; scroll-snap-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  text-align: center; padding: 22px 16px;
  border: 1px solid var(--zap-white-10); border-radius: 14px;
  background: linear-gradient(180deg, var(--zap-pink-06), transparent);
  transition: transform var(--zap-t-med) var(--ease), border-color var(--zap-t-med), box-shadow var(--zap-t-med);
}
.atk-node:hover { transform: translateY(-4px); border-color: var(--zap-pink-35); box-shadow: 0 20px 44px -28px var(--zap-pink-35); }
.atk-node b {
  font-family: var(--font-display); font-weight: 900; letter-spacing: 0.02em;
  font-size: clamp(21px, 2.5vw, 30px); line-height: 1; color: var(--zap-white);
  white-space: nowrap; text-shadow: 0 0 22px var(--zap-pink-35);
}
.atk-node span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--txt-3); white-space: nowrap; }
.atk-node.atk-end { border-color: var(--zap-pink-35); background: linear-gradient(180deg, var(--zap-pink-14), transparent); }
.atk-node.atk-end b { color: var(--zap-bright); }
.atk-link {
  flex: 0 0 30px; align-self: center; position: relative; margin: 0 -1px;
  height: 2px; min-width: 22px; background: linear-gradient(90deg, var(--zap-pink), var(--zap-bright)); opacity: 0.85;
}
.atk-link::after {
  content: ""; position: absolute; right: -2px; top: 50%; transform: translateY(-50%); width: 0; height: 0;
  border-left: 7px solid var(--zap-bright); border-top: 4.5px solid transparent; border-bottom: 4.5px solid transparent;
}
@media (prefers-reduced-motion: reduce) { .atk-node { transition: none; } }

/* ── 数据/影响力 ─────────────────────────── */
.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 16px; }
.metric {
  text-align: center; padding: 30px 18px; border-radius: var(--radius);
  border: 1px solid var(--zap-white-10); background: linear-gradient(180deg, var(--zap-pink-06), transparent);
}
.metric b { font-family: var(--font-display); font-weight: 900; font-size: clamp(34px,5vw,52px); line-height: 1; color: var(--zap-white); text-shadow: 0 0 30px var(--zap-pink-35); display: block; }
.metric b .u { color: var(--zap-bright); font-size: 0.55em; }
.metric span { display: block; margin-top: 10px; font-size: 13px; color: var(--txt-2); letter-spacing: 0.04em; }

/* ── 联系/合作 ───────────────────────────── */
.contact { text-align: center; }
.contact-medallion { width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 50%; overflow: hidden; border: 1px solid var(--zap-pink-35); box-shadow: 0 0 30px -6px var(--zap-pink-35); background: rgba(7,6,11,0.6); }
.contact-medallion img { width: 100%; height: 100%; object-fit: contain; }
.contact-card {
  max-width: 760px; margin: 0 auto; padding: clamp(36px,6vw,64px);
  border-radius: 22px; border: 1px solid var(--zap-pink-35);
  background:
    radial-gradient(600px 300px at 50% -20%, var(--zap-pink-14), transparent 70%),
    linear-gradient(160deg, var(--zap-deep-3), var(--zap-deep-2));
  box-shadow: 0 40px 90px -50px var(--zap-pink-35);
}
.contact-card .big {
  font-family: var(--font-display); font-weight: 900; letter-spacing: -0.01em;
  font-size: clamp(26px,4.6vw,46px); line-height: 1.08; margin-bottom: 16px;
}
.contact-card p { color: var(--txt-2); margin-bottom: 26px; }
.contact-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── 页脚 ────────────────────────────────── */
.footer { padding: 54px 0 40px; border-top: 1px solid var(--zap-white-10); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.footer .brand .mark { font-size: 26px; }
.footer-logo { height: 44px; width: auto; }
.footer .slog { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; color: var(--txt-3); margin-top: 10px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--txt-2); transition: color var(--zap-t-fast); }
.footer-links a:hover { color: var(--zap-bright); }
.footer-copy { margin-top: 30px; font-size: 12px; color: var(--txt-3); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ── 滚动揭示动画 ─────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── 响应式 ──────────────────────────────── */
@media (max-width: 940px) {
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-portrait { float: none; width: 190px; margin: 0 0 18px; }
  .pillars { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; }
  .team-profile-grid { grid-template-columns: 1fr; }
  .identity-card { justify-self: center; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0; padding: 22px var(--pad) 28px;
    background: rgba(7,6,11,0.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--zap-white-10);
  }
  .nav.open .nav-cta { display: inline-flex; position: absolute; top: 100%; right: var(--pad); margin-top: 78px; }
  .hero { min-height: 88svh; }
  .hero-logo-stage { width: min(94vw, 560px); }
  .wall-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inline { gap: 18px; }
  .team-motto { grid-template-columns: 1fr; gap: 8px; }
  .team-motto-label { margin-top: 0; }
}
@media (max-width: 520px) {
  .signature-title { width: auto; white-space: normal; text-wrap: balance; }
}

/* 返回顶部按钮 */
.back-to-top {
  position: fixed; right: 28px; bottom: 28px; z-index: 90;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 12px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--zap-bright); text-decoration: none;
  background: rgba(12, 6, 14, 0.72); border: 1px solid var(--zap-pink);
  box-shadow: 0 0 18px var(--zap-pink-35), inset 0 0 12px rgba(255, 46, 159, 0.14);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity var(--zap-t-med) var(--ease), transform var(--zap-t-med) var(--ease), background var(--zap-t-fast), box-shadow var(--zap-t-fast);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: rgba(255, 46, 159, 0.16); box-shadow: 0 0 26px var(--zap-pink), inset 0 0 16px rgba(255, 79, 216, 0.22); }
.back-to-top:focus-visible { outline: 2px solid var(--zap-bright); outline-offset: 3px; }
@media (max-width: 560px) {
  .back-to-top { right: 16px; bottom: 16px; width: 46px; height: 46px; font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity var(--zap-t-med); transform: none; }
  .back-to-top.is-visible { transform: none; }
}
