﻿/* ============================================================
   STARROAD 官网 - 设计系统
   依据「首页页面设计稿」提取的规范：
   底色 #10092A / 卡片 #222247 #1A1B3C / 主紫 #6B57FF / 点缀绿 #54EF58
   ============================================================ */

:root {
  --bg: #10092a;
  --bg-deep: #08000d;
  --card: #222247;
  --card-2: #1a1b3c;
  --card-3: #24183e;
  --primary: #6b57ff;
  --primary-hover: #8575ff;
  --primary-soft: rgba(107, 87, 255, 0.16);
  --green: #54ef58;
  --text: #f4f4ff;
  --text-dim: #b8b9d5;
  --text-muted: #85859d;
  --line: rgba(184, 185, 213, 0.14);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --container: 1500px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC",
    "Helvetica Neue", Helvetica, Arial, "Hiragino Sans", sans-serif;
  background: var(--bg);
  background-image: url("../img/backgrounds/page-bg.png");
  background-position: top center;
  background-size: 1920px auto;
  background-repeat: no-repeat;
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.lang-en {
  font-family: Poppins, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

body.lang-zh {
  font-family: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body.lang-jp {
  font-family: "Noto Sans JP", "Source Han Sans JP", "Hiragino Sans", "PingFang SC", sans-serif;
}

.section,
.hero,
.site-footer,
.placeholder {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head .eyebrow {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--primary);
  border: 1px solid rgba(107, 87, 255, 0.45);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  margin-bottom: 18px;
  background: var(--primary-soft);
}

.section-head h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.25;
}

.section-head h2 .accent {
  color: var(--primary);
}

.section-head h2 .hl,
.logos-head .hl,
.cta-box h2 .hl,
.case-cta h2 .hl,
.creator-text h3 .hl {
  color: var(--primary);
}

.cta-box h2 .starroad {
  color: #ffffff;
}

.section-head .subtitle {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--text-dim);
  font-size: clamp(15px, 1.3vw, 18px);
}

/* “为什么选择 STARROAD”副标题：中文单行，英文/日文显示为 2 行 */
body.lang-zh #why .section-head .subtitle {
  white-space: nowrap;
  max-width: none;
}

@media (max-width: 1080px) {
  body.lang-zh #why .section-head .subtitle {
    white-space: normal;
    max-width: 760px;
  }
}

body.lang-en #why .section-head .subtitle,
body.lang-jp #why .section-head .subtitle {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  max-width: 860px;
}

.section-head .global-story-line {
  white-space: normal;
  max-width: none;
  text-align: center;
}

#global .section-head {
  margin-bottom: 10px;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 38px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(107, 87, 255, 0.35);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(107, 87, 255, 0.45);
}

.btn-ghost {
  border: 1px solid rgba(107, 87, 255, 0.55);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 46px;
  font-size: 17px;
}

/* ---------- 顶部导航 ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: url("../img/nav-bg.jpg") center / cover no-repeat, rgba(8, 0, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(107, 87, 255, 0.12);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 80px;
}

.brand img {
  height: 38px;
  width: auto;
}

.main-nav {
  margin-left: 150px;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav > ul > li > a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  color: var(--text-dim);
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  color: #fff;
  background: rgba(107, 87, 255, 0.14);
}

.nav-service-btn .caret {
  font-size: 15px;
  margin-left: 3px;
  line-height: 1;
  transition: transform 0.22s;
}

.has-dropdown.open .nav-service-btn .caret {
  transform: rotate(180deg);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: #161434;
  border: 1px solid rgba(107, 87, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  box-shadow: var(--shadow);
}

.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text-dim);
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}

.dropdown a:hover {
  background: rgba(107, 87, 255, 0.16);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.lang-select {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 117px;
  height: 31px;
  padding: 0 10px;
  background: url("../img/icons/lang-btn.png") center / 100% 100% no-repeat;
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  line-height: 1;
}

.lang-btn .lang-current {
  color: #ffffff;
}

/* 头部「联系我们」按钮与语言切换按钮同尺寸 */
.header-actions .btn-primary.btn-sm {
  height: 31px;
  min-width: 117px;
  padding: 0 10px;
  line-height: 1;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 110px;
  background: #161434;
  border: 1px solid rgba(107, 87, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: var(--shadow);
  z-index: 130;
}

.lang-select.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--text-dim);
  border-radius: 9px;
  transition: background 0.2s, color 0.2s;
}

.lang-menu a:hover {
  color: #fff;
  background: rgba(107, 87, 255, 0.16);
}

.lang-menu a.active {
  color: #fff;
  background: rgba(107, 87, 255, 0.26);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(107, 87, 255, 0.35);
  border-radius: 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

/* ---------- 首屏 Hero ---------- */
.hero {
  min-height: 95vh;
  padding: 130px 0 130px;
  text-align: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-tag-row {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 18px;
  letter-spacing: 2px;
}

.hero-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(107, 87, 255, 0.55);
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 1px;
  max-width: 1080px;
  margin: 0 auto;
}

.hero h1 .part-b {
  color: var(--green);
}

.hero-body {
  max-width: 840px;
  margin: 28px auto 0;
  color: var(--text-dim);
  font-size: clamp(15px, 1.3vw, 18px);
}

.hero-cta {
  margin-top: 44px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 90px auto 0;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.hero-stat .num {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.hero-stat .num .num-s {
  color: #ffffff;
}

.hero-stat .label {
  margin-top: 6px;
  font-size: 14px;
  color: #cccee9;
}

/* ---------- 优势板块 ---------- */
.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.why-card {
  background: linear-gradient(160deg, #26264e 0%, var(--card) 100%);
  border: none;
  border-radius: var(--radius-lg);
  padding: 42px 40px;
  display: flex;
  gap: 26px;
  align-items: flex-start;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(107, 87, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.why-card .icon {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card .icon img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.why-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-dim);
  font-size: 15px;
}

/* ---------- 核心业务 ---------- */
.biz-block {
  margin-bottom: 96px;
}

.biz-block:last-child {
  margin-bottom: 0;
}

.biz-head {
  text-align: center;
  margin-bottom: 40px;
}

.biz-head h3 {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700;
}

.biz-head p {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--text-dim);
  font-size: 15px;
}

.biz-card {
  background: var(--card-2);
  border: none;
  border-radius: var(--radius-lg);
  padding: 46px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
  overflow: hidden;
}

.biz-media-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* 图片紧贴上方标题/描述 */
#services1 .biz-media-col {
  gap: 0;
}

.biz-textbox {
  position: relative;
  background: transparent;
  border: none;
  padding: 20px 24px;
}

.biz-textbox h3 {
  padding-left: 33px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.biz-textbox .title-icon {
  position: absolute;
  left: 24px;
  top: 20px;
  width: 15px;
  height: 86px;
  object-fit: fill;
}

.biz-textbox p {
  padding-left: 33px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 20px;
}

.biz-visual img {
  width: 100%;
  display: block;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.biz-subs {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* 桌面端：仅“全球场景营销”卡片子服务在左、文本框+图片在右（对调） */
@media (min-width: 1081px) {
  #services2 .biz-subs {
    order: -1;
  }
}

.sub-card {
  display: grid;
  grid-template-rows: auto 0fr;
  background: var(--card);
  border: none;
  border-radius: var(--radius-md);
  padding: 20px 26px;
  transition:
    grid-template-rows 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    background 0.3s,
    transform 0.25s;
}

.sub-card:hover {
  transform: translateX(4px);
  background: #282850;
}

.sub-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}

.sub-head .sub-icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.sub-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.sub-card p {
  font-size: 15px;
  color: var(--text-dim);
  min-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  overflow: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* “海外红人营销”图片调小并居中 */
#services1 .biz-visual img {
  max-width: 82%;
  margin: 0 auto;
}

/* “全球场景营销”图片同样调小并居中，避免卡片过高、左侧留白过大 */
#services2 .biz-visual img {
  max-width: 82%;
  margin: 0 auto;
}

/* 全球场景营销：图片更贴近上方标题、整卡上移 */
#services2 .biz-media-col {
  gap: 0;
}

#services2 .biz-textbox {
  padding-bottom: 6px;
}

#services2 .biz-card {
  padding-bottom: 8px;
  align-items: start;
}

