:root {
  --green: #00b67a;
  --green-dark: #019267;
  --text: #191919;
  --text-mid: #4d4d4d;
  --text-light: #6d6d6d;
  --border: #e7e7ed;
  --border-strong: #dcdce6;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(25, 25, 25, 0.06), 0 4px 16px rgba(25, 25, 25, 0.06);
  --font: "Helvetica Neue", Helvetica, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Star widget ===== */
.tp-stars {
  display: inline-flex;
  gap: 3px;
  vertical-align: middle;
}

.tp-star {
  width: var(--star-size, 20px);
  height: var(--star-size, 20px);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tp-star svg {
  width: 70%;
  height: 70%;
}

/* ===== Header ===== */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  letter-spacing: -0.3px;
  color: #1a1a1a;
  text-decoration: none;
}

.logo .logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(145deg, #1a1a1a 0%, #080808 100%);
  border: 1px solid rgba(201, 162, 39, 0.75);
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 220, 130, 0.12);
}

.logo .logo-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: linear-gradient(135deg, #f6e6a8 0%, #d4af37 52%, #9a7209 100%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.35);
}

.logo .logo-text {
  font-size: 1.05em;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  background: linear-gradient(180deg, #f3dfa0 0%, #d4af37 42%, #a67c00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.12));
}

a.logo:hover .logo-mark {
  border-color: rgba(246, 230, 168, 0.95);
  box-shadow:
    0 3px 14px rgba(0, 0, 0, 0.28),
    0 0 10px rgba(212, 175, 55, 0.18),
    inset 0 1px 0 rgba(255, 220, 130, 0.16);
}

a.logo:hover .logo-text {
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.28));
}

.header .search-box {
  flex: 1;
  max-width: 460px;
  display: flex;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 0.15s;
}

.header .search-box:focus-within {
  border-color: var(--text);
}

.header .search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 18px;
  font-size: 14px;
  outline: none;
}

.header .search-box button {
  background: var(--text);
  color: #fff;
  border: none;
  height: 34px;
  width: 34px;
  margin-right: 4px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  flex-shrink: 0;
}

.header .search-box button:hover {
  background: #000;
}

.header-spacer {
  flex: 1;
}

.header-user {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: #fbfaf5;
  padding: 72px 0 64px;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-blob {
  position: absolute;
  z-index: 1;
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  opacity: 1;
  pointer-events: none;
  will-change: transform;
}

.hero-blob-orange {
  width: 260px;
  height: 200px;
  top: -90px;
  left: -40px;
  background: #ff8a33;
  animation: hero-float-a 3.6s ease-in-out infinite;
}

.hero-blob-yellow {
  width: 300px;
  height: 170px;
  bottom: -80px;
  left: -70px;
  background: #ffd43b;
  border-radius: 60% 40% 50% 50% / 40% 50% 50% 60%;
  animation: hero-float-b 4.2s ease-in-out infinite;
}

.hero-blob-green {
  width: 280px;
  height: 240px;
  bottom: -110px;
  right: -70px;
  background: var(--green);
  animation: hero-float-c 3.9s ease-in-out infinite;
}

@keyframes hero-float-a {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(55px, 40px) rotate(16deg) scale(1.08); }
}

@keyframes hero-float-b {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(65px, -38px) rotate(-14deg) scale(1.1); }
}

@keyframes hero-float-c {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(-58px, -46px) rotate(15deg) scale(1.09); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-blob { animation: none; }
  .today-new,
  .today-new-dot { animation: none; }
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.hero p {
  color: var(--text-mid);
  font-size: 17px;
  margin-bottom: 28px;
}

.hero-search {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-search input {
  flex: 1;
  border: none;
  padding: 16px 22px;
  font-size: 16px;
  outline: none;
}

.hero-search button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 0 30px;
  align-self: stretch;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.hero-search button:hover {
  background: var(--green-dark);
}

/* ===== Category pills ===== */
.pills-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 4px;
  flex-wrap: wrap;
}

.pills-toolbar .pills {
  padding: 0;
  flex: 1;
  min-width: 200px;
}

.today-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 10px 18px;
  margin-top: 2px;
  border-radius: 999px;
  border: 1px solid rgba(0, 182, 122, 0.28);
  background: linear-gradient(135deg, #f0faf5 0%, #fff 100%);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
  animation: today-new-breathe 3.2s ease-in-out infinite;
}

.today-new-text b {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
  font-variant-numeric: tabular-nums;
  margin: 0 2px;
}

.today-new-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  animation: today-new-pulse 2.4s ease-in-out infinite;
}

