/* ── base.css · 公共骨架（T2）─────────────────────────────────────
 * 区块样式（hero/services/culture/journey/org）由 T5-T9 依序追加；
 * mobile-polish.css（≤767 移动打磨）由 T5 创建并在 layout head 追加引用。
 * 翻译依据：tmp/Create电脑端 App.tsx / footer.tsx / styles/index.css；
 * 两版差异已按 master §七 合并（footer 取手机版超集档位串，单值差异按断点拆分）。
 * 断点：768 / 1024（mobile-first）。防 FOUC：动画初始态仅 html[data-js=on] 生效。
 * ──────────────────────────────────────────────────────────────── */

/* ── reset（Tailwind preflight 等价最小集）── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* ── body 画布（App.tsx:57-61）── */
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: linear-gradient(165deg, #FFFFFF 0%, #FCFAF6 55%, #F6F2EA 100%);
}
::selection { background: var(--red); color: #fff; }
body.drawer-open { overflow: hidden; } /* 抽屉打开时滚动锁 */

/* ── skip 导航 / 焦点可见性 / 无滚动条（index.css:5-44 全译）── */
.skip-nav {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  padding: 10px 20px; background: var(--red); color: #fff;
  font-size: 14px; font-weight: 500; border-radius: 6px;
  text-decoration: none; transition: top 0.2s ease; white-space: nowrap;
}
.skip-nav:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 3px; }
:focus:not(:focus-visible) { outline: none; }
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* ── 容器（版心）── */
.container { max-width: var(--container); margin-inline: auto; }

/* ── film grain 噪点层（App.tsx:66-74 照抄）── */
.grain {
  position: fixed; inset: 0; z-index: 45; pointer-events: none;
  mix-blend-mode: multiply; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── masthead 毛玻璃页头（App.tsx:77-120）── */
.masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding-inline: 24px;
  background: linear-gradient(180deg, var(--glass), rgba(255, 255, 255, 0));
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
@media (min-width: 768px) { .masthead { height: 84px; padding-inline: 64px; } }

.brand-link { display: flex; align-items: center; gap: 10px; }
.brand-link img { width: 36px; height: 36px; object-fit: contain; }
.brand-name { font-size: 17px; font-weight: 700; letter-spacing: 0.02em; }

/* 桌面导航（≥768 显示；<768 由汉堡+抽屉替代） */
.nav-desktop { display: none; }
@media (min-width: 768px) { .nav-desktop { display: flex; align-items: center; gap: 28px; } }
.nav-link {
  position: relative; font-size: 13.5px; letter-spacing: 0.025em;
  color: var(--gray-1); transition: color 0.3s;
}
.nav-link:hover { color: var(--ink); }
.nav-link::after { /* 源码为 span 下划线，::after 等价实现（视觉一致） */
  content: ""; position: absolute; left: 0; bottom: -6px;
  height: 1px; width: 0; background: var(--red); transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

/* 中/EN 语言切换（静态渲染照源码；切换逻辑 T9b 接管） */
.lang-switch {
  display: none; align-items: center; gap: 16px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
}
@media (min-width: 768px) { .lang-switch { display: flex; } }
.lang-sep { width: 1px; height: 12px; background: rgba(21, 19, 15, 0.2); }
.lang-btn { border: 0; background: none; padding: 0; }
.lang-btn--active { color: var(--ink); cursor: default; }
.lang-btn--inactive { color: var(--gray-1); transition: color 0.3s; }
.lang-btn--inactive:hover { color: var(--ink); }

/* 图标圆钮（汉堡/关闭，<768） */
.icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-ink-strong); background: none; color: var(--ink);
}
.icon-btn svg { width: 16px; height: 16px; }
.hamburger { display: flex; }
@media (min-width: 768px) { .hamburger { display: none; } }

/* ── 移动抽屉（App.tsx:122-175；SSR 直出默认收起，JS 增强开合）── */
.drawer {
  position: fixed; inset: 0; z-index: 60;
  display: flex; flex-direction: column;
  background: rgba(252, 250, 246, 0.97);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  visibility: hidden; opacity: 0;
  transition: opacity 0.25s, visibility 0.25s;
}
.drawer.open { visibility: visible; opacity: 1; }
@media (min-width: 768px) { .drawer { display: none; } } /* 桌面无入口，防御性隐藏 */
.drawer-bar {
  flex: none; display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding-inline: 24px;
}
.drawer-brand { display: flex; align-items: center; gap: 10px; }
.drawer-brand img { width: 36px; height: 36px; object-fit: contain; }
.drawer-brand span { font-size: 17px; font-weight: 700; letter-spacing: 0.02em; }
.drawer-nav {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  gap: 8px; padding-inline: 32px;
}
.drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 20px; border-bottom: 1px solid var(--line-ink);
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(24px, 6vw, 36px); line-height: 1.5; color: var(--ink);
}
.drawer-arrow { color: var(--red); font-size: 20px; }
.drawer-foot { padding: 0 32px 40px; }
.drawer-foot p {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  color: var(--gray-2); text-transform: uppercase;
}
/* 链接阶梯入场（源码 stagger i*0.07s；开合由 JS 驱动，无 JS 不触发） */
.drawer.open .drawer-link { animation: drawer-item-in 0.4s var(--ease) both; }
.drawer.open .drawer-link:nth-child(2) { animation-delay: 0.07s; }
.drawer.open .drawer-link:nth-child(3) { animation-delay: 0.14s; }
.drawer.open .drawer-link:nth-child(4) { animation-delay: 0.21s; }
.drawer.open .drawer-link:nth-child(5) { animation-delay: 0.28s; }
.drawer.open .drawer-link:nth-child(6) { animation-delay: 0.35s; }
@keyframes drawer-item-in { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: none; } }

/* ── 动效门（D4 防FOUC）── */
/* masthead 入场（源码 motion header；仅 JS 可用时启用，无 JS 直出终态 */
html[data-js="on"] .masthead { opacity: 0; animation: masthead-in 0.9s var(--ease) 0.15s forwards; }
@keyframes masthead-in { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }

/* 动效降级（prefers-reduced-motion：全局关停并直出终态） */
@media (prefers-reduced-motion: reduce) {
  html[data-js="on"] .masthead { animation: none; opacity: 1; }
  .drawer.open .drawer-link { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ── footer（footer.tsx:11-100；§七 合并档位：px 20/40/96=手机版超集档位串）── */
.site-footer {
  position: relative; width: 100%; overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, #F0EAE0 100%);
}
.footer-glow {
  position: absolute; left: 50%; top: -10%; transform: translateX(-50%);
  width: 80%; height: 60%; pointer-events: none; filter: blur(40px);
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 56, 0, 0.06) 0%, transparent 65%);
}
.footer-cta { position: relative; z-index: 10; padding: 56px 20px 40px; }
@media (min-width: 768px) { .footer-cta { padding: 80px 40px 48px; } }
@media (min-width: 1024px) { .footer-cta { padding-inline: 96px; } }
.footer-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 40px;
}
.footer-eyebrow-line { width: 32px; height: 1px; background: rgba(255, 56, 0, 0.4); }
.footer-eyebrow-txt {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em;
  color: var(--gray-1); text-transform: uppercase;
}
.footer-headline {
  text-align: center; font-weight: 700;
  font-size: clamp(44px, 7.5vw, 116px); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--ink);
}
.footer-headline-red { color: var(--red); }
.footer-sub {
  text-align: center; margin-top: 28px;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(15px, 1.6vw, 20px); color: var(--gray-1); letter-spacing: 0.02em;
}
.footer-strip { position: relative; z-index: 10; border-top: 1px solid var(--line-ink); padding: 28px 20px; }
@media (min-width: 768px) { .footer-strip { padding: 32px 40px; } }
@media (min-width: 1024px) { .footer-strip { padding-inline: 96px; } }
.footer-strip-inner {
  max-width: var(--container); margin-inline: auto;
  display: flex; flex-direction: column; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px;
}
/* footer-meta：copy+隐私政策+ICP 并排一行（窄档自动换行；链接为兄弟元素——data-i18n 元素内禁嵌子元素）*/
.footer-meta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  column-gap: 12px; row-gap: 6px;
}
@media (min-width: 768px) { .footer-strip-inner { flex-direction: row; } }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 28px; height: 28px; object-fit: contain; }
.footer-brand-name { font-size: 15px; font-weight: 700; letter-spacing: 0.02em; }
.footer-brand-sep { width: 1px; height: 16px; margin-inline: 4px; background: var(--line-ink-strong); }
.footer-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--red); text-transform: uppercase;
}
.footer-copy {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em;
  color: var(--gray-2); text-transform: uppercase;
}
.footer-icp { font-size: 12px; color: var(--gray-2); }
.footer-icp:hover, .footer-icp:focus-visible { color: var(--red); }

