﻿/* ── About ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: center; margin-top: 24px;
}
.about-text p { margin-bottom: 10px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.stat {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 10px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s, border-color 0.25s ease, box-shadow 0.5s ease;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transform-style: preserve-3d;
  will-change: transform;
}
.stat:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 32px -12px rgba(3, 43, 171, 0.25),
              0 4px 16px -6px rgba(0, 0, 0, 0.4);
}
.stat-icon {
  width: 40px; height: 40px;
  margin-bottom: 6px;
  display: flex; align-items: center; justify-content: center;
}
.stat-icon img {
  width: 100%; height: 100%; object-fit: contain;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; letter-spacing: -0.03em;
  color: var(--paper); line-height: 1;
}
.stat-num .stat-suffix { font-size: 26px; font-weight: 500; }
.stat-label { font-size: 11px; color: rgba(255, 255, 255, 0.65); margin-top: 4px; font-weight: 500; }

.about-visual {
  position: relative;
  min-height: 300px;
  overflow: visible;
}
.about-visual img {
  width: 100%; height: 100%; object-fit: cover;
}

/* 关于我们 — 双层视频 */
.about-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: visible;
  border-radius: var(--radius-lg);
}
.about-video-bg {
  position: absolute;
  top: -4%; left: 50%;
  transform: translateX(-50%) scale(0.9);
  transform-origin: center top;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: 50% 0%;
  z-index: 1;
}
.about-video-person {
  position: absolute;
  left: 52%;
  bottom: -8%;
  transform: translateX(-50%) scale(1.1);
  transform-origin: center bottom;
  width: 90%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}
/* ── Services ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--element-gap);
  margin-top: 32px;
  margin-bottom: var(--element-gap);
}
.services-grid-4 {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--element-gap);
  margin-top: 20px;
  margin-bottom: var(--element-gap);
}
.service-card {
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
}
/* glow-top-bar 光条需要 overflow: visible，且光条需高于子元素 border-radius 裁剪 */
.service-card.glow-top-bar {
  overflow: visible !important;
  /* 让光条不被子级 cover 的 border-radius 遮挡 */
  isolation: isolate;
}
.service-card.glow-top-bar::before {
  z-index: 10;
}
/* Team */
.team-group {
  margin-top: 32px;
  perspective: 1500px;
}
.team-group-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--element-gap);
  perspective: 1500px;
}
.team-group-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--element-gap);
  perspective: 1500px;
}

.team-member-lg {
  display: flex; gap: 24px; align-items: center;
  border-radius: var(--radius-lg); padding: 24px;
}
/* 顶边光带 / 卡片浮升 / 玻璃面板 — now via .glow-top-bar .card-lift .glass-panel */
.team-photo-lg {
  width: 120px; height: 120px; border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--fog); font-size: 13px;
  overflow: hidden;
}
.team-photo-lg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.team-photo-lg.team-photo-no-glass {
  width: 150px; height: 150px;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
}
.team-member-sm {
  border-radius: var(--radius-lg); padding: 20px;
  text-align: center;
}
/* glasstop-bar / card-lift / glass-panel */
.team-photo-sm {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fog); font-size: 11px; overflow: hidden;
}
.team-photo-sm img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block;
}
.team-info h3 {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 500; letter-spacing: -0.02em; margin-bottom: 2px;
}
.team-info .team-role { font-size: 12px; color: var(--electric); margin-bottom: 10px; }
.team-info .team-bio { font-size: 12px; color: rgba(255, 255, 255, 0.60); line-height: 1.6; max-width: 480px; }

/* Small member (crew level) */
.team-member-sm h3 {
  font-family: var(--font-display); font-size: 15px;
  font-weight: 500; margin-bottom: 2px;
}
.team-member-sm .team-role {
  font-size: 11px; color: var(--electric);
  margin-bottom: 8px;
}
.team-member-sm .team-works {
  font-size: 11px; color: rgba(255, 255, 255, 0.55); line-height: 1.6;
  text-align: left;
}
.team-member-sm .team-works strong {
  color: rgba(255, 255, 255, 0.70); font-weight: 600;
}

/* ── Facilities ── */
.facilities-section {
  margin-top: 40px;
}
.facilities-section h3 {
  font-family: 'RuiZiZongYi', 'Inter Tight', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 20px; font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 6px;
}
.facilities-section > p {
  font-size: 12px; color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

/* ── Contact ── */
.contact-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg); padding: 36px;
  margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
  transition: background 0.3s, border-color 0.25s;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; letter-spacing: -0.03em;
  margin-bottom: 12px;
}
/* ── GEO优化服务 ── */
.product-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  transition: background 0.3s, border-color 0.25s;
}
.product-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}
.product-intro h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.product-intro p {
  font-size: 12px; color: rgba(255, 255, 255, 0.55); line-height: 1.7;
  margin-bottom: 20px;
}

