/* 薪连薪官网首页 */

/* ------------------------------------------------------------------------
   0. Page tokens
   ------------------------------------------------------------------------ */
:root {
  --home-gutter: 16px;
  --home-container: calc(100vw - (var(--home-gutter) * 2));

  --home-bg: #ffffff;
  --home-bg-soft: #f6f8fc;
  --home-bg-cool: #f1f5fb;
  --home-bg-blue: #eef3ff;
  --home-text: #172033;
  --home-text-2: #556176;
  --home-text-3: #7a879b;
  --home-line: rgba(38, 58, 92, 0.10);
  --home-line-strong: rgba(36, 84, 255, 0.18);
  --home-primary: #2454ff;
  --home-primary-2: #633cff;
  --home-cyan: #0bbbd8;
  --home-success: #0ca678;
  --home-warning: #f59f00;

  --home-radius-sm: 12px;
  --home-radius: 18px;
  --home-radius-lg: 24px;

  --home-shadow-sm: 0 8px 28px rgba(28, 47, 83, 0.055);
  --home-shadow-md: 0 16px 42px rgba(28, 47, 83, 0.085);
  --home-shadow-lg: 0 24px 64px rgba(24, 54, 120, 0.12);

  --home-section-y: clamp(76px, 6vw, 112px);
}

@media (max-width: 390px) {
  :root { --home-gutter: 12px; }
}

@media (min-width: 391px) and (max-width: 430px) {
  :root { --home-gutter: 14px; }
}

@media (min-width: 431px) and (max-width: 767px) {
  :root { --home-gutter: 16px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  :root { --home-gutter: 24px; }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  :root { --home-gutter: 36px; }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  :root { --home-gutter: 48px; }
}

@media (min-width: 1440px) and (max-width: 1599px) {
  :root { --home-gutter: 72px; }
}

@media (min-width: 1600px) and (max-width: 1919px) {
  :root { --home-gutter: 110px; }
}

@media (min-width: 1920px) {
  :root { --home-gutter: 180px; }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  overflow-x: hidden;
  background: var(--home-bg);
  color: var(--home-text);
}

body .section {
  position: relative;
  padding-block: var(--home-section-y);
}


body .section > .site-container,
body .Hero__inner {
  width: var(--home-container);
  max-width: none;
  margin-inline: auto;
}

body .section > .site-container > *,
body .Hero__inner > * { min-width: 0; }

.SectionLabel { display: none; }

.SectionIntro {
  max-width: 860px;
  margin-bottom: clamp(34px, 3vw, 48px);
}

.SectionIntro h2 {
  margin: 0 0 14px;
  font-family: var(--font-display, var(--font-sans, sans-serif));
  font-size: clamp(30px, 2.35vw, 40px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.035em;
  color: var(--home-text);
  text-wrap: balance;
}

.SectionIntro__lead {
  margin: 0;
  max-width: 780px;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.8;
  color: var(--home-text-2);
  text-wrap: pretty;
}

/* 用户明确要求：首页这三个核心叙事区标题/说明居中 */
section:has(.ClientEntryGrid) .SectionIntro,
section:has(.ProductCapGrid) .SectionIntro,
section:has(.IndustryGrid) .SectionIntro,
.SectionIntro.xlx-u-17 {
  margin-inline: auto;
  text-align: center;
}

section:has(.ClientEntryGrid) .SectionIntro__lead,
section:has(.ProductCapGrid) .SectionIntro__lead,
section:has(.IndustryGrid) .SectionIntro__lead,
.SectionIntro.xlx-u-17 .SectionIntro__lead {
  margin-inline: auto;
}

/* 核心区标题 */
section:has(.ProductCapGrid) .SectionIntro h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-primary), var(--home-primary-2));
  box-shadow: 0 4px 16px rgba(36, 84, 255, 0.18);
}

/* ------------------------------------------------------------------------
   1. Section rhythm
   ------------------------------------------------------------------------ */
.Section--alt { background: var(--home-bg-soft); }

