/* ============================================================
   银脉圈官网 · Liquid Glass 设计系统 v2
   气质目标：高端金融科技感（Stripe/Mercury 一脉），不要网贷广告感。
   - 纯白底 + 左上双层蓝光斑（#60B1FF / #319AFF，blur 150px）
   - 玻璃组件：backdrop-blur + 半透明白 + 外描边 + 内高光
   - 主 CTA：rgba(0,132,255,.8)，hover scale(1.02)
   - 字体：系统栈（国内访问友好，不依赖 Google Fonts CDN）
   - 无 JS / 无悬浮咨询窗 / 无倒计时 / 无轮播
   ============================================================ */

:root {
  --ink: #0f172a;
  --body: #475569;
  --muted: #64748b;
  --faint: #8fa3b8;
  --blue: #0084ff;
  --blue-deep: #0066c8;
  --glow-1: #60b1ff;
  --glow-2: #319aff;
  --green: #10b981;
  --line: rgba(15, 23, 42, 0.08);
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.72);
}

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

html { background: #ffffff; -webkit-text-size-adjust: 100%; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: rgba(0, 132, 255, 0.15); }

img { max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- 背景光斑（左上，双层，固定不随滚动） ---------- */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}
body::before {
  width: 680px; height: 680px;
  background: var(--glow-1);
  opacity: 0.5;
  top: -240px; left: -160px;
}
body::after {
  width: 560px; height: 560px;
  background: var(--glow-2);
  opacity: 0.35;
  top: -120px; left: 120px;
}
.navbar, main, .footer { position: relative; z-index: 1; }

/* ============================================================
   吸顶玻璃胶囊导航
   ============================================================ */
.navbar {
  position: sticky;
  top: 20px;
  z-index: 60;
  width: fit-content;
  max-width: calc(100% - 32px);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  padding: 8px 10px 8px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.25), 0 12px 32px rgba(0, 60, 140, 0.10);
}
.brand {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--ink);
  margin-right: 12px;
  white-space: nowrap;
}
.brand:hover { text-decoration: none; }
.brand::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--blue);
  vertical-align: 2px;
}
.nav-links { display: flex; gap: 2px; }
.nav-links a {
  padding: 8px 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.72);
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(255, 255, 255, 0.55); color: var(--ink); text-decoration: none; }
.nav-links a.active {
  background: rgba(255, 255, 255, 0.75);
  color: var(--blue);
  font-weight: 600;
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(0, 60, 140, 0.08);
}
.nav-cta { display: flex; align-items: center; gap: 12px; margin-left: 8px; }
.nav-hours { font-size: 13px; color: var(--muted); white-space: nowrap; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 12px;
  background: rgba(0, 132, 255, 0.8);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 3px 3px 0 rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: transform .3s ease, background .3s ease;
}
.nav-phone:hover { background: rgba(0, 132, 255, 0.92); transform: scale(1.02); text-decoration: none; }

/* ============================================================
   首页 Hero
   ============================================================ */
.hero { padding: 60px 0 36px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 640px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: inset 0 2px 2px 0 rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  letter-spacing: -0.2px;
}
.badge .tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex: none;
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.12;
  letter-spacing: -2px;
  font-weight: 800;
  color: var(--ink);
  margin: 26px 0 20px;
}
.hero .lead,
.page-head .lead {
  font-size: 17px;
  letter-spacing: -0.4px;
  line-height: 1.75;
  color: var(--body);
  max-width: 560px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; align-items: center; }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 11px 12px 11px 26px;
  border-radius: 16px;
  background: rgba(0, 132, 255, 0.8);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.35);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.2px;
  transition: transform .3s ease, background .3s ease;
}
.cta:hover { transform: scale(1.02); background: rgba(0, 132, 255, 0.92); text-decoration: none; }
.cta-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  box-shadow: 0 4px 12px rgba(0, 60, 140, 0.22);
}
.cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: inset 0 3px 3px 0 rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: background .2s ease, transform .3s ease;
}
.cta-ghost:hover { background: rgba(255, 255, 255, 0.7); transform: scale(1.02); text-decoration: none; }