@keyframes today-new-breathe {
  0%,
  100% {
    opacity: 0.88;
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 182, 122, 0);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(0, 182, 122, 0.14);
  }
}

@keyframes today-new-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 182, 122, 0.45);
  }
  50% {
    opacity: 0.65;
    box-shadow: 0 0 0 6px rgba(0, 182, 122, 0);
  }
}

@media (max-width: 720px) {
  .today-new {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
}

.pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 24px 0 4px;
}

.pill {
  border: 1px solid var(--border-strong);
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.pill:hover {
  border-color: var(--text);
}

.pill.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.pill.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.filter-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0 4px;
}

.filter-label {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  padding-top: 9px;
  min-width: 36px;
}

.filter-row:has(#cityPills) .filter-label,
.filter-row:has(#regionPills) .filter-label {
  font-weight: 800;
  color: var(--text-mid);
}

.city-pills .pill,
.region-pills .pill {
  font-weight: 700;
}

.area-text {
  font-weight: 700;
  color: var(--text);
}

.info-row.area-row .k {
  font-weight: 700;
  color: var(--text-mid);
}

.summary-spec.area-spec .summary-spec-k {
  font-weight: 700;
  color: var(--text-mid);
}

.city-pills,
.region-pills,
.price-pills {
  padding: 0;
  flex: 1;
  min-width: 0;
}

.city-pills .pill,
.region-pills .pill,
.price-pills .pill {
  font-size: 13px;
  padding: 6px 14px;
}

/* ===== Section bar ===== */
.section-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 28px 0 16px;
}

.section-bar h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.result-count {
  color: var(--text-light);
  font-size: 14px;
}

/* ===== Company list (row cards) ===== */
.company-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 20px;
}

/* 首页 · 卡片网格（2 列，与高端外围同款） */
.company-list.company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  --nl-elevated: #fff;
  --nl-surface: #f5f5f5;
  --nl-black: #191919;
  --nl-text: var(--text);
  --nl-text-muted: var(--text-mid);
  --nl-text-faint: var(--text-light);
  --nl-border: var(--border);
  --nl-border-hover: var(--border-strong);
  --nl-gold: var(--green);
  --nl-gold-soft: var(--green-dark);
  --nl-gold-dim: #6d6d6d;
  --nl-radius-lg: var(--radius);
  --nl-space-sm: 12px;
  --nl-space-md: 14px;
  --nl-glow-gold: 0 8px 24px rgba(0, 182, 122, 0.12);
  --nl-shadow-warm: var(--shadow);
  --nl-font-display: inherit;
}

.company-list.company-grid .nl-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--nl-surface);
  overflow: hidden;
}

.company-list.company-grid .nl-card-media img,
.company-list.company-grid .nl-card-media .nl-card-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.company-list.company-grid .nl-card-body {
  padding: 10px 12px 12px;
  gap: 6px;
}

.nl-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.nl-card-head .nl-card-name {
  flex: 1;
  min-width: 0;
  margin: 0;
}

.nl-card-no {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}

.company-list.company-grid .nl-card-no {
  color: #191919;
  position: relative;
  z-index: 1;
  padding-left: 4px;
}

.company-list.company-grid .nl-card-name {
  font-size: 16px;
  font-weight: 700;
}

.company-list.company-grid .nl-card-meta,
.company-list.company-grid .nl-card-score .score-count {
  font-size: 12px;
}

.company-list.company-grid .nl-card {
  color: inherit;
  text-decoration: none;
}