section:has(.ClientEntryGrid) {
  background:
    radial-gradient(circle at 16% 10%, rgba(36, 84, 255, 0.06), transparent 30%),
    linear-gradient(180deg, #f8faff 0%, #f2f5fb 100%);
}

section:has(.ProductCapGrid) {
  background:
    radial-gradient(circle at 82% 22%, rgba(99, 60, 255, 0.055), transparent 28%),
    linear-gradient(180deg, #edf3fc 0%, #f7f9fc 100%);
}

section:has(.SolTabBar) {
  background:
    radial-gradient(circle at 50% 0%, rgba(36, 84, 255, 0.055), transparent 35%),
    #ffffff;
}

section:has(.IndustryGrid) {
  background:
    linear-gradient(180deg, #fbfcff 0%, #f6f8fc 100%);
}

section:has(.CaseEntry) {
  background:
    radial-gradient(circle at 16% 10%, rgba(11, 187, 216, 0.045), transparent 30%),
    #f2f5fa;
}

section:has(.PolicyReportGrid) {
  background: #ffffff;
}

/* ------------------------------------------------------------------------
   2. Hero
   ------------------------------------------------------------------------ */
.Hero {
  position: relative;
  min-height: clamp(640px, 78vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(88px, 7vw, 118px) 0 clamp(72px, 6vw, 96px);
  background: #ffffff;
  isolation: isolate;
}

.Hero::before {
  content: '';
  position: absolute;
  width: min(44vw, 760px);
  aspect-ratio: 1;
  right: -10vw;
  top: -18vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 84, 255, 0.12), rgba(36, 84, 255, 0) 68%);
  filter: blur(4px);
  z-index: 0;
  pointer-events: none;
}

.Hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 54% 48% at 76% 24%, rgba(36, 84, 255, 0.13), transparent 62%),
    radial-gradient(ellipse 40% 36% at 80% 64%, rgba(11, 187, 216, 0.10), transparent 60%),
    radial-gradient(ellipse 38% 34% at 56% 76%, rgba(99, 60, 255, 0.08), transparent 62%);
  background-size: 130% 130%;
  animation: homeGradientDrift 14s ease-in-out infinite;
}

.Hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(36, 84, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 84, 255, 0.45) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent 0, transparent 38%, #000 58%, #000 100%);
}

.Hero__transition {
  position: absolute;
  inset: auto 0 -1px;
  height: 90px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #f8faff 100%);
}

.Hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: clamp(40px, 4vw, 80px);
  align-items: center;
}

.Hero__content {
  width: 100%;
  max-width: 780px;
}

.Hero__title {
  margin: 0 0 24px;
  font-family: var(--font-display, var(--font-sans, sans-serif));
  font-size: clamp(40px, 3vw, 54px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.045em;
  color: var(--home-text);
  text-wrap: balance;
}

.Hero__title .gradient-text {
  color: inherit;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.Hero__subtitle {
  max-width: 760px;
  margin: 0 0 32px;
  font-size: clamp(17px, 1.12vw, 19px);
  line-height: 1.85;
  color: var(--home-text-2);
}

.Hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.Hero__actions .btn {
  min-height: 48px;
  padding-inline: 24px;
  border-radius: 10px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.Hero__actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(36, 84, 255, 0.16);
}

.Hero__visual {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Hero flow: 比“5个小图标散在空白里”更完整，但保持克制 */
.HeroFlow {
  position: relative;
  width: min(100%, 760px);
  padding: clamp(26px, 2.4vw, 38px);
  border: 1px solid rgba(36, 84, 255, 0.10);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.91), rgba(247,250,255,0.84));
  box-shadow: 0 24px 70px rgba(36, 84, 255, 0.08);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.HeroFlow::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(36, 84, 255, 0.09), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(11, 187, 216, 0.075), transparent 30%);
}

.HeroFlow__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image:
    linear-gradient(rgba(36,84,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,84,255,.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 82%);
}

.HeroFlow__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 18px;
}

.HeroFlow__node {
  position: relative;
  min-height: 144px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 7px;
  padding: 18px 16px;
  border: 1px solid rgba(40, 64, 104, 0.08);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 24px rgba(28,47,83,.035);
  opacity: 0;
  transform: translateY(8px);
  animation: homeFlowIn .5s ease forwards;
}

.HeroFlow__node:nth-child(1) { animation-delay: .08s; }
.HeroFlow__node:nth-child(2) { animation-delay: .18s; }
.HeroFlow__node:nth-child(3) { animation-delay: .28s; }
.HeroFlow__node:nth-child(4) { animation-delay: .38s; }
.HeroFlow__node:nth-child(5) { animation-delay: .48s; }

.HeroFlow__iconWrap {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--home-primary);
  background: rgba(36, 84, 255, 0.075);
}