.product-login {
  display: flex; flex-direction: column; gap: 12px;
}
.login-tabs {
  display: flex; gap: 0; margin-bottom: 4px;
}
.login-tab {
  flex: 1; text-align: center; padding: 8px 0;
  font-size: 13px; font-weight: 500;
  color: var(--ash); cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.login-tab.active {
  color: var(--paper);
  border-bottom-color: var(--brand-blue);
}
.login-tab:hover { color: var(--bone); }
.login-panel { display: none; flex-direction: column; gap: 10px; }
.login-panel.active { display: flex; }

.login-panel input {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-sm); padding: 10px 14px;
  color: var(--paper); font-family: var(--font-body);
  font-size: 12px; outline: none;
  transition: background 0.3s, border-color 0.2s;
}
.login-panel input:focus {
  border-color: var(--brand-blue);
  background: rgba(255, 255, 255, 0.07);
}
.login-btn {
  background: var(--brand-blue); color: var(--paper);
  border: none; border-radius: var(--radius-pill);
  padding: 10px 24px; font-size: 12px; font-weight: 500;
  cursor: pointer; transition: opacity 0.2s;
  align-self: flex-start;
}
.login-btn:hover { opacity: 0.85; }
.captcha-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm); padding: 10px 14px;
  color: var(--bone); font-family: var(--font-body);
  font-size: 12px; cursor: pointer; white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.captcha-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.30);
}
.login-links {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
}
.login-links a {
  color: var(--ash); text-decoration: none; transition: color 0.2s;
}
.login-links a:hover { color: var(--bone); }

/* 微信扫码按钮 */
.wechat-qr-wrap {
  position: relative; display: inline-flex;
}
.wechat-qr-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 8px 16px; font-size: 12px; font-weight: 500;
  color: var(--bone); cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.wechat-qr-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.30);
}
.wechat-qr-popup {
  position: absolute; bottom: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 20, 20, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 16px;
  width: 180px;
  text-align: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%) translateY(6px);
}
.wechat-qr-popup::after {
  content: '';
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgba(20, 20, 20, 0.96);
}
.wechat-qr-wrap:hover .wechat-qr-popup {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.wechat-qr-popup .qr-placeholder {
  width: 148px; height: 148px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--fog); font-size: 12px;
  margin: 0 auto;
}
.wechat-qr-popup .qr-label {
  font-size: 11px; color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
}

@media (max-width: 960px) {
  .product-card { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .wechat-qr-popup { left: auto; right: 0; transform: translateX(0) translateY(6px); }
  .wechat-qr-popup::after { left: auto; right: 24px; }
  .wechat-qr-wrap:hover .wechat-qr-popup { transform: translateX(0) translateY(0); }
}

/* ── 新闻稿发布 ── */
.pr-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 32px;
  transition: background 0.3s, border-color 0.25s;
}
.pr-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}
.pr-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.pr-header h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; letter-spacing: -0.03em;
}
.pr-stats {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.pr-stat {
  text-align: center;
}
.pr-stat-num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--electric); line-height: 1;
}
.pr-stat-label {
  font-size: 11px; color: rgba(255, 255, 255, 0.50); margin-top: 4px;
}
.pr-features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--element-gap); margin-bottom: 24px;
}
.pr-feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px; text-align: center;
  transition: background 0.3s, border-color 0.25s, transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease;
}
.pr-feature-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 196, 44, 0.10);
}
.pr-feature-icon {
  font-size: 28px; margin-bottom: 8px;
}
.pr-feature-item h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500; margin-bottom: 4px;
}
.pr-feature-item p {
  font-size: 11px; color: rgba(255, 255, 255, 0.50); line-height: 1.5;
}
.pr-media-types {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
}
.pr-media-tag {
  font-size: 11px; font-weight: 500;
  color: var(--bone);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  transition: background 0.2s, border-color 0.2s;
}
.pr-media-tag:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
}
.pr-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.pr-bottom p {
  font-size: 12px; color: rgba(255, 255, 255, 0.45); max-width: 500px;
}
.pr-submit-btn {
  background: var(--brand-blue); color: var(--paper);
  padding: 10px 24px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 500; text-decoration: none;
  border: none; cursor: pointer;
}
.pr-submit-btn:hover .btn-text {
  transform: translateX(-6px);
}