/* 占位区块规则组已随 T9 org 迁移完毕删除（T5-T9 六区块全量落地）*/

/* ══ hero（App.tsx:179-332 逐行翻译；<768 手机打磨差异见 mobile-polish.css）══ */
.hero {
  position: relative; width: 100%;
  min-height: 100vh; min-height: 100svh; /* 源 h-screen+手机版 svh，master D4 对照表合并值 */
  overflow: hidden;
}
.hero-glow { position: absolute; pointer-events: none; z-index: 0; }
.hero-glow--white {
  display: none; right: 0; top: 0; width: 52%; height: 100%;
  background: radial-gradient(70% 80% at 62% 42%, #FFFFFF 0%, rgba(255,255,255,.6) 55%, transparent 100%);
}
.hero-glow--orange {
  right: -10%; bottom: -20%; width: 70%; height: 80%;
  background: radial-gradient(circle at 60% 60%, rgba(255,56,0,.09) 0%, transparent 62%);
  filter: blur(20px);
}
@media (min-width: 768px) { .hero-glow--white { display: block; } }

/* editorial spine（lg+ 竖排装饰，源 L197-212） */
.hero-spine {
  position: absolute; left: 1.25rem; top: 50%; z-index: 20;
  display: none; align-items: center; gap: .75rem;
  transform: translateY(-50%) rotate(180deg); transform-origin: center;
  writing-mode: vertical-rl;
}
.hero-spine-text {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .4em; color: var(--gray-1); text-transform: uppercase;
}
.hero-spine-since { letter-spacing: .3em; text-transform: none; }
.hero-spine-rule { width: 2rem; height: 1px; background: rgba(21,19,15,.25); }
@media (min-width: 1024px) { .hero-spine { display: flex; } }

.hero-grid {
  position: relative; z-index: 10;
  max-width: calc(var(--container) + 12rem); margin-inline: auto; /* v3'（20260902）：hero 内容列收进 1320+2×96 居中轨——与五区块同构，宽屏六眉题统一悬挂对齐 */
  display: grid; grid-template-columns: 1fr; align-items: end;
  min-height: 100vh; min-height: 100svh;
}
.hero-headline { padding: 88px 1.5rem 4rem; align-self: center; max-width: 760px; }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1.15fr 1fr; } }
@media (min-width: 768px) { .hero-headline { padding: 0 2rem 0 6rem; } }

.hero-eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 2rem; }
.hero-eyebrow-bar { width: 2rem; height: 2px; flex-shrink: 0; background: var(--red); }
.hero-eyebrow-text {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .24em; color: var(--gray-1); text-transform: uppercase;
}
@media (min-width: 768px) { .hero-eyebrow { margin-left: -2.75rem; } }

.hero-title { font-weight: 700; font-size: clamp(52px, 7.4vw, 120px); line-height: 1.08; letter-spacing: .01em; }
.rise { display: block; overflow: hidden; }
.rise-inner { display: inline-block; }
.hero-title .rise { flex-shrink: 0; } /* 标题行禁压缩：行宽超列时 flex 压 .rise 令 overflow:hidden 裁右侧字（20260902 全屏「路」半字），禁缩后溢入右 padding/列间隙，封顶档距照盒仍 ≥12px */
.hero-line-2 { margin-top: .5rem; display: flex; align-items: center; gap: 1.25rem; }
.hero-accent { color: var(--red); white-space: nowrap; }
.hero-arrow { flex-shrink: 0; width: .62em; height: .62em; overflow: visible; }
.hero-arrow path { stroke: var(--red); stroke-width: 5; stroke-linecap: round; }
.hero-arrow-path2 { stroke-linejoin: round; }

.hero-founder { position: relative; height: 100%; display: none; }
.hero-watermark {
  position: absolute; right: 4%; top: 22%; z-index: 0;
  user-select: none; pointer-events: none;
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(120px, 15vw, 240px); line-height: .8;
  color: rgba(21,19,15,.04); letter-spacing: -.04em; writing-mode: vertical-rl;
}
.hero-shadow {
  position: absolute; left: 50%; bottom: 6%; z-index: 5; pointer-events: none;
  width: 46%; height: 60px; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(21,19,15,.16) 0%, transparent 70%);
  filter: blur(8px);
}
.hero-photo-wrap {
  position: absolute; inset: 0; z-index: 10;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-photo {
  height: 94%; width: auto; max-width: 100%; object-fit: contain; object-position: bottom;
  filter: contrast(1.03) saturate(1.04);
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, rgba(0,0,0,.45) 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 78%, rgba(0,0,0,.45) 90%, transparent 100%);
}
.hero-namecard { position: absolute; bottom: 4rem; right: 4rem; z-index: 20; text-align: right; }
.hero-namecard-role { display: flex; align-items: center; justify-content: flex-end; gap: .625rem; margin-bottom: .5rem; }
.hero-namecard-tag {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .24em; color: var(--red); text-transform: uppercase;
}
.hero-namecard-rule { width: 1.5rem; height: 1px; background: var(--red); }
.hero-namecard-name { display: flex; align-items: baseline; justify-content: flex-end; gap: .625rem; }
.hero-namecard-cn { font-family: var(--font-serif); font-weight: 600; font-size: 26px; color: var(--ink); }
.hero-namecard-en { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--gray-1); }
@media (min-width: 768px) { .hero-founder { display: block; } }

.hero-scrollcue {
  position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 40;
  display: flex; align-items: center; gap: .75rem;
}
.hero-scrollcue-text {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .28em; color: var(--gray-1); text-transform: uppercase;
}
.hero-scrollcue-arrow { color: var(--red); font-size: 13px; }
@media (min-width: 768px) { .hero-scrollcue { left: 4rem; } }

/* ══ about（App.tsx:334-401 逐行翻译）══ */
.about {
  position: relative; width: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 3.5rem 1.5rem; overflow: hidden;
}
.about-glow {
  position: absolute; pointer-events: none; z-index: 0; display: none;
  left: -6%; top: -8%; width: 48%; height: 60%;
  background: radial-gradient(circle at 40% 40%, rgba(255,56,0,.05) 0%, transparent 60%);
}
.about-grid {
  position: relative; z-index: 10; width: 100%; max-width: var(--container);
  margin-inline: auto; /* v3'（20260902）：回居中轨——内容居中+眉题固定悬挂 −44 全站统一 */
  display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center;
}
.about-eyebrow {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 2.25rem;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .24em; color: var(--gray-1);
}
.about-eyebrow-bar { width: 2rem; height: 2px; flex-shrink: 0; background: var(--red); }
.about-eyebrow-text { text-transform: uppercase; }
.about-title { font-weight: 700; font-size: clamp(34px, 5vw, 84px); line-height: 1.16; letter-spacing: -.02em; }
.about-stats { border-top: 1px solid rgba(21,19,15,.14); }
.stat-row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 0; border-bottom: 1px solid rgba(21,19,15,.14);
}
.stat-label-wrap { display: flex; align-items: center; gap: 1rem; padding-bottom: .875rem; }
.stat-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: rgba(21,19,15,.25); transition: background-color .3s;
}
.stat-row:hover .stat-dot { background: var(--red); }
.stat-label {
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: .14em; color: var(--gray-1); text-transform: uppercase;
}
.stat-number {
  font-family: var(--font-num); font-weight: 700; line-height: 1;
  font-size: clamp(52px, 5.6vw, 88px); letter-spacing: -.025em;
  color: var(--ink); transition: color .3s;
}
.stat-row:hover .stat-number { color: var(--red); }
@media (min-width: 768px) {
  .about { padding: 5rem 5.25rem; } /* 768-1023 左轨 40（84−44 悬挂）；≥1024 由下方 6rem 规则覆盖回 96（20260901 v2） */
  .about-glow { display: block; }
  .about-grid { grid-template-columns: 1.1fr .9fr; gap: 6rem; }
  .about-eyebrow { margin-left: -2.75rem; } /* 固定悬挂：全站统一居中轨下互相对齐（20260902 v3'） */
  .stat-row { padding-block: 1.75rem; }
}
@media (min-width: 1024px) {
  .about { padding-inline: 6rem; }
  .about-grid { gap: 8rem; }
}