.HeroFlow__iconWrap--cyan {
  color: #079ab6;
  background: rgba(11, 187, 216, 0.09);
}

.HeroFlow__iconWrap--green {
  color: var(--home-success);
  background: rgba(12, 166, 120, 0.09);
}

.HeroFlow__stepNum {
  margin-top: 2px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .13em;
  color: var(--color-text-secondary, #4F596B);
}

.HeroFlow__title {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--home-text);
}

.HeroFlow__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--home-text-2);
}

.HeroFlow__node[data-row="1"]:not(:last-child)::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 1px;
  top: 50%;
  right: -19px;
  background: linear-gradient(90deg, rgba(36,84,255,.30), rgba(36,84,255,.05));
}

.HeroFlow__connectorV {
  display: none;
}

.HeroFlow__footer {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(40,64,104,.10);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--home-text-2);
}

.HeroFlow__footerDot {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 9px;
  border-radius: 50%;
  background: rgba(36,84,255,.42);
  vertical-align: middle;
}

/* ------------------------------------------------------------------------
   3. 四类客户 2 x 2
   ------------------------------------------------------------------------ */
.ClientEntryGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
  align-items: stretch;
}

.ClientEntryCard {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(210px, .9fr);
  grid-template-rows: auto auto auto 1fr auto;
  column-gap: clamp(24px, 2.5vw, 38px);
  row-gap: 14px;
  padding: clamp(28px, 2.5vw, 40px);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(253,254,255,.96));
  box-shadow: var(--home-shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.ClientEntryCard::before {
  content: '';
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 3px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, rgba(36,84,255,.65), rgba(99,60,255,.18));
  opacity: 0;
  transition: opacity .24s ease;
}

.ClientEntryCard:hover {
  transform: translateY(-3px);
  border-color: rgba(36,84,255,.20);
  box-shadow: var(--home-shadow-md);
}

.ClientEntryCard:hover::before { opacity: 1; }