.hero-note { margin-top: 20px; font-size: 13.5px; color: var(--muted); letter-spacing: 0.2px; }

/* ---------- 玻璃光球（hero 右侧） ---------- */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.orb-wrap {
  position: absolute;
  inset: 0;
  transform: scale(1.25) translateX(-2%);
  transform-origin: center;
}
/* 兜底渐变球：视频未加载/加载失败时保证 hero 不空；同时作为 screen 混合的底色 */
.orb-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #bfe0ff 0%, #58b0ff 42%, #0084ff 78%, #0060c0 100%);
  opacity: 0.95;
}
.orb-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: hue-rotate(-55deg) saturate(250%) brightness(1.2) contrast(1.1);
}

/* ============================================================
   通用区块（首页）
   ============================================================ */
.section { padding: 40px 0; }
.section-title {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin-bottom: 6px;
}
.section-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }

/* ---------- 玻璃卡片（五大服务） ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: 18px; }
.card {
  border-radius: 16px;
  padding: 20px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  box-shadow: inset 0 3px 3px 0 rgba(255, 255, 255, 0.6), 0 8px 24px rgba(0, 60, 140, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 3px 3px 0 rgba(255, 255, 255, 0.6), 0 16px 40px rgba(0, 60, 140, 0.12);
}
.card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; color: var(--ink); margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--body); margin-bottom: 10px; }
.card .more { font-size: 14px; font-weight: 600; }

/* ---------- 信任区 ---------- */
.trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; align-items: start; }
.trust .item {
  border-radius: 16px;
  padding: 20px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  box-shadow: inset 0 3px 3px 0 rgba(255, 255, 255, 0.6), 0 8px 24px rgba(0, 60, 140, 0.05);
}
.trust .item h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.trust .item ul { list-style: none; }
.trust .item li { padding: 4px 0 4px 24px; position: relative; font-size: 14.5px; color: var(--body); }
.trust .item li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
/* 营业执照缩略图（首页信任区 + about 资质区共用，点击看大图） */
.license-thumb {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-top: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 60, 140, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.license-thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.license-thumb-hint {
  display: block;
  padding: 7px 10px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}
.license-thumb:hover {
  box-shadow: 0 8px 22px rgba(0, 60, 140, 0.13);
  transform: translateY(-1px);
}
.license-thumb:hover .license-thumb-hint { color: var(--blue); }

/* about 页资质区：缩略图 + 图注（统一社会信用代码保留为可见文本） */
.license-figure { margin: 16px 0 18px; }
.license-figure .license-thumb { margin-top: 0; }
.license-figure figcaption {
  margin-top: 10px;
  max-width: 460px;
  font-size: 13px;
  color: var(--faint);
  line-height: 1.6;
}

/* ---------- 知识文章卡片 ---------- */
.articles { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.article {
  border-radius: 16px;
  padding: 18px 20px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  box-shadow: inset 0 3px 3px 0 rgba(255, 255, 255, 0.6), 0 8px 24px rgba(0, 60, 140, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.article:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 3px 3px 0 rgba(255, 255, 255, 0.6), 0 16px 40px rgba(0, 60, 140, 0.12);
}
.article h3 { font-size: 16px; font-weight: 700; line-height: 1.55; letter-spacing: -0.2px; margin-bottom: 8px; }
.article h3 a { color: var(--ink); }
.article h3 a:hover { color: var(--blue); text-decoration: none; }

/* ============================================================
   内页（业务页 / 关于 / 知识列表 / 文章）
   ============================================================ */
.page { padding: 44px 0 56px; }
.page-head { margin-bottom: 30px; }
.page-head h1 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.35;
  color: var(--ink);
  margin: 10px 0 12px;
}
.page-head .lead { max-width: 780px; }
.crumbs { font-size: 13px; color: var(--faint); }
.crumbs a { color: var(--muted); }

/* ---------- 正文排版 ---------- */
.prose h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin: 36px 0 14px;
  padding-left: 12px;
  border-left: 3px solid var(--blue);
  line-height: 1.4;
}
.prose h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 26px 0 10px; }
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 24px; }
.prose li { margin-bottom: 6px; }
.prose blockquote {
  border-left: 3px solid var(--blue);
  background: rgba(96, 177, 255, 0.10);
  padding: 12px 18px;
  margin: 0 0 16px;
  color: var(--body);
  font-size: 15px;
  border-radius: 0 12px 12px 0;
}
.prose .table-scroll {
  overflow-x: auto;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.6);
}
.prose table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.prose th, .prose td { border-bottom: 1px solid rgba(15, 23, 42, 0.05); padding: 10px 14px; text-align: left; vertical-align: top; }
.prose tr:last-child td { border-bottom: none; }
.prose th { background: rgba(96, 177, 255, 0.12); font-weight: 600; color: var(--ink); white-space: nowrap; }
.prose td:first-child { white-space: nowrap; font-weight: 500; color: var(--ink); }