/* ── hero/about 动效（源 mount 序列 L197-331 + whileInView L344-399；全 data-js 门控，无 JS/IO 直出终态）── */
html[data-js="on"] .hero-eyebrow { opacity: 0; animation: t5-fade .9s var(--ease) .45s forwards; }
html[data-js="on"] .rise-inner { transform: translateY(115%); animation: t5-rise 1.05s var(--ease) var(--d, 0s) forwards; }
html[data-js="on"] .hero-arrow path { stroke-dasharray: 100; stroke-dashoffset: 100; }
html[data-js="on"] .hero-arrow-path1 { animation: t5-draw .55s var(--ease) 1.3s forwards; }
html[data-js="on"] .hero-arrow-path2 { animation: t5-draw .4s var(--ease) 1.7s forwards; }
html[data-js="on"] .hero-spine { opacity: 0; animation: t5-fade 1s var(--ease) 1.2s forwards; }
html[data-js="on"] .hero-photo-wrap { opacity: 0; animation: t5-photo-in 1.4s var(--ease) .4s forwards; }
html[data-js="on"] .hero-namecard { opacity: 0; animation: t5-card-in 1s var(--ease) 1.5s forwards; }
html[data-js="on"] .hero-shadow { opacity: 0; animation: t5-shadow-in 1.2s var(--ease) 1.1s forwards; }
html[data-js="on"] .hero-watermark { animation: t5-float 9s ease-in-out infinite; }
html[data-js="on"] .hero-scrollcue { opacity: 0; animation: t5-fade 1s var(--ease) 1.7s forwards; }
html[data-js="on"] .hero-scrollcue-arrow { display: inline-block; animation: t5-bob 1.8s ease-in-out infinite; }

/* about 滚动入场：main.js IO 加 .in-view；--d/--dy/--dur 来自源码逐项参数；
   --dx/--sc（T7 culture 扩参）默认值与原 translateY(var(--dy)) 严格等价，存量用法零影响 */
html[data-js="on"] .reveal {
  opacity: 0; transform: translate(var(--dx, 0px), var(--dy, 26px)) scale(var(--sc, 1));
  transition: opacity var(--dur, 1s) var(--ease) var(--d, 0s), transform var(--dur, 1s) var(--ease) var(--d, 0s);
}
html[data-js="on"] .reveal.in-view { opacity: 1; transform: none; }

@keyframes t5-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes t5-rise { from { transform: translateY(115%); } to { transform: none; } }
@keyframes t5-draw { to { stroke-dashoffset: 0; } }
@keyframes t5-photo-in { from { opacity: 0; transform: translateY(30px) scale(1.02); } to { opacity: 1; transform: none; } }
@keyframes t5-card-in { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }
@keyframes t5-shadow-in { from { opacity: 0; transform: translateX(-50%) scaleX(.6); } to { opacity: 1; transform: translateX(-50%); } }
@keyframes t5-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes t5-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* 动效降级：delay 残留防护（masthead 模式显式重置，阴影保留居位 transform） */
@media (prefers-reduced-motion: reduce) {
  html[data-js="on"] .hero-eyebrow, html[data-js="on"] .rise-inner, html[data-js="on"] .hero-spine,
  html[data-js="on"] .hero-photo-wrap, html[data-js="on"] .hero-namecard,
  html[data-js="on"] .hero-scrollcue { animation: none; opacity: 1; transform: none; }
  html[data-js="on"] .hero-shadow { animation: none; opacity: 1; transform: translateX(-50%); }
  html[data-js="on"] .hero-watermark, html[data-js="on"] .hero-scrollcue-arrow { animation: none; }
  html[data-js="on"] .hero-arrow path { animation: none; stroke-dashoffset: 0; }
  html[data-js="on"] .reveal { opacity: 1; transform: none; transition: none; }
}

/* ══ services（services.tsx:226-432 逐行翻译；<768 打磨超集档已并入，冲突档见 mobile-polish.css）══ */
.services {
  position: relative; width: 100%; overflow: hidden;
  padding: 48px 32px 64px; /* PC 版直译：pt-12 px-8 pb-16 */
}
.services-glow {
  position: absolute; pointer-events: none; z-index: 0; display: none;
  right: -8%; top: 4%; width: 46%; height: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(255,56,0,0.05) 0%, transparent 60%);
}
.services-inner { position: relative; z-index: 10; width: 100%; max-width: var(--container); margin-inline: auto; } /* v3'（20260902）回居中轨 */
.services-head { margin-bottom: 40px; }