.ClientEntryCard__icon {
  grid-column: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.ClientEntryCard__icon--purple { color: var(--home-primary); background: rgba(36,84,255,.09); }
.ClientEntryCard__icon--blue { color: #1677ff; background: rgba(22,119,255,.09); }
.ClientEntryCard__icon--green { color: var(--home-success); background: rgba(12,166,120,.09); }
.ClientEntryCard__icon--orange { color: #e98b00; background: rgba(245,159,0,.10); }

.ClientEntryCard__title {
  grid-column: 1;
  font-size: clamp(20px, 1.4vw, 24px);
  line-height: 1.3;
  font-weight: 600;
  color: var(--home-text);
}

.ClientEntryCard__problem {
  grid-column: 1;
  width: fit-content;
  max-width: 100%;
  padding: 8px 11px;
  border-radius: 9px;
  background: #fff1f2;
  color: #c0212e;
  font-size: 14px;
  line-height: 1.55;
}

.ClientEntryCard__desc {
  grid-column: 1;
  font-size: 16px;
  line-height: 1.78;
  color: var(--home-text-2);
}

.ClientEntryCard__visual {
  grid-column: 2;
  grid-row: 1 / -1;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 22px 16px;
  border-radius: 20px;
  overflow: hidden;
}

.ClientEntryCard__visual--purple {
  background: radial-gradient(circle at 50% 30%, rgba(36,84,255,.12), transparent 48%), linear-gradient(145deg,#f5f6ff,#fbfaff);
  border: 1px solid rgba(36,84,255,.10);
}
.ClientEntryCard__visual--blue {
  background: radial-gradient(circle at 50% 30%, rgba(22,119,255,.12), transparent 48%), linear-gradient(145deg,#f2f8ff,#f7fcff);
  border: 1px solid rgba(22,119,255,.10);
}
.ClientEntryCard__visual--green {
  background: radial-gradient(circle at 50% 30%, rgba(12,166,120,.12), transparent 48%), linear-gradient(145deg,#f2fbf8,#f8fffd);
  border: 1px solid rgba(12,166,120,.10);
}
.ClientEntryCard__visual--orange {
  background: radial-gradient(circle at 50% 30%, rgba(245,159,0,.13), transparent 48%), linear-gradient(145deg,#fff9ef,#fffbf5);
  border: 1px solid rgba(245,159,0,.11);
}

.ClientEntryCard__visualIcon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 34px rgba(28,47,83,.08);
}

.ClientEntryCard__visualIcon svg {
  width: 46px;
  height: 46px;
}

.ClientEntryCard__tags {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
}

.ClientEntryCard__tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  font-size: 14px;
  color: var(--home-text-2);
  white-space: nowrap;
}

.ClientEntryCard__tags li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--home-primary);
  flex: none;
}

.ClientEntryCard__visual--green .ClientEntryCard__tags li::before { background: var(--home-success); }
.ClientEntryCard__visual--orange .ClientEntryCard__tags li::before { background: var(--home-warning); }
.ClientEntryCard__visual--blue .ClientEntryCard__tags li::before { background: #1677ff; }

.ClientEntryCard__link {
  grid-column: 1;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--home-primary);
  font-size: 14px;
  font-weight: 600;
}

/* ------------------------------------------------------------------------
   4. 合规 RaaS 能力底座
   ------------------------------------------------------------------------ */
.ProductCapGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
}

.ProductCapCard {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(28px, 2.5vw, 38px);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-lg);
  background: linear-gradient(145deg,#ffffff 0%,#fbfcff 100%);
  box-shadow: var(--home-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.ProductCapCard:hover {
  transform: translateY(-3px);
  border-color: rgba(36,84,255,.20);
  box-shadow: var(--home-shadow-md);
}

.ProductCapCard__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.ProductCapCard__icon--purple { color: var(--home-primary); background: rgba(36,84,255,.09); }
.ProductCapCard__icon--blue { color: #1677ff; background: rgba(22,119,255,.09); }
.ProductCapCard__icon--green { color: var(--home-success); background: rgba(12,166,120,.09); }
.ProductCapCard__icon--orange { color: #e98b00; background: rgba(245,159,0,.10); }

.ProductCapCard__title {
  font-size: clamp(19px, 1.2vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--home-text);
}

.ProductCapCard__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--home-text-2);
}

.ProductCapCard__features {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 2px 0 0;
}

.ProductCapCard__feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  line-height: 1.55;
  color: #46546b;
}

.ProductCapCard__featureDot {
  width: 6px;
  height: 6px;
  margin-top: .55em;
  flex: none;
  border-radius: 50%;
  background: var(--home-primary);
}

.ProductCapCard__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--home-primary);
  font-size: 14px;
  font-weight: 600;
}

.ProductCapCard--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(34px, 4vw, 68px);
  align-items: center;
  background:
    radial-gradient(circle at 84% 30%, rgba(99,60,255,.08), transparent 36%),
    linear-gradient(135deg,#ffffff 0%,#f8f7ff 100%);
  border-color: rgba(36,84,255,.15);
}

.ProductCapCard--wide .ProductCapCard__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ProductCapCard--wide .ProductCapCard__visual {
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(36,84,255,.10);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(245,247,255,.96), rgba(250,252,255,.92));
}

.ProductCapCard--wide .ProductCapCard__visualContent {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.ProductCapCard--wide .ProductCapCard__visualItem {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 10px 12px;
  border: 1px solid rgba(36,84,255,.09);
  border-radius: 13px;
  background: rgba(255,255,255,.88);
  color: #3f4c65;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.ProductCapCard__visualItemDot {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--home-primary);
}

/* ------------------------------------------------------------------------
   5. 量身定制解决方案
   ------------------------------------------------------------------------ */
.SolTabBar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 28px;
  padding: 6px;
  border: 1px solid rgba(40,64,104,.08);
  border-radius: 999px;
  background: #f4f6fa;
}

.SolTab {
  appearance: none;
  min-height: 40px;
  padding: 9px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #56637a;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.SolTab:hover { color: var(--home-primary); }

.SolTab--active {
  color: #fff;
  background: linear-gradient(135deg,var(--home-primary),#3f62ff);
  box-shadow: 0 8px 20px rgba(36,84,255,.18);
}

.SolPanel { display: none; }
.SolPanel--active { display: block; }

.SolPanel__inner {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 4vw, 68px);
  align-items: center;
  padding: clamp(34px, 3.4vw, 52px);
  border: 1px solid var(--home-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--home-shadow-sm);
}

.SolPanel__text { min-width: 0; }

.SolPanel__title {
  margin: 0 0 14px;
  font-size: clamp(22px, 1.6vw, 28px);
  line-height: 1.3;
  font-weight: 600;
  color: var(--home-text);
}

.SolPanel__desc {
  margin: 0 0 26px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.82;
  color: var(--home-text-2);
}

.SolPanel__text .btn {
  min-height: 46px;
  padding-inline: 22px;
  border-radius: 10px;
}

.SolPanel__visual {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(36,84,255,.10);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 46%, rgba(36,84,255,.10), transparent 22%),
    linear-gradient(145deg,#f5f7ff,#fbfdff);
}

.SolPanel__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    linear-gradient(rgba(36,84,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,84,255,.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, #000 0, transparent 72%);
}

.SolPanel__visualPlaceholder {
  position: relative;
  z-index: 1;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--home-primary);
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 42px rgba(36,84,255,.10);
}

/* ------------------------------------------------------------------------
   6. 多行业场景
   ------------------------------------------------------------------------ */
.IndustryGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 26px);
}

