:root{
  --bg:#070A0F;            /* deep blue-black */
  --card:#0D1220;
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.72);
  --line:rgba(234,240,255,.12);

  /* CTA accent (controlled) */
  --accent:#FF6A00;
  --accent2:#FF2D2D;

  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(255,106,0,.14), transparent 62%),
    radial-gradient(900px 520px at 82% 0%, rgba(255,45,45,.10), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.58;
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

/* Top Nav */
.nav{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(7,10,15,.60);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px; min-width:220px;
}
.brand img{
  width:38px; height:38px; border-radius:12px;
  border:1px solid rgba(234,240,255,.10);
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}
.brand .name{font-weight:750; letter-spacing:.2px}
.brand .tag{font-size:12px; color:var(--muted); margin-top:2px}
.nav-links{
  display:flex; gap:14px; align-items:center; flex-wrap:wrap; justify-content:flex-end;
}
.nav-links a{
  font-size:14px; color:var(--muted);
  padding:8px 10px; border-radius:999px;
  border:1px solid transparent;
}
.nav-links a:hover{border-color:var(--line); color:var(--text)}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(234,240,255,.18);
  background: rgba(255,255,255,.03);
  color:var(--text);
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, background .12s ease, box-shadow .12s ease;
  font-weight:650;
  white-space:nowrap;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(234,240,255,.28);
  background: rgba(255,255,255,.05);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.btn-primary{
  border:none;
  background: linear-gradient(90deg, rgba(255,106,0,.95), rgba(255,45,45,.92));
  color:#0B1020;
  box-shadow: 0 18px 40px rgba(255,106,0,.14);
}
.btn-primary:hover{transform: translateY(-1px) scale(1.01)}

/* Hero */
.hero{padding:44px 0 24px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card{
  padding:28px;
  position:relative;
  overflow:hidden;
}
.glow{
  position:absolute; inset:-130px -130px auto auto;
  width:360px; height:360px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,106,0,.20), transparent 62%),
    radial-gradient(circle at 60% 60%, rgba(255,45,45,.14), transparent 60%);
  pointer-events:none;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,106,0,.10);
  border:1px solid rgba(255,106,0,.22);
  color: rgba(234,240,255,.92);
  font-size:13px;
  margin-bottom:14px;
}
h1{font-size:42px; line-height:1.12; margin:0 0 12px}
.sub{
  font-size:16px;
  color: var(--muted);
  margin:0 0 16px;
  max-width: 62ch;
}

/* ✅ 新自我介绍视觉高亮（按 WhatsApp 橙色） */
.intro-quote{
  margin:0;
  color: rgba(234,240,255,.84);
  font-size:15.5px;
  max-width: 74ch;
}
.intro-quote .quote{
  margin:0 0 12px;
  font-size:20px;          /* 第一行更大 */
  line-height:1.35;
}
.intro-quote p{margin:0 0 12px}
.hl{
  color: var(--accent);
  font-weight: 650;
}
.hl-soft{
  color: rgba(255,106,0,.85);
}

.cta-row{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top:18px;
  align-items:center;
}
.hint{
  font-size:13px; color: var(--muted);
  margin-top:10px;
}

/* Founder side card */
.founder{
  padding:14px;
  display:flex; flex-direction:column; gap:12px;
}
.photo{
  border-radius: 16px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#0b0f1a;
  min-height: 320px;
  position:relative;
}
.photo img{width:100%; height:100%; object-fit:cover; display:block}
.badge{
  position:absolute;
  left:12px; bottom:12px;
  display:flex; flex-direction:column;
  gap:4px;
  padding:10px 12px;
  border-radius: 14px;
  background: rgba(7,10,15,.62);
  border:1px solid rgba(234,240,255,.14);
  backdrop-filter: blur(8px);
}
.badge b{font-size:13px}
.badge span{font-size:12px; color:var(--muted)}