.company-list.company-grid .nl-card:hover {
  transform: translateY(-2px);
}

.company-list.company-grid .nl-card-fallback {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-light);
  background: linear-gradient(160deg, #eef9f0, #f5f5f5);
}

.company-list.company-grid .nl-card-price {
  color: #fff;
  background: var(--green);
}

.company-list.company-grid .nl-card-meta .has-reviews {
  color: var(--green-dark);
}

.company-list.company-grid .nl-card-score .score-num {
  color: var(--text);
}

@media (max-width: 640px) {
  .company-list.company-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 8px 0 48px;
}

.page-nums {
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--border-strong);
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s;
}

.page-btn:hover:not(:disabled):not(.active) {
  border-color: var(--text);
}

.page-btn.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-ellipsis {
  color: var(--text-light);
  padding: 0 4px;
  user-select: none;
}

.page-info {
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .pagination {
    gap: 8px;
  }
  .page-info {
    width: 100%;
    text-align: center;
    order: 3;
  }
  .page-prev {
    order: 1;
  }
  .page-nums {
    order: 2;
    flex: 1;
    justify-content: center;
  }
  .page-next {
    order: 4;
  }
}

.company-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  cursor: pointer;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.company-row:hover {
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.company-logo {
  width: 128px;
  height: 128px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  object-fit: cover;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 800;
  color: var(--text-light);
}

.company-main {
  flex: 1;
  min-width: 0;
}

.company-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.score-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.score-line .score-num {
  font-weight: 700;
}

.score-line .score-count {
  color: var(--text-light);
  font-size: 13px;
}

.company-meta {
  color: var(--text-light);
  font-size: 13px;
}

.review-snippet {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 6px 0 4px;
  padding: 8px 10px;
  background: #f7faf8;
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-snippet-author,
.review-snippet-label {
  font-weight: 700;
  color: var(--text);
}

.company-list.company-grid .nl-card-quote {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-line-clamp: 1;
  padding-top: 6px;
  color: var(--text-mid);
}

.company-list.company-grid .nl-card-quote .review-snippet-author {
  font-weight: 700;
  color: var(--text);
}

.score-count.no-reviews {
  color: var(--text-light);
  font-size: 13px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tag {
  background: #fdecea;
  color: #d83a2b;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.company-price {
  text-align: right;
  flex-shrink: 0;
  color: #d83a2b;
  font-weight: 700;
  font-size: 14px;
}

.empty {
  text-align: center;
  color: var(--text-light);
  padding: 60px 0;
}

.empty-inline {
  padding: 16px 0;
  font-size: 13px;
}

/* ===== Detail page ===== */
.detail-header {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.detail-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.detail-header .company-logo {
  width: 80px;
  height: 80px;
  font-size: 32px;
}

.detail-header h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.detail-score {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.detail-score .big-score {
  font-size: 20px;
  font-weight: 800;
}

.detail-score .tier {
  color: var(--text-mid);
  font-weight: 600;
}

.detail-score .count {
  color: var(--text-light);
  font-size: 14px;
}

.detail-body {
  padding: 28px 0 48px;
}

.info-card,
.summary-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.info-card h3,
.summary-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}

.info-row {
  display: flex;
  gap: 10px;
  color: var(--text-mid);
  font-size: 14px;
  padding: 6px 0;
}

.info-row .k {
  color: var(--text-light);
  min-width: 72px;
  flex-shrink: 0;
}

.info-row-v {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.info-row-v--price {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #c0392b;
}

.summary-card {
  background: #fff;
  border-color: var(--border);
}

.summary-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.summary-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.summary-spec-k {
  font-size: 12px;
  color: var(--text-light);
}

.summary-spec-v {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}

.summary-block {
  margin-bottom: 16px;
}

.summary-block-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.summary-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-price-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-soft);
  border-radius: 8px;
  font-size: 14px;
}

.summary-price-k {
  flex-shrink: 0;
  min-width: 44px;
  font-weight: 700;
  color: var(--text);
}

.summary-price-v {
  color: var(--text-mid);
  line-height: 1.5;
  word-break: break-word;
}

.summary-chip {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  margin: 0 6px 6px 0;
}

.summary-tags .summary-chip {
  background: #eef9f0;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.summary-services .summary-chip {
  background: #f0f4ff;
  color: #3d5a9e;
  border: 1px solid #d6e0f5;
}

.summary-taboos .summary-chip {
  background: #fff5f5;
  color: #a94442;
  border: 1px solid #f5d0d0;
}

.summary-tags,
.summary-services,
.summary-taboos {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.summary-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef9f0;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.summary-desc {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.75;
}

.summary-desc p {
  margin: 0 0 10px;
}

.summary-desc p:last-child {
  margin-bottom: 0;
}

.summary-memos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.summary-memo {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: zoom-in;
  background: #111;
}

.summary-stats {
  margin-top: 14px;
  padding: 10px 12px;
  background: #f7faf8;
  border-radius: 8px;
  font-size: 13px;
  color: #555;
  border-left: 3px solid var(--green);
}

.summary-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 0;
  font-size: 14px;
  color: var(--text-mid);
}

.summary-contact span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 600;
  color: var(--text);
}

.summary-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  width: 100%;
  font-size: 14px;
}

.summary-contact-k {
  color: var(--text-mid);
  font-weight: 500;
  white-space: nowrap;
}

.summary-contact-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.summary-contact-link:hover {
  text-decoration: underline;
}

.lock-zone--contact {
  margin-top: 16px;
  border-radius: 12px;
  overflow: visible;
}

.lock-zone--contact.unlocked .summary-contact {
  margin-top: 0;
}

.lock-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #f7faf8 0%, #eef9f3 100%);
  border: 1px solid #c8e6d0;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 182, 122, 0.06);
}