.IndustryCard {
  min-width: 0;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(26px, 2.2vw, 34px);
  border: 1px solid var(--home-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(28,47,83,.045);
  text-decoration: none;
  color: inherit;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.IndustryCard:hover {
  transform: translateY(-3px);
  border-color: rgba(36,84,255,.18);
  box-shadow: var(--home-shadow-md);
}

.IndustryCard__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.IndustryCard__icon--purple { color: var(--home-primary); background: rgba(36,84,255,.09); }
.IndustryCard__icon--blue { color: #1677ff; background: rgba(22,119,255,.09); }
.IndustryCard__icon--green { color: var(--home-success); background: rgba(12,166,120,.09); }
.IndustryCard__icon--orange { color: #e98b00; background: rgba(245,159,0,.10); }
.IndustryCard__icon--cyan { color: #079ab6; background: rgba(11,187,216,.10); }
.IndustryCard__icon--accent { color: #7048e8; background: rgba(112,72,232,.09); }

.IndustryCard__title {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--home-text);
}

.IndustryCard__desc {
  font-size: 15px;
  line-height: 1.72;
  color: var(--home-text-2);
}

.IndustryCard__visual {
  position: relative;
  min-height: 94px;
  margin-top: 2px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(36,84,255,.08);
  border-radius: 16px;
  background:
    radial-gradient(circle at 75% 20%, rgba(11,187,216,.07), transparent 32%),
    linear-gradient(135deg, rgba(36,84,255,.055), rgba(99,60,255,.035));
  color: #69768b;
  font-size: 14px;
  font-weight: 500;
}

.IndustryCard__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, transparent 49%, rgba(36,84,255,.045) 50%, transparent 51%);
  background-size: 30px 100%;
  opacity: .4;
}

.IndustryCard__visual span { position: relative; z-index: 1; }

.IndustryCard__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--home-primary);
  font-size: 14px;
  font-weight: 600;
}

/* ------------------------------------------------------------------------
   7. 客户案例
   ------------------------------------------------------------------------ */
.CaseEntry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(20px, 2vw, 28px);
}

.CaseEntry__card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(28px, 2.5vw, 38px);
  border: 1px solid var(--home-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--home-shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.CaseEntry__card:hover {
  transform: translateY(-3px);
  border-color: rgba(36,84,255,.18);
  box-shadow: var(--home-shadow-md);
}

.CaseEntry__cardHeader { display: flex; align-items: center; }

.CaseEntry__industry {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(12,166,120,.09);
  color: #078b66;
  font-size: 14px;
  font-weight: 600;
}

.CaseEntry__title {
  font-size: clamp(20px,1.35vw,24px);
  font-weight: 600;
  line-height: 1.42;
  color: var(--home-text);
}

.CaseEntry__desc {
  font-size: 15px;
  line-height: 1.78;
  color: var(--home-text-2);
}

.CaseEntry__visual {
  position: relative;
  min-height: 118px;
  margin-top: 4px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(36,84,255,.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(36,84,255,.09), transparent 26%),
    radial-gradient(circle at 84% 78%, rgba(11,187,216,.08), transparent 26%),
    linear-gradient(135deg,#f5f8ff,#fbfdff);
}

.CaseEntry__visual::before,
.CaseEntry__visual::after {
  content: '';
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg,rgba(36,84,255,.08),rgba(36,84,255,.28),rgba(36,84,255,.08));
}

.CaseEntry__visual::before { left: 8%; right: 8%; top: 42%; transform: rotate(-4deg); }
.CaseEntry__visual::after { left: 14%; right: 14%; top: 62%; transform: rotate(3deg); }

.CaseEntry__link,
.CaseEntry__viewAll {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--home-primary);
  font-size: 14px;
  font-weight: 600;
}