/* Sections */
.section{padding:30px 0}
.section h2{
  margin:0 0 12px;
  font-size:26px;
  letter-spacing:.2px;
}
.section p.lead{
  margin:0 0 18px;
  color: var(--muted);
  max-width: 80ch;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.shot{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid var(--line);
  background: #0b0f1a;
  position:relative;
  min-height: 210px;
}
.shot img{width:100%; height:100%; object-fit:cover; display:block}
.shot .cap{
  position:absolute; left:12px; right:12px; bottom:12px;
  padding:10px 12px;
  border-radius: 14px;
  background: rgba(7,10,15,.62);
  border:1px solid rgba(234,240,255,.14);
  backdrop-filter: blur(8px);
  font-size:13px;
  color: rgba(234,240,255,.92);
}
.span-7{grid-column: span 7;}
.span-5{grid-column: span 5;}
.span-6{grid-column: span 6;}

/* Soft strip */
.strip{
  padding:20px 22px;
  border-radius: 22px;
  border:1px solid rgba(234,240,255,.14);
  background: rgba(255,255,255,.02);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.strip b{font-size:16px}
.strip span{color:var(--muted); font-size:14px}

/* Blog teaser cards */
.blog-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.note{
  padding:18px;
  border-radius: 18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.note b{display:block; margin-bottom:6px}
.note p{margin:0; color:var(--muted); font-size:14px}
.note a{display:inline-flex; margin-top:10px; color:rgba(234,240,255,.92)}
.note a:hover{text-decoration:underline}

/* Footer */
.footer{
  padding:28px 0 40px;
  border-top:1px solid var(--line);
  margin-top: 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.muted{color:var(--muted)}
.kv{
  display:grid;
  gap:8px;
  font-size:14px;
}
.kv div{
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.small{font-size:12px; color:var(--muted); margin-top:10px}
.toplink{display:inline-flex; gap:8px; align-items:center}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  h1{font-size:36px}
  .footer-grid{grid-template-columns: 1fr}
  .blog-grid{grid-template-columns: 1fr}
}
@media (max-width: 720px){
  h1{font-size:32px}
  .shot{min-height: 190px}
  .span-7,.span-5,.span-6{grid-column: span 12;}
}

/* ===== Mobile Nav Toggle ===== */
.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-size:18px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
}

@media (max-width: 720px){
  .nav-inner{
    position:relative;
  }

  /* show menu button on mobile */
  .menu-btn{
    display:inline-flex;
  }

  /* turn links into dropdown panel */
  .nav-links{
    display:none;              /* default collapsed */
    position:absolute;
    right:0;
    top:56px;                  /* below nav bar */
    width:min(92vw, 320px);
    padding:12px;
    border-radius:18px;
    border:1px solid var(--line);
    background: rgba(7,10,15,.92);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    flex-direction:column;
    gap:8px;
    z-index:30;
  }

  .nav-links.is-open{
    display:flex;
  }

  /* make menu links full width tappable */
  .nav-links a{
    width:100%;
    justify-content:flex-start;
  }

  /* CTA button full width */
  .nav-links .btn{
    width:100%;
  }
}
/* ===== Hero Intro: clean + founder mini card ===== */
.intro-wrap{
  display:grid;
  grid-template-columns: 1fr 168px; /* 左文案 + 右人物卡 */
  gap:14px;
  align-items:start;
  margin-top: 6px;
}

/* 手写体只作用在自我介绍区，不影响全站 */
.intro-text{
  font-family: "Caveat", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .2px;
}

.intro-quote{
  margin: 0 0 10px;
  font-size: 26px;        /* 你要的：第一句更大 */
  line-height: 1.1;
  font-weight: 700;
  color: rgba(234,240,255,.96);
}

.intro-body{
  margin: 0 0 10px;
  font-size: 18px;        /* 手写体偏大才有质感 */
  line-height: 1.35;
  color: rgba(234,240,255,.82);
}

/* 右侧人物小卡片：更像“名片/身份牌”，不抢镜 */
.mini-founder{
  border-radius: 16px;
  border: 1px solid rgba(234,240,255,.14);
  background: rgba(255,255,255,.02);
  overflow:hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}

.mini-avatar{
  height: 128px;
  background: #0b0f1a;
}
.mini-avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.mini-meta{
  padding: 10px 10px 12px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.mini-meta b{
  font-size: 13px;
  letter-spacing: .2px;
}
.mini-meta span{
  font-size: 12px;
  color: rgba(234,240,255,.68);
}

/* ===== Mobile: 右侧卡片缩小，但仍在右侧 ===== */
@media (max-width: 720px){
  .intro-wrap{
    grid-template-columns: 1fr 118px; /* 移动端更窄的右卡 */
    gap:10px;
  }
  .mini-avatar{ height: 98px; }
  .intro-quote{ font-size: 22px; }
  .intro-body{ font-size: 16.5px; }
}
/* ===== Hero Premium Layout (Founder-first) ===== */

/* 让 hero-card 更“有呼吸感” */
.hero-card{
  padding: 26px;
}

/* 顶部：人像名牌优先 */
.hero-head{
  position: relative;
  margin-bottom: 14px;
}

/* 轻微 glow：像苹果那种“暗光晕” */
.hero-card::before{
  content:"";
  position:absolute;
  inset:-120px -80px auto auto;
  width: 340px;
  height: 340px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,106,0,.18), transparent 62%),
    radial-gradient(circle at 60% 60%, rgba(0,140,255,.10), transparent 60%);
  pointer-events:none;
  filter: blur(0px);
}

/* 人物条：第一眼看到人 */
.hero-person{
  display:flex;
  align-items:center;
  gap:12px;
  margin: 6px 0 14px;
}

.hero-avatar{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(234,240,255,.14);
  box-shadow: 0 14px 26px rgba(0,0,0,.35);
}

.hero-id{
  display:flex;
  flex-direction:column;
  gap:3px;
}
.hero-id b{
  font-size: 14px;
  letter-spacing:.2px;
}
.hero-id span{
  font-size: 12.5px;
  color: rgba(234,240,255,.68);
}

/* 主标题：放大 2-3 倍 + 橙色（但不花） */
.hero-slogan{
  margin: 0 0 12px;
  font-size: 44px;       /* PC */
  line-height: 1.05;
  letter-spacing: -.2px;
  font-weight: 800;
  color: var(--accent);
}

/* 只强调一句里最强的词，不做整段花高亮 */
.hero-strong{
  font-weight: 900;
  color: rgba(255,225,200,.95);
}

/* 次标题：克制、可读 */
.hero-sub{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(234,240,255,.78);
  max-width: 62ch;
}

/* 正文：缩小 + 分段 + 行距 1.6 */
.hero-story{
  margin-top: 10px;
  display:grid;
  gap: 10px;
  max-width: 66ch;
}
.hero-story p{
  margin:0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(234,240,255,.74);
}

/* CTA：并排 + 主次层级 */
.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap: wrap;
  margin-top: 18px;
  align-items:center;
}

/* 给按钮更“高级”一点：微渐变 + 阴影 */
.hero-btn{
  padding: 12px 16px;
}

.hero-cta .btn-primary{
  background: linear-gradient(90deg, rgba(255,106,0,.98), rgba(255,45,45,.92));
  box-shadow: 0 18px 40px rgba(255,106,0,.16);
}

/* 次按钮：透明 + 白边（你要的） */
.ghost{
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(234,240,255,.22);
  color: rgba(234,240,255,.92);
}
.ghost:hover{
  border-color: rgba(234,240,255,.34);
  background: rgba(255,255,255,.04);
}

/* ===== Mobile: 让层级更舒服，避免头重脚轻 ===== */
@media (max-width: 720px){
  .hero-card{ padding: 22px; }

  .hero-slogan{
    font-size: 34px;   /* 移动端仍然大，但不压垮 */
    line-height: 1.08;
  }

  .hero-avatar{
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .hero-story p{
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-cta{
    gap:10px;
  }

  .hero-cta .btn{
    flex: 1 1 0;
    justify-content:center;
  }
}
/* ===== Founder Pledge (Premium) ===== */
.founder-pledge{
  position: relative;
  margin-top: 14px;
  padding: 18px 18px 14px;
  border-radius: 18px;
  border: 1px solid rgba(234,240,255,.12);
  background:
    radial-gradient(520px 240px at 20% 0%, rgba(255,106,0,.10), transparent 60%),
    radial-gradient(520px 240px at 90% 0%, rgba(0,140,255,.08), transparent 60%),
    rgba(255,255,255,.02);
}

/* 文字：白 + 呼吸感 */
.pledge-text{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(234,240,255,.86);
  letter-spacing: .1px;
}

/* 只点亮两个关键点（不花） */
.pledge-text .key{
  color: var(--accent);
  font-weight: 800;
  text-shadow: 0 0 18px rgba(255,106,0,.18);
}

/* 签名：右下角，像“担保落款” */
.pledge-sign{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  margin-top: 12px;
}

.sign-label{
  color: rgba(234,240,255,.45);
  font-weight: 700;
}

.sign-img{
  height: 34px;
  width: auto;
  opacity: .92;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25));
}

/* Mobile：更紧凑但仍然有留白 */
@media (max-width: 720px){
  .founder-pledge{ padding: 16px 16px 12px; }
  .pledge-text{ font-size: 15px; }
  .sign-img{ height: 30px; }
}
/* ===== Founder Hero: single, natural card ===== */
.founder-hero{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* 人物主视觉 */
.founder-visual{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(234,240,255,.12);
  background:#0b0f1a;
}

.founder-visual img{
  width:100%;
  height:auto;
  display:block;
}

/* 人物信息贴片（轻，不抢） */
.founder-tag{
  position:absolute;
  left:14px;
  bottom:14px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(7,10,15,.62);
  border:1px solid rgba(234,240,255,.14);
  backdrop-filter: blur(8px);
}

.founder-tag b{
  display:block;
  font-size:13px;
}
.founder-tag span{
  font-size:12px;
  color: rgba(234,240,255,.68);
}

/* 老板承诺文字 */
.founder-pledge{
  padding: 6px 4px 0;
}

.pledge-text{
  margin:0;
  font-size:16px;
  line-height:1.65;
  color: rgba(234,240,255,.86);
  max-width: 68ch;
}

.pledge-text .key{
  color: var(--accent);
  font-weight: 800;
  text-shadow: 0 0 14px rgba(255,106,0,.18);
}

/* 签名：自然落款 */
.pledge-sign{
  margin-top:10px;
}
.pledge-sign img{
  height:34px;
  opacity:.9;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25));
}