#services2 .biz-subs {
  gap: 24px;
  padding-top: 52px;
}

.sub-card.expanded {
  grid-template-rows: auto 1fr;
  border-color: rgba(107, 87, 255, 0.5);
  background: #282850;
}

.sub-card.expanded p {
  opacity: 1;
  transform: translateY(0);
}

/* 子卡片描述末尾的“了解更多”超链接按钮 */
.sub-card .sub-learn-more {
  display: inline-block;
  color: var(--text-dim);
  font-weight: 600;
  margin-left: 6px;
  line-height: 1.6;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
}

.sub-card .sub-learn-more:hover {
  color: var(--primary);
}

/* 业务三：IP 开发 */
.biz-card.ip-card {
  display: block;
  padding: 52px 58px 56px;
  background:
    url("../img/business/ip-box.png") center / 100% 100% no-repeat,
    var(--card-2);
  border: 1px solid rgba(107, 87, 255, 0.14);
}

.ip-card-head {
  text-align: center;
  margin-bottom: 40px;
}

.ip-card-head h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.ip-card-head h3::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(107, 87, 255, 0.65);
}

.ip-card-head h3::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(107, 87, 255, 0.65);
}

.ip-card-head p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 8px;
}

.ip-strip-inner {
  position: relative;
  width: 74%;
  margin: 0 auto;
}

.ip-strip {
  width: 100%;
  height: auto;
  display: block;
}

.ip-strip-items {
  position: relative;
  min-height: 172px;
  margin-top: 6px;
}

/* 英文内容较长，桌面端步骤区加高避免底部溢出（手机端用网格布局，不受影响） */
@media (min-width: 721px) {
  body.lang-en .ip-strip-items {
    min-height: 250px;
  }
}

.ip-strip-item {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 200px;
  text-align: center;
}

.ip-strip-item .ip-item-icon-mobile {
  display: none;
}

.ip-strip-item .step {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #6c489b;
  margin-bottom: 6px;
}

.ip-strip-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.ip-strip-item p {
  max-width: 158px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---------- 成功案例 ---------- */
.cases {
  background: linear-gradient(180deg, rgba(36, 24, 62, 0.25), transparent 34%);
}

.cases-carousel {
  position: relative;
}

.cases-viewport {
  overflow: hidden;
}

.cases-track {
  display: flex;
  gap: 22px;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.case-card {
  flex: 0 0 calc((100% - 66px) / 4);
  background-color: #24183e;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}

.case-card.frame-a {
  background-image: url("../img/cases/frames/框A.png");
}

.case-card.frame-b {
  background-image: url("../img/cases/frames/框B.png");
}

.case-card.frame-c {
  background-image: url("../img/cases/frames/框C.png");
}

.case-card.frame-d {
  background-image: url("../img/cases/frames/框D.png");
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(107, 87, 255, 0.5);
}

.case-media {
  position: relative;
  aspect-ratio: 9 / 5;
  overflow: hidden;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.case-card:hover .case-media img {
  transform: scale(1.05);
}

.case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20, 12, 40, 0.9) 100%);
}

.case-body {
  padding: 24px 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.case-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  letter-spacing: 1px;
  color: #b7a9ff;
  background: rgba(107, 87, 255, 0.16);
  border: 1px solid rgba(107, 87, 255, 0.3);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 14px;
}

.case-body h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 10px;
}

/* 日文长标题较多，略微缩小避免多出一行孤字 */
body.lang-jp .case-body h3 {
  font-size: 16px;
}