.CaseEntry__link { margin-top: auto; }

.CaseEntry__viewAll {
  width: fit-content;
  margin: 24px auto 0;
  text-decoration: none;
}


.CaseEntry__visualStats,
.CaseEntry__stats { display: flex; gap: 18px; }
.CaseEntry__visualStat,
.CaseEntry__stat { min-width: 0; }
.CaseEntry__visualStatValue,
.CaseEntry__statValue { font-weight: 600; color: var(--home-text); }
.CaseEntry__visualStatLabel,
.CaseEntry__statLabel { color: var(--home-text-3); font-size: 13px; }

/* ------------------------------------------------------------------------
   8. 政策 / 报告
   ------------------------------------------------------------------------ */
.PolicyReportGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(20px, 2vw, 28px);
}

.PolicyReportCard {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(28px, 2.5vw, 38px);
  border: 1px solid var(--home-line);
  border-radius: 22px;
  background: linear-gradient(145deg,#fff,#fcfdff);
  box-shadow: var(--home-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.PolicyReportCard:hover {
  transform: translateY(-3px);
  border-color: rgba(36,84,255,.18);
  box-shadow: var(--home-shadow-md);
}

.PolicyReportCard__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.PolicyReportCard__icon--purple { color: var(--home-primary); background: rgba(36,84,255,.09); }
.PolicyReportCard__icon--blue { color: #1677ff; background: rgba(22,119,255,.09); }

.PolicyReportCard__title {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--home-text);
}

.PolicyReportCard__desc {
  font-size: 15px;
  line-height: 1.72;
  color: var(--home-text-2);
}

.PolicyReportCard__preview {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(36,84,255,.08);
  border-radius: 16px;
  background:
    radial-gradient(circle at 70% 30%, rgba(11,187,216,.065), transparent 30%),
    linear-gradient(135deg,#f4f8ff,#f7fcff);
}

.PolicyReportCard__previewInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.PolicyReportCard__previewIcon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--home-primary);
  background: rgba(255,255,255,.8);
}

.PolicyReportCard__previewText {
  max-width: 300px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--home-text-2);
}

.PolicyReportCard__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.PolicyReportCard__listItem {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--home-text-2);
}

.PolicyReportCard__listDot {
  width: 5px;
  height: 5px;
  margin-top: .58em;
  flex: none;
  border-radius: 50%;
  background: var(--home-primary);
}

.PolicyReportCard__listLink {
  min-width: 0;
  flex: 1;
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color .2s ease;
}

.PolicyReportCard__listLink:hover,
.PolicyReportCard:hover .PolicyReportCard__listLink { color: var(--home-primary); }

.PolicyReportCard__link,
.PolicyReportCard__link--stretch {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--home-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.PolicyReportCard__link--stretch::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* ------------------------------------------------------------------------
   9. Bottom CTA
   ------------------------------------------------------------------------ */
.CtaSection {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 5vw, 84px) 0;
  text-align: center;
  background: linear-gradient(125deg,#0d2b93 0%,#164dff 52%,#6546ff 100%);
}

.CtaSection::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -140px;
  top: -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,187,216,.28), transparent 68%);
  pointer-events: none;
}

.CtaSection__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255,255,255,.03), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(99,60,255,.22), transparent 28%);
}

.CtaSection__content {
  position: relative;
  z-index: 2;
  width: min(var(--home-container), 980px);
  margin-inline: auto;
}