@media (max-width: 960px) {
  .pr-features { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pr-stats { gap: 16px; }
  .pr-stat-num { font-size: 22px; }
}

/* ── 福利资源 ── */
.resource-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 32px;
  transition: background 0.3s, border-color 0.25s;
}
.resource-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}
.resource-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.resource-header h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; letter-spacing: -0.03em;
}
.resource-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.resource-tab {
  font-size: 12px; font-weight: 500;
  color: var(--ash); cursor: pointer;
  padding: 6px 14px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s;
}
.resource-tab.active, .resource-tab:hover {
  color: var(--paper);
  border-color: var(--brand-blue);
  background: rgba(3, 43, 171, 0.15);
}
.resource-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--element-gap);
}
.resource-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px; position: relative; overflow: hidden;
  transition: background 0.3s, border-color 0.25s, transform 0.3s ease;
  display: flex; flex-direction: column;
}
.resource-item .res-body {
  flex: 1;
}
.resource-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}.resource-item h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500; margin-bottom: 4px;
}
.resource-item p {
  font-size: 11px; color: rgba(255, 255, 255, 0.50); line-height: 1.5; margin-bottom: 12px;
}
.resource-item .res-tags {
  display: flex; flex-wrap: wrap; gap: 4px; flex: 1;
}
.resource-item .res-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.resource-item .res-tag {
  display: inline-block;
  font-size: 10px; font-weight: 500;
  color: var(--electric);
  background: rgba(255, 196, 44, 0.10);
  border: 1px solid rgba(255, 196, 44, 0.20);
  border-radius: var(--radius-pill);
  padding: 3px 10px; margin-right: 4px; margin-bottom: 4px;
}
.resource-item .res-link {
  font-size: 12px; font-weight: 500; text-decoration: none;
  flex-shrink: 0;
  background: var(--brand-blue); color: var(--paper);
  padding: 8px 18px; border-radius: var(--radius-pill);
  border: none; cursor: pointer;
}
.resource-item .res-link .btn-arrow {
  border-left-width: 5px;
  border-top-width: 4px;
  border-bottom-width: 4px;
  right: 10px;
}
.resource-item .res-link:hover {
  padding-right: 30px;
  transform: scale(1.04);
}
.resource-item .res-link:hover .btn-text {
  transform: translateX(-6px);
}
.resource-item .res-link:hover .btn-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── AI API ── */
.api-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 32px;
  transition: background 0.3s, border-color 0.25s;
}
.api-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}
.api-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.api-header h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; letter-spacing: -0.03em;
}
.api-status {
  font-size: 11px; font-weight: 500;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
}
.api-intro {
  font-size: 12px; color: rgba(255, 255, 255, 0.55); line-height: 1.7;
  margin-bottom: 28px; max-width: 640px;
}
.api-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--element-gap); margin-bottom: 24px;
}
.api-endpoint {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  transition: background 0.3s, border-color 0.25s, transform 0.3s ease;
}
.api-endpoint:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}.api-endpoint h4 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500; margin-bottom: 4px;
}
.api-endpoint p {
  font-size: 11px; color: rgba(255, 255, 255, 0.50); line-height: 1.5;
}
.api-code-block {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  overflow-x: auto; position: relative;
}
.api-code-block pre {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 11px; color: var(--bone);
  line-height: 1.7; margin: 0; white-space: pre;
}
.api-code-block .api-copy-btn {
  position: absolute; top: 10px; right: 12px;
  font-size: 10px; font-weight: 500;
  color: var(--ash); cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 3px 10px;
  transition: all 0.2s;
}
.api-code-block .api-copy-btn:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.api-pricing {
  display: flex; gap: var(--element-gap); margin-top: 24px;
}
.api-plan {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 24px 20px; text-align: center;
  transition: background 0.3s, border-color 0.25s, transform 0.3s ease;
}
.api-plan:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 196, 44, 0.25);
  transform: translateY(-4px);
}
.api-plan.featured {
  border-color: rgba(3, 43, 171, 0.35);
  background: rgba(3, 43, 171, 0.10);
  position: relative;
}
.api-plan.featured::before {
  content: '推荐';
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 600; color: var(--paper);
  background: var(--brand-blue); border-radius: var(--radius-pill);
  padding: 2px 12px;
}
.api-plan h4 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500; margin-bottom: 8px;
}
.api-plan .api-price {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 500; color: var(--electric); line-height: 1;
}
.api-plan .api-price small {
  font-size: 14px; color: rgba(255, 255, 255, 0.40); font-weight: 400;
}
.api-plan ul {
  list-style: none; padding: 0; margin: 16px 0;
}
.api-plan ul li {
  font-size: 11px; color: rgba(255, 255, 255, 0.55); line-height: 1.8;
  padding-left: 16px; position: relative;
}
.api-plan ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--electric); font-size: 10px; font-weight: 600;
}
.api-plan .api-plan-btn {
  display: inline-block;
  font-size: 12px; font-weight: 500;
  color: var(--paper);
  background: var(--brand-blue);
  border-radius: var(--radius-pill);
  padding: 8px 20px; text-decoration: none;
  transition: opacity 0.2s;
}
.api-plan .api-plan-btn:hover { opacity: 0.85; }

