/* ============================================================
   具象化阅读器 Concrete Reader — 落地页
   风格：Copacabana 复古度假海报（奶油底 + 暖黑描边 + 硬投影）
   令牌来源：.impeccable.md 设计令牌（唯一来源，直接抄色值）
   ============================================================ */

:root {
  /* 奶油层次 */
  --cream:    #FBF3DC;
  --cream-2:  #F4E9CE;
  --paper:    #FFFBEF;

  /* 暖黑 */
  --ink:      #2B2118;
  --ink-soft: #5C4F42;
  --ink-mute: #8A7B6A;
  --line:     #E4D6B8;

  /* 品牌色 */
  --orange:      #F9641E;
  --orange-deep: #D94F10;
  --orange-tint: #FFE0CC;
  --sun:         #F4C90E;
  --sun-tint:    #FCEFB8;
  --pink:        #F2B9DC;
  --pink-deep:   #DE7EBD;
  --pink-tint:   #FBE3F3;
  --peri:        #9DB2E8;
  --peri-deep:   #6B83CC;
  --peri-tint:   #E4EAF9;
  --lime:        #DDE08A;
  --lime-deep:   #9AA24B;
  --teal:        #3E8E83;
  --teal-tint:   #DFF0EA;

  /* 角色色板（§4，按 id 取色） */
  --c-thesis:     #F9641E;
  --c-subclaim:   #6B83CC;
  --c-evidence:   #DE7EBD;
  --c-background: #A89F8D;
  --c-conclusion: #3E8E83;

  /* 骨架 */
  --bd: 2px solid var(--ink);
  --shadow-btn: 3px 3px 0 var(--ink);
  --shadow-card: 5px 5px 0 var(--ink);
  --r-pill: 999px;
  --r-card: 14px;
  --r-sm: 8px;

  /* 动效 */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 200ms;

  /* 字体 */
  --font-display-latin: "Caprasimo", "Noto Serif SC", Georgia, serif;
  --font-display: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  --font-hand: "Caveat", cursive;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;

  --maxw: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--sun); color: var(--ink); }

section { scroll-margin-top: 90px; }

/* ------------------------------------------------------------
   ① 跑马灯 ticker：橙底品牌带，✦ 分隔，无缝滚动
   ------------------------------------------------------------ */
.ticker {
  background: var(--orange);
  border-bottom: var(--bd);
  overflow: hidden;
  padding: 9px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-run 30s linear infinite;
}

.ticker-seq {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.ticker-seq i {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--paper);
  padding: 0 18px;
}

/* 跑马灯默认显示中文，隐藏英文 */
.ticker-seq i.en {
  display: none;
}

/* 英文模式下反转 */
html.lang-en .ticker-seq i.zh {
  display: none;
}
html.lang-en .ticker-seq i.en {
  display: inline;
  font-family: var(--font-display-latin);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.ticker-seq b {
  color: var(--sun);
  font-size: 12px;
  font-weight: 400;
}

@keyframes ticker-run {
  to { transform: translateX(-50%); }
}

/* ------------------------------------------------------------
   ② 导航
   ------------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
  background: var(--cream);
  border-bottom: var(--bd);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-flower {
  width: 34px;
  height: 34px;
  border: var(--bd);
  border-radius: 50%;
  background: var(--paper);
  padding: 3px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.02em;
}

/* 英文模式下品牌名用拉丁字体 */
html.lang-en .brand-name {
  font-family: var(--font-display-latin);
  font-size: 16px;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  transition: border-color var(--dur) var(--ease-out), background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}

.nav-links a:hover {
  border-color: var(--ink);
  background: var(--paper);
  transform: translate(-1px, -1px);
}

.nav .btn { margin-left: 8px; }

/* 语言切换按钮 */
.lang-toggle {
  margin-left: auto;
  margin-right: 8px;
  font-family: var(--font-display-latin);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border: var(--bd);
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  cursor: pointer;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
  white-space: nowrap;
}

.lang-toggle:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
  background: var(--sun-tint);
}

.lang-toggle:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}

.lang-toggle:focus-visible {
  outline: 2px solid var(--peri-deep);
  outline-offset: 2px;
}