.case-body .desc {
  font-size: 13.5px;
  line-height: 1.65;
  min-height: 67px;
  color: var(--text-dim);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

/* 案例标题固定行数（超出用省略号），各语言不同 */
body.lang-zh .case-body h3,
body.lang-en .case-body h3,
body.lang-jp .case-body h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.lang-zh .case-body h3 {
  -webkit-line-clamp: 2;
  min-height: 52px;
}
body.lang-en .case-body h3 {
  -webkit-line-clamp: 4;
  min-height: 104px;
}
body.lang-jp .case-body h3 {
  -webkit-line-clamp: 3;
  min-height: 70px;
}

/* 案例描述固定行数（超出用省略号） */
body.lang-en .case-body .desc {
  -webkit-line-clamp: 5;
  min-height: 112px;
}
body.lang-jp .case-body .desc {
  -webkit-line-clamp: 4;
  min-height: 90px;
}

/* 日文：数据框稍微下移一点 */
body.lang-jp .case-body {
  padding-bottom: 12px;
}

.case-data {
  margin-top: 14px;
  position: relative;
  top: -6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metric:first-child {
  justify-self: end;
  padding-right: 40px;
}

.metric:last-child {
  justify-self: start;
  padding-left: 40px;
}

.metric-num {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.metric-label {
  font-size: 13px;
  color: #cccce9;
  margin-top: 3px;
}

/* 英日文：数据组固定靠卡片底部，标签预留统一高度，保证整排数字对齐 */
body.lang-en .case-data,
body.lang-jp .case-data {
  margin-top: auto;
  padding-top: 14px;
}

body.lang-en .case-card {
  min-height: 570px;
}

body.lang-en .metric-label {
  min-height: 43px;
}

body.lang-jp .metric-label {
  min-height: 43px;
}

.cases-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 46px;
}

.car-progress {
  position: relative;
  width: 100%;
  height: 10px;
  border-radius: var(--radius-pill);
  background: url("../img/cases/carousel-track.png") center / 100% auto no-repeat;
  cursor: pointer;
  touch-action: none;
}

.car-progress-bar {
  position: absolute;
  top: calc(100% - 6px);
  left: 0;
  transform: none;
  width: 0;
  height: 5px;
  background: url("../img/cases/carousel-active.png") center / 100% 100% no-repeat;
  transition: width 0.45s ease;
}

.car-progress.dragging .car-progress-bar {
  transition: none;
}

.cases-more {
  text-align: left;
  margin-top: 22px;
}

.cases-more-link {
  display: inline-block;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 500;
  color: #fff;
  border: none;
  background: none;
  padding: 0;
}

.cases-more-link::after {
  content: "";
  display: block;
  height: 1px;
  background: #ffffff;
  margin-top: 10px;
  transition: background 0.25s;
}

.cases-more-link:hover {
  color: var(--primary-hover);
}

.cases-more-link.cases-more-img::after {
  display: none;
}

.cases-more-link.cases-more-img img {
  display: block;
  height: 27px;
  width: auto;
  transition: opacity 0.25s;
}

.cases-more-link.cases-more-img:hover img {
  opacity: 0.85;
}

/* ---------- 全球版图 ---------- */
.global-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 5px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.global-map img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(107, 87, 255, 0.25));
}

.global-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.global-link {
  margin-top: 30px;
  text-align: left;
}

.global-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.global-card {
  background: #1c163c;
  border: none;
  border-radius: var(--radius-md);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.25s, border-color 0.25s;
}

.global-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 87, 255, 0.5);
}

.global-card .num {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.global-card .num .num-s {
  color: #ffffff;
}

.global-card .label {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- 创作者生态 ---------- */
.creator-frame {
  background: var(--card-2);
  border: none;
  border-radius: var(--radius-lg);
  padding: 60px 60px 72px;
  display: grid;
  grid-template-columns: 500px 580px;
  gap: 120px;
  justify-content: center;
  align-items: center;
}

.creator-avatars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 36px;
  row-gap: 30px;
  width: 100%;
  transform: translateY(18px);
}

.creator-avatars img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  border: none;
  transition: transform 0.3s, border-color 0.3s;
}

.creator-avatars img:hover {
  transform: scale(1.06);
}

.creator-text h3 {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 700;
  margin-bottom: 18px;
}

.creator-text h3 .accent {
  color: var(--primary);
}

.creator-text p {
  color: var(--text-dim);
  font-size: 17px;
  margin-bottom: 32px;
}

.creator-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.creator-btn-img {
  display: inline-block;
  transition: opacity 0.25s, transform 0.2s;
}

.creator-btn-img img {
  display: block;
  height: 52px;
  width: auto;
}

.creator-btn-img:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.creator-btn-text {
  display: inline-block;
  height: 52px;
  line-height: 52px;
  padding: 0 26px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, opacity 0.25s;
}

.creator-btn-text:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* ---------- 客户与游戏 ---------- */
.logos-head {
  margin: 96px 0 40px;
  text-align: center;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700;
}

.logos-head:first-child {
  margin-top: 0;
}

/* ---------- Logo 双行交替循环滚动 ---------- */
.marquee {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  padding: 10px 0 6px;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}

.marquee-track.marquee-reverse {
  animation-direction: reverse;
}

.marquee-copy {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* 游戏产品行单份内容较窄，用 3 份内容并每次移动 1/3，保持 20px 小间距且无缝 */
@keyframes marquee-scroll-3x {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}

.marquee-track.marquee-3x {
  animation: marquee-scroll-3x 50s linear infinite;
}

.marquee-track.marquee-3x.marquee-reverse {
  animation-direction: reverse;
}

.marquee-item {
  flex: 0 0 auto;
}

.marquee-item img {
  height: 78px;
  width: auto;
  object-fit: contain;
  padding: 14px 22px;
  background: #fff;
  border-radius: 12px;
  opacity: 0.88;
  filter: none;
  transition: opacity 0.25s, filter 0.25s, transform 0.25s;
}

.marquee-item img:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-3px);
}

.marquee-item.game-logo {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.marquee-item.game-logo:hover {
  transform: translateY(-4px);
  border-color: transparent;
  background: none;
}

.marquee-item.game-logo img {
  height: 92px;
  width: 92px;
  padding: 0;
  background: transparent;
  border-radius: 10px;
  object-fit: contain;
  opacity: 1;
  filter: none;
}

/* ---------- CTA ---------- */
.cta {
  padding: 60px 0 120px;
}

.cta-box {
  background:
    radial-gradient(520px 300px at 50% 0%, rgba(107, 87, 255, 0.2), transparent 70%),
    var(--card-2);
  border: none;
  border-radius: 26px;
  padding: 84px 60px;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.35;
}

.cta-box h2 .accent {
  color: var(--primary);
}

.cta-box p {
  color: var(--text-dim);
  font-size: 16px;
  margin: 18px 0 38px;
}

/* ---------- 页脚 ---------- */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(107, 87, 255, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding: 70px 32px 50px;
}

.footer-brand .brand img {
  height: 34px;
}

.footer-slogan {
  margin: 20px 0 14px;
  color: var(--primary);
  font-size: 15px;
}

.footer-email {
  display: inline-block;
  color: #cccce9;
  font-size: 14px;
  margin-bottom: 22px;
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--primary-hover);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-dim);
  border: 1px solid rgba(107, 87, 255, 0.3);
  border-radius: 12px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-col summary {
  list-style: none;
  cursor: default;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 22px;
  color: #fff;
}

.footer-col summary::-webkit-details-marker {
  display: none;
}