/* ---------- FAQ（玻璃折叠） ---------- */
.faq-list { margin-top: 8px; }
.faq-item {
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--glass);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.6);
}
.faq-item summary {
  cursor: pointer;
  padding: 14px 44px 14px 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "＋";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "－"; }
.faq-item .faq-a { padding: 0 18px 15px; color: var(--body); font-size: 15px; }

/* ---------- 联系区块（玻璃面板 + 蓝色强调） ---------- */
.contact-box {
  border-radius: 20px;
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 132, 255, 0.18);
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.5), 0 16px 40px rgba(0, 60, 140, 0.10);
  padding: 24px;
  margin-top: 32px;
}
.contact-box h2 { font-size: 18px; font-weight: 800; letter-spacing: -0.3px; color: var(--ink); margin-bottom: 14px; }
.contact-box p { margin-bottom: 6px; font-size: 15px; }
.contact-box a { font-weight: 600; }
.contact-box .tel { font-size: 23px; font-weight: 800; letter-spacing: 0.3px; }
.contact-box .tel a { color: var(--blue); }

/* 微信二维码（臧老师个人微信 + 银脉圈企业微信） */
.qr-slot {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(15, 23, 42, 0.15);
}
.qrcode-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: none;
}
.qrcode-item img {
  width: 112px;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 60, 140, 0.08);
}
.qr-label {
  font-size: 12px;
  color: var(--body);
  font-weight: 600;
  white-space: nowrap;
}

/* ============================================================
   页脚（玻璃面板）
   ============================================================ */