/* ------------------------------------------------------------
   按钮（组件语言：胶囊 + 2px 描边 + 硬投影；hover 上浮 / active 下压）
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 13px 26px;
  border: var(--bd);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}

.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn:focus-visible {
  outline: 2px solid var(--peri-deep);
  outline-offset: 2px;
}

.btn-primary { background: var(--orange); color: var(--paper); }
.btn-primary:hover { background: var(--orange-deep); }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--paper); }

.btn-cream { background: var(--paper); color: var(--ink); }
.btn-cream:hover { background: var(--sun-tint); }

.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }

/* ------------------------------------------------------------
   通用：chip / kicker / 标题
   ------------------------------------------------------------ */
.chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 7px 16px;
  background: var(--pink);
  color: var(--ink);
  border: var(--bd);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-btn);
}

.kicker {
  font-family: var(--font-display-latin);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--orange-deep);
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 4.5vw, 42px);
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 14px;
}

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}

.hand {
  font-family: var(--font-hand);
  font-weight: 700;
  color: var(--orange-deep);
}

/* ------------------------------------------------------------
   ③ Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 24px clamp(64px, 9vw, 120px);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 8.5vw, 96px);
  line-height: 1.55;
  letter-spacing: 0.01em;
  margin: 22px 0 20px;
}

.hero-title .hl {
  display: inline-block;
  background: var(--sun);
  border: var(--bd);
  border-radius: var(--r-sm);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 0 0.12em;
  margin-right: 0.14em;
  transform: rotate(-1.5deg);
}

.hand {
  position: absolute;
  font-size: clamp(20px, 2.6vw, 30px);
  transform: rotate(-7deg);
  pointer-events: none;
}

.hero-title .hand {
  right: -8px;
  top: -18px;
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 13px;
  color: var(--ink-mute);
}

/* --- Hero 产品示意图（纯 HTML/CSS，贴在海报上的卡片） --- */
.hero-art {
  position: relative;
  display: flex;
  flex-direction: column;
}

.mock-panel {
  position: relative;
  z-index: 2;
  width: min(380px, 100%);
  margin-left: auto;
  background: var(--paper);
  border: var(--bd);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  transform: rotate(1.6deg);
  padding: 16px 18px 20px;
}

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

.mock-tabs {
  display: inline-flex;
  background: var(--cream-2);
  border: var(--bd);
  border-radius: var(--r-pill);
  padding: 3px;
  gap: 3px;
}

.mock-tabs span {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  color: var(--ink-soft);
}

.mock-tabs span.on {
  background: var(--paper);
  border-color: var(--ink);
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}

.mock-reload {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-mute);
  border: var(--bd);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  background: var(--paper);
}

.mock-summary {
  font-size: 12px;
  color: var(--ink-mute);
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}

.mock-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
}

.mock-list .lv1 { padding-left: 22px; }
.mock-list .lv2 { padding-left: 44px; }

.dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--ink-mute);
}

.c-thesis     { background: var(--c-thesis); }
.c-subclaim   { background: var(--c-subclaim); }
.c-evidence   { background: var(--c-evidence); }
.c-background { background: var(--c-background); }
.c-conclusion { background: var(--c-conclusion); }

.mock-claim b {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;
}

.mock-claim span {
  font-size: 11px;
  color: var(--ink-mute);
}

/* 书签拉手：呼应页内 FAB */
.mock-bookmark {
  position: absolute;
  right: -14px;
  top: 44px;
  width: 34px;
  height: 46px;
  background: var(--cream);
  border: var(--bd);
  border-radius: 8px 8px 8px 0;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 5px;
}

.mock-bookmark img { width: 100%; height: 100%; object-fit: contain; }

/* 缩略导图卡：文档流内叠住面板下缘，不遮内容 */
.mock-map {
  position: relative;
  z-index: 3;
  width: 240px;
  height: 168px;
  margin: -24px auto 0 0;
  background: var(--paper);
  border: var(--bd);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  transform: rotate(-2.4deg);
}

.mock-map-lines {
  position: absolute;
  inset: 8px 0 0 0;
  width: 100%;
  height: 150px;
}

.map-node {
  position: absolute;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 13px;
  border: var(--bd);
  border-radius: var(--r-pill);
  background: var(--paper);
}

.map-root {
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--paper);
}

.map-node.n1 { left: 16px;  bottom: 22px; background: var(--peri-tint); }
.map-node.n2 { left: 50%; bottom: 22px; transform: translateX(-50%); background: var(--pink-tint); }
.map-node.n3 { right: 16px; bottom: 22px; background: var(--teal-tint); }

/* --- 平面装饰：波浪（peri）/ 圆（sun、lime）/ 三角（pink） --- */
.deco { position: absolute; pointer-events: none; }
.deco svg { width: 100%; height: 100%; }