.lock-contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 182, 122, 0.25);
}

.lock-contact-body {
  flex: 1;
  min-width: 0;
}

.lock-contact-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.lock-contact-desc {
  margin: 0;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.45;
}

.lock-contact-desc b {
  color: var(--green-dark);
  font-weight: 800;
}

.lock-contact-balance {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--text-light);
}

.lock-contact-balance b {
  color: var(--green-dark);
}

.lock-contact-balance a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
}

.lock-contact-balance a:hover {
  text-decoration: underline;
}

.unlock-btn--contact {
  flex-shrink: 0;
  padding: 11px 20px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 182, 122, 0.28);
}

.contact-cta {
  margin-top: 16px;
}

.contact-cta-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 182, 122, 0.28);
  transition: background 0.2s, transform 0.15s;
}

.contact-cta-btn:hover {
  background: var(--green-dark);
}

.contact-cta-btn:active {
  transform: scale(0.98);
}

.unlock-btn--contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 182, 122, 0.32);
}

.unlock-btn--contact:active {
  transform: translateY(0);
}

/* ===== Points & unlock (legacy overlay) ===== */
.points-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.points-badge:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(0, 182, 122, 0.12);
}

.points-badge b {
  color: var(--green-dark);
  font-weight: 800;
}

.lock-zone {
  position: relative;
  margin-top: 14px;
  border-radius: var(--radius);
  overflow: hidden;
}

.lock-zone:first-child {
  margin-top: 0;
}

.lock-inner-card {
  margin-bottom: 0;
}

.lock-content {
  transition: filter 0.25s;
}

.lock-zone.locked .lock-content {
  filter: blur(10px) brightness(0.85);
  user-select: none;
  pointer-events: none;
}

.lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.lock-mosaic {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: #b8c4d0;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.15) 75%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.15) 75%);
  background-size: 16px 16px;
  background-position: 0 0, 8px 8px;
  opacity: 0.92;
}

.lock-panel {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 28px;
  box-shadow: var(--shadow);
  max-width: 320px;
  margin: 16px;
}

.lock-icon {
  font-size: 28px;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.lock-title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px;
}

