/* ===== Design Tokens ===== */
:root {
  --navy-950: #0a1628;
  --navy-900: #0f2137;
  --navy-800: #162d4a;
  --navy-700: #1e3a5f;
  --navy-600: #2a5080;
  --teal-400: #5ec4c4;
  --teal-300: #7dd9d9;
  --teal-glow: rgba(94, 196, 196, 0.35);
  --gold-400: #d4a853;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --surface-3: #e8eef4;
  --border: rgba(15, 33, 55, 0.08);
  --border-strong: rgba(15, 33, 55, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.14);
  --shadow-glow: 0 0 40px var(--teal-glow);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--surface-2);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Ambient Background ===== */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--teal-400) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: drift 20s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  bottom: 20%; left: -100px;
  animation: drift 25s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--gold-400) 0%, transparent 70%);
  top: 50%; right: 30%;
  opacity: 0.25;
  animation: drift 18s ease-in-out infinite 5s;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-glow {
  background: linear-gradient(135deg, var(--teal-400) 0%, #3aafaf 100%);
  color: var(--navy-950);
  box-shadow: 0 4px 20px var(--teal-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--teal-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
}
.btn-full { width: 100%; }
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.header.scrolled::before {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header.hero-mode::before {
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(20px);
}
.header.hero-mode .nav-logo,
.header.hero-mode .nav-links a { color: rgba(255,255,255,0.85); }
.header.hero-mode .nav-links a:hover,
.header.hero-mode .nav-links a.active { color: #fff; }
.header.hero-mode .nav-links a::after { background: var(--teal-400); }
.header.hero-mode .nav-toggle span { background: #fff; }

.nav {
  position: relative;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 8px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-900);
  margin-right: auto;
}
.logo-img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(94,196,196,0.4);
  box-shadow: 0 0 0 3px rgba(94,196,196,0.12);
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 50%;
  width: 0; height: 2px;
  background: var(--teal-400);
  border-radius: 1px;
  transition: all 0.3s var(--ease);
  transform: translateX(-50%);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy-900); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  margin-left: 24px;
  padding: 9px 20px;
  background: var(--navy-900);
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.header.hero-mode .nav-cta {
  background: var(--teal-400);
  color: var(--navy-950);
}
.header.hero-mode .nav-cta:hover {
  background: var(--teal-300);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: 12px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy-900);
  border-radius: 1px;
  transition: all 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 45%, #1a4a5a 100%);
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94,196,196,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,196,196,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  background: rgba(94,196,196,0.12);
  border: 1px solid rgba(94,196,196,0.25);
  border-radius: 50px;
  color: var(--teal-300);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.tag-dot {
  width: 8px; height: 8px;
  background: var(--teal-400);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--teal-glow); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px transparent; }
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal-300) 0%, var(--teal-400) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}
.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item strong {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.trust-item.trust-highlight strong {
  font-size: 15px;
  color: var(--teal-300);
}
.trust-num {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  margin-right: 1px;
  background: linear-gradient(135deg, var(--teal-300), var(--teal-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  margin: 0 20px;
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 520px;
  height: 520px;
  margin: 0 auto;
}
.hero-visual-ring {
  position: absolute;
  width: 340px; height: 340px;
  border: 1px solid rgba(94,196,196,0.2);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.hero-visual-ring.ring-2 {
  width: 420px; height: 420px;
  border-style: dashed;
  border-color: rgba(94,196,196,0.1);
  animation: spin 45s linear infinite reverse;
}
.hero-visual-ring.ring-3 {
  width: 500px; height: 500px;
  border: 1px solid rgba(255,255,255,0.04);
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.chip-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translateZ(0);
}
.chip-orbit .float-chip {
  --angle: calc(var(--i) * 30deg);
  --radius: 228px;
  --float-dur: calc(5s + (var(--i) % 5) * 0.6s);
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  background: none;
  border: none;
  backdrop-filter: none;
  transform:
    translate3d(-50%, -50%, 0)
    rotate(var(--angle))
    translate3d(0, calc(-1 * var(--radius)), 0)
    rotate(calc(-1 * var(--angle)));
}
.float-chip-inner {
  display: inline-block;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  will-change: transform;
  animation: chipFloat var(--float-dur) cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation-delay: calc(var(--i) * -0.55s);
}
@keyframes chipFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -9px, 0); }
}

.float-chip.chip-teal .float-chip-inner {
  background: rgba(94,196,196,0.15);
  border-color: rgba(94,196,196,0.3);
  color: var(--teal-300);
}
.float-chip.chip-gold .float-chip-inner {
  background: rgba(212,168,83,0.15);
  border-color: rgba(212,168,83,0.3);
  color: #f0d090;
}

.hero-avatar-wrap {
  position: relative;
  z-index: 2;
  width: 240px; height: 240px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-glow), 0 20px 60px rgba(0,0,0,0.4);
  border: 3px solid rgba(94,196,196,0.4);
  will-change: transform;
  animation: avatarFloat 7s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.hero-avatar {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* 移动端 Hero 紧凑头像（桌面隐藏） */
.hero-head-compact { display: contents; }
.hero-avatar-sm { display: none; }

@keyframes avatarFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .float-chip-inner,
  .hero-avatar-wrap,
  .hero-visual-ring {
    animation: none !important;
  }
}

/* 移动端标签条 */
.hero-tags-mobile {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.hero-tags-mobile span {
  padding: 5px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 2px;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(94,196,196,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== Sections ===== */
.section {
  padding: 110px 0;
  position: relative;
}
.section-dark {
  background: var(--navy-900);
  color: #fff;
}
.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p { color: rgba(255,255,255,0.5); }
.section-dark .section-label { color: var(--teal-400); border-color: rgba(94,196,196,0.25); }

/* ===== Why Me ===== */
.section-why-me {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: #fff;
  overflow: hidden;
}
.section-why-me .section-header h2 { color: #fff; }
.section-why-me .section-header p { color: rgba(255,255,255,0.55); }
.section-why-me .section-label {
  color: var(--teal-400);
  border-color: rgba(94,196,196,0.25);
}

.why-me-top {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 48px;
}

.why-me-profile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.profile-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.profile-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(94,196,196,0.45);
  box-shadow: 0 0 24px rgba(94,196,196,0.2);
  flex-shrink: 0;
}
.profile-head h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.profile-role {
  font-size: 13px;
  color: var(--teal-300);
  font-weight: 500;
}
.profile-bio {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 24px;
  flex: 1;
}
.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.stat-item {
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}
.stat-item strong small {
  font-size: 14px;
  font-weight: 700;
}
.stat-item span {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}
.stat-highlight {
  background: rgba(94,196,196,0.1);
  border-color: rgba(94,196,196,0.25);
}
.stat-highlight strong {
  background: linear-gradient(135deg, var(--teal-300), var(--teal-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 26px;
}
.profile-xianyu {
  display: block;
  text-align: center;
  padding: 12px;
  background: rgba(94,196,196,0.12);
  border: 1px solid rgba(94,196,196,0.25);
  border-radius: var(--radius-sm);
  color: var(--teal-300);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}
.profile-xianyu:hover {
  background: rgba(94,196,196,0.2);
  transform: translateY(-1px);
}

.why-me-reviews {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 24px 16px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.reviews-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.reviews-header p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.reviews-badge {
  flex-shrink: 0;
  padding: 6px 14px;
  background: linear-gradient(135deg, #ff6b35, #ff4757);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,71,87,0.35);
  letter-spacing: 0.5px;
}
.reviews-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(94,196,196,0.3) transparent;
}
.reviews-track::-webkit-scrollbar { height: 4px; }
.reviews-track::-webkit-scrollbar-thumb {
  background: rgba(94,196,196,0.35);
  border-radius: 2px;
}
.review-shot {
  flex: 0 0 200px;
  scroll-snap-align: start;
  border: none;
  padding: 0;
  background: none;
  cursor: zoom-in;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  line-height: 0;
}
.review-shot:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.review-shot img {
  width: 200px;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top;
}
.reviews-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 8px;
}
.hint-auto { display: none; }

.why-me-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.point-card {
  padding: 24px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  transition: all 0.35s var(--ease);
}
.point-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(94,196,196,0.2);
  transform: translateY(-3px);
}
.point-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(94,196,196,0.12);
  border-radius: 10px;
  margin-bottom: 14px;
}
.point-icon svg {
  width: 20px; height: 20px;
  stroke: var(--teal-300);
}
.point-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.point-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 10, 20, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: min(90vw, 420px);
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}
.lightbox-close {
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 32px;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--teal-400);
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px 28px;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-400), var(--navy-600));
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  transition: all 0.4s var(--ease);
}
.service-icon-wrap svg {
  width: 24px; height: 24px;
  stroke: var(--navy-700);
}
.service-icon-wrap.accent {
  background: linear-gradient(135deg, rgba(94,196,196,0.15), rgba(94,196,196,0.05));
}
.service-icon-wrap.accent svg { stroke: #2a9d9d; }
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--teal-400), #3aafaf);
}
.service-card:hover .service-icon-wrap svg { stroke: var(--navy-950); }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.service-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--surface-2);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ===== Projects ===== */
.section-projects {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px 24px;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(94,196,196,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(94,196,196,0.3);
}
.project-card:hover::after { opacity: 1; }
.project-featured {
  border-color: rgba(94,196,196,0.25);
  background: linear-gradient(160deg, rgba(94,196,196,0.06) 0%, var(--surface) 50%);
}
.project-featured::before {
  content: "热门";
  position: absolute;
  top: 16px; right: 16px;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--teal-400), #3aafaf);
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
}
.project-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--surface-2);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-600);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.project-featured .project-badge {
  background: rgba(94,196,196,0.12);
  color: #2a9d9d;
}
.project-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.project-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 18px;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}
.project-tags li {
  padding: 3px 9px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}