/* CTA：并排，重心稳 */
.founder-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:4px;
}

.founder-cta .btn{
  padding:12px 16px;
}

.ghost{
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(234,240,255,.22);
  color: rgba(234,240,255,.92);
}
.ghost:hover{
  border-color: rgba(234,240,255,.34);
  background: rgba(255,255,255,.04);
}

/* 底部提示，弱化 */
.founder-hint{
  font-size:13px;
  color: rgba(234,240,255,.6);
}

/* Mobile 微调 */
@media (max-width:720px){
  .pledge-text{
    font-size:15px;
    line-height:1.7;
  }
  .pledge-sign img{
    height:30px;
  }
}
/* =========================
   Home Category Grid
   ========================= */

.cat-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

/* 分类卡片（轻量入口） */
.cat-card{
  aspect-ratio: 1 / 1;              /* 移动端正方形 */
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  color: #fff;
  text-decoration: none;

  transition: all .18s ease;
}

.cat-card:hover{
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

/* PC / 大屏：一行 4 个 */
@media (min-width: 768px){
  .cat-grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

/* =========================
   Catalog CTA
   ========================= */

.catalog-cta{
  margin-top: 12px;
  text-align: center;
}

.catalog-cta p{
  font-size: 13px;
  opacity: .75;
  margin-bottom: 8px;
}
/* ===== Contact footer: light & clean card ===== */
.light-footer{
  padding: 26px 0 40px;
  background: linear-gradient(180deg, rgba(246,247,251,1) 0%, rgba(255,255,255,1) 65%);
}

.footer-card{
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10,20,40,.08);
  box-shadow: 0 10px 30px rgba(18,32,68,.10);
  padding: 18px;
}

.footer-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(10,20,40,.08);
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 240px;
}