.lock-desc {
  font-size: 13px;
  color: var(--text-light);
  margin: 0 0 14px;
  line-height: 1.5;
}

.unlock-btn {
  border: none;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s;
}

.unlock-btn:hover {
  background: var(--green-dark);
}

.lock-points-hint {
  font-size: 12px;
  color: var(--text-light);
  margin: 10px 0 0;
}

.lock-points-hint b {
  color: var(--green-dark);
}

.lock-msg {
  font-size: 12px;
  margin: 8px 0 0;
}

.lock-msg.ok {
  color: var(--green-dark);
}

.lock-msg.err {
  color: #d83a2b;
}

.summary-card .lock-zone.locked {
  min-height: 100px;
}

.lock-zone--compact .lock-overlay {
  min-height: 100px;
}

.lock-zone--compact .lock-panel {
  padding: 16px 20px;
}

.lock-zone--compact .lock-icon {
  font-size: 22px;
  margin-bottom: 4px;
}

.summary-card .summary-text {
  color: var(--text-mid);
  line-height: 1.75;
  white-space: pre-wrap;
}

.source-line {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.gallery img,
.gallery .media-shield img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-soft);
  transition: transform 0.15s, box-shadow 0.15s;
}

.gallery .media-shield {
  width: 100%;
}

.gallery .media-shield--zoom {
  cursor: zoom-in;
}

.gallery .media-shield--zoom:hover img {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.gallery-video-wrap {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: manipulation;
  transition: transform 0.15s, box-shadow 0.15s;
}

.gallery-video-wrap:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.gallery-video-wrap .gallery-video {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.gallery-video-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.gallery-video-play::after {
  content: "";
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23191919'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 54% center;
  background-size: 22px 22px;
}

@media (min-width: 768px) {
  .gallery-video-wrap .gallery-video {
    height: 160px;
  }
}

.gallery-video {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  background: #111;
}

@media (min-width: 768px) {
  .gallery-video {
    height: 160px;
  }
}

.review-imgs img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.review-imgs .media-shield--zoom {
  cursor: zoom-in;
  width: 88px;
  height: 88px;
}

.review-imgs .media-shield--zoom:hover img {
  transform: scale(1.04);
  box-shadow: var(--shadow);
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.lightbox-video {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  width: min(96vw, 1100px);
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  background: #000;
  -webkit-user-select: none;
  user-select: none;
}

/* ===== 图片防复制 / 防保存 ===== */
.media-shield {
  position: relative;
  display: block;
  line-height: 0;
  -webkit-user-select: none;
  user-select: none;
}

.media-shield-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  -webkit-touch-callout: none;
}

.media-shield--zoom {
  cursor: zoom-in;
  touch-action: manipulation;
}

.media-shield--zoom .media-shield-cover {
  cursor: zoom-in;
  pointer-events: auto;
}

.media-shield img {
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

.logo-shield {
  flex-shrink: 0;
  width: 128px;
  height: 128px;
}

.logo-shield .company-logo {
  width: 100%;
  height: 100%;
}

.logo-shield--sm {
  width: 40px;
  height: 40px;
}

.lightbox-shield {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(96vw, 1100px);
  max-height: 88vh;
}

.lightbox-shield .lightbox-img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.lightbox-close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 32px;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-count {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.45);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ===== TG comments embed ===== */
.tg-comments {
  margin-top: 24px;
}

.tg-comments-tip {
  font-size: 13px;
  color: var(--text-light);
  margin: -4px 0 14px;
}

.comment-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
  background: #eef2f6;
  color: #555;
}

.comment-badge.good {
  background: #e8f5e9;
  color: #2e7d32;
}

.comment-badge.bad {
  background: #ffebee;
  color: #c62828;
}

.channel-stat {
  border-color: #c8e6c9;
  background: #fafffa;
}

.has-reviews {
  color: var(--green);
  font-weight: 600;
}

.channel-comment .review-content,
.channel-stat .review-content {
  white-space: pre-wrap;
  line-height: 1.65;
}

#tgDiscussion {
  min-height: 120px;
  overflow: hidden;
  border-radius: 10px;
}

/* ===== Reviews ===== */
.reviews {
  margin-top: 8px;
}

.reviews-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.reviews-header h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.company-logo.sm {
  width: 40px;
  height: 40px;
  font-size: 16px;
  border-radius: 10px;
}

.reviews-count {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
}

.exposure-review {
  margin-top: 20px;
  border-style: dashed;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 14px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.avatar-img {
  object-fit: cover;
  padding: 0;
  background: #eee;
  border: 1px solid var(--border);
}

.review-author {
  font-weight: 700;
  font-size: 14px;
}

.review-sub {
  color: var(--text-light);
  font-size: 12px;
}

.review-stars {
  margin-bottom: 8px;
}

.review-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.review-content {
  color: var(--text-mid);
  font-size: 14px;
  white-space: pre-wrap;
}

.review-imgs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

/* 频道车评配图：三列网格，尺寸接近现场图集 */
.channel-comment .review-imgs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 14px;
  max-width: 480px;
}

.channel-comment .review-imgs:has(.media-shield:only-child),
.channel-comment .review-imgs:has(img:only-child) {
  grid-template-columns: 1fr;
  max-width: 280px;
}

.channel-comment .review-imgs img,
.channel-comment .review-imgs .media-shield,
.channel-comment .review-imgs .media-shield img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-radius: 8px;
}