.CtaSection__title {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(30px, 2.2vw, 40px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.CtaSection__desc {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 1.75;
}

.CtaSection__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.CtaSection .btn {
  min-width: 130px;
  min-height: 46px;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

/* 基础主次仍保留；Hover 统一交互语言 */
.CtaSection .btn:hover {
  color: #fff;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.60);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}

.CtaSection .btn:focus-visible {
  outline: 2px solid rgba(255,255,255,.92);
  outline-offset: 3px;
}

.CtaSection .btn:active { transform: translateY(0); }

/* ------------------------------------------------------------------------
   10. Responsive
   ------------------------------------------------------------------------ */
@media (max-width: 1279px) {
  .Hero {
    min-height: auto;
    padding-top: 88px;
  }

  .Hero__inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .Hero__content {
    max-width: 780px;
    text-align: center;
    margin-inline: auto;
  }

  .Hero__subtitle { margin-inline: auto; }
  .Hero__actions { justify-content: center; }
  .Hero__visual { justify-content: center; }
  .HeroFlow { width: min(100%, 780px); }

  .ClientEntryCard {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .ClientEntryCard__icon,
  .ClientEntryCard__title,
  .ClientEntryCard__problem,
  .ClientEntryCard__desc,
  .ClientEntryCard__link,
  .ClientEntryCard__visual {
    grid-column: 1;
    grid-row: auto;
  }

  .ClientEntryCard__visual {
    min-height: 180px;
    margin-top: 4px;
  }

  .ClientEntryCard__tags {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .ProductCapCard--wide {
    grid-template-columns: 1fr;
  }

  .SolPanel__inner {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  :root { --home-section-y: 76px; }

  .ClientEntryGrid,
  .ProductCapGrid,
  .CaseEntry,
  .PolicyReportGrid {
    grid-template-columns: 1fr 1fr;
  }

  .IndustryGrid { grid-template-columns: repeat(2,minmax(0,1fr)); }

  .SolPanel__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .SolPanel__visual { min-height: 220px; }
}

@media (max-width: 767px) {
  :root { --home-section-y: 58px; }

  .SectionIntro {
    margin-bottom: 30px;
  }

  .SectionIntro h2 {
    font-size: clamp(27px, 7.2vw, 32px);
    line-height: 1.22;
  }

  .SectionIntro__lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .Hero {
    padding: 72px 0 54px;
  }

  .Hero__inner { gap: 34px; }

  .Hero__title {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.28;
  }

  .Hero__subtitle {
    font-size: 16px;
    line-height: 1.75;
  }

  .Hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .Hero__actions .btn { width: 100%; }

  .HeroFlow {
    padding: 20px;
    border-radius: 22px;
  }

  .HeroFlow__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .HeroFlow__node {
    min-height: 0;
    display: grid;
    grid-template-columns: 42px 42px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 3px;
    align-items: center;
    padding: 12px 14px;
  }

  .HeroFlow__iconWrap {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .HeroFlow__stepNum { grid-column: 2; grid-row: 1 / 3; }
  .HeroFlow__title { grid-column: 3; grid-row: 1; }
  .HeroFlow__desc { grid-column: 3; grid-row: 2; }
  .HeroFlow__node[data-row="1"]:not(:last-child)::after { display: none; }

  .ClientEntryGrid,
  .ProductCapGrid,
  .IndustryGrid,
  .CaseEntry,
  .PolicyReportGrid {
    grid-template-columns: 1fr;
  }

  .ClientEntryCard,
  .ProductCapCard,
  .IndustryCard,
  .CaseEntry__card,
  .PolicyReportCard,
  .SolPanel__inner {
    padding: 24px;
    border-radius: 18px;
  }

  .ClientEntryCard__visual {
    min-height: 150px;
  }

  .ClientEntryCard__visualIcon {
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }

  .ClientEntryCard__visualIcon svg {
    width: 38px;
    height: 38px;
  }

  .ProductCapCard--wide .ProductCapCard__visualContent {
    grid-template-columns: 1fr;
  }

  .SolTabBar {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 5px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .SolTabBar::-webkit-scrollbar { display: none; }
  .SolTab { flex: 0 0 auto; }

  .SolPanel__visual { min-height: 190px; }

  .IndustryCard { min-height: auto; }

  .CtaSection__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .CtaSection .btn { width: 100%; }
}

@media (max-width: 430px) {
  .HeroFlow__node {
    grid-template-columns: 40px 1fr;
  }

  .HeroFlow__stepNum { display: none; }
  .HeroFlow__title,
  .HeroFlow__desc { grid-column: 2; }

  .ClientEntryCard__problem {
    width: 100%;
  }
}

/* ------------------------------------------------------------------------
   11. Motion / accessibility
   ------------------------------------------------------------------------ */
@keyframes homeGradientDrift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes homeFlowIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .Hero__gradient,
  .HeroFlow__node {
    animation: none !important;
  }

  .HeroFlow__node {
    opacity: 1;
    transform: none;
  }

  .ClientEntryCard,
  .ProductCapCard,
  .IndustryCard,
  .CaseEntry__card,
  .PolicyReportCard,
  .Hero__actions .btn,
  .CtaSection .btn {
    transition: none !important;
  }
}