.projects-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-muted);
}
.projects-note a {
  color: var(--teal-400);
  font-weight: 600;
  filter: brightness(0.85);
}
.projects-note a:hover { text-decoration: underline; }

.projects-scroll-hint {
  display: none;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.auto-scroll-inner {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  width: max-content;
  will-change: transform;
}

.auto-scroll-inner > .project-card {
  flex: 0 0 min(78vw, 280px);
  width: min(78vw, 280px);
}

.auto-scroll-inner > .review-shot {
  flex: 0 0 150px;
}

.auto-scroll-inner > .review-shot img {
  width: 150px;
}

.services-scroll-hint {
  display: none;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ===== Mobile Contact Dock ===== */
.contact-dock-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(5, 10, 20, 0.35);
}
.contact-dock-backdrop.is-visible {
  display: block;
  pointer-events: auto;
}
.contact-dock {
  display: none;
}

/* ===== Contact ===== */
.section-contact {
  position: relative;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  overflow: hidden;
  padding-bottom: 100px;
  color: #fff;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(94,196,196,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-intro {
  text-align: center;
  margin-bottom: 48px;
}
.contact-intro .section-label {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--teal-400);
  margin-bottom: 16px;
}
.contact-intro h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.contact-intro p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
}
.contact-intro .section-label {
  border-color: rgba(94,196,196,0.25);
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch;
}
.channel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  color: #fff;
  transition: all 0.35s var(--ease);
  overflow: hidden;
}
.channel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(94,196,196,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.channel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94,196,196,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.channel-card:hover::before { opacity: 1; }
.channel-main {
  background: linear-gradient(135deg, var(--navy-800) 0%, #1a4a5a 100%);
  border-color: rgba(94,196,196,0.25);
}
.channel-main:hover {
  box-shadow: 0 16px 48px rgba(94,196,196,0.15);
}
.channel-wechat {
  background: linear-gradient(135deg, rgba(7,193,96,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(7,193,96,0.25);
}
.channel-wechat:hover {
  border-color: rgba(7,193,96,0.4);
  box-shadow: 0 12px 40px rgba(7,193,96,0.12);
}
.channel-badge-wechat {
  background: linear-gradient(135deg, #07c160, #06ad56);
  color: #fff;
  box-shadow: 0 4px 16px rgba(7,193,96,0.35);
}
.channel-icon-wechat {
  background: rgba(7,193,96,0.15) !important;
}
.channel-icon-wechat svg {
  width: 24px; height: 24px;
  fill: #07c160;
  stroke: none;
}
.channel-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  width: 100%;
}
.channel-info {
  flex: 1;
  min-width: 0;
}
.channel-aside {
  flex-shrink: 0;
}
.channel-aside-go {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 108px;
  height: 108px;
  background: rgba(94,196,196,0.1);
  border: 1px solid rgba(94,196,196,0.22);
  border-radius: 14px;
  transition: all 0.35s var(--ease);
}
.channel-main:hover .channel-aside-go {
  background: rgba(94,196,196,0.18);
  border-color: rgba(94,196,196,0.38);
  transform: scale(1.03);
}
.channel-go-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(94,196,196,0.18);
  border-radius: 50%;
}
.channel-go-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal-300);
}
.channel-go-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-300);
  letter-spacing: 0.02em;
}
.wechat-qr-btn {
  border: none;
  padding: 6px;
  background: #fff;
  border-radius: 14px;
  cursor: zoom-in;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  line-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.wechat-qr-btn img {
  width: 108px;
  height: 108px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}
.wechat-qr-btn span {
  font-size: 10px;
  color: rgba(0,0,0,0.45);
  line-height: 1;
}
.wechat-qr-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.lightbox-img.lightbox-qr {
  max-width: min(88vw, 320px);
  border-radius: 16px;
  background: #fff;
  padding: 12px;
}
.channel-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--teal-400), #3aafaf);
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 800;
  border-radius: 50px;
}
.channel-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  margin-bottom: 16px;
  position: relative;
}
.channel-icon svg {
  width: 24px; height: 24px;
  stroke: var(--teal-300);
}
.channel-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
}
.channel-id {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-300);
  margin-bottom: 6px;
  position: relative;
}
.channel-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  position: relative;
}
.channel-copy {
  align-self: flex-start;
  margin-top: 14px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: all 0.25s;
  position: relative;
}
.channel-copy:hover {
  background: rgba(94,196,196,0.15);
  border-color: rgba(94,196,196,0.3);
  color: var(--teal-300);
}