.channel-comment .review-imgs .media-shield--zoom {
  width: 100%;
  height: 128px;
  cursor: zoom-in;
}

@media (min-width: 768px) {
  .channel-comment .review-imgs img,
  .channel-comment .review-imgs .media-shield,
  .channel-comment .review-imgs .media-shield img {
    height: 168px;
  }

  .channel-comment .review-imgs .media-shield--zoom {
    height: 168px;
  }
}

.back-link {
  display: inline-block;
  margin: 18px 0 0;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 14px;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-light);
  font-size: 13px;
  padding: 28px 20px 44px;
  line-height: 1.9;
  margin-top: 20px;
}

/* ===== Popup modal ===== */
.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(25, 25, 25, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-mask.show {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 16px;
  max-width: 380px;
  width: 100%;
  padding: 28px 26px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: none;
  font-size: 22px;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: #eaf7ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.modal h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-btn {
  display: block;
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.modal-btn:hover {
  background: var(--green-dark);
}

.modal-btn-alt {
  margin-top: 10px;
  background: #fff;
  color: var(--green);
  border: 1.5px solid var(--green);
}

.modal-btn-alt:hover {
  background: var(--bg-soft);
}

.modal-skip {
  display: inline-block;
  margin-top: 14px;
  color: var(--text-light);
  font-size: 13px;
  cursor: pointer;
}

/* ===== Nav link ===== */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  transition: border-color 0.15s;
}

.nav-link svg {
  width: 14px;
  height: 14px;
}

.nav-link:hover {
  border-color: var(--text);
}

.nav-link.green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.nav-link.green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

/* ===== Tutorial ===== */
.tutorial {
  padding: 36px 20px 48px;
}

.tut-title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.tut-sub {
  color: var(--text-light);
  margin-bottom: 24px;
}

.tut-note {
  background: #fff8f5;
  border: 1px solid #ffe0d3;
  border-radius: 12px;
  padding: 18px 20px;
  color: #7a4a37;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.tut-tabs {
  margin: 30px 0 16px;
}

.tut-tab {
  display: inline-block;
  background: var(--text);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 999px;
}

a.tut-tab {
  background: var(--green);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

a.tut-tab:hover {
  background: var(--green-dark);
}

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}

.step-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.step-body {
  flex: 1;
  min-width: 0;
}

.step-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-body p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.7;
}

.step-img {
  margin-top: 12px;
  border: 1px dashed var(--border-strong);
  border-radius: 10px;
  background: var(--bg-soft);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
  text-align: center;
  padding: 16px;
}

.step-img::before {
  content: attr(data-label);
}

.step-img img {
  border-radius: 8px;
}