.footer-col li {
  margin-bottom: 13px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col li button {
  font-size: 14px;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}

.footer-col li button:hover {
  color: #fff;
}

.footer-bar {
  border-top: 1px solid rgba(107, 87, 255, 0.1);
  padding: 22px 0;
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bar .bar-links {
  display: flex;
  gap: 16px;
}

.footer-bar .bar-links a:hover {
  color: #fff;
}

.footer-bar-inner .bar-sep {
  color: inherit;
  opacity: 0.55;
  user-select: none;
}

.footer-bar-inner .bar-icp a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bar-inner .bar-icp a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ---------- 法律文案页（隐私政策 / 服务协议） ---------- */
.legal-page {
  background: linear-gradient(180deg, #ffffff 0%, #f5f4ff 100%);
  padding: 72px 0 96px;
}

.legal-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(107, 87, 255, 0.08);
  border-radius: 20px;
  padding: 56px 64px;
  box-shadow: 0 10px 30px rgba(107, 87, 255, 0.06);
}

.legal-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #1a1b3c;
  text-align: center;
  margin-bottom: 8px;
}

.legal-meta {
  text-align: center;
  color: #6a6a6a;
  font-size: 14px;
  margin: 12px 0 28px;
}

.legal-wrap h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1b3c;
  margin: 34px 0 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(107, 87, 255, 0.12);
}

.legal-wrap h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a1b3c;
  margin: 22px 0 10px;
}

.legal-wrap p,
.legal-wrap li {
  color: #474969;
  line-height: 1.8;
  font-size: 15px;
}

.legal-wrap p {
  margin: 12px 0;
}

.legal-wrap ul,
.legal-wrap ol {
  margin: 12px 0;
  padding-left: 24px;
}

.legal-wrap li {
  margin: 6px 0;
}

@media (max-width: 720px) {
  .legal-wrap {
    padding: 34px 22px;
  }
}

/* ---------- 联系表单弹窗 ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 0, 12, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s, visibility 0.28s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: min(720px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(170deg, #f0eeff 0%, #e7e4fb 100%);
  color: #191237;
  border-radius: 22px;
  padding: 46px 52px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(25, 18, 55, 0.08);
}

.modal-close img {
  width: 14px;
  height: 14px;
}

.modal h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal .modal-sub {
  font-size: 14px;
  color: #6f688f;
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #3a3260;
}

.form-group label .req {
  color: #d2455f;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 15px;
  color: #191237;
  background: #fff;
  border: 1px solid #d5d0ee;
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 87, 255, 0.18);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.modal-submit {
  width: 100%;
  margin-top: 24px;
  padding: 17px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  transition: background 0.25s, transform 0.2s;
}

.modal-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.modal-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-muted);
}

.modal-alt a {
  color: var(--primary);
  transition: color 0.2s;
}

.modal-alt a:hover {
  color: var(--primary-hover);
}

.form-success {
  display: none;
  text-align: center;
  padding: 34px 0;
}

.form-success.show {
  display: block;
}

.form-success .ok {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(84, 239, 88, 0.16);
  color: #2c9e33;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- 占位页面 ---------- */
.placeholder {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 24px 120px;
  background: transparent;
}

.placeholder h1 {
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  margin-bottom: 16px;
}

.placeholder p {
  color: var(--text-dim);
  margin-bottom: 36px;
}

/* ---------- 入场动画 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- 响应式 ---------- */
@media (max-width: 1280px) {
  .main-nav > ul > li > a {
    padding: 10px 12px;
    font-size: 14px;
  }
  .header-inner {
    gap: 20px;
  }
  .case-card {
    flex-basis: calc((100% - 44px) / 3);
  }
}