@media (max-width: 960px) {
  .resource-grid, .api-grid { grid-template-columns: 1fr; }
  .api-pricing { flex-direction: column; }
}
@media (max-width: 600px) {
  .resource-tabs { gap: 4px; }
  .resource-tab { font-size: 11px; padding: 5px 10px; }
}

/* ── Lightbox ── */
	.modal-overlay.open { opacity: 1; pointer-events: auto; }
	.modal-panel {
	  background: rgba(11, 17, 53, 0.96);
	  backdrop-filter: blur(24px);
	  -webkit-backdrop-filter: blur(24px);
	  border: 1px solid rgba(255, 255, 255, 0.15);
	  border-radius: var(--radius-lg);
	  max-width: 800px; width: 760px; max-height: 85vh;
	  overflow-y: auto;
	  transform: translateY(30px) scale(0.96);
	  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	  position: relative;
	  padding: 0;
	}
	.modal-overlay.open .modal-panel {
	  transform: translateY(0) scale(1);
	}
	.modal-panel::-webkit-scrollbar { width: 4px; }
	.modal-panel::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
	.modal-header-img {
	  width: 100%; aspect-ratio: 16/9;
	  background-size: cover; background-position: center;
	  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	  position: relative;
	}
	.modal-header-img::after {
	  content: '';
	  position: absolute; inset: 0;
	  background: linear-gradient(180deg, transparent 40%, rgba(11, 17, 53, 0.96) 100%);
	  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	}
	.modal-close {
	  position: absolute; top: 16px; right: 16px; z-index: 10;
	  width: 40px; height: 40px; border-radius: 50%;
	  background: rgba(0, 0, 0, 0.55);
	  backdrop-filter: blur(8px);
	  -webkit-backdrop-filter: blur(8px);
	  border: 1px solid rgba(255, 255, 255, 0.20);
	  color: var(--paper); font-size: 18px; cursor: pointer;
	  display: flex; align-items: center; justify-content: center;
	  transition: background 0.2s, border-color 0.2s;
	}
	.modal-close:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.35); }
	.modal-body { padding: 32px 36px 36px; }
	.modal-body h2 {
	  font-family: 'RuiZiZongYi', 'Inter Tight', 'PingFang SC', 'Microsoft YaHei', sans-serif;
	  font-size: 28px; font-weight: 500; letter-spacing: 0.02em; margin-bottom: 6px;
	}
	.modal-body .modal-subtitle { font-size: 13px; color: var(--electric); margin-bottom: 20px; font-weight: 500; }
	.modal-body p { font-size: 13px; color: rgba(255, 255, 255, 0.65); line-height: 1.8; margin-bottom: 16px; }
	.modal-stats-row { display: flex; gap: 32px; margin: 24px 0; flex-wrap: wrap; }
	.modal-stat { text-align: center; }
	.modal-stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 500; color: var(--electric); line-height: 1; }
	.modal-stat-label { font-size: 11px; color: rgba(255,255,255,0.50); margin-top: 4px; }
	.modal-client-grid { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 16px; }
.modal-client-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: -0.01em;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  line-height: 1.5;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.modal-client-tag img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.modal-client-tag:hover {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}
.modal-client-tag:hover img {
  transform: scale(1.25);
}
/* ── FAQ ── */
.faq-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 8px 36px;
  margin-top: 32px;
  transition: background 0.3s, border-color 0.25s;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--paper);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--electric); }
.faq-question::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 2px solid var(--silver);
  border-bottom: 2px solid var(--silver);
  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question::after {
  transform: rotate(-135deg);
  border-color: var(--electric);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}
.faq-answer p {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.8;
  padding-bottom: 20px;
  margin: 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

	@media (max-width: 600px) {
	  .modal-body { padding: 24px 20px 28px; }
	  .modal-body h2 { font-size: 22px; }
	  .modal-stat-num { font-size: 26px; }
	  .modal-panel { width: calc(100vw - 32px); }
	  .lightbox-content { overflow: visible; }
	}

/* ── 即将上线状态 ── */
.coming-soon-badge {
  display: inline-block;
  font-family: 'Inter Tight', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--electric);
  background: rgba(3, 43, 171, 0.12);
  border: 1px solid rgba(3, 43, 171, 0.25);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  margin-left: 12px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}
.section-coming-soon button:disabled,
.section-coming-soon .coming-soon-link {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
.section-coming-soon input:disabled,
.section-coming-soon textarea:disabled {
  opacity: 0.35;
  pointer-events: none;
}