.footer { margin-top: 36px; padding: 12px 0 40px; }
.footer-card {
  border-radius: 20px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  box-shadow: inset 0 3px 3px 0 rgba(255, 255, 255, 0.6), 0 8px 24px rgba(0, 60, 140, 0.05);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.footer h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.footer p, .footer li { font-size: 14px; color: var(--body); margin-bottom: 5px; }
.footer ul { list-style: none; }
.footer a { color: var(--blue); }
.footer .disclaimer {
  margin-top: 22px;
  font-size: 13px;
  color: var(--faint);
  line-height: 1.9;
}
.footer .icp { margin-top: 10px; font-size: 13px; color: var(--faint); }

/* ============================================================
   响应式（手机优先收窄）
   ============================================================ */
@media (max-width: 1024px) {
  .hero { padding-top: 48px; }
  .hero-grid { gap: 32px; }
}

@media (max-width: 900px) {
  .navbar { width: calc(100% - 32px); max-width: none; }
  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-top: 4px;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-cta { margin-left: auto; }

  .hero-grid { grid-template-columns: 1fr; gap: 12px; }
  .hero { padding-top: 40px; }
  .hero-content { max-width: 100%; }
  .hero-visual { max-width: 420px; margin-top: 20px; }
  .orb-wrap { transform: scale(1.12); }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .navbar { top: 12px; margin-top: 16px; padding-left: 16px; }
  .nav-hours { display: none; }
  .hero-title { letter-spacing: -1.2px; }
  .cta, .cta-ghost { width: 100%; justify-content: center; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .section { padding: 32px 0; }
  .cards { grid-template-columns: 1fr 1fr; }
  .qr-slot { gap: 14px; }
  .qrcode-item img { width: 100px; }
  .page { padding: 32px 0 40px; }
  .prose td, .prose td:first-child { white-space: normal; }
  .prose .table-scroll table { min-width: 560px; }
  .footer-card { padding: 22px; }
}

@media (max-width: 440px) {
  .cards { grid-template-columns: 1fr; }
}

/* ============================================================
   移动端抽屉导航（与 site-02 保持一致，纯 CSS :target 实现，无 JS）
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  body::before, body::after { animation: none; }
  html { scroll-behavior: auto; }
  .badge, .hero-title, .lead, .cta-row, .fact,
  .fade-0, .fade-1, .fade-2, .fade-3, .fade-4 { animation: none; }
  .drawer:target,
  .drawer-sheet,
  .drawer:target .drawer-links a,
  .drawer:target .drawer-cta a { animation: none; }
  .nav-phone:hover, .cta:hover, .cta-ghost:hover,
  .card:hover, .article:hover { transform: none; }
}

/* ============================================================
   移动端抽屉（提示词: 88vw/360px, #cfc8c5, 纯 CSS :target 实现）
   ============================================================ */
.nav-toggle,
.nav-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(25, 40, 55, 0.1);
  color: var(--color-text);
  flex: none;
  transition: transform .2s ease, opacity .2s ease;
}

/* 提示词: 汉堡/关闭图标 hover 透明度 70%, whileTap scale 0.9 */
.nav-toggle:hover, .nav-close:hover { opacity: .7; color: var(--color-text); }

.nav-toggle:active, .nav-close:active { transform: scale(.9); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  background: rgba(25, 40, 55, 0.35);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.drawer:target { display: block; animation: bdIn .3s ease both; }

.drawer-sheet {
  position: absolute;
  top: 0; right: 0;
  width: min(88vw, 360px);
  height: 100dvh;
  background: var(--sheet);
  box-shadow: -12px 0 48px rgba(25, 40, 55, 0.18);
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  animation: sheetIn .45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.drawer-divider { height: 1px; background: rgba(25, 40, 55, 0.12); margin: 0 0 18px; }

.drawer-links { display: flex; flex-direction: column; gap: 4px; }

.drawer-links a {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: background .2s ease;
}

.drawer:target .drawer-links a {
  animation: linkIn .4s var(--ease-out) both;
}

.drawer:target .drawer-links a:nth-child(1) { animation-delay: .18s; }

.drawer:target .drawer-links a:nth-child(2) { animation-delay: .25s; }

.drawer:target .drawer-links a:nth-child(3) { animation-delay: .32s; }

.drawer:target .drawer-links a:nth-child(4) { animation-delay: .39s; }

.drawer:target .drawer-links a:nth-child(5) { animation-delay: .46s; }

.drawer:target .drawer-links a:nth-child(6) { animation-delay: .53s; }

.drawer:target .drawer-links a:nth-child(7) { animation-delay: .60s; }

/* CTA 按钮跟在链接之后进场 */
.drawer:target .drawer-cta a {
  animation: linkIn .4s var(--ease-out) both;
}

.drawer:target .drawer-cta a:nth-child(1) { animation-delay: .67s; }

.drawer:target .drawer-cta a:nth-child(2) { animation-delay: .74s; }

.drawer-links a:hover { background: rgba(0, 0, 0, 0.1); color: var(--color-text); }

.drawer-cta { margin-top: auto; display: grid; gap: 10px; }

.drawer-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
}

.drawer-cta .d-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }

.drawer-cta .d-primary:hover { color: #fff; }

.drawer-cta .d-secondary {
  background: var(--color-login-bg);
  color: var(--color-text);
  border: 1px solid var(--line-soft);
}

.drawer-cta .d-secondary:hover { color: var(--color-text); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .nav-hours { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-close { display: inline-flex; }
}