@media (max-width: 1080px) {
  .section {
    padding: 84px 0;
  }
  .main-nav {
    position: fixed;
    inset: 80px 0 auto 0;
    background: rgba(8, 0, 13, 0.97);
    border-bottom: 1px solid rgba(107, 87, 255, 0.2);
    padding: 18px 24px 26px;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    margin-left: 0;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .main-nav > ul > li > a {
    padding: 13px 16px;
    font-size: 16px;
  }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 4px 18px;
    display: none;
  }
  .has-dropdown.open .dropdown {
    display: block;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-actions .btn-sm {
    display: none;
  }
  .why-cards,
  .biz-card {
    grid-template-columns: 1fr;
  }
  .biz-visual {
    max-width: 560px;
    margin: 0 auto;
  }
  .global-grid,
  .creator-frame {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .creator-avatars {
    grid-template-columns: repeat(4, 1fr);
  }
  .marquee-item img {
    height: 60px;
  }
  .marquee-item.game-logo img {
    height: 72px;
    width: 72px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }
  .biz-card.ip-card {
    padding: 30px 20px 34px;
  }
  .ip-strip-inner {
    width: 100%;
  }
  .ip-card-head p {
    white-space: normal;
  }
  .section-head .global-story-line {
    white-space: normal;
  }
  .hero {
    padding: 150px 0 80px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
    margin-top: 64px;
  }
  .why-card {
    flex-direction: column;
    padding: 30px 26px;
    align-items: stretch;
  }
  .biz-card {
    padding: 28px 22px;
  }
  .ip-strip {
    display: none;
  }
  .ip-strip-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    min-height: 0;
  }
  .ip-strip-item {
    position: static;
    transform: none;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ip-strip-item .ip-item-icon-mobile {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 10px;
  }
  .case-card {
    flex-basis: 100%;
  }
  .case-card {
    flex-basis: calc((100% - 22px) / 2);
  }
  .case-body {
    padding: 20px 20px 24px;
  }
  .creator-avatars {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .creator-frame {
    padding: 36px 26px;
  }
  .cta-box {
    padding: 56px 26px;
  }
  .footer-col {
    border-bottom: 1px solid rgba(107, 87, 255, 0.14);
    padding-bottom: 8px;
  }
  .footer-col summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .footer-col summary::after {
    content: "+";
    font-size: 18px;
    color: var(--primary);
  }
  .footer-col[open] summary::after {
    content: "−";
  }
  .footer-col ul {
    padding-bottom: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 54px 20px 40px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .modal {
    padding: 36px 26px;
  }
  .cases-controls {
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .case-card {
    flex-basis: 100%;
  }
}

/* ============================================================
   成功案例页（/case 及 /zh/case、/jp/case）专用样式
   设计稿色值：深紫 hero #10092a/#1c0f5d，内容区浅色 #fbddff，
   卡片白底 #ffffff，标题 #1a1b3c，正文 #6a6a6a，主紫 #6b57ff
   ============================================================ */
.main-nav li a.active,
.main-nav li a[aria-current="page"] {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: var(--primary);
}

body.page-case {
  background-image: none;
  background-color: var(--bg);
}

/* ---------- 顶部 Banner ---------- */
.case-hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 96px;
  text-align: center;
  background:
    radial-gradient(820px 380px at 50% -18%, rgba(107, 87, 255, 0.30), transparent 70%),
    linear-gradient(90deg, #10092a 0%, #10092a 26%, #1c0f5d 50%, #10092a 74%, #10092a 100%);
}

.case-hero h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

.case-hero .case-hero-sub {
  max-width: 820px;
  margin: 20px auto 0;
  color: #b8b9d5;
  font-size: clamp(15px, 1.3vw, 18px);
}

/* ---------- 浅色内容区 ---------- */
.case-content {
  position: relative;
  z-index: 1;
  padding: 72px 0 96px;
  color: #10092a;
  background: #fbfdff;
}

.case-content .container {
  position: relative;
  z-index: 2;
}

/* 内容中心：内容即将上线提示 */
.coming-soon {
  padding: 280px 0 300px;
  color: #10092a;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #e4e0ff 100%);
}

.coming-soon-text {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  color: #10092a;
  max-width: none;
  margin: 0 auto;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* ---------- 筛选标签栏 ---------- */
.case-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto 48px;
  padding: 7px 8px;
  background: #f1efff;
  border: none;
  border-radius: 999px;
  box-shadow: none;
}

.case-filter .filter-btn {
  min-width: 0;
  font-size: 14px;
  padding: 11px 18px;
}

.lang-en .case-filter {
  max-width: 1180px;
}

.lang-en .case-filter .filter-btn {
  font-size: 13px;
}

.lang-jp .case-filter {
  max-width: 1040px;
}

.lang-jp .case-filter .filter-btn {
  white-space: normal;
  font-size: 13px;
  line-height: 1.3;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 1 1 0;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  color: #10092a;
  background: transparent;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.filter-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--primary);
}

.filter-btn:hover {
  background: rgba(107, 87, 255, 0.10);
}

.filter-btn.active {
  background: var(--primary);
  color: #ffffff;
}

.filter-btn.active svg {
  color: #ffffff;
}

.filter-btn .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.filter-btn.active .dot {
  background: #ffffff;
}

/* ---------- 中文页：筛选按钮使用设计切图 ---------- */
.filter-btn.img-btn {
  flex: 1 1 0;
  padding: 0;
  gap: 0;
  background: transparent;
}

.filter-btn.img-btn:hover {
  background: transparent;
}

.filter-btn.img-btn img {
  display: block;
  width: auto;
  height: auto;
}

.filter-btn.img-btn .off {
  max-width: 100%;
  max-height: 15px;
}

.filter-btn.img-btn .on {
  display: none;
  max-width: 100%;
  max-height: 32px;
}

.filter-btn.img-btn.active .off {
  display: none;
}

.filter-btn.img-btn.active .on {
  display: block;
}

/* ---------- 案例网格（桌面3 / 平板2 / 手机1） ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.case-grid .case-card {
  flex: none;
  min-width: 0;
  background-color: #ffffff;
  background-image: none;
  color: #1a1b3c;
  border: none;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(107, 87, 255, 0.10);
}

.case-grid .case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(107, 87, 255, 0.16);
}

.case-grid .case-media {
  aspect-ratio: auto;
  height: 190px;
}

/* 图片底部渐变遮罩：案例页不需要覆盖文字，去掉以免图片与内容之间出现“线” */
.case-grid .case-media::after {
  background: none;
}

/* 卡片左上角标签组：地区 + 所属板块 */
.case-tags {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-region,
.case-badge {
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: #10092a;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* 地区标签（叠在图片左上角） */
.case-region {
  display: inline-flex;
  align-items: center;
}

.case-badge {
  display: inline-flex;
  align-items: center;
  background: #6b57ff;
  border: none;
  color: #ffffff;
}

/* 浅色卡片文字色 */
.case-grid .case-body {
  background: transparent;
  padding: 20px 22px 16px;
}

.case-grid .case-body h3 {
  color: #1a1b3c;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 52px;
}

.case-grid .case-body .desc {
  color: #6a6a6a;
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 64px;
}

.case-grid .case-card .case-tag {
  color: var(--primary);
  background: rgba(107, 87, 255, 0.12);
  border-color: rgba(107, 87, 255, 0.30);
}

.case-grid .case-data {
  margin-top: auto;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 24px;
  align-items: end;
  border-top: 1px solid rgba(107, 87, 255, 0.18);
  padding-top: 16px;
}

.case-grid .metric,
.case-grid .metric:first-child,
.case-grid .metric:last-child {
  align-items: flex-start;
  text-align: left;
  justify-self: auto;
  padding: 0;
}

.case-grid .metric-num {
  color: var(--primary);
  font-size: 19px;
}

.case-grid .metric-label {
  color: #6a6a6a;
  font-size: 12px;
}

/* ---------- 加载更多 ---------- */
.case-loadmore {
  margin-top: 48px;
  text-align: center;
}

.case-loadmore .btn {
  background: var(--primary);
  color: #ffffff;
}

.case-loadmore .btn:hover {
  background: var(--primary-hover);
}

/* ---------- 底部 CTA ---------- */
.case-cta {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  text-align: center;
  color: #ffffff;
  background:
    url("../img/case-cta-bg.png") center / cover no-repeat,
    radial-gradient(820px 380px at 50% -18%, rgba(107, 87, 255, 0.30), transparent 70%),
    linear-gradient(90deg, #10092a 0%, #10092a 26%, #1c0f5d 50%, #10092a 74%, #10092a 100%);
}

.case-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 15px 20px, rgba(255, 255, 255, 0.95), transparent 50%),
    radial-gradient(1px 1px at 45px 90px, rgba(255, 255, 255, 0.6), transparent 50%),
    radial-gradient(1.5px 1.5px at 80px 40px, rgba(255, 255, 255, 0.8), transparent 50%),
    radial-gradient(1px 1px at 120px 140px, rgba(255, 255, 255, 0.5), transparent 50%),
    radial-gradient(1px 1px at 160px 70px, rgba(255, 255, 255, 0.85), transparent 50%),
    radial-gradient(1.5px 1.5px at 200px 120px, rgba(255, 255, 255, 0.65), transparent 50%),
    radial-gradient(1px 1px at 240px 180px, rgba(255, 255, 255, 0.55), transparent 50%),
    radial-gradient(2px 2px at 280px 220px, rgba(255, 255, 255, 0.7), transparent 50%),
    radial-gradient(1px 1px at 320px 100px, rgba(255, 255, 255, 0.75), transparent 50%),
    radial-gradient(1px 1px at 360px 160px, rgba(255, 255, 255, 0.5), transparent 50%),
    radial-gradient(1.5px 1.5px at 400px 250px, rgba(255, 255, 255, 0.6), transparent 50%),
    radial-gradient(2px 2px at 430px 230px, rgba(255, 255, 255, 0.8), transparent 50%);
  background-repeat: repeat;
  background-size: 260px 240px, 320px 280px, 200px 260px, 380px 240px, 240px 300px, 300px 200px, 340px 300px, 280px 260px, 260px 320px, 320px 260px, 200px 300px, 300px 280px;
}

.case-cta h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.35;
  color: #ffffff;
}

.case-cta .case-cta-sub {
  color: #b8b9d5;
  margin-top: 16px;
  font-size: 16px;
}

.case-cta .btn {
  margin-top: 36px;
  background: var(--primary);
  color: #ffffff;
}

.case-cta .btn:hover {
  background: var(--primary-hover);
}

/* ---------- 响应式 ---------- */
@media (max-width: 1080px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .case-filter {
    max-width: none;
    border-radius: 22px;
    padding: 8px;
    gap: 8px;
  }

  .filter-btn {
    flex: 1 1 calc(50% - 6px);
    padding: 10px 12px;
    font-size: 14px;
  }
  .lang-en .filter-btn {
    white-space: normal;
    line-height: 1.3;
    font-size: 12px;
  }
}

/* ============================================================
   关于我们页面 (body.page-about)
   深色首屏 + 浅色内容区 + 深色 CTA
   ============================================================ */
body.page-about {
  background-image: none;
  background-color: var(--bg);
}

/* ---------- 首屏 Banner ---------- */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 112px;
  text-align: center;
  color: #ffffff;
  background: #10092a url("../img/about/hero-star.png") center / cover no-repeat;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 1px;
  max-width: 1080px;
  margin: 0 auto;
}

.about-hero h1 .part-b {
  color: var(--green);
}

.about-hero .about-hero-body {
  max-width: 840px;
  margin: 26px auto 0;
  color: var(--text-dim);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  text-wrap: balance;
}

/* 仅英文压缩字号（中文/日文保持原字号） */
.lang-en .about-hero .about-hero-body {
  font-size: clamp(15px, 1.2vw, 16px);
}

.about-hero .btn {
  margin-top: 42px;
}

/* ---------- 品牌故事（浅色） ---------- */
.about-story {
  background: linear-gradient(180deg, #ffffff 0%, #f5f4ff 100%);
  color: #474969;
  padding: 84px 0 96px;
}

.about-story .container {
  padding-left: 125px;
  padding-right: 125px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 44% 1fr;
  align-items: stretch;
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(31, 22, 90, 0.10);
}

.about-story-media {
  position: relative;
  min-height: 320px;
}

.about-story-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story-text {
  align-self: center;
  padding: 36px 46px 36px 40px;
}

.about-story-text h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  color: #10092a;
  letter-spacing: 1px;
}

.about-story-text .about-story-lead {
  margin-top: 14px;
  color: #6b57ff;
  font-weight: 700;
  font-size: clamp(14px, 1.3vw, 16.5px);
  line-height: 1.5;
}

.about-story-text p {
  margin-top: 12px;
  color: #474969;
  font-size: clamp(13.5px, 1.05vw, 15px);
  line-height: 1.8;
}

/* ---------- 服务架构（浅色） ---------- */
.about-services {
  background: linear-gradient(180deg, #f5f4ff 0%, #e4e0ff 100%);
  color: #474969;
  padding: 110px 0;
}

.about-services .container {
  padding-left: 125px;
  padding-right: 125px;
}

.about-services .section-head h2 {
  color: #10092a;
}

.about-services .section-head .subtitle {
  color: #474969;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.svc-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 30px 34px;
  box-shadow: 0 16px 36px rgba(68, 51, 178, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(68, 51, 178, 0.14);
}

.svc-card img {
  width: 66px;
  height: 66px;
}

.svc-card h3 {
  margin-top: 22px;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 800;
  color: #10092a;
  min-height: 3.3em;
}

.svc-card ul {
  margin-top: 16px;
  min-height: 180px;
}

.svc-card li {
  position: relative;
  padding-left: 18px;
  margin-top: 12px;
  color: #474969;
  font-size: 15px;
  line-height: 1.6;
}

.svc-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6b57ff;
}

/* ---------- 价值观与团队（浅色） ---------- */
.about-values {
  background: #f5f7fb;
  color: #474969;
  padding: 110px 0;
}

.about-values .container {
  padding-left: 125px;
  padding-right: 125px;
}

.about-values .section-head h2 {
  color: #10092a;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  align-items: stretch;
}

.val-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: flex-end;
  padding: 30px 32px;
  min-height: 240px;
  transition: transform 0.3s;
}

.val-card:hover {
  transform: translateY(-4px);
}

.val-card--player { grid-column: span 3; }
.val-card--global { grid-column: span 3; }
.val-card--creator,
.val-card--assets,
.val-card--delivery { grid-column: span 2; }
.val-card--team { grid-column: span 6; min-height: 264px; }

.val-card--player {
  align-items: stretch;
}

.val-card--player .val-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 100%;
}

.val-card--global {
  align-items: stretch;
}

.val-card--global .val-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 62%;
}

.val-card .val-inner {
  position: relative;
  z-index: 1;
  max-width: 62%;
}

.val-card h3 {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 600;
}

.val-card p {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.7;
}

.val-card--player {
  color: #10092a;
  background:
    url("../img/about/AA.png") right top / 300px auto no-repeat,
    #ced2ff;
}
.val-card--global { color: #ffffff; background: linear-gradient(110deg, #725CC4 0%, #6552B1 35%, #55469A 65%, #463983 100%); }
.val-card--global::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/about/BA.png") right center / 220px auto no-repeat;
  opacity: 0.62;
  pointer-events: none;
}
.val-card--creator { color: #10092a; background-image: url("../img/about/CA.png"); background-size: 100% 100%; background-position: center; }
.val-card--assets { color: #ffffff; background-image: url("../img/about/DA.png"); background-size: 100% 100%; background-position: center; }
.val-card--delivery { color: #ffffff; background-image: url("../img/about/EA.png"); background-size: 100% 100%; background-position: center; }
.val-card--team { color: #ffffff; background-image: url("../img/about/val-team.png"); background-position: right center; align-items: center; }

.val-card--player {
  align-items: stretch;
}

.val-card--player .val-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 100%;
}

.val-card--creator,
.val-card--assets,
.val-card--delivery {
  align-items: flex-start;
}

.val-card--creator .val-inner,
.val-card--assets .val-inner,
.val-card--delivery .val-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 134px;
  max-width: 100%;
}

.val-card--team .val-inner {
  max-width: 540px;
}

.val-card--team p {
  text-align: justify;
}

/* ---------- CTA ---------- */
.about-cta {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  text-align: center;
  color: #ffffff;
  background: #10092a url("../img/about/hero-star.png") center / cover no-repeat;
}

.about-cta .container {
  position: relative;
  z-index: 1;
}

.about-cta h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  letter-spacing: 1px;
}

.about-cta h2 .accent {
  color: var(--green);
}

.about-cta .about-cta-body {
  max-width: 820px;
  margin: 20px auto 0;
  color: #b8b9d5;
  font-size: 17px;
  text-wrap: pretty;
}

.about-cta .about-cta-btns {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.about-cta .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.about-cta .btn-ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- 关于我们：响应式 ---------- */
@media (max-width: 1080px) {
  .about-story .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-services .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-values .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-story-media {
    min-height: 220px;
  }
  .about-story-text {
    padding: 28px 24px 32px;
  }
  .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .val-card--player,
  .val-card--global,
  .val-card--team { grid-column: span 2; }
  .val-card--creator,
  .val-card--assets { grid-column: span 1; }
  .val-card--delivery { grid-column: span 2; }
}

@media (max-width: 720px) {
  .about-hero {
    padding: 150px 0 82px;
  }
  .about-story,
  .about-services,
  .about-values {
    padding: 84px 0;
  }
  .about-services-grid {
    grid-template-columns: 1fr;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .val-card {
    grid-column: span 1;
    min-height: 220px;
  }
  .val-card .val-inner,
  .val-card--team .val-inner {
    max-width: 100%;
  }
  .val-card--player {
    background: #ced2ff;
  }
  .val-card--player::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 58%;
    aspect-ratio: 1774 / 887;
    background: url("../img/about/AA.png") center / contain no-repeat;
    opacity: 0.42;
    pointer-events: none;
    z-index: 0;
  }
  .val-card--player .val-inner {
    justify-content: flex-start;
  }
  .about-cta {
    padding: 84px 0;
  }
}

/* ============================================================
   行业洞察 / 内容中心 (body.page-blog)
   深色首屏 + 浅色内容区 + 深色 CTA；复用案例页(成功案例)组件
   ============================================================ */
body.page-blog {
  background-image: none;
  background-color: var(--bg);
}

/* 首屏副标题：中/日文案较长，放宽最大宽度以便两行居中 */
.page-blog .case-hero .case-hero-sub {
  max-width: 900px;
}

/* ---------- 筛选标签栏：浅紫气泡 + 选中紫胶囊 ---------- */
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 660px;
  margin: 0 auto 48px;
  padding: 7px 8px;
  background: #f1efff;
  border: none;
  border-radius: 999px;
  box-shadow: none;
}

.blog-filter .filter-btn {
  flex: 1 1 0;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  color: #10092a;
  background: transparent;
  transition: background 0.25s, color 0.25s;
}

.blog-filter .filter-btn svg {
  width: 17px;
  height: 17px;
  color: #10092a;
}

.blog-filter .filter-btn:hover {
  background: rgba(107, 87, 255, 0.10);
}

.blog-filter .filter-btn.active {
  background: var(--primary);
  color: #ffffff;
}

.blog-filter .filter-btn.active svg {
  color: #ffffff;
}

/* ---------- 卡片：图片比例/日期标签微调 ---------- */
.page-blog .case-grid .case-media {
  height: 200px;
}

.blog-date {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 999px;
  background: #ffffff;
  color: #10092a;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* CTA 主标题第二行（紫色高亮） */
.page-blog .case-cta h2 .hl {
  color: var(--primary);
}

/* 移动端：筛选栏换行居中 */
@media (max-width: 720px) {
  .blog-filter {
    max-width: none;
    border-radius: 22px;
    padding: 8px;
    gap: 8px;
  }

  .blog-filter .filter-btn {
    flex: 1 1 calc(50% - 6px);
    padding: 10px 12px;
    font-size: 14px;
  }

  .blog-filter .filter-btn:last-child {
    flex: 1 1 100%;
  }
}

/* ============================================================
   创作者网络 / influencer (body.page-influencer)
   深色首屏 + 浅色区块 + 深色 CTA；复用站点跑马灯/头像组件
   ============================================================ */
body.page-influencer {
  background-image: none;
  background-color: var(--bg);
}

/* ---------- 首屏 Hero ---------- */
.infl-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 0;
  text-align: center;
  color: #ffffff;
  background: #10092a url("../img/about/hero-star.png") center / cover no-repeat;
}

.infl-hero::before {
  content: none;
}

.infl-hero .container {
  position: relative;
  z-index: 2;
}

.infl-hero h1 {
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  max-width: 1120px;
  margin: 0 auto;
  line-height: 1.28;
}

.infl-hero h1 .hl {
  color: var(--green);
}

.infl-hero-sub {
  max-width: 940px;
  margin: 22px auto 0;
  color: #b8b9d5;
  font-size: clamp(15px, 1.3vw, 18px);
}

/* 中 / 日文：文本框收窄、起点更居中（贴合设计稿；英文文案较长保持原宽度） */
.lang-zh .infl-hero-sub,
.lang-jp .infl-hero-sub {
  max-width: 620px;
}

.infl-hero-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.infl-hero-btns .btn {
  padding: 12px 52px;
}

.infl-hero-btns .btn-ghost {
  border-color: rgba(107, 87, 255, 0.7);
  color: #ffffff;
}

.infl-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 44px;
  margin-top: 60px;
}

.infl-stat {
  min-width: 150px;
}

.infl-stat-num {
  font-size: 30px;
  font-weight: 800;
  color: #6b57ff;
  line-height: 1.1;
}

.infl-stat-num .plus {
  color: #ffffff;
}

.infl-stat-label {
  margin-top: 6px;
  color: #cccce9;
  font-size: 14px;
}

.infl-logo-marquee {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.infl-logo-marquee .marquee-track {
  will-change: transform;
}

.infl-logo-marquee .marquee-item img {
  height: 60px;
  padding: 10px 32px;
  border-radius: 999px;
}

/* ---------- 浅色区块通用 ---------- */
.infl-section {
  padding: 96px 0;
  text-align: center;
  color: #10092a;
}

.infl-section h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  color: #10092a;
  letter-spacing: 1px;
}

.infl-section h2 .accent {
  color: var(--primary);
}

.infl-section .infl-sub {
  max-width: 860px;
  margin: 18px auto 0;
  color: #6a6a6a;
  font-size: 16px;
  line-height: 1.75;
}

/* ---------- 全球创作者网络 ---------- */
.infl-network {
  background: #eaecff;
}

.infl-network .infl-sub {
  margin-bottom: 52px;
}

.infl-network-list {
  display: grid;
  gap: 54px;
  max-width: 1250px;
  margin: 52px auto 0;
  text-align: left;
  justify-items: stretch;
}

.infl-network-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  min-height: 0;
  display: flex;
  align-items: stretch;
  box-shadow: 0 14px 34px rgba(107, 87, 255, 0.10);
}