.contact-compose {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 36px 36px 32px;
  backdrop-filter: blur(8px);
}
.compose-header {
  margin-bottom: 28px;
}
.compose-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.compose-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.compose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group-full {
  grid-column: 1 / -1;
}
.contact-compose .form-group {
  margin-bottom: 0;
}
.contact-compose .form-group label {
  color: rgba(255,255,255,0.75);
}
.contact-compose .form-group input,
.contact-compose .form-group textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.contact-compose .form-group input:focus,
.contact-compose .form-group textarea:focus {
  background: rgba(255,255,255,0.08);
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(94,196,196,0.12);
}
.contact-compose .form-group input::placeholder,
.contact-compose .form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.compose-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.compose-actions .btn {
  flex: 1;
  min-width: 180px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text-primary);
  transition: all 0.25s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(94,196,196,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

/* ===== Footer ===== */
.footer {
  background: var(--navy-950);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(94,196,196,0.3);
}
.footer-brand strong {
  display: block;
  font-size: 15px;
  color: #fff;
  margin-bottom: 2px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-meta {
  text-align: right;
}
.footer-meta p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy-900);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: all 0.4s var(--ease);
  z-index: 9999;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay { transition-delay: 0.15s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero { min-height: auto; padding-bottom: 44px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { width: 380px; height: 380px; }
  .chip-orbit .float-chip { --radius: 165px; }
  .float-chip-inner { font-size: 10px; padding: 6px 12px; }
  .hero-avatar-wrap { width: 180px; height: 180px; }
  .hero-scroll { display: none; }
  .why-me-top { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
  .why-me-points { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 44px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    padding: 12px 16px 20px;
    gap: 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
  }
  .header.hero-mode .nav-links.open {
    background: rgba(10,22,40,0.97);
  }
  .nav-links.open li { border-bottom: 1px solid var(--border); }
  .nav-links.open a { display: block; padding: 13px 0; }
  .nav-hide-mobile { display: none !important; }

  /* Hero：紧凑布局，取消全屏高度 */
  .hero {
    min-height: auto;
    padding: 84px 0 28px;
  }
  .hero-inner {
    gap: 0;
    text-align: left;
  }
  .hero-head-compact {
    display: block;
    margin-bottom: 14px;
  }
  .hero-avatar-sm { display: none; }
  .hero-head-text { min-width: 0; }
  .hero-tag {
    margin-bottom: 10px;
    font-size: 11px;
    padding: 5px 12px 5px 8px;
  }
  .hero-title {
    font-size: clamp(18px, 5vw, 24px);
    margin-bottom: 0;
    text-align: left;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .hero-title br { display: none; }
  .hero-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: none;
    text-align: left;
  }
  .hero-actions {
    justify-content: flex-start;
    margin-bottom: 18px;
    gap: 10px;
  }
  .hero-actions .btn {
    padding: 11px 20px;
    font-size: 14px;
  }
  .hero-tags-mobile { display: none; }
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 12px;
    justify-content: stretch;
  }
  .trust-divider { display: none; }
  .trust-item strong { font-size: 13px; }
  .trust-item span { font-size: 11px; }
  .trust-num { font-size: 22px; }
  .hero-visual { display: none; }

  /* 区块间距压缩 */
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: 24px; margin-bottom: 10px; }
  .section-header p { font-size: 14px; }
  .section-label { margin-bottom: 10px; font-size: 10px; }

  /* 服务：双列平铺，紧凑展示 */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
  .service-card {
    flex: unset;
    scroll-snap-align: unset;
    padding: 14px 12px 12px;
    border-radius: var(--radius-sm);
  }
  .service-icon-wrap {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    border-radius: 8px;
  }
  .service-icon-wrap svg { width: 17px; height: 17px; }
  .service-card h3 { font-size: 13px; margin-bottom: 4px; line-height: 1.35; }
  .service-card p {
    font-size: 11px;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .service-tag { font-size: 9px; padding: 2px 6px; border-radius: 4px; }
  .services-scroll-hint { display: none; }

  /* 案例：横向滑动 + 平移 */
  .projects-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    margin: 0 -16px;
    padding: 0 16px 6px;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: none;
  }
  .projects-grid::-webkit-scrollbar { display: none; }
  .projects-grid.auto-scroll-active,
  .reviews-track.auto-scroll-active {
    display: block;
    overflow: hidden;
    touch-action: pan-y;
  }
  .project-card {
    flex: 0 0 min(78vw, 280px);
    width: min(78vw, 280px);
    max-width: none;
    scroll-snap-align: unset;
    padding: 20px 18px 18px;
  }
  .project-card h3 { font-size: 16px; margin-bottom: 8px; }
  .project-card p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .projects-scroll-hint { display: block; }
  .projects-note { margin-top: 20px; font-size: 13px; }

  /* 关于我：双列卖点 + 紧凑内边距 */
  .why-me-top { margin-bottom: 24px; }
  .why-me-profile { padding: 22px 18px; }
  .profile-head { margin-bottom: 14px; }
  .profile-bio { font-size: 13px; margin-bottom: 16px; line-height: 1.7; }
  .profile-stats { gap: 8px; margin-bottom: 16px; }
  .stat-item { padding: 10px 8px; }
  .stat-item strong { font-size: 18px; }
  .stat-highlight strong { font-size: 22px; }
  .why-me-reviews { padding: 18px 16px 12px; }
  .reviews-header { margin-bottom: 14px; }
  .reviews-header h3 { font-size: 15px; }
  .why-me-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .point-card { padding: 16px 14px; }
  .point-icon { width: 34px; height: 34px; margin-bottom: 10px; }
  .point-card h4 { font-size: 13px; margin-bottom: 4px; }
  .point-card p { font-size: 12px; line-height: 1.55; }

  .review-shot { flex: 0 0 150px; }
  .review-shot img { width: 150px; }
  .hint-auto { display: inline; }
  .reviews-track {
    scroll-snap-type: none;
    scrollbar-width: none;
    padding-bottom: 6px;
  }
  .reviews-track::-webkit-scrollbar { display: none; }

  /* 联系区：双列紧凑卡片 */
  .section-contact { padding-bottom: 56px; }
  .contact-intro { margin-bottom: 20px; }
  .contact-intro h2 { font-size: 22px; margin-bottom: 8px; }
  .contact-intro p { font-size: 13px; }
  .contact-channels {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
  }
  .channel-card {
    padding: 12px 10px;
    border-radius: var(--radius-sm);
  }
  .channel-badge {
    top: 8px;
    right: 8px;
    padding: 2px 7px;
    font-size: 9px;
  }
  .channel-inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 10px;
  }
  .channel-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .channel-icon svg { width: 18px; height: 18px; }
  .channel-card h3 {
    font-size: 13px;
    margin-bottom: 2px;
  }
  .channel-id {
    font-size: 11px;
    margin-bottom: 0;
  }
  .channel-desc { display: none; }
  .channel-aside-go { display: none; }
  .channel-main .channel-info,
  .channel-wechat .channel-info {
    display: grid;
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    gap: 1px 8px;
    align-items: center;
    flex: 1;
    min-width: 0;
  }
  .channel-main .channel-icon,
  .channel-wechat .channel-icon {
    grid-row: 1 / 3;
    align-self: center;
  }
  .channel-main .channel-inner::after {
    content: "›";
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 300;
    color: var(--teal-300);
    line-height: 1;
  }
  .channel-wechat .channel-inner {
    align-items: center;
  }
  .channel-wechat .channel-copy {
    grid-column: 1 / -1;
    margin-top: 6px;
    padding: 4px 8px;
    font-size: 10px;
    align-self: stretch;
    text-align: center;
    width: 100%;
  }
  .wechat-qr-btn {
    flex: 0 0 52px;
    padding: 3px;
    border-radius: 8px;
    gap: 0;
  }
  .wechat-qr-btn img {
    width: 46px;
    height: 46px;
    border-radius: 6px;
  }
  .wechat-qr-btn span { display: none; }
  .contact-compose { padding: 18px 14px 16px; border-radius: var(--radius-md); }
  .compose-header { margin-bottom: 14px; }
  .compose-header h3 { font-size: 16px; }
  .compose-header p { font-size: 12px; }
  .compose-grid { grid-template-columns: 1fr; gap: 10px; }
  .compose-actions { flex-direction: column; margin-top: 14px; }
  .compose-actions .btn { width: 100%; min-width: 0; padding: 12px 20px; font-size: 14px; }

  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-meta { text-align: center; }
  .footer { padding: 28px 0; }

  /* 侧边联系书签：贴右下角 */
  .contact-dock {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    position: fixed;
    top: auto;
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    right: 0;
    left: auto;
    transform: none;
    width: max-content;
    max-width: 100%;
    z-index: 999;
    pointer-events: none;
    padding-right: env(safe-area-inset-right, 0px);
  }
  .contact-dock-tab,
  .contact-dock-panel {
    pointer-events: auto;
  }
  .contact-dock-panel {
    width: min(calc(100vw - 64px), 280px);
    max-width: 0;
    overflow: hidden;
    margin-bottom: 0;
    margin-right: 0;
    padding: 0;
    border-width: 0;
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(18px) saturate(1.3);
    border-style: solid;
    border-color: rgba(94, 196, 196, 0.2);
    border-radius: 18px;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(12px) scale(0.96);
    transform-origin: right center;
    transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0.32s, max-width 0.32s var(--ease), margin 0.32s var(--ease), padding 0.32s var(--ease), box-shadow 0.32s var(--ease);
  }
  .contact-dock.is-open .contact-dock-panel {
    max-width: min(calc(100vw - 64px), 280px);
    margin-right: 8px;
    padding: 12px;
    border-width: 1px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(94, 196, 196, 0.08);
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
  }
  .contact-dock-hint {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-bottom: 10px;
  }
  .contact-dock-action {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    text-align: left;
    text-decoration: none;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
  }
  .contact-dock-action + .contact-dock-action {
    margin-top: 8px;
  }
  .contact-dock-action-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
  }
  .contact-dock-action-icon svg {
    width: 22px;
    height: 22px;
  }
  .contact-dock-action-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .contact-dock-action-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
  }
  .contact-dock-action-text small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
  }
  .contact-dock-xianyu {
    background: linear-gradient(135deg, rgba(94, 196, 196, 0.18) 0%, rgba(94, 196, 196, 0.06) 100%);
    border-color: rgba(94, 196, 196, 0.28);
  }
  .contact-dock-xianyu .contact-dock-action-icon {
    background: rgba(94, 196, 196, 0.15);
    color: var(--teal-300);
  }
  .contact-dock-wechat {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: inherit;
  }
  .contact-dock-wechat .contact-dock-action-icon {
    background: rgba(7, 193, 96, 0.12);
    color: #07c160;
  }
  .contact-dock-action:active {
    transform: scale(0.98);
  }
  .contact-dock-tab {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    padding: 10px 7px;
    background: linear-gradient(180deg, var(--navy-900) 0%, #1a4a5a 100%);
    border: 1px solid rgba(94, 196, 196, 0.35);
    border-right: none;
    border-radius: 14px 0 0 14px;
    box-shadow: -4px 0 28px rgba(94, 196, 196, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: box-shadow 0.3s var(--ease);
  }
  .contact-dock-tab-glow {
    position: absolute;
    top: 12%;
    bottom: 12%;
    left: 0;
    width: 1px;
    transform: none;
    background: linear-gradient(180deg, transparent, var(--teal-400), transparent);
    opacity: 0.7;
  }
  .contact-dock-tab-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(94, 196, 196, 0.5);
    box-shadow: 0 0 12px rgba(94, 196, 196, 0.35);
    animation: dockPulse 2.5s ease-in-out infinite;
  }
  @keyframes dockPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(94, 196, 196, 0.35); }
    50% { box-shadow: 0 0 20px rgba(94, 196, 196, 0.55); }
  }
  .contact-dock-tab-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
  .contact-dock-tab-chevron {
    color: var(--teal-300);
    transition: transform 0.32s var(--ease);
  }
  .contact-dock.is-open .contact-dock-tab-chevron {
    transform: rotate(180deg);
  }
  .contact-dock.is-open .contact-dock-tab {
    box-shadow: -6px 0 36px rgba(94, 196, 196, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  /* 灯箱：小屏按钮移到底部，避免被图片挡住 */
  .lightbox {
    flex-direction: column;
    justify-content: center;
    padding: calc(52px + env(safe-area-inset-top, 0px)) 12px calc(56px + env(safe-area-inset-bottom, 0px));
  }
  .lightbox-img {
    max-width: min(94vw, 420px);
    max-height: calc(100dvh - 200px);
    width: auto;
    height: auto;
  }
  .lightbox-img.lightbox-qr {
    max-width: min(86vw, 320px);
    max-height: calc(100dvh - 200px);
  }
  .lightbox-close {
    top: calc(10px + env(safe-area-inset-top, 0px));
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    transform: none;
    width: 44px;
    height: 44px;
    font-size: 26px;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}