.step-shot {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 12px auto 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-soft);
}

.tut-h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 34px 0 16px;
  letter-spacing: -0.3px;
}

.tut-faq {
  margin-top: 20px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== Access gate ===== */
.gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  padding: 20px;
}

.gate-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.gate-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.gate-desc {
  color: var(--text-mid);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.gate-key {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  background: var(--bg-soft);
  border: 1px dashed var(--border-strong);
  border-radius: 10px;
  padding: 16px;
  color: var(--green-dark);
  word-break: break-all;
}

.gate-copy {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 13px;
  cursor: pointer;
  margin: 8px 0 20px;
  text-decoration: underline;
}

.gate-enter {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.gate-enter:hover {
  background: var(--green-dark);
}

.gate-existing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-light);
  flex-wrap: wrap;
  justify-content: center;
}

.gate-existing input {
  flex: 1;
  min-width: 140px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  outline: none;
  text-transform: uppercase;
}

.gate-existing button {
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
}

.lock-points-hint a {
  color: var(--green-dark);
  font-weight: 600;
}

.nav-link.profile-link.active {
  color: var(--green-dark);
  font-weight: 700;
}

/* ===== Profile ===== */
.profile-page {
  padding: 24px 0 48px;
}

.profile-hero {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 20px 0 24px;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-hero h1 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 4px;
}

.profile-key {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.profile-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}

.profile-stat-v {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 6px;
}

.profile-stat-k {
  font-size: 13px;
  color: var(--text-light);
}

.profile-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.profile-card h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
}

.profile-tip {
  font-size: 13px;
  color: var(--text-light);
  margin: 0 0 16px;
}

.profile-records {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-record {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.profile-record:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.profile-record-main {
  min-width: 0;
}

.profile-record-name {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}

.profile-record-meta {
  font-size: 12px;
  color: var(--text-light);
}

.profile-record-cost {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: #d83a2b;
}

.profile-empty {
  padding: 32px 16px;
}

.gate-hint {
  display: none;
  color: #d83a2b;
  font-size: 13px;
  margin-top: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .hero h1 {
    font-size: 30px;
  }
  .header .search-box {
    display: none;
  }
  .company-price {
    display: none;
  }
  .company-logo {
    width: 112px;
    height: 112px;
    font-size: 36px;
  }
  .detail-header-inner {
    flex-direction: column;
    text-align: center;
  }
  .profile-stats {
    grid-template-columns: 1fr;
  }
  .summary-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lock-contact-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .lock-contact-icon {
    margin: 0 auto;
  }
  .unlock-btn--contact {
    width: 100%;
  }
  .nav-link.profile-link {
    display: none;
  }
  .detail-score {
    justify-content: center;
  }
  .live-online {
    bottom: 12px;
    right: 12px;
    font-size: 12px;
    padding: 7px 12px;
  }
  .live-toasts {
    left: 10px;
    right: 10px;
    bottom: 56px;
    max-width: none;
  }
}

/* ===== 在线人数 + 活动弹窗 ===== */
.hero-online {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 15px;
  color: var(--text-mid);
  box-shadow: var(--shadow);
}

.hero-online b {
  color: var(--green);
  font-weight: 800;
  margin: 0 2px;
}

.live-online {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-mid);
  box-shadow: var(--shadow);
}

.live-online b {
  color: var(--green);
  font-weight: 800;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 182, 122, 0.5);
  animation: live-breathe 1.8s ease-out infinite;
}

@keyframes live-breathe {
  0% { box-shadow: 0 0 0 0 rgba(0, 182, 122, 0.5); transform: scale(0.9); }
  70% { box-shadow: 0 0 0 10px rgba(0, 182, 122, 0); transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(0, 182, 122, 0); transform: scale(0.9); }
}

.live-toasts {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  pointer-events: none;
}

.live-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.live-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.live-toast-ic {
  font-size: 18px;
  flex-shrink: 0;
}

.live-toast-msg {
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.35;
}

.live-toast-time {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}