.infl-network-card.flip {
  flex-direction: row-reverse;
}

.infl-network-media {
  flex: 0 0 48%;
  aspect-ratio: 691 / 373;
  overflow: hidden;
}

.infl-network-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.infl-network-body {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  padding: 36px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.infl-network-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(107, 87, 255, 0.12);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.infl-network-body h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  color: #1a1b3c;
  margin-bottom: 6px;
}

.infl-network-body p {
  color: #474969;
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- 我们的创作者社区（双行头像跑马灯） ---------- */
.infl-community {
  background: linear-gradient(#eaefff, #ccd4ff);
}

.infl-avatar-marquee {
  margin-top: 56px;
}

.infl-avatar-row .marquee-track {
  gap: 0;
}

.infl-avatar-row .marquee-copy {
  gap: 24px;
  padding-right: 24px;
}

.infl-avatar-row .marquee-item img {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  object-fit: cover;
  padding: 0;
  background: transparent;
  opacity: 1;
}

.infl-avatar-row .marquee-item img:hover {
  transform: translateY(-4px);
}

/* ---------- 创作者成长权益 ---------- */
.infl-benefits {
  background: linear-gradient(180deg, #ffffff 0%, #e0dbff 100%);
}

.infl-benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 52px auto 0;
  text-align: left;
}

.infl-benefit-card {
  grid-column: span 2;
  position: relative;
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(107, 87, 255, 0.08);
}

.infl-benefit-media {
  width: 100%;
  aspect-ratio: 510 / 598;
  border-radius: 20px;
  background-size: 106.5%;
  background-position: center;
  background-repeat: no-repeat;
}

/* 前三张权益卡：使用「2」版横向插画，原比例显示在卡片最上方 */
.infl-benefit-grid .infl-benefit-card:nth-child(-n+3) .infl-benefit-media {
  background-size: 100% auto;
  background-position: center top;
}

.infl-benefit-card.wide {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
}

.infl-benefit-card.wide .infl-benefit-media {
  aspect-ratio: 709 / 208;
  background-size: cover;
  background-position: center;
  border-radius: 20px 20px 0 0;
}

.infl-benefit-card.wide .infl-benefit-body {
  position: static;
  padding: 22px 24px 28px;
}

.infl-benefit-card.wide .infl-benefit-body h3 {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  min-height: 0;
}

.infl-benefit-body {
  position: absolute;
  top: 48%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 24px;
  background: #ffffff;
}

.infl-benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: contain;
  margin-bottom: 14px;
}

.infl-benefit-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1a1b3c;
  line-height: 1.4;
  min-height: calc(2 * 19px * 1.4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.infl-benefit-body p {
  color: #6a6a6a;
  font-size: 14px;
  line-height: 1.68;
}

/* ---------- 底部 CTA ---------- */
.infl-cta {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  text-align: center;
  color: #ffffff;
  background: #10092a url("../img/about/hero-star.png") center / cover no-repeat;
}

.infl-cta::before {
  content: none;
}

.infl-cta .container {
  position: relative;
  z-index: 2;
}

.infl-cta h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  color: #ffffff;
}

.infl-cta h2 .hl {
  color: var(--green);
}

.infl-cta p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #b8b9d5;
  font-size: 16px;
  line-height: 1.75;
  text-wrap: pretty;
}