.deco-wave-hero { width: 150px; height: 30px; top: 9%;  left: 4%; }
.deco-sun-hero  { width: 54px;  height: 54px; bottom: 7%; right: 5%; }
.deco-lime-hero { width: 30px;  height: 30px; bottom: 14%; left: 45%; }
.deco-tri-hero  { width: 42px;  height: 38px; bottom: 10%; left: 6%; transform: rotate(-12deg); }

.deco-sun-art { width: 46px; height: 46px; top: -22px; right: 8%; z-index: 3; }
.deco-tri-art { width: 38px; height: 34px; top: 34%; left: -14px; transform: rotate(14deg); z-index: 3; }
.deco-wave-art { width: 120px; height: 24px; bottom: -34px; right: 10%; }

/* ------------------------------------------------------------
   ④ 特性区（错落，不同构）
   ------------------------------------------------------------ */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 24px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.feat-card {
  background: var(--paper);
  border: var(--bd);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 26px 26px 24px;
}

.feat-card.f2 { transform: translateY(26px) rotate(0.8deg); background: var(--sun-tint); }
.feat-card.f3 { transform: rotate(-0.6deg); }
.feat-card.f4 { transform: translateY(10px) rotate(0.5deg); background: var(--pink-tint); }

.feat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.feat-num {
  font-family: var(--font-display-latin);
  font-size: 30px;
  color: var(--orange);
  -webkit-text-stroke: 1px var(--ink);
  paint-order: stroke fill;
}

.feat-en {
  font-family: var(--font-display-latin);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
}

.feat-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

/* 特性小示意图 */
.feat-vis {
  background: var(--cream);
  border: var(--bd);
  border-radius: var(--r-sm);
  padding: 16px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}

.feat-vis .vl {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 10px;
  border-radius: var(--r-pill);
  background: var(--cream-2);
  border: 2px solid var(--ink);
}

.feat-vis .vl .dot { width: 10px; height: 10px; margin: 0 0 0 6px; }
.vl.w100 { width: 100%; } .vl.w90 { width: 90%; } .vl.w80 { width: 80%; } .vl.w60 { width: 60%; }
.vl.ind1 { margin-left: 20px; } .vl.ind2 { margin-left: 40px; }

.vis-map { padding: 10px; }
.vis-map svg { width: 100%; height: auto; }

.vis-para .pl {
  display: grid;
  grid-template-columns: 14px 1fr;
  grid-template-rows: repeat(2, 8px);
  column-gap: 8px;
  row-gap: 5px;
  align-items: center;
}

.vis-para .pl .dot { grid-row: 1 / 3; width: 11px; height: 11px; margin: 0; }

.bar {
  display: block;
  height: 8px;
  border-radius: var(--r-pill);
  background: var(--cream-2);
  border: 2px solid var(--ink);
}

.bar.w100 { width: 100%; } .bar.w90 { width: 90%; } .bar.w80 { width: 80%; }
.bar.w70 { width: 70%; } .bar.w60 { width: 60%; } .bar.w50 { width: 50%; }

.vis-focus .bar { width: 100%; }
.vis-focus .bar.dim { opacity: 0.38; border-color: var(--ink-mute); }
.vis-focus .bar.lit { background: var(--sun); }

.feat-more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 52px;
}

.more-chip {
  font-size: 13.5px;
  font-weight: 600;
  background: var(--paper);
  border: var(--bd);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-btn);
  padding: 9px 18px;
}

.more-chip b { color: var(--orange); margin-right: 6px; }

/* ------------------------------------------------------------
   ⑤ 三步用法
   ------------------------------------------------------------ */
#how { max-width: none; background: var(--cream-2); border-top: var(--bd); border-bottom: var(--bd); }
#how > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  margin-top: 44px;
}

.step {
  flex: 1;
  max-width: 300px;
  background: var(--paper);
  border: var(--bd);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 26px 22px 22px;
  text-align: center;
}

.step:nth-child(3) { transform: rotate(-0.8deg); }
.step:nth-child(5) { transform: rotate(0.8deg); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: var(--bd);
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--font-display-latin);
  font-size: 24px;
  margin-bottom: 14px;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  margin-bottom: 8px;
}

.step p { font-size: 14px; color: var(--ink-soft); }