/* 区块头（源 L236-296） */
.services-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 40px;
  color: var(--gray-1); font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
}
.services-eyebrow-bar { width: 32px; height: 2px; flex-shrink: 0; background: var(--red); }
.services-headgrid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
.services-title {
  font-weight: 700; color: var(--ink);
  font-size: clamp(34px, 4.2vw, 68px); line-height: 1.18; letter-spacing: -0.01em;
}
.services-tags { margin-top: 28px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.services-tag { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.06em; font-weight: 500; color: var(--gray-1); }
.services-tag-dot { color: rgba(21,19,15,0.2); font-size: 11px; }
.services-intro-text { color: var(--gray-1); font-size: clamp(13.5px, 1.1vw, 16px); line-height: 2.05; letter-spacing: 0.01em; }
.services-intro-red { color: var(--red); font-weight: 500; }

/* bento 栅格（源 L299：右/下边线在栅格，上/左边线在卡） */
.bento {
  display: grid; grid-template-columns: 1fr;
  border-right: 1px solid var(--line-card); border-bottom: 1px solid var(--line-card);
}

/* 卡基座（源 Cell L89：p-5 md:p-7 lg:p-9 超集档；hover 上浮 y-4 + bg 500ms） */
.cell {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  padding: 20px; border-top: 1px solid var(--line-card); border-left: 1px solid var(--line-card);
  transition: background-color 0.5s ease, transform 0.5s var(--ease);
}
.cell:hover { transform: translateY(-4px); } /* 源 whileHover y:-4；无 JS 亦可用 */
.cell::before { /* hover 顶线（源 L92，scaleX 描入） */
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.cell:hover::before { transform: scaleX(1); }
.cell:not(.cell--tint):hover { background: rgba(255,255,255,0.7); }
.cell--tint { background: var(--tint); }
.cell--tint:hover { background: var(--tint-hover); }
.cell-arrow { /* hover 角标圆钮（源 L95，ArrowUpRight 白描边） */
  position: absolute; bottom: 16px; right: 16px; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 9999px; background: var(--red);
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.cell:hover .cell-arrow { opacity: 1; transform: none; }
.cell-arrow svg { width: 16px; height: 16px; color: #fff; }

/* kicker：No. 序号 + 名称 + 图标圆钮（源 L102-134） */
.kicker { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.kicker-left { display: flex; align-items: center; gap: 16px; }
.kicker-id { display: flex; flex-direction: column; align-items: flex-start; }
.kicker-no {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gray-2); margin-bottom: 2px;
}
.kicker-num-wrap { position: relative; display: inline-block; line-height: 0.8; }
.kicker-num {
  font-family: var(--font-num); font-weight: 700; letter-spacing: -0.025em;
  color: var(--ink); font-size: clamp(36px, 3.6vw, 48px); /* 手机版 clamp 超集档 */
  transition: color 0.5s ease;
}
.kicker--big .kicker-num { font-size: clamp(44px, 4.5vw, 60px); }
.kicker-num-line {
  position: absolute; bottom: -4px; left: 0; height: 3px; width: 16px;
  background: var(--red); transition: width 0.5s var(--ease);
}
.cell:hover .kicker-num-line { width: 100%; }
.cell:hover .kicker-num { color: var(--red); }
.kicker-divider { width: 1px; align-self: stretch; margin-block: 6px; background: var(--line-card); }
.kicker-name {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(17px, 1.7vw, 22px); letter-spacing: 0.01em; line-height: 1.15; /* 手机版 clamp 超集档 */
}
.kicker--big .kicker-name { font-size: clamp(20px, 2vw, 27px); }
.kicker-icon {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 9999px; border: 1px solid var(--line-card);
  transition: background-color 0.5s ease;
}
.kicker-icon svg { width: 18px; height: 18px; color: var(--ink); transition: color 0.5s ease; }
.cell:hover .kicker-icon { background: var(--red); }
.cell:hover .kicker-icon svg { color: #fff; }

/* punch：类目行 + 标题 + 描述（源 L136-152） */
.punch-cat { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.punch-dot { width: 6px; height: 6px; border-radius: 9999px; flex-shrink: 0; background: var(--red); }
.punch-cat-text { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-1); }
.punch-title {
  font-weight: 500; color: var(--ink); margin-bottom: 12px;
  font-size: clamp(20px, 2vw, 27px); line-height: 1.24; letter-spacing: -0.01em;
}
.punch--big .punch-title { font-size: clamp(26px, 2.8vw, 40px); }
.punch-desc { color: var(--gray-1); padding-right: 40px; font-size: 13.5px; line-height: 1.85; }
.punch--big .punch-desc { font-size: 14.5px; }

/* barviz：实时柱状（源 L155-178，01 卡） */
.barviz { margin-top: auto; padding-top: 24px; }
.barviz-label { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; color: var(--red); }
.barviz-label svg { width: 14px; height: 14px; }
.barviz-label-text { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; }
.barviz-bars { display: flex; align-items: flex-end; gap: 8px; height: 96px; border-bottom: 1px solid var(--line-card); }
.bar {
  flex: 1; border-radius: 3px 3px 0 0; height: var(--bh);
  background: rgba(21,19,15,0.12); transition: height 0.9s var(--ease) var(--bd, 0s);
}
.bar--last { background: var(--red); }

/* ba：神笔前后对比（源 L181-213，03 卡） */
.ba { position: relative; margin-top: auto; padding-top: 24px; }
.ba-frame { position: relative; height: 144px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(21,19,15,0.1); }
.ba-checker { position: absolute; inset: 0; background: repeating-conic-gradient(rgba(21,19,15,0.07) 0% 25%, #F2ECE2 0% 50%) 50% / 18px 18px; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5) contrast(0.92) brightness(1.02); }
.ba-left { position: absolute; top: 0; bottom: 0; left: 0; width: 50%; overflow: hidden; background: #fff; }
.ba-img-left { width: 200%; max-width: none; height: 100%; object-fit: cover; display: block; }
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); background: var(--red); }
.ba-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 28px; height: 28px; border-radius: 9999px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.ba-handle svg { width: 14px; height: 14px; color: #fff; }
.ba-badge {
  position: absolute; bottom: 8px; padding: 2px 6px; border-radius: 4px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
}
.ba-badge--ai { left: 8px; color: #fff; background: var(--red); }
.ba-badge--raw { right: 8px; color: var(--gray-2); background: rgba(255,255,255,0.75); }

/* tiles：星图 AIGC 磁贴（源 L327-346，04 卡） */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: auto; padding-top: 24px; }
.gen-tile {
  position: relative; aspect-ratio: 1 / 1; border-radius: 6px; overflow: hidden; border: 1px solid var(--line);
  transition: opacity 0.6s var(--ease) var(--td, 0s), transform 0.6s var(--ease) var(--td, 0s);
}
.gen-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gen-tile-badge {
  position: absolute; top: 4px; right: 4px; width: 20px; height: 20px; border-radius: 9999px;
  background: var(--red); display: flex; align-items: center; justify-content: center;
}
.gen-tile-badge svg { width: 12px; height: 12px; color: #fff; }

/* bigstat：大数字（源 L215-224，02/05/06 卡） */
.bigstat { margin-top: auto; padding-top: 24px; }
.bigstat-number {
  line-height: 1; letter-spacing: -0.025em;
  font-family: var(--font-num); font-weight: 700; font-size: clamp(52px, 6vw, 84px); color: var(--red);
}
.bigstat-label { margin-top: 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-2); }

/* avatars：开心推博主列（源 L371-382，07 卡） */
.avatars { display: flex; align-items: center; margin-top: auto; padding-top: 24px; }
.avatar {
  width: 40px; height: 40px; border-radius: 9999px; margin-left: -10px;
  overflow: hidden; border: 2px solid #FBF8F2; position: relative; z-index: 5;
}
.avatar:first-child { margin-left: 0; }
.avatar:nth-child(2) { z-index: 4; } .avatar:nth-child(3) { z-index: 3; }
.avatar:nth-child(4) { z-index: 2; } .avatar:nth-child(5) { z-index: 1; }
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.avatars-label { margin-left: 14px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--gray-2); }

/* pod：POD 数据条（源 L389-404，08 卡） */
.pod { margin-top: auto; padding-top: 24px; display: flex; align-items: flex-end; gap: 24px; }
.pod-label { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; color: var(--red); }
.pod-label svg { width: 14px; height: 14px; }
.pod-label-text { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; }
.pod-number {
  line-height: 1; font-family: var(--font-num); font-weight: 700;
  font-size: clamp(40px, 4vw, 64px); color: var(--ink); letter-spacing: -0.02em;
}
.pod-note { margin-bottom: 6px; padding-bottom: 1px; border-bottom: 1px solid var(--line-card); }
.pod-note span { font-family: var(--font-sans); font-size: 12px; line-height: 1.625; color: var(--gray-1); }

/* steps：电商课三步卡（源 L411-425，09 卡；箭头 #C9C1B2 单点色直书源值） */
.steps { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: auto; padding-top: 24px; }
.step-box {
  width: 64px; height: 64px; border-radius: 12px;
  border: 1px solid var(--line-card); background: rgba(255,255,255,0.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.step-char { font-family: var(--font-serif); font-weight: 700; font-size: 20px; color: var(--red); }
.step-en { margin-top: 2px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-1); }
.step-arrow { width: 14px; height: 14px; color: #C9C1B2; transform: rotate(45deg); flex-shrink: 0; }

/* ── services 响应档（PC 版自带降级 md:/lg: 照源）── */
@media (min-width: 768px) {
  .services { padding: 64px 64px 80px; }        /* pt-16 px-16 pb-20 */
  .services-glow { display: block; }
  .services-head { margin-bottom: 56px; }        /* mb-14 */
  .bento { grid-template-columns: repeat(2, 1fr); }
  .cell { padding: 28px; }                       /* p-7 */
  .cell-arrow { bottom: 24px; right: 24px; }
  .barviz-bars { gap: 12px; }                    /* md:gap-3 */
  .cell--wide, .cell--duo { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .services { padding: 64px 96px 80px; }         /* lg:px-24 */
  .services-eyebrow { margin-left: -2.75rem; } /* 固定悬挂 −44：全站统一居中轨下六眉题互相对齐（20260902 v3'） */
  .services-headgrid { grid-template-columns: 1fr 1fr; gap: 96px; } /* lg:grid-cols-[1fr_1fr] gap-24 */
  .services-intro { padding-top: 12px; }         /* lg:pt-3 */
  .bento { grid-template-columns: repeat(6, 1fr); }
  .cell { padding: 36px; }                       /* lg:p-9 */
  .cell-arrow { bottom: 32px; right: 32px; }     /* lg:bottom-8 lg:right-8 */
  .kicker-left { gap: 20px; }                    /* lg:gap-5 */
  .cell--wide { grid-column: span 4; }
  .cell--third { grid-column: span 3; }
  .cell--half { grid-column: span 2; }
  .cell--duo { grid-column: span 2; }
}

/* ── services 动效（源 Cell/BarViz/tiles whileInView + whileHover；复用 main.js IO .in-view，rootMargin 统一 -15%）── */
/* 入场：opacity/y26/dur.7/delay=--d（源 L84-88）；.in-view 后切换 hover 档 transition（无延迟），供上浮即时响应 */
html[data-js="on"] .cell {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s var(--ease) var(--d, 0s), transform 0.7s var(--ease) var(--d, 0s),
              background-color 0.5s ease var(--d, 0s);
}
html[data-js="on"] .cell.in-view {
  opacity: 1; transform: none;
  transition: opacity 0.3s var(--ease), transform 0.5s var(--ease), background-color 0.5s ease;
}
html[data-js="on"] .cell.in-view:hover { transform: translateY(-4px); }
/* 子动画挂 .cell.in-view：柱状 8%→--bh（源 L167-170，delay .15+i*.08）；磁贴 opacity/scale（源 L331-334，delay .1+i*.14） */
html[data-js="on"] .cell:not(.in-view) .bar { height: 8%; }
html[data-js="on"] .cell:not(.in-view) .gen-tile { opacity: 0; transform: scale(0.9); }

/* services 动效降级（reduced-motion：终态直出，位移全关） */
@media (prefers-reduced-motion: reduce) {
  .cell, .cell::before, .cell-arrow, .kicker-num, .kicker-num-line, .kicker-icon, .kicker-icon svg,
  .bar, .gen-tile { transition: none; }
  .cell:hover, html[data-js="on"] .cell.in-view:hover { transform: none; }
  html[data-js="on"] .cell, html[data-js="on"] .cell.in-view { opacity: 1; transform: none; transition: none; }
  html[data-js="on"] .cell:not(.in-view) .bar { height: var(--bh); }
  html[data-js="on"] .cell:not(.in-view) .gen-tile { opacity: 1; transform: none; }
}

/* ══ culture（culture.tsx:21-212 逐行翻译；双布局=两套 DOM 断点互斥；
     影片位 16:9 移动 → ≥768 16:7〔master §五 桌面档；源 L123 双端 16/9，偏差已在 plan 留证〕）══ */
.culture { position: relative; width: 100%; overflow: hidden; padding: 48px 20px; } /* 源 px-5 py-12 */
.culture-ghost { /* lg+ 巨字水印（源 L34-39，装饰纯度不需要 token 化的一次性 rgba） */
  position: absolute; right: -3%; top: 2%; z-index: 0; display: none;
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(240px, 30vw, 460px); line-height: 0.8;
  color: rgba(255,56,0,0.035); user-select: none; pointer-events: none;
}
.culture-inner { position: relative; z-index: 10; width: 100%; max-width: var(--container); margin-inline: auto; } /* v3'（20260902）回居中轨 */

/* 区块眉（源 L43-55） */
.culture-eyebrow { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.culture-eyebrow-tag {
  display: flex; align-items: center; gap: 12px; color: var(--gray-1);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
}
.culture-eyebrow-bar { width: 32px; height: 2px; flex-shrink: 0; background: var(--red); }
.culture-eyebrow-side {
  display: none; color: var(--gray-2); font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
}

/* 价值观双布局（源 L58-103）：手机竖排 values-m / 桌面横排 values-d，768 断点互斥反转 */
.culture-values { margin-bottom: 56px; }
.culture-values-m { display: flex; flex-direction: column; }
.culture-val { /* 手机竖排逐值行（源 L60-75）：x:-24 入场走 .reveal --dx */
  font-weight: 700; line-height: 0.92; color: var(--ink);
  font-size: clamp(78px, 22vw, 110px); letter-spacing: -0.03em;
  padding-block: 12px; border-bottom: 1px solid rgba(21,19,15,0.07);
}
.culture-val:last-child { border-bottom: 0; }
.culture-val-head { color: var(--red); }
.culture-values-d { display: none; }
.culture-val-d-item { display: flex; align-items: baseline; }
.culture-val-d { /* 桌面横排（源 L77-103）：y:40 入场走 .reveal --dy */
  font-weight: 700; line-height: 1; color: var(--ink); white-space: nowrap;
  font-size: clamp(38px, 8.2vw, 132px); letter-spacing: -0.02em;
}
.culture-dot { /* 值间红点（源 L91-100）：scale 0→1 入场走 .reveal --sc */
  width: 10px; height: 10px; border-radius: 50%; background: var(--red);
  margin: 0 24px 20px; flex-shrink: 0;
}
.culture-creed { /* 宣言（源 L104-113） */
  margin-top: 32px; max-width: 560px; color: var(--gray-2);
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(15px, 1.5vw, 19px); line-height: 1.9;
}

/* 品牌影片海报位（源 L117-168；.playing = 起播态，culture-video.js 切换） */
.culture-film {
  position: relative; width: 100%; border-radius: 20px; overflow: hidden;
  aspect-ratio: 16 / 9; box-shadow: 0 24px 64px -32px rgba(21,19,15,0.35);
}
.culture-video-el, .culture-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.culture-video-el { opacity: 0; }
.culture-film.playing .culture-video-el { opacity: 1; }
.culture-film.playing .culture-film-cover { display: none; } /* 源 !playing 条件卸载的等价 */
.culture-poster { transition: transform 1.4s var(--ease); } /* 源 group-hover:scale-105 duration-[1.4s] */
.culture-film:hover .culture-poster { transform: scale(1.05); }
.culture-shade { /* 上下压暗渐变（源 L137） */
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21,19,15,0.35) 0%, rgba(21,19,15,0.05) 35%, rgba(21,19,15,0.55) 100%);
}
.culture-play { /* 整卡点击区（源 L140） */
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  padding: 0; border: 0; background: none; cursor: pointer;
}
.culture-play-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.culture-pulse { /* 无限脉冲环（源 L142-147：scale 1→1.6 / opacity .6→0，2.2s ease-out） */
  position: absolute; width: 88px; height: 88px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  animation: culture-pulse 2.2s ease-out infinite;
}
.culture-play-core {
  display: flex; align-items: center; justify-content: center;
  width: 88px; height: 88px; border-radius: 50%; background: var(--red);
  transition: transform 0.3s var(--ease); /* 源 group-hover:scale-110 */
}
.culture-film:hover .culture-play-core { transform: scale(1.1); }
.culture-play-core svg { width: 28px; height: 28px; margin-left: 4px; color: #fff; } /* 源 Play w-7 h-7 ml-1 */
.culture-chip { /* 左上角标（源 L155-158） */
  position: absolute; top: 24px; left: 28px; display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.9); font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
}
.culture-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.culture-chrome-b { /* 底部信息条（源 L159-165） */
  position: absolute; right: 28px; bottom: 24px; left: 28px;
  display: flex; align-items: flex-end; justify-content: space-between; color: #fff;
}
.culture-film-title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(22px, 2.6vw, 34px); }
.culture-film-sub {
  margin-top: 6px; color: rgba(255,255,255,0.7); font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.06em;
}
.culture-film-dur { color: rgba(255,255,255,0.85); font-family: var(--font-num); font-weight: 700; font-size: 22px; }
@keyframes culture-pulse { from { transform: scale(1); opacity: 0.6; } to { transform: scale(1.6); opacity: 0; } }

/* 使命/愿景双栏（源 L170-208；分隔线 0.14 介于 --line-ink/-strong 之间，直译一次性值） */
.culture-mv { display: grid; grid-template-columns: 1fr; margin-top: 64px; border-top: 1px solid rgba(21,19,15,0.14); }
.culture-mv-cell { padding-block: 28px; }
.culture-mv-label { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.culture-mv-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.culture-mv-cn { font-family: var(--font-serif); font-weight: 600; font-size: 16px; }
.culture-mv-en {
  color: var(--gray-2); font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
}
.culture-mv-head { font-weight: 700; color: var(--ink); line-height: 1.2; letter-spacing: -0.01em; font-size: clamp(24px, 2.8vw, 42px); }
.culture-mv-head--vision { line-height: 1.5; color: #2A2620; }
.culture-mv-cell--vision { border-top: 1px solid rgba(21,19,15,0.14); } /* 手机档下分隔；≥768 换左线 */

/* ≥768：双布局反转 + 版式升档（源 md:* 直译）+ 影片位 16:7 */
@media (min-width: 768px) {
  .culture { padding: 80px 40px; }
  .culture-eyebrow { margin-bottom: 56px; }
  .culture-eyebrow-side { display: block; }
  .culture-values { margin-bottom: 96px; }
  .culture-values-m { display: none; }
  .culture-values-d { display: flex; flex-wrap: nowrap; align-items: baseline; white-space: nowrap; }
  .culture-creed { margin-top: 40px; }
  .culture-film { aspect-ratio: 16 / 7; } /* master §五 桌面档（源 L123 双端 16/9，偏差留证） */
  .culture-mv { grid-template-columns: 1fr 1fr; margin-top: 96px; }
  .culture-mv-cell { padding-block: 36px; padding-right: 48px; }
  .culture-mv-cell--vision { border-top: 0; border-left: 1px solid rgba(21,19,15,0.14); padding-left: 48px; }
}

/* ≥1024：左右留白升档（源 lg:px-24）+ 巨字水印显形（源 hidden lg:block） */
@media (min-width: 1024px) {
  .culture { padding-inline: 96px; }
  .culture-eyebrow { margin-left: -2.75rem; } /* 固定悬挂；space-between 右缘不动（20260902 v3'） */
  .culture-ghost { display: block; }
}

/* culture 动效降级（脉冲环纯装饰直接隐藏；海报缩放/按钮放大停用；.reveal 走通用降级段） */
@media (prefers-reduced-motion: reduce) {
  .culture-pulse { animation: none; opacity: 0; }
  .culture-poster, .culture-play-core { transition: none; }
  .culture-film:hover .culture-poster { transform: none; }
  .culture-film:hover .culture-play-core { transform: none; }
}

/* ============ journey 创始人历程时间轴（journey.tsx 503 行翻译，T8）============
 * 源常量 L90-98：CARD_W=260 SPINE_Y=220 H_ABOVE=200 H_BELOW=190 GAP=48 DOT 16(milestone)/9(其余)；
 * canvas=totalW(3744)+180+192=4116×470、padding 96。几何封闭式（12 卡静态推导）：
 * above 卡 top=-dotd、below=240+dotd；连接线恒 20px；dot 中心 x=130；年份 above=234/below=184。
 * 偏差登记见 plans/task-20260831-t8-journey-plan.md（h2 语义提升/hover·active CSS 分层等 6 项）。 */
.jrn { position: relative; width: 100%; padding-block: 48px; overflow: hidden; } /* 源 py-12 */
.jrn-glow {
  position: absolute; pointer-events: none; left: 25%; top: 5%; width: 60%; height: 80%;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,56,0,0.045) 0%, transparent 60%);
  filter: blur(50px);
}

/* header（源 L184-219）：眉题 + 箭头；行宽并入 --container（原 1220 局部备案撤销，20260901 左轨对齐——箭头与 rail 右缘对齐） */
.jrn-header { padding-inline: 32px; } /* 源 px-8；md/lg 与手机版差异见 mobile-polish.css */
.jrn-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: var(--container); margin-inline: auto; } /* v3'（20260902）回居中轨 */
.jrn-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.jrn-eyebrow-bar { width: 32px; height: 2px; flex-shrink: 0; background: var(--red); }
.jrn-eyebrow-text { /* 源 span→h2 语义提升：h1-h3 层级正确（12 卡 h3 的父级），字号字重锁定视觉零变化 */
  font-family: var(--font-mono); font-size: 12px; font-weight: 400; line-height: 1;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gray-1);
}
.jrn-arrows { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.jrn-arrow {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(21,19,15,0.2); background: transparent;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.jrn-arrow svg { width: 16px; height: 16px; color: var(--gray-1); transition: transform 0.3s ease; }
.jrn-arrow:hover { border-color: var(--ink); }
.jrn-arrow--prev:hover svg { transform: translateX(-2px); }
.jrn-arrow--next { border: 0; background: var(--red); }
.jrn-arrow--next svg { color: #fff; }
.jrn-arrow--next:hover { transform: scale(1.05); }
.jrn-arrow--next:active { transform: scale(0.95); }
.jrn-arrow--next:hover svg { transform: translateX(2px); }

/* rail 滚动容器（源 L221-243）：4116px canvas 封闭于此 → 无页面级横滚（section overflow:hidden 双保险） */
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; } /* 源 index.css:37-44 唯一手写 CSS 全译 */
.no-scrollbar::-webkit-scrollbar { display: none; }
.jrn-rail {
  margin-top: 28px; overflow-x: auto; user-select: none; cursor: grab;
  scroll-snap-type: x proximity; /* 源照译：卡未设 snap-align，惰性无效果，留证 */
  -webkit-overflow-scrolling: touch;
}
.jrn-rail:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.jrn-rail.grabbing { cursor: grabbing; }
.jrn-canvas { position: relative; width: 4116px; height: 470px; padding-inline: 96px; }
.jrn-spine {
  position: absolute; left: 0; right: 0; top: 220px; height: 1px; transform-origin: left;
  background: linear-gradient(90deg, transparent 0%, rgba(21,19,15,0.18) 3%, rgba(21,19,15,0.18) 97%, transparent 100%);
}

/* 12 卡：--i 驱动 left/stagger；--dotd=圆点直径（ms 16/其余 9）；reveal 参数（--dy/--dur/--d）承接源 L283-285 */
.jrn-item { position: absolute; top: 0; left: calc(96px + var(--i) * 308px); width: 260px; --dotd: 9px; --dur: 0.7s; --d: calc(0.2s + var(--i) * 0.055s); }
.jrn-item--ms { --dotd: 16px; }
.jrn-card {
  position: absolute; left: 0; width: 260px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px 18px;
  border-radius: 14px; border: 1px solid rgba(21,19,15,0.09); background: #FDFCF9; overflow: hidden; cursor: default;
  box-shadow: 0 6px 20px -8px rgba(21,19,15,0.1);
  transition: border-color 0.35s ease, box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.jrn-item--ab .jrn-card { top: calc(-1 * var(--dotd)); height: 200px; }
.jrn-item--bl .jrn-card { top: calc(240px + var(--dotd)); height: 190px; }
.jrn-item--pd .jrn-card { background: #FAFAF7; }
.jrn-item--ms .jrn-card { background: linear-gradient(150deg, #FFFDF9 0%, #FFF0E4 100%); border-color: rgba(255,56,0,0.22); }
.jrn-bar { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); transform-origin: left; }
.jrn-shimmer {
  position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.4s ease;
  background: linear-gradient(135deg, rgba(21,19,15,0.025) 0%, transparent 60%);
}
.jrn-item--ms .jrn-shimmer { background: linear-gradient(135deg, rgba(255,56,0,0.04) 0%, transparent 60%); }
.jrn-ghost {
  position: absolute; top: -14px; right: -4px; pointer-events: none; user-select: none;
  font-family: var(--font-num); font-weight: 700; font-size: 128px; line-height: 1;
  color: rgba(21,19,15,0.04); transition: color 0.35s ease;
}
.jrn-item--ms .jrn-ghost { color: rgba(255,56,0,0.07); }
.jrn-badge { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.jrn-badge-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; background: var(--gray-2); transition: transform 0.3s ease; }
.jrn-item--pd .jrn-badge-dot { background: var(--gray-1); }
.jrn-item--ms .jrn-badge-dot { background: var(--red); }
.jrn-badge-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-1); }
.jrn-item--ms .jrn-badge-label { color: var(--red); }
.jrn-title { font-family: var(--font-serif); font-weight: 500; font-size: 14px; line-height: 1.44; color: var(--ink); }
.jrn-body { margin-top: 7px; font-size: 12px; line-height: 1.7; color: var(--gray-1); }
.jrn-line { position: absolute; left: 129.5px; width: 1px; height: 20px; opacity: 0.7; transition: opacity 0.35s ease; }
.jrn-item--ab .jrn-line { top: calc(200px - var(--dotd)); transform-origin: bottom; background: linear-gradient(to bottom, rgba(21,19,15,0.25), rgba(21,19,15,0.04)); }
.jrn-item--bl .jrn-line { top: calc(220px + var(--dotd)); transform-origin: top; background: linear-gradient(to top, rgba(21,19,15,0.25), rgba(21,19,15,0.04)); }
.jrn-item--ms.jrn-item--ab .jrn-line { background: linear-gradient(to bottom, rgba(255,56,0,0.5), rgba(255,56,0,0.08)); }
.jrn-item--ms.jrn-item--bl .jrn-line { background: linear-gradient(to top, rgba(255,56,0,0.5), rgba(255,56,0,0.08)); }
.jrn-dot {
  position: absolute; left: calc(130px - var(--dotd) / 2); top: calc(220px - var(--dotd) / 2);
  width: var(--dotd); height: var(--dotd); border-radius: 50%;
  background: #fff; border: 1.5px solid rgba(21,19,15,0.3); z-index: 2; transition: box-shadow 0.35s ease;
}
.jrn-item--ms .jrn-dot { background: var(--red); border: 0; box-shadow: 0 0 0 4px rgba(255,56,0,0.14); }
.jrn-year {
  position: absolute; left: 0; width: 260px; text-align: center;
  font-family: var(--font-num); font-weight: 700; font-size: 13px; letter-spacing: 0.03em; line-height: 1;
  color: var(--gray-1); transition: color 0.3s ease;
}
.jrn-item--ab .jrn-year { top: 234px; }
.jrn-item--bl .jrn-year { top: 184px; }
.jrn-item--ms .jrn-year { font-size: 16px; color: var(--red); }

/* 活跃档（journey.js .is-active ≈ 源 activeIdx 中影，L296-297）；hover 档选择器加 .jrn 前缀压 specificity */
.jrn-item.is-active .jrn-card { box-shadow: 0 16px 40px -14px rgba(21,19,15,0.16); }
.jrn-item--ms.is-active .jrn-card { box-shadow: 0 16px 40px -14px rgba(255,56,0,0.18); }
.jrn .jrn-item:hover .jrn-card { transform: translateY(-5px); box-shadow: 0 28px 56px -16px rgba(21,19,15,0.22); border-color: rgba(21,19,15,0.2); }
.jrn .jrn-item--bl:hover .jrn-card { transform: translateY(5px); }
.jrn .jrn-item--ms:hover .jrn-card { box-shadow: 0 28px 56px -16px rgba(255,56,0,0.28); border-color: rgba(255,56,0,0.45); }
.jrn .jrn-item:hover .jrn-shimmer { opacity: 1; }
.jrn .jrn-item:hover .jrn-badge-dot { transform: scale(1.3); }
.jrn .jrn-item:hover .jrn-line { opacity: 1; }
.jrn .jrn-item--ms:hover .jrn-dot { box-shadow: 0 0 0 7px rgba(255,56,0,0.18), 0 0 0 14px rgba(255,56,0,0.07); }
.jrn .jrn-item:hover .jrn-year { color: var(--ink); }
.jrn .jrn-item--ms:hover .jrn-year { color: var(--red); }

/* footer：提示 + 12 进度点（源 L481-500；1220 备案撤销并入 --container，左钉后内容轨与 header 一致） */
.jrn-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 20px; padding-inline: 32px; max-width: none; margin-inline: 0;
}
.jrn-hint { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-2); }
.jrn-prog { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.jrn-prog-dot { width: 4px; height: 4px; border-radius: 2px; background: rgba(21,19,15,0.12); transition: width 0.4s var(--ease), background-color 0.4s var(--ease); }
.jrn-prog-dot.active { width: 20px; background: var(--red); }

/* mount 入场（源 motion animate 一次性；data-js 门 + --i 继承编排；reduced-motion 见下方显式关停块） */
html[data-js="on"] .jrn-spine { animation: jrn-draw 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }
html[data-js="on"] .jrn-bar { animation: jrn-draw 0.7s var(--ease) calc(0.4s + var(--i) * 0.055s) both; }
html[data-js="on"] .jrn-line { animation: jrn-grow 0.5s var(--ease) calc(0.35s + var(--i) * 0.055s) both; }
html[data-js="on"] .jrn-dot { animation: jrn-pop 0.4s var(--ease) calc(0.45s + var(--i) * 0.055s) both; }
@keyframes jrn-draw { from { transform: scaleX(0); } }
@keyframes jrn-grow { from { transform: scaleY(0); } }
@keyframes jrn-pop { from { transform: scale(0); } }

/* 动效统一（T9）：mount `both` 填充 + delay 残留——L153 全局档只压 duration 不清 delay，
   reduced-motion 下元素滞留 scaleX(0) 初态约 1s 后瞬现；显式关停 + 终态直出 */
@media (prefers-reduced-motion: reduce) {
  html[data-js="on"] .jrn-spine, html[data-js="on"] .jrn-bar,
  html[data-js="on"] .jrn-line, html[data-js="on"] .jrn-dot { animation: none; transform: none; }
}

/* ≥768：区块留白升档（源 md:py-16 / md:px-16） */
@media (min-width: 768px) {
  .jrn { padding-block: 64px; }
  .jrn-header, .jrn-footer { padding-inline: 64px; }
}

/* ≥1024：左右留白终档（源 lg:px-24）+ 眉题悬挂挂轨（52px 对齐 hero，20260901） */
@media (min-width: 1024px) {
  .jrn-header { padding-inline: 96px; }
  .jrn-footer { padding-inline: calc(96px + max(0px, calc(50% - 756px))); } /* v3'：footer 包含块=section 满宽，756=660+96——内容与 header 内容轨对齐（20260902） */
  .jrn-eyebrow { margin-left: -2.75rem; }
}

/* ══ org 组织架构（org.tsx:53-236 逐行翻译；<768/768-1023 打磨档见 mobile-polish.css）══ */
.org { position: relative; width: 100%; padding: 56px 32px; overflow: hidden; }
.org-ambient {
  position: absolute; left: -5%; top: 10%; width: 50%; height: 60%; pointer-events: none;
  background: radial-gradient(circle at 30% 40%, rgba(255,56,0,0.04) 0%, transparent 60%);
  filter: blur(40px);
}
.org-inner { position: relative; z-index: 10; width: 100%; max-width: var(--container); margin-inline: auto; } /* v3'（20260902）回居中轨 */

/* header：1fr → ≥1024 1fr 1fr items-end（源 lg:grid-cols-[1fr_1fr] gap-24）*/
.org-header { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: end; margin-bottom: 40px; }
.org-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 32px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: #6B6459;
}
.org-eyebrow-bar { width: 32px; height: 2px; flex-shrink: 0; background: var(--red); }
.org-title { font-weight: 700; font-size: clamp(34px, 4.2vw, 68px); line-height: 1.18; letter-spacing: -0.01em; color: #15130F; }
.org-title-red { color: var(--red); }
.org-intro {
  font-family: var(--font-serif); font-weight: 400; font-size: clamp(14px, 1.2vw, 17px);
  line-height: 2.05; letter-spacing: 0.01em; color: #6B6459;
}

/* 布局：顶卡 + 连接扇 + 2×2 子卡（源 flex flex-col gap-3）*/
.org-layout { display: flex; flex-direction: column; gap: 12px; }
.org-top {
  position: relative; overflow: hidden; border-radius: 16px;
  display: flex; flex-direction: column; gap: 32px; padding: 32px;
  background: linear-gradient(150deg, #FFFDF9 0%, #FFF0E4 100%);
  border: 1px solid rgba(255,56,0,0.2);
}
.org-top-bar { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); }
.org-ghost {
  position: absolute; font-family: var(--font-num); font-weight: 700; line-height: 1;
  user-select: none; pointer-events: none;
}
.org-ghost--top { right: 32px; top: 50%; transform: translateY(-50%); font-size: 160px; color: rgba(255,56,0,0.05); display: none; }
.org-ghost--node { right: 20px; bottom: 12px; font-size: 96px; color: rgba(21,19,15,0.035); }
.org-icon { display: flex; align-items: center; justify-content: center; border-radius: 12px; flex-shrink: 0; }
.org-icon svg { display: block; }
.org-icon--top { width: 56px; height: 56px; background: rgba(255,56,0,0.08); border: 1px solid rgba(255,56,0,0.2); color: var(--red); }
.org-icon--top svg { width: 24px; height: 24px; }
.org-icon--node {
  width: 44px; height: 44px; background: rgba(21,19,15,0.06); border: 1px solid rgba(21,19,15,0.1); color: #6B6459;
  transition: background-color 0.3s var(--ease);
}
.org-icon--node svg { width: 20px; height: 20px; transition: color 0.3s var(--ease); }
.org-body { flex: 1; }
.org-meta { display: flex; align-items: center; margin-bottom: 8px; font-family: var(--font-mono); text-transform: uppercase; }
.org-meta--top { gap: 12px; }
.org-meta--node { gap: 8px; }
.org-idx--top { font-size: 11px; letter-spacing: 0.22em; color: var(--red); }
.org-idx--node { font-size: 10px; letter-spacing: 0.22em; color: var(--gray-2); }
.org-meta-line { height: 1px; }
.org-meta--top .org-meta-line { width: 16px; background: rgba(255,56,0,0.3); }
.org-meta--node .org-meta-line { width: 12px; background: rgba(21,19,15,0.15); }
.org-en--top { font-size: 11px; letter-spacing: 0.14em; color: var(--gray-2); }
.org-en--node { font-size: 10px; letter-spacing: 0.12em; color: var(--gray-2); }
.org-label { font-family: var(--font-serif); font-weight: 600; color: #15130F; }
.org-label--top { font-size: clamp(20px, 2.2vw, 30px); line-height: 1.2; }
.org-label--node { font-size: clamp(16px, 1.6vw, 22px); line-height: 1.3; transition: color 0.3s var(--ease); }
.org-desc--top { margin-top: 12px; font-size: 14px; line-height: 1.85; color: #6B6459; }
.org-desc--node { margin-top: 12px; padding-right: 24px; font-size: 13.5px; line-height: 1.85; color: var(--gray-2); }

/* 连接扇（源 connector：stem 1×16 + 4 扇线 gap-1.5，rotate 内联）*/
.org-connector { display: flex; flex-direction: column; align-items: center; gap: 4px; padding-block: 4px; }
.org-conn-stem { width: 1px; height: 16px; background: rgba(21,19,15,0.18); }
.org-conn-fan { display: flex; align-items: center; gap: 6px; }
.org-conn-fan span { width: 1px; height: 16px; background: rgba(21,19,15,0.12); }

/* 子卡 2×2（≥768）+ hover 三联动（顶线 scaleX / 图标反白 / 标题变红）*/
.org-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.org-node {
  position: relative; overflow: hidden; border-radius: 16px;
  display: flex; gap: 24px; padding: 28px;
  background: #FDFCF9; border: 1px solid rgba(21,19,15,0.1);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.org-node-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red);
  transform-origin: left; transform: scaleX(0); transition: transform 0.5s var(--ease);
}
.org-node:hover .org-node-line { transform: scaleX(1); }
.org-node:hover .org-icon--node { background: var(--red); }
.org-node:hover .org-icon--node svg { color: #fff; }
.org-node:hover .org-label--node { color: var(--red); }
/* 入场 transition 合流：通用 .reveal（含 --d delay）整属性覆盖本卡 hover 过渡，
   补同门控高特异性规则并列声明（services 态机同源思路；本卡无 hover transform 免切档）*/
html[data-js="on"] .org-node.reveal {
  transition: opacity var(--dur, 1s) var(--ease) var(--d, 0s),
              transform var(--dur, 1s) var(--ease) var(--d, 0s),
              background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}

/* ≥768：顶卡横排 / 子卡双列 / 留白升档（源 md: 档）*/
@media (min-width: 768px) {
  .org { padding: 80px 64px; }
  .org-header { margin-bottom: 56px; }
  .org-top { flex-direction: row; align-items: center; padding: 40px 48px; }
  .org-grid { grid-template-columns: 1fr 1fr; }
  .org-node { padding: 32px; }
}

/* ≥1024：左右留白终档 + header 双栏 + 顶卡幽灵序号显形（源 lg: 档）*/
@media (min-width: 1024px) {
  .org { padding-inline: 96px; }
  .org-eyebrow { margin-left: -2.75rem; } /* 固定悬挂（20260902 v3'） */
  .org-header { grid-template-columns: 1fr 1fr; gap: 96px; }
  .org-ghost--top { display: block; }
}

/* ══ T9b i18n：抽屉语言切换入口 + EN 档排版微调 ══ */
.lang-switch--drawer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(21, 19, 15, 0.08);
}
.lang-switch--drawer .lang-btn { padding: 4px 2px; font-size: 15px; }
@media (min-width: 768px) { .lang-switch--drawer { display: none; } }

html[lang="en"] .step-char { font-size: 13px; letter-spacing: 0.01em; }
html[lang="en"] .step-en { display: none; }
html[lang="en"] .culture-mv-en { display: none; }

/* footer 法律链接（footer-compact：并入 footer-meta 行内，原独立行样式收敛为链接态）*/
.footer-legal {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--gray-2); text-decoration: underline; text-underline-offset: 4px;
}
.footer-legal:hover, .footer-legal:focus-visible { color: var(--red); }

/* ══ privacy（/privacy 隐私政策页；流式条款排版，无固定宽元素）══ */
.prv { max-width: 760px; margin-inline: auto; padding: 72px 20px 96px; }
@media (min-width: 768px) { .prv { padding: 96px 40px 120px; } }
.prv-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.prv-eyebrow-line { width: 32px; height: 2px; background: var(--red); }
.prv-eyebrow > span:last-child {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--gray-1); text-transform: uppercase;
}
.prv-h1 { font-family: var(--font-display); font-size: clamp(34px, 5vw, 52px); color: var(--ink); }
.prv-date { margin-top: 14px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--gray-2); }
.prv-intro {
  margin-top: 28px; padding-left: 14px; border-left: 2px solid var(--red);
  font-size: 15.5px; line-height: 1.9; color: var(--ink);
}
.prv-h2 { margin-top: 2.6em; font-size: 19px; font-weight: 700; color: var(--ink); }
.prv-p { margin-top: 12px; font-size: 15px; line-height: 1.9; color: var(--gray-1); }
@media (min-width: 768px) { .prv-p { font-size: 15.5px; } }