.infl-cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 38px;
}

.infl-cta-btns .btn {
  padding: 12px 46px;
}

.infl-cta-btns .btn-ghost {
  border-color: rgba(107, 87, 255, 0.7);
  color: #ffffff;
}

/* ---------- 响应式 ---------- */
@media (max-width: 1080px) {
  .infl-network-body {
    width: 50%;
    padding: 34px 36px;
  }
  .infl-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .infl-benefit-card,
  .infl-benefit-card.wide {
    grid-column: span 1;
  }
  .infl-benefit-card {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .infl-benefit-media {
    aspect-ratio: auto;
    height: 200px;
    border-radius: 20px 20px 0 0;
    background-size: contain;
    background-position: center;
  }
  .infl-benefit-body {
    position: static;
    padding: 22px 22px 28px;
  }
  .infl-benefit-card.wide .infl-benefit-media {
    height: auto;
    aspect-ratio: 709 / 208;
    background-size: cover;
    background-position: center;
  }
  .infl-benefit-body h3 {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .infl-hero {
    padding-top: 150px;
  }
  .infl-stats {
    gap: 26px 34px;
  }
  .infl-network-list {
    gap: 18px;
  }
  .infl-network-card {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
  }
  .infl-network-card.flip {
    flex-direction: column;
  }
  .infl-network-media {
    width: 100%;
    height: auto;
    aspect-ratio: 691 / 373;
  }
  .infl-network-body {
    width: 100%;
    padding: 28px 24px;
  }
  .infl-benefit-grid {
    grid-template-columns: 1fr;
  }
  .infl-benefit-card {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .infl-benefit-media {
    aspect-ratio: auto;
    height: 200px;
    border-radius: 20px 20px 0 0;
    background-size: contain;
    background-position: center;
  }
  .infl-benefit-body {
    position: static;
    padding: 22px 22px 28px;
  }
  .infl-avatar-row .marquee-item img {
    height: 88px;
    width: 88px;
  }
}