.footer-logo{
  width:44px;
  height:44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(10,20,40,.08);
  background:#fff;
}

.footer-title{
  font-size: 18px;
  font-weight: 900;
  color: rgba(10,20,40,.92);
  line-height:1.1;
}

.footer-sub{
  font-size: 13px;
  color: rgba(10,20,40,.58);
  margin-top: 2px;
}

.footer-cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding: 12px 0 14px;
}

.footer-links a{
  color: rgba(10,20,40,.70);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(10,20,40,.04);
  border: 1px solid rgba(10,20,40,.06);
}
.footer-links a:hover{ background: rgba(10,20,40,.06); }

.footer-grid2{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.info-block{
  grid-column: span 6;
  border-radius: 14px;
  background: rgba(10,20,40,.03);
  border: 1px solid rgba(10,20,40,.06);
  padding: 12px 12px;
}

.info-block h3{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  color: rgba(10,20,40,.88);
}

.kvlist{ display:flex; flex-direction:column; gap:8px; }
.kvrow{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(10,20,40,.06);
}

.kvrow .k{
  font-weight: 800;
  color: rgba(10,20,40,.72);
  font-size: 13px;
}
.kvrow .v{
  color: rgba(10,20,40,.78);
  font-size: 13px;
  line-height: 1.35;
}

.footer-bottom{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(10,20,40,.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}

/* ===== Team photo block ===== */
.team-shot{
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.team-shot img{
  width:100%;
  height:auto;
  display:block;
}
.team-shot .cap{
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

/* Responsive */
@media (max-width: 980px){
  .footer-head{ flex-direction: column; }
  .footer-cta{ justify-content:flex-start; }
  .info-block{ grid-column: span 12; }
  .kvrow{ grid-template-columns: 120px 1fr; }
}
@media (max-width: 560px){
  .kvrow{ grid-template-columns: 1fr; }
  .kvrow .k{ opacity: .8; }
}
/* ===== FIX: light footer text too light (muted/opacity issue) ===== */
.light-footer,
.light-footer .footer-card,
.light-footer .info-block{
  color: rgba(10,20,40,.86);
}

/* 覆盖全局 muted 在浅色区域太淡的问题 */
.light-footer .muted{
  color: rgba(10,20,40,.70) !important;
  opacity: 1 !important;
}

/* 基本信息段落：保证可读性 */
.light-footer .info-block p,
.light-footer .info-block .v{
  color: rgba(10,20,40,.76) !important;
  opacity: 1 !important;
  line-height: 1.6;
}

/* 标题更清晰 */
.light-footer .info-block h3{
  color: rgba(10,20,40,.92) !important;
}

/* 如果 kvrow 里 label 也太淡 */
.light-footer .kvrow .k{
  color: rgba(10,20,40,.72) !important;
  opacity: 1 !important;
}

/* team-shot 的 caption 你之前是白字：在浅色页面会看不到，顺便修 */
.team-shot .cap{
  color: rgba(10,20,40,.72) !important;
  background: rgba(255,255,255,.92);
  border-top: 1px solid rgba(10,20,40,.06);
}