.step-arrow {
  align-self: center;
  width: 40px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   ⑥ 五色角色图例
   ------------------------------------------------------------ */
.legend {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.role-card {
  background: var(--paper);
  border: var(--bd);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 22px 16px 18px;
  text-align: center;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.role-card:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--ink);
}

.role-dot {
  display: inline-block;
  width: 34px;
  height: 34px;
  border: var(--bd);
  border-radius: 50%;
  margin-bottom: 12px;
}

.role-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
}

.role-en {
  display: block;
  font-family: var(--font-display-latin);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin: 4px 0 10px;
}

.role-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

/* ------------------------------------------------------------
   ⑦ 安装 CTA + footer
   ------------------------------------------------------------ */
.install {
  background: var(--orange);
  border-top: var(--bd);
  border-bottom: var(--bd);
  padding: clamp(64px, 9vw, 110px) 24px;
  text-align: center;
}

.install-inner { position: relative; max-width: 720px; margin: 0 auto; }

.install h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 34px;
}

.install-hand {
  position: absolute;
  top: -30px;
  right: 4%;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--sun);
  transform: rotate(-6deg);
}

.install-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 30px;
}

.install-facts li {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--paper);
}

.install-facts li::before {
  content: "✦";
  color: var(--sun);
  margin-right: 8px;
}

.footer {
  padding: 40px 24px 32px;
  background: var(--cream);
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-tag {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 13.5px;
  font-weight: 600;
}

.footer-links a { border-bottom: 2px solid transparent; }
.footer-links a:hover { border-bottom-color: var(--orange); color: var(--orange-deep); }

.footer-copy {
  font-size: 12.5px;
  color: var(--ink-mute);
  margin-top: 6px;
}

.footer-copy .en {
  font-family: var(--font-display-latin);
  letter-spacing: 0.12em;
}

/* ------------------------------------------------------------
   滚动入场 reveal（IntersectionObserver 加 .is-in，错峰 --d）
   仅在 JS 可用时隐藏初始态，无 JS 内容直出
   ------------------------------------------------------------ */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 480ms var(--ease-out), transform 480ms var(--ease-out);
  transition-delay: var(--d, 0s);
}

html.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* 错落卡片的自带位移要在 reveal 结束后保留：用更高优先级还原 */
html.js .feat-card.reveal.is-in.f2 { transform: translateY(26px) rotate(0.8deg); }
html.js .feat-card.reveal.is-in.f3 { transform: rotate(-0.6deg); }
html.js .feat-card.reveal.is-in.f4 { transform: translateY(10px) rotate(0.5deg); }
html.js .step.reveal.is-in:nth-child(3) { transform: rotate(-0.8deg); }
html.js .step.reveal.is-in:nth-child(5) { transform: rotate(0.8deg); }

/* ------------------------------------------------------------
   响应式
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { margin-top: 26px; }
  .mock-panel { margin: 0 auto; }
  .mock-map { margin: -40px auto 0; }
  .hero-title .hand { right: 0; }
  .legend { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav { gap: 12px; padding: 10px 16px; }
  .lang-toggle { margin-left: auto; }
  .nav .btn { margin-left: 4px; }
  .brand-en { display: none; }

  .feat-grid { grid-template-columns: 1fr; }
  .feat-card.f2, .feat-card.f3, .feat-card.f4 { transform: none; }
  html.js .feat-card.reveal.is-in.f2,
  html.js .feat-card.reveal.is-in.f3,
  html.js .feat-card.reveal.is-in.f4 { transform: none; }

  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 340px; width: 100%; }
  .step-arrow { transform: rotate(90deg); }

  .legend { grid-template-columns: repeat(2, 1fr); }
  .deco-lime-hero, .deco-tri-hero { display: none; }
  .deco-wave-hero { top: 4%; }
  .deco-sun-hero { width: 40px; height: 40px; bottom: 4%; }
}

@media (max-width: 480px) {
  .hero { padding-left: 18px; padding-right: 18px; }
  .section { padding-left: 18px; padding-right: 18px; }
  .hero-cta .btn { width: 100%; }
  .legend { grid-template-columns: 1fr 1fr; gap: 12px; }
  .role-card { padding: 18px 12px 14px; }
  .mock-map { width: 210px; height: 158px; }
  .install-hand { right: 0; top: -26px; }
  .ticker-seq i { font-size: 12.5px; padding: 0 12px; }
}

/* ------------------------------------------------------------
   减少动态：ticker 静止、reveal 直出、锚点不滚动
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .nav-links a, .role-card { transition: none; }
}
