:root {
  --hoo-purple-700: #5f489f;
  --hoo-purple-600: #7358bd;
  --hoo-purple-500: #8a6feb;
  --hoo-purple-400: #9a7fef;
  --hoo-purple-300: #b094f1;
  --hoo-purple-200: #c4aaf6;
  --hoo-purple-100: #e8daf3;
  --hoo-purple-50: #f2ecf8;
  --hoo-ink-900: #1d173d;
  --hoo-ink-700: #3e3858;
  --hoo-ink-500: #6b647c;
  --hoo-ink-300: #9b96a6;
  --hoo-paper-100: #faf5f2;
  --hoo-paper-50: #fffdfa;
  --hoo-paper-200: #f3ebed;
  --hoo-pink-200: #f3c6db;
  --hoo-peach-200: #eedbd4;
  --hoo-yellow-200: #f2dfbb;
  --hoo-blue-200: #d8ddf5;
  --hoo-green: #79a98c;
  --hoo-warning: #c99855;
  --hoo-danger: #c96f7b;
  --shadow-paper: 0 8px 24px rgba(48, 36, 74, 0.08);
  --shadow-soft: 0 14px 38px rgba(48, 36, 74, 0.12);
  --shadow-button: 0 9px 22px rgba(104, 76, 177, 0.20);
  --container: 1180px;
  --header-height: 76px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--hoo-ink-700);
  background:
    radial-gradient(circle at 8% 8%, rgba(196,170,246,.20), transparent 26%),
    radial-gradient(circle at 92% 18%, rgba(243,198,219,.15), transparent 22%),
    radial-gradient(circle at 82% 76%, rgba(216,221,245,.18), transparent 24%),
    var(--hoo-paper-100);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    radial-gradient(rgba(29,23,61,.04) .6px, transparent .8px),
    radial-gradient(rgba(138,111,235,.04) .5px, transparent .8px);
  background-position: 0 0, 9px 11px;
  background-size: 17px 17px, 21px 21px;
  z-index: -1;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--hoo-purple-200); color: var(--hoo-ink-900); }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { position: relative; padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-tint { background: rgba(242,236,248,.62); }
.section-paper { background: rgba(255,253,250,.72); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--hoo-purple-700);
  background: rgba(232,218,243,.74);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.eyebrow::before { content: ""; width: 14px; height: 1px; background: currentColor; opacity: .6; }
.section-head { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-title {
  margin: 16px 0 14px;
  color: var(--hoo-ink-900);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: -.035em;
}
.section-desc { margin: 0; color: var(--hoo-ink-500); font-size: 17px; }
.muted { color: var(--hoo-ink-500); }
.small { font-size: 13px; }
.text-center { text-align: center; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.98); }
.btn-primary {
  color: white;
  background: var(--hoo-purple-500);
  box-shadow: var(--shadow-button);
}
.btn-secondary {
  color: var(--hoo-purple-700);
  background: rgba(255,253,250,.88);
  box-shadow: 0 10px 26px rgba(48,36,74,.10);
}
.btn-ghost {
  color: var(--hoo-purple-700);
  background: rgba(232,218,243,.58);
}
.btn-sm { min-height: 42px; padding: 9px 17px; font-size: 14px; }
.btn-arrow::after { content: "→"; transition: transform .2s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-height);
  border-bottom: 1px solid rgba(138,111,235,.10);
  background: rgba(250,245,242,.84);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px 17px 14px 18px;
  color: white;
  font-weight: 900;
  letter-spacing: -.08em;
  background: linear-gradient(140deg, #bda5f5, #7e61d3 62%, #6a50aa);
  box-shadow: 0 10px 26px rgba(104,76,177,.22);
  transform: none;
}
.brand-text strong { display: block; color: var(--hoo-ink-900); font-size: 19px; line-height: 1.1; }
.brand-text span { display: block; color: var(--hoo-ink-300); font-size: 10px; letter-spacing: .16em; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 11px;
  border-radius: 12px;
  color: var(--hoo-ink-500);
  font-size: 14px;
  transition: .18s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--hoo-purple-700); background: rgba(232,218,243,.55); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(232,218,243,.58);
  color: var(--hoo-purple-700);
  font-size: 22px;
}

.hero { min-height: calc(100vh - var(--header-height)); display: flex; align-items: center; padding: 64px 0 78px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-kicker { margin-bottom: 20px; }
.hero-title {
  margin: 0;
  color: var(--hoo-ink-900);
  font-size: clamp(48px, 6.3vw, 78px);
  line-height: 1.12;
  letter-spacing: -.055em;
}
.hero-title .highlight { position: relative; display: inline-block; color: var(--hoo-purple-700); }
.hero-title .highlight::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 1px;
  height: 14px;
  background: rgba(196,170,246,.44);
  border-radius: 46% 54% 43% 57%;
  z-index: -1;
  transform: none;
}
.hero-subtitle { margin: 26px 0 0; max-width: 650px; color: var(--hoo-ink-500); font-size: 19px; line-height: 1.85; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 25px 0 30px; }
.hero-points span {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,253,250,.78);
  box-shadow: 0 8px 20px rgba(48,36,74,.07);
  color: var(--hoo-ink-700);
  font-size: 14px;
}
.hero-points span::before { content: "✓"; color: var(--hoo-purple-600); font-weight: 900; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--hoo-ink-300); font-size: 13px; }
.hero-note::before { content: "☁"; color: var(--hoo-purple-300); font-size: 18px; }

.hero-visual { position: relative; min-height: 560px; }
.watercolor {
  position: absolute;
  border-radius: 44% 56% 58% 42% / 46% 41% 59% 54%;
  filter: blur(3px);
  opacity: .72;
}
.watercolor.one { width: 430px; height: 360px; right: 5%; top: 8%; background: radial-gradient(circle at 38% 35%, rgba(123,88,205,.72), rgba(176,148,241,.46) 39%, rgba(232,218,243,.14) 70%, transparent 75%); transform: rotate(-8deg); }
.watercolor.two { width: 260px; height: 230px; left: 3%; bottom: 6%; background: radial-gradient(circle at 45% 40%, rgba(243,198,219,.55), rgba(238,219,212,.25) 56%, transparent 72%); animation-delay: -2.1s; }
.watercolor.three { display: none; width: 210px; height: 210px; right: -2%; bottom: 4%; background: radial-gradient(circle at 40% 40%, rgba(216,221,245,.62), rgba(196,170,246,.16) 58%, transparent 73%); animation-delay: -3.3s; }
.phone-card {
  position: absolute;
  width: min(360px, 74%);
  right: 10%; top: 2%;
  padding: 18px;
  border-radius: 42px;
  background: #fbf6f4;
  box-shadow: 0 35px 80px rgba(48,36,74,.22);
  transform: rotate(1deg);
}
.phone-screen {
  min-height: 490px;
  padding: 28px 24px;
  border-radius: 31px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 15%, rgba(196,170,246,.42), transparent 25%),
    radial-gradient(circle at 20% 88%, rgba(243,198,219,.32), transparent 24%),
    #fffdfa;
  border: 1px solid rgba(138,111,235,.10);
}
.phone-top { display: flex; justify-content: space-between; font-size: 11px; color: var(--hoo-ink-500); }
.phone-title { margin: 55px 0 16px; color: var(--hoo-ink-900); font-size: 27px; line-height: 1.38; transform: none; }
.phone-cloud {
  width: 210px; height: 144px; margin: 20px auto 28px; position: relative;
  border-radius: 48% 52% 44% 56% / 56% 43% 57% 44%;
  background: radial-gradient(circle at 42% 38%, rgba(176,148,241,.92), rgba(138,111,235,.62) 45%, rgba(196,170,246,.55) 68%, transparent 72%);
  filter: drop-shadow(0 12px 18px rgba(104,76,177,.17));
}
.phone-cloud::before, .phone-cloud::after { content: ""; position: absolute; width: 18px; height: 9px; border-bottom: 2px solid rgba(62,56,88,.75); border-radius: 50%; top: 57px; }
.phone-cloud::before { left: 73px; }
.phone-cloud::after { right: 73px; }
.phone-cloud .mouth { position: absolute; width: 10px; height: 7px; left: 100px; top: 79px; border-bottom: 2px solid rgba(62,56,88,.75); border-radius: 50%; }
.phone-chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.phone-chip { padding: 8px 12px; border-radius: 999px; background: rgba(242,236,248,.88); font-size: 12px; color: var(--hoo-purple-700); }
.phone-cta { margin-top: 28px; padding: 14px 18px; text-align: center; color: white; border-radius: 999px; background: linear-gradient(100deg,#b094f1,#8a6feb 55%,#9a7fef); font-weight: 700; font-size: 14px; }
.qr-card {
  position: absolute;
  left: 0; bottom: 0;
  width: 215px;
  padding: 18px;
  border-radius: 26px 29px 24px 30px;
  background: rgba(255,253,250,.93);
  box-shadow: var(--shadow-paper);
  transform: rotate(-4deg);
  z-index: 4;
}
.qr-card::before { content: ""; position: absolute; width: 72px; height: 22px; top: -10px; left: 70px; background: rgba(238,219,212,.74); transform: rotate(5deg); }
.qr-row { display: flex; gap: 13px; align-items: center; }
.qr-mini { width: 78px; height: 78px; border-radius: 10px; background: white; padding: 4px; }
.qr-card strong { display: block; color: var(--hoo-ink-900); font-size: 14px; line-height: 1.45; }
.qr-card span { display: block; color: var(--hoo-ink-300); font-size: 11px; margin-top: 5px; line-height: 1.5; }

@keyframes breathe { 0%,100% { transform: scale(1) rotate(-5deg); opacity: .85; } 50% { transform: scale(1.035) rotate(-3deg); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }

.pain-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.pain-card {
  grid-column: span 4;
  min-height: 150px;
  padding: 25px;
  border-radius: 26px;
  background: rgba(255,253,250,.82);
  box-shadow: var(--shadow-paper);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.pain-card:hover { transform: translateY(-5px) rotate(-.5deg); box-shadow: var(--shadow-soft); }
.pain-card::after { content: "?"; position: absolute; right: 17px; bottom: -18px; color: rgba(176,148,241,.15); font-size: 92px; font-weight: 900; line-height: 1; }
.pain-card:nth-child(2), .pain-card:nth-child(6) { transform: none; }
.pain-card:nth-child(4) { grid-column: span 6; }
.pain-card:nth-child(5) { grid-column: span 6; }
.pain-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 15px; background: var(--hoo-purple-50); color: var(--hoo-purple-700); font-size: 20px; margin-bottom: 16px; }
.pain-card h3 { margin: 0; color: var(--hoo-ink-900); font-size: 19px; line-height: 1.45; }
.pain-card p { margin: 9px 0 0; color: var(--hoo-ink-500); font-size: 14px; }

.capability-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.capability-note {
  position: sticky; top: 110px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(155deg, rgba(232,218,243,.82), rgba(255,253,250,.88));
  box-shadow: var(--shadow-paper);
}
.capability-note .scribble { margin: 25px 0; height: 160px; position: relative; }
.capability-note .scribble::before {
  content: ""; position: absolute; inset: 5px 15px 10px 10px;
  border-radius: 45% 55% 59% 41% / 43% 54% 46% 57%;
  background: radial-gradient(circle at 42% 40%, rgba(138,111,235,.68), rgba(176,148,241,.42) 47%, rgba(232,218,243,.15) 70%, transparent 75%);
}
.capability-note .scribble::after { content: "看清事实\A 再决定行动"; white-space: pre; position: absolute; inset: 52px 0 0; text-align: center; color: white; font-weight: 800; font-size: 19px; line-height: 1.6; }
.capability-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.capability-item { padding: 24px; border-radius: 24px; background: rgba(255,253,250,.82); box-shadow: 0 10px 26px rgba(48,36,74,.08); }
.capability-item .num { color: var(--hoo-purple-400); font-weight: 900; font-size: 13px; letter-spacing: .08em; }
.capability-item h3 { margin: 8px 0 8px; color: var(--hoo-ink-900); font-size: 18px; }
.capability-item p { margin: 0; color: var(--hoo-ink-500); font-size: 14px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { counter-increment: step; position: relative; padding: 28px 24px; min-height: 220px; border-radius: 28px; background: rgba(255,253,250,.84); box-shadow: var(--shadow-paper); }
.step::before { content: counter(step, decimal-leading-zero); display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; color: white; background: linear-gradient(140deg,#b094f1,#8a6feb); font-size: 12px; font-weight: 900; box-shadow: 0 8px 18px rgba(104,76,177,.23); }
.step::after { content: ""; position: absolute; right: -19px; top: 48px; width: 20px; border-top: 2px dashed rgba(138,111,235,.27); }
.step:nth-child(4)::after, .step:nth-child(8)::after { display: none; }
.step h3 { margin: 20px 0 8px; color: var(--hoo-ink-900); font-size: 18px; }
.step p { margin: 0; color: var(--hoo-ink-500); font-size: 14px; }

.report-showcase { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: center; }
.report-document { position: relative; padding: 42px; border-radius: 18px 34px 22px 31px; background: #fffdfa; box-shadow: 0 30px 70px rgba(48,36,74,.16); transform: none; }
.report-document::before { content: ""; position: absolute; width: 100px; height: 26px; top: -13px; left: 50%; transform: translateX(-50%) rotate(2deg); background: rgba(196,170,246,.48); }
.report-label { display: inline-block; padding: 6px 11px; border-radius: 999px; background: var(--hoo-purple-50); color: var(--hoo-purple-700); font-size: 12px; font-weight: 700; }
.report-document h3 { margin: 18px 0 12px; color: var(--hoo-ink-900); font-size: 27px; line-height: 1.45; }
.report-quote { margin: 22px 0; padding: 18px 20px; border-left: 4px solid var(--hoo-purple-400); border-radius: 0 18px 18px 0; background: rgba(242,236,248,.66); color: var(--hoo-ink-700); font-weight: 600; }
.signal-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.signal { padding: 7px 11px; border-radius: 999px; font-size: 12px; }
.signal.good { color: #4f8062; background: rgba(121,169,140,.14); }
.signal.mid { color: #8a6a2e; background: rgba(201,152,85,.15); }
.signal.risk { color: #9d5260; background: rgba(201,111,123,.13); }
.report-tabs { display: grid; gap: 13px; }
.report-tab { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; padding: 20px; border-radius: 22px; background: rgba(255,253,250,.72); border: 1px solid rgba(138,111,235,.09); transition: .2s ease; }
.report-tab:hover { background: rgba(255,253,250,.96); border-color: rgba(138,111,235,.20); }
.report-tab .icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; color: var(--hoo-purple-700); background: var(--hoo-purple-50); }
.report-tab h4 { margin: 0 0 4px; color: var(--hoo-ink-900); }
.report-tab p { margin: 0; color: var(--hoo-ink-500); font-size: 13px; }

.scene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.scene-card { min-height: 220px; padding: 27px; border-radius: 28px; position: relative; overflow: hidden; background: rgba(255,253,250,.82); box-shadow: var(--shadow-paper); }
.scene-card.featured { grid-column: span 2; background: linear-gradient(145deg, rgba(232,218,243,.78), rgba(255,253,250,.92)); }
.scene-card .scene-icon { font-size: 30px; margin-bottom: 30px; display: block; }
.scene-card h3 { margin: 0 0 10px; color: var(--hoo-ink-900); }
.scene-card p { margin: 0; color: var(--hoo-ink-500); font-size: 14px; max-width: 420px; }
.scene-card .tag { position: absolute; right: 17px; top: 17px; padding: 5px 9px; border-radius: 999px; background: rgba(255,255,255,.66); color: var(--hoo-purple-700); font-size: 11px; font-weight: 700; }
.scene-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -36px; bottom: -42px; border-radius: 45% 55% 48% 52%; background: radial-gradient(circle, rgba(176,148,241,.28), transparent 70%); }

.compare-wrap { overflow-x: auto; border-radius: 30px; box-shadow: var(--shadow-paper); }
.compare-table { width: 100%; min-width: 780px; border-collapse: collapse; background: rgba(255,253,250,.88); }
.compare-table th, .compare-table td { padding: 20px 24px; text-align: left; border-bottom: 1px solid rgba(138,111,235,.10); }
.compare-table th { color: var(--hoo-ink-900); background: rgba(242,236,248,.72); font-size: 15px; }
.compare-table td:first-child { color: var(--hoo-ink-500); font-weight: 700; width: 24%; }
.compare-table td:nth-child(2) { color: var(--hoo-ink-500); }
.compare-table td:nth-child(3) { color: var(--hoo-purple-700); font-weight: 700; background: rgba(242,236,248,.25); }
.compare-table tr:last-child td { border-bottom: 0; }

.security-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; }
.security-main { padding: 38px; border-radius: 32px; background: rgba(255,253,250,.86); box-shadow: var(--shadow-paper); }
.security-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 26px; }
.security-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; border-radius: 18px; background: rgba(242,236,248,.56); }
.security-item .check { flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 10px; background: white; color: var(--hoo-purple-700); font-weight: 900; box-shadow: 0 6px 14px rgba(48,36,74,.08); }
.security-item strong { display: block; color: var(--hoo-ink-900); font-size: 14px; }
.security-item span { display: block; color: var(--hoo-ink-500); font-size: 12px; margin-top: 3px; }
.safety-card { padding: 32px; border-radius: 32px; background: linear-gradient(150deg, rgba(216,221,245,.72), rgba(255,253,250,.88)); box-shadow: var(--shadow-paper); }
.safety-card h3 { color: var(--hoo-ink-900); margin-top: 0; }
.safety-card .notice { margin-top: 20px; padding: 16px 18px; border-radius: 17px; background: rgba(255,253,250,.72); color: var(--hoo-ink-500); font-size: 13px; }

.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; align-items: stretch; }
.price-card { padding: 28px 24px; border-radius: 28px; background: rgba(255,253,250,.84); box-shadow: var(--shadow-paper); position: relative; }
.price-card.recommended { transform: none; background: linear-gradient(160deg, rgba(232,218,243,.9), rgba(255,253,250,.95)); border: 1px solid rgba(138,111,235,.20); }
.price-card .badge { position: absolute; top: 16px; right: 16px; padding: 5px 9px; border-radius: 999px; color: white; background: var(--hoo-purple-500); font-size: 10px; font-weight: 800; }
.price-card h3 { margin: 5px 0 8px; color: var(--hoo-ink-900); }
.price-card .price { margin: 18px 0; color: var(--hoo-purple-700); font-size: 24px; font-weight: 900; }
.price-card ul { list-style: none; padding: 0; margin: 20px 0 26px; }
.price-card li { position: relative; padding-left: 22px; margin: 10px 0; color: var(--hoo-ink-500); font-size: 13px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--hoo-purple-600); font-weight: 900; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial { padding: 26px; border-radius: 28px; background: rgba(255,253,250,.84); box-shadow: var(--shadow-paper); }
.testimonial:nth-child(2) { transform: none; }
.testimonial .stars { color: #b48a43; letter-spacing: 3px; font-size: 13px; }
.testimonial blockquote { margin: 17px 0; color: var(--hoo-ink-700); font-size: 15px; line-height: 1.8; }
.testimonial .user { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 15px; color: white; background: linear-gradient(145deg,#c4aaf6,#8a6feb); font-weight: 800; }
.user strong { display: block; color: var(--hoo-ink-900); font-size: 13px; }
.user span { display: block; color: var(--hoo-ink-300); font-size: 11px; }

.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { overflow: hidden; border-radius: 20px; background: rgba(255,253,250,.82); box-shadow: 0 10px 26px rgba(48,36,74,.07); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; background: transparent; text-align: left; color: var(--hoo-ink-900); font-weight: 700; }
.faq-question span:last-child { font-size: 23px; color: var(--hoo-purple-600); transition: transform .2s ease; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer p { margin: 0; padding: 0 22px 22px; color: var(--hoo-ink-500); font-size: 14px; }

.bottom-cta { padding: 86px 0; }
.cta-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; padding: 48px; border-radius: 38px; color: white; background: linear-gradient(135deg, #7054b6, #8a6feb 55%, #9b7ce6); box-shadow: 0 30px 70px rgba(104,76,177,.28); }
.cta-panel::before, .cta-panel::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.10); }
.cta-panel::before { width: 260px; height: 260px; left: -90px; top: -130px; }
.cta-panel::after { width: 220px; height: 220px; right: 170px; bottom: -150px; }
.cta-copy { position: relative; z-index: 2; }
.cta-copy h2 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 45px); line-height: 1.3; }
.cta-copy p { margin: 0; color: rgba(255,255,255,.78); }
.cta-qr { position: relative; z-index: 2; display: flex; align-items: center; gap: 17px; padding: 14px; border-radius: 24px; background: rgba(255,255,255,.95); color: var(--hoo-ink-700); }
.cta-qr img { width: 100px; height: 100px; }
.cta-qr strong { display: block; color: var(--hoo-ink-900); }
.cta-qr span { display: block; color: var(--hoo-ink-500); font-size: 12px; margin-top: 4px; }

.site-footer { padding: 54px 0 26px; background: rgba(29,23,61,.97); color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3,.7fr); gap: 40px; }
.footer-brand .brand-text strong { color: white; }
.footer-brand p { max-width: 360px; font-size: 13px; color: rgba(255,255,255,.55); }
.footer-col h4 { margin: 0 0 14px; color: white; font-size: 14px; }
.footer-col a { display: block; margin: 8px 0; color: rgba(255,255,255,.57); font-size: 13px; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10); font-size: 12px; color: rgba(255,255,255,.42); }

.page-hero { padding: 92px 0 70px; text-align: center; }
.page-hero h1 { margin: 16px 0; color: var(--hoo-ink-900); font-size: clamp(42px, 6vw, 66px); line-height: 1.2; letter-spacing: -.04em; }
.page-hero p { max-width: 760px; margin: 0 auto; color: var(--hoo-ink-500); font-size: 18px; }
.page-hero .breadcrumbs { color: var(--hoo-ink-300); font-size: 13px; }
.page-hero .breadcrumbs a { color: var(--hoo-purple-700); }

.content-grid { display: grid; grid-template-columns: 260px 1fr; gap: 34px; align-items: start; }
.sidebar { position: sticky; top: 100px; padding: 20px; border-radius: 24px; background: rgba(255,253,250,.82); box-shadow: var(--shadow-paper); }
.sidebar a { display: block; padding: 11px 13px; border-radius: 12px; color: var(--hoo-ink-500); font-size: 14px; }
.sidebar a:hover, .sidebar a.active { color: var(--hoo-purple-700); background: var(--hoo-purple-50); }
.article-body { padding: 42px; border-radius: 30px; background: rgba(255,253,250,.86); box-shadow: var(--shadow-paper); }
.article-body h2 { margin-top: 36px; color: var(--hoo-ink-900); font-size: 28px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { color: var(--hoo-ink-900); }
.article-body p, .article-body li { color: var(--hoo-ink-500); }
.callout { padding: 22px 24px; border-radius: 20px; background: var(--hoo-purple-50); border-left: 4px solid var(--hoo-purple-400); }

.report-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.report-card { overflow: hidden; border-radius: 28px; background: rgba(255,253,250,.86); box-shadow: var(--shadow-paper); transition: .2s ease; }
.report-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.report-cover { min-height: 210px; padding: 26px; display: flex; align-items: flex-end; position: relative; background: radial-gradient(circle at 70% 26%, rgba(176,148,241,.74), rgba(232,218,243,.45) 38%, rgba(255,253,250,.64) 75%); }
.report-cover::before { content: "HOO INSIGHT"; position: absolute; top: 22px; left: 24px; color: var(--hoo-purple-700); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.report-cover h3 { margin: 0; color: var(--hoo-ink-900); font-size: 23px; line-height: 1.45; }
.report-meta { padding: 20px 24px 24px; }
.report-meta p { margin: 0 0 15px; color: var(--hoo-ink-500); font-size: 13px; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-pill { padding: 5px 9px; border-radius: 999px; color: var(--hoo-purple-700); background: var(--hoo-purple-50); font-size: 11px; }
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: 36px; }
.filter-btn { border: 0; padding: 9px 15px; border-radius: 999px; color: var(--hoo-ink-500); background: rgba(255,253,250,.72); box-shadow: 0 8px 18px rgba(48,36,74,.07); }
.filter-btn.active { color: white; background: var(--hoo-purple-500); }


.timeline { max-width: 850px; margin: 0 auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 25px; top: 0; bottom: 0; border-left: 2px dashed rgba(138,111,235,.26); }
.timeline-item { position: relative; padding-left: 76px; margin: 0 0 26px; }
.timeline-dot { position: absolute; left: 6px; top: 6px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--hoo-purple-500); box-shadow: 0 8px 18px rgba(104,76,177,.25); font-size: 11px; font-weight: 800; }
.timeline-card { padding: 22px 25px; border-radius: 22px; background: rgba(255,253,250,.84); box-shadow: var(--shadow-paper); }
.timeline-card h3 { margin: 0 0 7px; color: var(--hoo-ink-900); }
.timeline-card p { margin: 0; color: var(--hoo-ink-500); font-size: 14px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card { padding: 30px; border-radius: 28px; background: rgba(255,253,250,.84); box-shadow: var(--shadow-paper); }
.contact-card h3 { color: var(--hoo-ink-900); }
.contact-line { display: flex; gap: 12px; margin: 14px 0; color: var(--hoo-ink-500); font-size: 14px; }
.contact-line strong { min-width: 82px; color: var(--hoo-ink-700); }

.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(29,23,61,.34); backdrop-filter: blur(8px); }
.modal.open { display: flex; }
.modal-card { width: min(420px,100%); position: relative; padding: 34px; border-radius: 32px; text-align: center; background: var(--hoo-paper-50); box-shadow: 0 35px 85px rgba(29,23,61,.28); }
.modal-close { position: absolute; right: 15px; top: 15px; width: 38px; height: 38px; border: 0; border-radius: 12px; color: var(--hoo-purple-700); background: var(--hoo-purple-50); font-size: 22px; }
.modal-card img { width: 190px; height: 190px; margin: 18px auto; padding: 8px; border-radius: 18px; background: white; }
.modal-card h3 { margin: 5px 0 6px; color: var(--hoo-ink-900); font-size: 24px; }
.modal-card p { margin: 0; color: var(--hoo-ink-500); font-size: 14px; }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .mobile-toggle { display: inline-grid; place-items: center; }
  .nav-links.open { display: flex; position: absolute; left: 20px; right: 20px; top: 68px; flex-direction: column; align-items: stretch; padding: 15px; border-radius: 20px; background: rgba(255,253,250,.98); box-shadow: var(--shadow-soft); }
  .nav-links.open a { padding: 12px 14px; }
  .hero-grid, .report-showcase, .security-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  .hero-copy { text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-points, .hero-actions, .hero-note { justify-content: center; }
  .hero-visual { min-height: 600px; max-width: 650px; width: 100%; margin: 0 auto; }
  .phone-card { right: 12%; }
  .qr-card { left: 10%; }
  .capability-layout { grid-template-columns: 1fr; }
  .capability-note { position: static; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step:nth-child(2)::after, .step:nth-child(6)::after { display: none; }
  .step:nth-child(4)::after { display: block; }
  .price-grid { grid-template-columns: repeat(2,1fr); }
  .price-card.recommended { transform: none; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 2 / 4; }
  .report-grid, .article-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 780px) {
  :root { --header-height: 68px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .section-sm { padding: 56px 0; }
  .nav-actions .btn { display: none; }
  .brand-text span { display: none; }
  .hero { min-height: auto; padding: 44px 0 58px; }
  .hero-title { font-size: 46px; }
  .hero-subtitle { font-size: 16px; }
  .hero-visual { min-height: 530px; }
  .phone-card { width: 78%; right: 5%; }
  .phone-screen { min-height: 430px; }
  .qr-card { left: 1%; width: 190px; }
  .pain-card, .pain-card:nth-child(4), .pain-card:nth-child(5) { grid-column: span 6; transform: none; }
  .capability-list { grid-template-columns: 1fr; }
  .scene-grid, .testimonials { grid-template-columns: 1fr 1fr; }
  .scene-card.featured { grid-column: span 2; }
  .security-list { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; padding: 34px 28px; }
  .cta-qr { width: fit-content; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; display: flex; overflow-x: auto; gap: 5px; padding: 10px; }
  .sidebar a { min-width: max-content; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-title { font-size: 39px; }
  .hero-points span { font-size: 12px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 480px; }
  .phone-card { right: 0; width: 87%; padding: 12px; border-radius: 32px; }
  .phone-screen { min-height: 405px; padding: 22px 18px; border-radius: 24px; }
  .phone-title { margin-top: 38px; font-size: 22px; }
  .phone-cloud { width: 180px; height: 126px; }
  .phone-cloud::before { left: 62px; top: 50px; }
  .phone-cloud::after { right: 62px; top: 50px; }
  .phone-cloud .mouth { left: 85px; top: 70px; }
  .qr-card { width: 175px; padding: 13px; }
  .qr-mini { width: 66px; height: 66px; }
  .pain-card, .pain-card:nth-child(4), .pain-card:nth-child(5) { grid-column: span 12; }
  .steps, .scene-grid, .testimonials, .price-grid, .report-grid, .article-grid { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .scene-card.featured { grid-column: span 1; }
  .report-document { padding: 30px 23px; }
  .report-document h3 { font-size: 22px; }
  .cta-qr { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; }
  .article-body { padding: 26px 21px; }
  .page-hero { padding: 70px 0 52px; }
  .page-hero h1 { font-size: 40px; }
}


/* V2.0 content refinements */
.value-cards .testimonial { min-height: 230px; }
.value-cards .testimonial h3 { margin: 22px 0 10px; color: var(--hoo-ink-900); font-size: 21px; }
.value-cards .testimonial p { margin: 0; color: var(--hoo-ink-500); font-size: 14px; }
.value-index { display: inline-flex; min-width: 42px; padding-bottom: 8px; border-bottom: 2px solid var(--hoo-purple-300); color: var(--hoo-purple-700); font-weight: 800; font-size: 13px; letter-spacing: .08em; }
.scene-card .scene-icon { color: var(--hoo-purple-700); font-size: 15px; font-weight: 800; letter-spacing: .12em; }
.contact-grid-single { grid-template-columns: minmax(0, 720px); justify-content: center; }
.contact-card-primary { padding: 38px; }
.contact-card-primary h3 { margin-top: 0; }
.contact-card-primary .contact-line { padding: 13px 0; margin: 0; border-bottom: 1px solid rgba(138,111,235,.12); }
.contact-card-primary .contact-line a { color: var(--hoo-purple-700); font-weight: 700; }
.contact-note { margin: 22px 0 0; color: var(--hoo-ink-500); font-size: 13px; }

/* =========================================================
   V2.2 — Layout & Mobile Refinement
   保留：暖白纸张 + 柔和紫色扎染 + 结构化贴画
   ========================================================= */

:root {
  --container: 1200px;
  --content-narrow: 920px;
  --header-height: 78px;
  --section-space: clamp(76px, 8vw, 118px);
  --section-space-sm: clamp(54px, 6vw, 82px);
  --gutter: clamp(18px, 4vw, 42px);
  --card-border: 1px solid rgba(115, 88, 189, .10);
}

html {
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

main,
section,
header,
footer {
  min-width: 0;
}

p,
li,
a,
h1,
h2,
h3,
h4,
span {
  overflow-wrap: break-word;
}

:focus-visible {
  outline: 3px solid rgba(138, 111, 235, .42);
  outline-offset: 3px;
  border-radius: 10px;
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
}

.section {
  padding: var(--section-space) 0;
}

.section-sm {
  padding: var(--section-space-sm) 0;
}

.section-head {
  max-width: 790px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-head.left {
  max-width: 650px;
}

.section-title {
  font-size: clamp(30px, 4.4vw, 50px);
  text-wrap: balance;
}

.section-desc {
  max-width: 700px;
  margin-inline: auto;
  font-size: clamp(15px, 1.5vw, 17px);
}

.section-head.left .section-desc {
  margin-inline: 0;
}

/* Header */
.site-header {
  height: var(--header-height);
  box-shadow: 0 1px 0 rgba(95, 72, 159, .04);
}

.nav-wrap {
  position: relative;
}

.brand-mark {
  flex: 0 0 auto;
}

.nav-links {
  justify-content: center;
  min-width: 0;
}

.nav-links a {
  white-space: nowrap;
}

.mobile-toggle {
  position: relative;
  z-index: 72;
}

/* Hero */
.hero {
  min-height: min(820px, calc(100svh - var(--header-height)));
  padding: clamp(54px, 7vw, 86px) 0 clamp(70px, 8vw, 104px);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  gap: clamp(42px, 6vw, 84px);
}

.hero-copy {
  max-width: 690px;
}

.hero-title {
  max-width: 680px;
  font-size: clamp(46px, 6.1vw, 76px);
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 610px;
}

.hero-points {
  max-width: 620px;
}

.hero-visual {
  min-width: 0;
  min-height: 590px;
}

.phone-card {
  width: min(370px, 78%);
  right: 7%;
}

.qr-card {
  left: 1%;
  bottom: 4%;
}

/* Pain points */
.pain-grid {
  gap: clamp(14px, 2vw, 22px);
}

.pain-card {
  min-height: 164px;
  padding: clamp(22px, 2.5vw, 30px);
  border: var(--card-border);
}

.pain-card:nth-child(1),
.pain-card:nth-child(3) {
  grid-column: span 4;
}

.pain-card:nth-child(2) {
  grid-column: span 4;
  margin-top: 24px;
}

.pain-card:nth-child(4) {
  grid-column: 2 / span 5;
}

.pain-card:nth-child(5) {
  grid-column: span 5;
  margin-top: -10px;
}

.pain-card:nth-child(6) {
  grid-column: 3 / span 4;
}

.pain-card:nth-child(7) {
  grid-column: span 4;
  margin-top: 18px;
}

/* Capabilities */
.capability-layout {
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 60px);
}

.capability-note {
  top: calc(var(--header-height) + 28px);
  padding: clamp(28px, 3vw, 40px);
  border: var(--card-border);
}

.capability-list {
  gap: clamp(14px, 2vw, 20px);
}

.capability-item {
  min-height: 174px;
  padding: clamp(22px, 2.4vw, 29px);
  border: var(--card-border);
}

.capability-item:nth-child(2n) {
  transform: translateY(18px);
}

/* Steps */
.steps {
  gap: clamp(14px, 2vw, 22px);
}

.step {
  min-height: 232px;
  padding: clamp(23px, 2.6vw, 31px);
  border: var(--card-border);
}

.step:nth-child(2),
.step:nth-child(6) {
  margin-top: 26px;
}

/* Report showcase */
.report-showcase {
  grid-template-columns: minmax(0, 1.03fr) minmax(350px, .97fr);
  gap: clamp(38px, 6vw, 72px);
}

.report-document {
  padding: clamp(30px, 4vw, 48px);
}

.report-tabs {
  gap: 15px;
}

.report-tab {
  padding: clamp(18px, 2vw, 24px);
  border: var(--card-border);
}

.report-tab:nth-child(2),
.report-tab:nth-child(4) {
  margin-left: 22px;
}

/* Scenes */
.scene-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.scene-card,
.scene-card.featured {
  grid-column: span 4;
  min-height: 236px;
  padding: clamp(24px, 3vw, 32px);
  border: var(--card-border);
}

.scene-card.featured {
  grid-column: span 8;
}

.scene-card:nth-child(3),
.scene-card:nth-child(6) {
  transform: translateY(22px);
}

/* Compare */
.compare-wrap {
  border: var(--card-border);
  scrollbar-width: thin;
  scrollbar-color: var(--hoo-purple-300) transparent;
}

.compare-table th:first-child,
.compare-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: rgba(255, 253, 250, .98);
  box-shadow: 10px 0 20px rgba(48, 36, 74, .04);
}

.compare-table th:first-child {
  background: rgba(242, 236, 248, .98);
}

/* Security */
.security-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, .84fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: start;
}

.security-main,
.safety-card {
  border: var(--card-border);
}

.safety-card {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

/* Pricing & values */
.price-grid {
  gap: clamp(14px, 2vw, 20px);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 360px;
  border: var(--card-border);
}

.price-card ul {
  flex: 1;
}

.price-card .btn {
  width: 100%;
}

.price-card:nth-child(2),
.price-card:nth-child(4) {
  margin-top: 22px;
}

.testimonials {
  gap: clamp(14px, 2vw, 22px);
}

.testimonial {
  min-height: 244px;
  padding: clamp(24px, 3vw, 34px);
  border: var(--card-border);
}

.testimonial:nth-child(2) {
  margin-top: 28px;
}

/* FAQ */
.faq-list {
  max-width: 940px;
}

.faq-item {
  border: var(--card-border);
}

.faq-question {
  min-height: 66px;
  padding: 20px clamp(20px, 3vw, 28px);
}

.faq-answer p {
  padding-inline: clamp(20px, 3vw, 28px);
}

/* CTA */
.bottom-cta {
  padding: clamp(62px, 8vw, 96px) 0;
}

.cta-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(34px, 5vw, 58px);
  gap: clamp(26px, 5vw, 56px);
}

.cta-copy {
  max-width: 680px;
}

.cta-copy h2 {
  text-wrap: balance;
}

/* Footer */
.site-footer {
  padding-top: clamp(48px, 6vw, 68px);
}

.footer-grid {
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(135px, .7fr));
  gap: clamp(28px, 4vw, 52px);
}

/* Inner pages */
.page-hero {
  padding: clamp(74px, 9vw, 112px) 0 clamp(56px, 7vw, 82px);
}

.page-hero .container {
  max-width: 940px;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  text-wrap: balance;
}

.content-grid {
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
}

.sidebar {
  top: calc(var(--header-height) + 24px);
  max-height: calc(100svh - var(--header-height) - 48px);
  overflow-y: auto;
  border: var(--card-border);
}

.article-body {
  min-width: 0;
  padding: clamp(28px, 4vw, 50px);
  border: var(--card-border);
}

.article-body > * {
  max-width: 820px;
}

.article-body h2 {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.report-grid {
  gap: clamp(16px, 2.4vw, 26px);
}

.report-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: var(--card-border);
}

.report-cover {
  min-height: 225px;
}

.report-meta {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.report-meta .tags {
  margin-top: auto;
}

.timeline {
  max-width: 920px;
}

.timeline-card,
.contact-card {
  border: var(--card-border);
}

.contact-grid-single {
  grid-template-columns: minmax(0, 760px);
}

/* Tablet */
@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links.open {
    position: fixed;
    inset: var(--header-height) var(--gutter) auto;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    max-height: calc(100svh - var(--header-height) - 24px);
    padding: 18px;
    overflow-y: auto;
    border: 1px solid rgba(115, 88, 189, .12);
    border-radius: 24px;
    background: rgba(255, 253, 250, .98);
    box-shadow: 0 26px 70px rgba(48, 36, 74, .20);
    backdrop-filter: blur(20px);
  }

  .nav-links.open a {
    padding: 13px 15px;
    background: rgba(242, 236, 248, .45);
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 65;
    background: rgba(29, 23, 61, .16);
    backdrop-filter: blur(3px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .84fr);
    gap: 38px;
  }

  .hero-title {
    font-size: clamp(44px, 6vw, 64px);
  }

  .phone-card {
    right: 0;
    width: min(350px, 84%);
  }

  .qr-card {
    left: -2%;
  }

  .pain-card:nth-child(n) {
    grid-column: span 6;
    margin-top: 0;
  }

  .capability-layout {
    grid-template-columns: minmax(290px, .8fr) minmax(0, 1.2fr);
    gap: 30px;
  }

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

  .step:nth-child(n) {
    margin-top: 0;
  }

  .step:nth-child(2n) {
    margin-top: 22px;
  }

  .step:nth-child(2)::after,
  .step:nth-child(6)::after {
    display: none;
  }

  .step:nth-child(4)::after {
    display: block;
  }

  .report-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
    gap: 34px;
  }

  .scene-card,
  .scene-card.featured {
    grid-column: span 6;
  }

  .scene-card:nth-child(n) {
    transform: none;
  }

  .scene-card:nth-child(2n) {
    transform: translateY(18px);
  }

  .security-grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, .78fr);
  }

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

  .price-card:nth-child(n) {
    margin-top: 0;
  }

  .price-card:nth-child(2n) {
    margin-top: 18px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, .7fr);
  }

  .footer-grid .footer-col:last-child {
    grid-column: auto;
  }
}

/* Small tablet / large phone */
@media (max-width: 860px) {
  :root {
    --header-height: 70px;
    --gutter: clamp(16px, 4vw, 28px);
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-grid,
  .report-showcase,
  .security-grid,
  .capability-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-title,
  .hero-subtitle,
  .hero-points {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-points,
  .hero-note {
    justify-content: center;
  }

  .hero-visual {
    min-height: 570px;
    max-width: 610px;
    margin: 8px auto 0;
  }

  .phone-card {
    right: 7%;
  }

  .qr-card {
    left: 5%;
  }

  .capability-note,
  .safety-card {
    position: static;
  }

  .capability-note {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 24px;
    align-items: center;
  }

  .capability-note .scribble {
    margin: 0;
  }

  .capability-item:nth-child(n),
  .report-tab:nth-child(n),
  .testimonial:nth-child(n) {
    transform: none;
    margin: 0;
  }

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

  .scene-card,
  .scene-card.featured {
    grid-column: auto;
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-qr {
    width: fit-content;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: sticky;
    top: var(--header-height);
    z-index: 20;
    display: flex;
    gap: 6px;
    max-height: none;
    padding: 9px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 16px;
    background: rgba(255, 253, 250, .94);
    backdrop-filter: blur(18px);
    scrollbar-width: none;
  }

  .sidebar::-webkit-scrollbar {
    display: none;
  }

  .sidebar a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

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

/* Phones */
@media (max-width: 600px) {
  :root {
    --gutter: 16px;
    --section-space: 72px;
    --section-space-sm: 52px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    border-radius: 14px 16px 13px 17px;
    font-size: 13px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .nav-links.open {
    inset-inline: 12px;
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 20px;
  }

  .nav-links.open a {
    padding: 11px 13px;
  }

  .section-title br,
  .hero-title br,
  .page-hero h1 br {
    display: none;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: clamp(29px, 9vw, 39px);
    line-height: 1.28;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero {
    padding: 42px 0 62px;
  }

  .hero-title {
    font-size: clamp(38px, 12vw, 49px);
    line-height: 1.16;
  }

  .hero-subtitle {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.78;
  }

  .hero-points {
    gap: 8px;
    margin: 20px 0 26px;
  }

  .hero-points span {
    padding: 7px 11px;
    font-size: 12px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
    text-align: left;
  }

  .hero-visual {
    min-height: 460px;
    margin-top: 24px;
  }

  .watercolor.one {
    width: 100%;
    height: 310px;
    right: -5%;
  }

  .watercolor.two {
    width: 190px;
    height: 170px;
  }

  .phone-card {
    top: 5px;
    right: 0;
    width: 88%;
    max-width: 340px;
    padding: 11px;
    border-radius: 31px;
  }

  .phone-screen {
    min-height: 380px;
    padding: 20px 17px;
    border-radius: 23px;
  }

  .phone-title {
    margin-top: 34px;
    font-size: 21px;
  }

  .phone-cloud {
    width: 170px;
    height: 118px;
    margin: 14px auto 22px;
  }

  .phone-cloud::before {
    left: 58px;
    top: 47px;
  }

  .phone-cloud::after {
    right: 58px;
    top: 47px;
  }

  .phone-cloud .mouth {
    left: 80px;
    top: 65px;
  }

  .phone-chip-row {
    gap: 6px;
  }

  .phone-chip {
    padding: 6px 9px;
    font-size: 10px;
  }

  .phone-cta {
    margin-top: 21px;
    padding: 11px 14px;
    font-size: 12px;
  }

  .qr-card {
    left: 0;
    bottom: 0;
    width: 168px;
    padding: 12px;
    border-radius: 20px 23px 19px 24px;
  }

  .qr-mini {
    width: 62px;
    height: 62px;
  }

  .pain-grid,
  .capability-list,
  .steps,
  .scene-grid,
  .testimonials,
  .price-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .pain-card:nth-child(n) {
    grid-column: auto;
    margin: 0;
  }

  .pain-card {
    min-height: 0;
  }

  .capability-note {
    display: block;
  }

  .capability-note .scribble {
    height: 145px;
    margin: 22px 0;
  }

  .capability-item {
    min-height: 0;
  }

  .step:nth-child(n) {
    margin: 0;
  }

  .step {
    min-height: 0;
    padding: 24px;
  }

  .step::after {
    display: none !important;
  }

  .report-document {
    padding: 29px 21px;
    border-radius: 17px 29px 19px 27px;
  }

  .report-document::before {
    width: 82px;
  }

  .report-document h3 {
    font-size: 22px;
  }

  .report-tab {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    padding: 17px;
  }

  .report-tab .icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .scene-card,
  .scene-card.featured {
    min-height: 0;
  }

  .compare-wrap {
    margin-inline: calc(var(--gutter) * -1);
    border-radius: 0;
    border-inline: 0;
  }

  .compare-table {
    min-width: 690px;
  }

  .compare-table th,
  .compare-table td {
    padding: 16px 18px;
    font-size: 13px;
  }

  .security-main,
  .safety-card {
    padding: 25px 20px;
  }

  .security-list {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 0;
    padding: 25px 21px;
  }

  .price-card:nth-child(n) {
    margin: 0;
  }

  .testimonial {
    min-height: 0;
  }

  .faq-question {
    align-items: flex-start;
    min-height: 60px;
    padding: 18px;
  }

  .faq-answer p {
    padding: 0 18px 19px;
  }

  .bottom-cta {
    padding: 56px 0;
  }

  .cta-panel {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .cta-copy h2 {
    font-size: 30px;
  }

  .cta-qr {
    width: 100%;
    gap: 13px;
    padding: 11px;
  }

  .cta-qr img {
    width: 82px;
    height: 82px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-col {
    padding-top: 3px;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 32px;
    line-height: 1.7;
  }

  .page-hero {
    padding: 58px 0 44px;
  }

  .page-hero h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .page-hero p {
    font-size: 15px;
  }

  .filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .report-cover {
    min-height: 196px;
    padding: 22px;
  }

  .report-cover h3 {
    font-size: 21px;
  }

  .article-body {
    padding: 25px 19px;
    border-radius: 22px;
  }

  .article-body h2 {
    font-size: 24px;
  }

  .article-body ul,
  .article-body ol {
    padding-left: 22px;
  }

  .callout {
    padding: 18px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 58px;
  }

  .timeline-dot {
    left: 1px;
    width: 38px;
    height: 38px;
  }

  .timeline-card {
    padding: 20px;
  }

  .contact-card-primary {
    padding: 25px 20px;
  }

  .contact-line {
    display: grid;
    gap: 4px;
  }

  .contact-line strong {
    min-width: 0;
  }

  .modal {
    align-items: flex-end;
    padding: 12px;
  }

  .modal-card {
    width: 100%;
    padding: 30px 22px calc(24px + env(safe-area-inset-bottom));
    border-radius: 28px 28px 20px 20px;
  }

  .modal-card img {
    width: 168px;
    height: 168px;
  }
}

@media (max-width: 370px) {
  .brand-text strong {
    font-size: 16px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-visual {
    min-height: 435px;
  }

  .phone-card {
    width: 92%;
  }

  .qr-card {
    transform: rotate(-2deg) scale(.92);
    transform-origin: left bottom;
  }
}

/* V2.3 contact and compact-site refinements */
.contact-card-primary .contact-line span,
.contact-card-primary .contact-line a { overflow-wrap: anywhere; }
@media (max-width: 640px) {
  .contact-card-primary .contact-line { align-items: flex-start; }
  .contact-card-primary .contact-line strong { min-width: 76px; }
}

/* V2.5：修复移动端导航被遮罩层覆盖的层叠上下文问题 */
@media (max-width: 1180px) {
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-header {
    z-index: 90;
  }

  body.nav-open .nav-links.open {
    z-index: 92;
    pointer-events: auto;
  }

  body.nav-open .mobile-toggle {
    position: relative;
    z-index: 93;
  }

  body.nav-open::after {
    z-index: 80;
    pointer-events: auto;
  }
}

/* =========================================================
   V2.6 — FAQ accordion interaction refinement
   ========================================================= */
.faq-item {
  position: relative;
  transition: border-color .24s ease, box-shadow .24s ease, background-color .24s ease, transform .24s ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  border-color: rgba(138, 111, 235, .20);
  box-shadow: 0 14px 34px rgba(48, 36, 74, .09);
}

.faq-item.open {
  border-color: rgba(138, 111, 235, .28);
  background: rgba(255, 253, 250, .96);
  box-shadow: 0 18px 42px rgba(72, 52, 112, .11);
}

.faq-question {
  cursor: pointer;
  transition: color .22s ease, background-color .22s ease;
}

.faq-question:hover {
  color: var(--hoo-purple-700);
  background: rgba(138, 111, 235, .035);
}

.faq-question:focus-visible {
  outline: 3px solid rgba(138, 111, 235, .24);
  outline-offset: -3px;
}

.faq-question span:last-child {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(138, 111, 235, .10);
  font-size: 21px;
  line-height: 1;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), background-color .22s ease, color .22s ease;
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
  color: #fff;
  background: var(--hoo-purple-600);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  max-height: none !important;
  overflow: hidden;
  transition: grid-template-rows .36s cubic-bezier(.2,.8,.2,1);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-7px);
  transition: opacity .22s ease, transform .32s cubic-bezier(.2,.8,.2,1);
}

.faq-item.open .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-question,
  .faq-question span:last-child,
  .faq-answer,
  .faq-answer p {
    transition-duration: .01ms !important;
  }
}


/* =========================================================
   V2.7 — Unified Typography System
   目标：统一中文字体、字号、字重、行高与字距
   ========================================================= */
:root {
  --font-ui: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-caption: .75rem;
  --font-size-small: .8125rem;
  --font-size-body-sm: .875rem;
  --font-size-body: 1rem;
  --font-size-body-lg: 1.0625rem;
  --font-size-card-title: 1.125rem;
  --font-size-subtitle: 1.25rem;
  --font-size-title-sm: clamp(1.75rem, 3vw, 2.25rem);
  --font-size-title: clamp(2rem, 4.2vw, 3rem);
  --font-size-display: clamp(3rem, 6.1vw, 4.75rem);
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
}

html {
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ui);
  font-size: var(--font-size-body);
  font-weight: var(--weight-regular);
  line-height: 1.75;
  letter-spacing: .006em;
  font-kerning: normal;
}

button,
input,
textarea,
select,
table {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--hoo-ink-900);
  font-weight: var(--weight-semibold);
  letter-spacing: -.022em;
}

strong,
b {
  font-weight: var(--weight-semibold);
}

p,
li,
td,
th {
  line-height: 1.78;
}

.small {
  font-size: var(--font-size-small);
  line-height: 1.7;
}

.eyebrow {
  font-size: var(--font-size-caption);
  font-weight: var(--weight-semibold);
  line-height: 1.3;
  letter-spacing: .10em;
}

.brand-mark {
  font-weight: var(--weight-bold);
  letter-spacing: -.045em;
}

.brand-text strong {
  font-size: 1.1875rem;
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  letter-spacing: -.02em;
}

.brand-text span {
  font-size: .625rem;
  font-weight: var(--weight-medium);
  line-height: 1.3;
  letter-spacing: .14em;
}

.nav-links a {
  font-size: .875rem;
  font-weight: var(--weight-medium);
  line-height: 1.4;
  letter-spacing: 0;
}

.nav-links a.active,
.nav-links a:hover {
  font-weight: var(--weight-semibold);
}

.btn {
  font-size: .9375rem;
  font-weight: var(--weight-semibold);
  line-height: 1.35;
  letter-spacing: .006em;
}

.btn-sm {
  font-size: .875rem;
}

.hero-title {
  font-size: var(--font-size-display);
  font-weight: var(--weight-bold);
  line-height: 1.17;
  letter-spacing: -.042em;
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 1.55vw, 1.1875rem);
  font-weight: var(--weight-regular);
  line-height: 1.9;
  letter-spacing: .004em;
}

.hero-points span {
  font-size: .875rem;
  font-weight: var(--weight-medium);
  line-height: 1.45;
}

.hero-note {
  font-size: var(--font-size-small);
  line-height: 1.65;
}

.phone-top {
  font-size: .6875rem;
  font-weight: var(--weight-medium);
  letter-spacing: .015em;
}

.phone-title {
  font-size: 1.6875rem;
  font-weight: var(--weight-semibold);
  line-height: 1.45;
  letter-spacing: -.025em;
}

.phone-chip {
  font-size: .75rem;
  font-weight: var(--weight-medium);
  line-height: 1.4;
}

.phone-cta {
  font-size: .875rem;
  font-weight: var(--weight-semibold);
}

.qr-card strong,
.cta-qr strong {
  font-size: .875rem;
  font-weight: var(--weight-semibold);
  line-height: 1.5;
}

.qr-card span,
.cta-qr span {
  font-size: .71875rem;
  line-height: 1.55;
}

.section-title {
  font-size: var(--font-size-title);
  font-weight: var(--weight-semibold);
  line-height: 1.3;
  letter-spacing: -.032em;
}

.section-desc {
  font-size: clamp(.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.85;
  letter-spacing: .003em;
}

.capability-title {
  font-size: clamp(2rem, 3.8vw, 2.625rem);
}

.pain-card h3,
.capability-item h3,
.step h3,
.scene-card h3,
.timeline-card h3,
.contact-card h3,
.value-cards .testimonial h3 {
  font-size: var(--font-size-card-title);
  font-weight: var(--weight-semibold);
  line-height: 1.52;
  letter-spacing: -.014em;
}

.pain-card p,
.capability-item p,
.step p,
.scene-card p,
.timeline-card p,
.value-cards .testimonial p,
.report-tab p,
.report-meta p,
.contact-line,
.contact-note {
  font-size: var(--font-size-body-sm);
  line-height: 1.78;
  letter-spacing: .002em;
}

.capability-item .num,
.value-index,
.report-label,
.signal,
.tag-pill,
.scene-card .tag,
.timeline-dot {
  font-weight: var(--weight-semibold);
}

.capability-item .num,
.value-index {
  font-size: var(--font-size-small);
  letter-spacing: .065em;
}

.capability-note .scribble::after {
  font-size: 1.1875rem;
  font-weight: var(--weight-semibold);
  line-height: 1.65;
  letter-spacing: .02em;
}

.step::before {
  font-size: .75rem;
  font-weight: var(--weight-bold);
  letter-spacing: .02em;
}

.report-document h3 {
  font-size: clamp(1.5rem, 2.8vw, 1.75rem);
  font-weight: var(--weight-semibold);
  line-height: 1.52;
  letter-spacing: -.024em;
}

.report-document > p,
.report-quote {
  font-size: .9375rem;
  line-height: 1.82;
}

.report-quote {
  font-weight: var(--weight-medium);
}

.report-tab h4 {
  font-size: 1rem;
  font-weight: var(--weight-semibold);
  line-height: 1.5;
  letter-spacing: -.01em;
}

.report-tab .icon,
.scene-card .scene-icon {
  font-weight: var(--weight-semibold);
  font-variant-numeric: tabular-nums;
}

.compare-table th,
.compare-table td {
  font-size: .90625rem;
  line-height: 1.72;
}

.compare-table th,
.compare-table td:first-child,
.compare-table td:nth-child(3) {
  font-weight: var(--weight-semibold);
}

.security-title {
  margin-top: 0;
  font-size: 1.6875rem;
  font-weight: var(--weight-semibold);
  line-height: 1.45;
  letter-spacing: -.022em;
}

.security-item strong {
  font-size: .875rem;
  font-weight: var(--weight-semibold);
  line-height: 1.55;
}

.security-item span,
.safety-card .notice {
  font-size: .78125rem;
  line-height: 1.7;
}

.testimonial blockquote {
  font-size: .9375rem;
  font-weight: var(--weight-regular);
  line-height: 1.85;
}

.user strong {
  font-size: .8125rem;
  font-weight: var(--weight-semibold);
}

.user span {
  font-size: .71875rem;
}

.faq-question {
  font-size: 1rem;
  font-weight: var(--weight-semibold);
  line-height: 1.55;
  letter-spacing: -.006em;
}

.faq-answer p {
  font-size: .90625rem;
  line-height: 1.82;
}

.cta-copy h2 {
  font-size: clamp(1.875rem, 4vw, 2.8125rem);
  font-weight: var(--weight-semibold);
  line-height: 1.35;
  letter-spacing: -.03em;
}

.cta-copy p {
  font-size: .9375rem;
  line-height: 1.8;
}

.footer-brand p,
.footer-col a {
  font-size: .8125rem;
  line-height: 1.72;
}

.footer-col h4 {
  font-size: .875rem;
  font-weight: var(--weight-semibold);
  letter-spacing: .01em;
}

.footer-bottom {
  font-size: .75rem;
  line-height: 1.65;
}

.page-hero h1 {
  font-size: clamp(2.625rem, 6vw, 4.125rem);
  font-weight: var(--weight-bold);
  line-height: 1.25;
  letter-spacing: -.04em;
}

.page-hero p {
  font-size: clamp(1rem, 1.7vw, 1.125rem);
  line-height: 1.85;
}

.page-hero .breadcrumbs,
.sidebar a,
.filter-btn {
  font-size: .8125rem;
  font-weight: var(--weight-medium);
  line-height: 1.5;
}

.article-body {
  font-size: 1rem;
  line-height: 1.85;
}

.article-body h2 {
  font-size: 1.75rem;
  font-weight: var(--weight-semibold);
  line-height: 1.45;
  letter-spacing: -.024em;
}

.article-body h3 {
  font-size: 1.1875rem;
  font-weight: var(--weight-semibold);
  line-height: 1.55;
  letter-spacing: -.012em;
}

.article-body p,
.article-body li {
  font-size: .9375rem;
  line-height: 1.9;
}

.report-cover::before {
  font-size: .625rem;
  font-weight: var(--weight-bold);
  letter-spacing: .12em;
}

.report-cover h3 {
  font-size: 1.4375rem;
  font-weight: var(--weight-semibold);
  line-height: 1.55;
  letter-spacing: -.02em;
}

.modal-card h3 {
  font-size: 1.5rem;
  font-weight: var(--weight-semibold);
  line-height: 1.45;
}

.modal-card p {
  font-size: .875rem;
  line-height: 1.75;
}

.price-card .price,
.timeline-dot,
.step::before,
.report-tab .icon,
.scene-card .scene-icon,
.value-index,
.capability-item .num {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 780px) {
  body {
    font-size: .96875rem;
    line-height: 1.72;
  }

  .section-title {
    font-size: clamp(1.875rem, 8vw, 2.5rem);
    line-height: 1.34;
  }

  .capability-title {
    font-size: clamp(1.875rem, 7.8vw, 2.375rem);
  }

  .hero-title {
    font-size: clamp(2.65rem, 10.8vw, 3.5rem);
    line-height: 1.2;
    letter-spacing: -.038em;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.82;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 9vw, 3.125rem);
    line-height: 1.28;
  }

  .page-hero p {
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  body {
    font-size: .9375rem;
  }

  .eyebrow {
    font-size: .71875rem;
  }

  .hero-title {
    font-size: clamp(2.25rem, 10.8vw, 2.75rem);
    line-height: 1.24;
    letter-spacing: -.034em;
  }

  .section-title,
  .capability-title {
    font-size: clamp(1.75rem, 8vw, 2.125rem);
    line-height: 1.38;
  }

  .section-desc,
  .hero-subtitle {
    font-size: .9375rem;
    line-height: 1.82;
  }

  .pain-card h3,
  .capability-item h3,
  .step h3,
  .scene-card h3,
  .timeline-card h3,
  .contact-card h3,
  .value-cards .testimonial h3 {
    font-size: 1.0625rem;
  }

  .report-document h3 {
    font-size: 1.375rem;
  }

  .security-title {
    font-size: 1.4375rem;
  }

  .faq-question {
    font-size: .9375rem;
  }

  .article-body h2 {
    font-size: 1.5rem;
  }

  .article-body h3 {
    font-size: 1.125rem;
  }

  .article-body p,
  .article-body li {
    font-size: .90625rem;
    line-height: 1.86;
  }

  .footer-bottom {
    font-size: .71875rem;
  }
}


/* V2.8 brand logo */
.brand-logo {
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: contain;
  filter: drop-shadow(0 8px 15px rgba(104, 76, 177, .12));
  transition: transform .2s ease, filter .2s ease;
}
.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.025);
  filter: drop-shadow(0 10px 18px rgba(104, 76, 177, .18));
}
@media (max-width: 600px) {
  .brand-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
}


/* V2.9 用户画像分析方法 */
.profile-method-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 18%, rgba(224, 202, 244, .38), transparent 24rem),
    radial-gradient(circle at 92% 72%, rgba(252, 219, 197, .42), transparent 23rem),
    var(--paper, #fffaf7);
}
.profile-method-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image: radial-gradient(rgba(96, 73, 123, .14) .6px, transparent .6px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}
.profile-method-section .container { position: relative; z-index: 1; }
.profile-method-head { max-width: 760px; }
.profile-principle {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.25rem;
  margin: 2.5rem 0 2rem;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(94, 72, 122, .16);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 1.25rem 3.75rem rgba(83, 58, 108, .08);
  backdrop-filter: blur(14px);
}
.principle-mark {
  color: #8b70bd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: .75;
}
.profile-principle p {
  margin: 0;
  color: var(--ink, #352d3d);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: var(--weight-semibold, 600);
  line-height: 1.65;
  letter-spacing: -.018em;
}
.principle-caption {
  color: var(--muted, #766d7c);
  font-size: .75rem;
  white-space: nowrap;
}
.profile-layer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.profile-layer {
  min-height: 100%;
  padding: 1.65rem;
  border: 1px solid rgba(99, 75, 129, .15);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 .9rem 2.75rem rgba(80, 57, 103, .06);
  transition: transform .2s ease-in-out, box-shadow .2s ease-in-out, border-color .2s ease-in-out;
}
.profile-layer:hover {
  transform: translateY(-4px);
  border-color: rgba(119, 86, 162, .28);
  box-shadow: 0 1.35rem 3.5rem rgba(80, 57, 103, .11);
}
.profile-layer-core {
  background: linear-gradient(145deg, rgba(105, 79, 151, .96), rgba(73, 53, 112, .97));
  color: #fff;
  border-color: transparent;
}
.profile-layer-fun {
  background: rgba(255, 248, 242, .8);
  border-style: dashed;
}
.profile-layer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.profile-layer-index {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(111, 81, 152, .1);
  color: #73569c;
  font-size: .78rem;
  font-weight: var(--weight-bold, 700);
}
.profile-layer-core .profile-layer-index { background: rgba(255,255,255,.14); color: #fff; }
.profile-layer-label {
  color: var(--muted, #766d7c);
  font-size: .75rem;
  font-weight: var(--weight-semibold, 600);
  letter-spacing: .08em;
}
.profile-layer-core .profile-layer-label { color: rgba(255,255,255,.72); }
.profile-layer h3 {
  margin: 0 0 .75rem;
  font-size: 1.18rem;
  font-weight: var(--weight-semibold, 600);
  line-height: 1.55;
  letter-spacing: -.015em;
}
.profile-layer p {
  margin: 0;
  color: var(--muted, #766d7c);
  font-size: .88rem;
  line-height: 1.82;
}
.profile-layer-core p { color: rgba(255,255,255,.78); }
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1.25rem;
}
.profile-tags span {
  padding: .42rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: rgba(255,255,255,.92);
  font-size: .72rem;
  line-height: 1.2;
}
.profile-tags-soft span {
  background: rgba(122, 91, 164, .1);
  color: #6f5296;
}
.profile-tags-outline span {
  border: 1px solid rgba(133, 96, 79, .18);
  background: transparent;
  color: #865f52;
}
.profile-field-panel {
  display: grid;
  grid-template-columns: .8fr 1.35fr;
  gap: 2rem;
  margin-top: 1rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(99,75,129,.13);
}
.profile-field-intro h3 {
  margin: .65rem 0 .8rem;
  font-size: 1.5rem;
  font-weight: var(--weight-semibold, 600);
  line-height: 1.45;
  letter-spacing: -.02em;
}
.profile-field-intro p {
  margin: 0;
  color: var(--muted, #766d7c);
  font-size: .9rem;
  line-height: 1.82;
}
.profile-field-list { border-top: 1px solid rgba(99,75,129,.13); }
.profile-field-row {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: .95rem 0;
  border-bottom: 1px solid rgba(99,75,129,.13);
}
.profile-field-row strong { font-size: .88rem; font-weight: var(--weight-semibold, 600); }
.profile-field-row span { color: var(--ink, #352d3d); font-size: .84rem; line-height: 1.55; }
.profile-field-row em {
  color: #8a6571;
  font-size: .72rem;
  font-style: normal;
  white-space: nowrap;
}
.profile-final-rule {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: rgba(237, 228, 248, .72);
  color: #4b3b5a;
}
.profile-final-rule .check {
  display: inline-grid;
  place-items: center;
  flex: 0 0 1.65rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: #7657a2;
  color: #fff;
  font-size: .78rem;
}
.profile-final-rule p { margin: 0; font-size: .86rem; line-height: 1.75; }

@media (max-width: 980px) {
  .profile-layer-grid { grid-template-columns: 1fr 1fr; }
  .profile-layer-core { grid-column: 1 / -1; }
  .profile-field-panel { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (max-width: 680px) {
  .profile-principle {
    grid-template-columns: auto 1fr;
    padding: 1.35rem;
  }
  .principle-caption { grid-column: 2; white-space: normal; }
  .profile-layer-grid { grid-template-columns: 1fr; }
  .profile-layer-core { grid-column: auto; }
  .profile-layer { padding: 1.35rem; }
  .profile-field-panel { padding: 1.35rem; }
  .profile-field-row {
    grid-template-columns: 4.5rem 1fr;
    gap: .5rem .75rem;
  }
  .profile-field-row em { grid-column: 2; white-space: normal; }
}

/* =========================================================
   V2.10 — 用户画像色彩层级与导航锚点优化
   ========================================================= */

/* 固定头部下的统一锚点安全距离 */
html {
  scroll-padding-top: calc(var(--header-height) + 24px);
}

main section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--hoo-purple-500);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}

.nav-links a.active::after,
.nav-links a[aria-current="location"]::after {
  transform: scaleX(1);
  opacity: .9;
}

/* “我们如何理解你”：从大面积深色改为三层柔和语义色 */
.profile-method-section {
  isolation: isolate;
  background:
    radial-gradient(circle at 4% 12%, rgba(205, 187, 244, .42), transparent 27rem),
    radial-gradient(circle at 96% 25%, rgba(245, 205, 217, .28), transparent 25rem),
    radial-gradient(circle at 84% 92%, rgba(238, 219, 199, .44), transparent 26rem),
    linear-gradient(180deg, rgba(255, 253, 250, .92), rgba(248, 242, 249, .82));
}

.profile-method-section::before {
  opacity: .23;
  background-image:
    radial-gradient(rgba(96, 73, 123, .13) .55px, transparent .65px),
    radial-gradient(rgba(196, 150, 170, .10) .45px, transparent .6px);
  background-position: 0 0, 9px 10px;
  background-size: 19px 19px, 23px 23px;
}

.profile-method-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: clamp(-90px, -5vw, -30px);
  top: 8%;
  width: clamp(190px, 24vw, 340px);
  aspect-ratio: 1.05;
  border-radius: 45% 55% 63% 37% / 52% 42% 58% 48%;
  background: rgba(226, 210, 248, .30);
  filter: blur(1px);
  transform: rotate(12deg);
  pointer-events: none;
}

.profile-method-head .eyebrow {
  background: rgba(255, 253, 250, .78);
  border: 1px solid rgba(115, 88, 189, .12);
}

.profile-principle {
  border-color: rgba(111, 81, 152, .15);
  background:
    linear-gradient(125deg, rgba(244, 237, 253, .92), rgba(255, 249, 243, .90));
  box-shadow: 0 22px 55px rgba(81, 58, 105, .09);
}

.profile-principle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--hoo-purple-400), #d59aaa);
}

.principle-mark {
  color: #795ea9;
}

.profile-layer {
  position: relative;
  overflow: hidden;
  border-color: rgba(99, 75, 129, .12);
  background: rgba(255, 253, 250, .82);
  box-shadow: 0 14px 38px rgba(74, 54, 96, .07);
}

.profile-layer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: var(--layer-accent, var(--hoo-purple-400));
}

.profile-layer::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--layer-wash, rgba(196, 170, 246, .18));
  pointer-events: none;
}

.profile-layer > * {
  position: relative;
  z-index: 1;
}

.profile-layer-core {
  --layer-accent: #7d61b5;
  --layer-wash: rgba(156, 126, 213, .16);
  color: var(--hoo-ink-900);
  border-color: rgba(112, 82, 159, .18);
  background: linear-gradient(145deg, rgba(239, 230, 251, .96), rgba(255, 253, 250, .92));
}

.profile-layer:not(.profile-layer-core):not(.profile-layer-fun) {
  --layer-accent: #d89b85;
  --layer-wash: rgba(238, 189, 168, .17);
  background: linear-gradient(145deg, rgba(255, 244, 237, .94), rgba(255, 253, 250, .94));
}

.profile-layer-fun {
  --layer-accent: #8f98c7;
  --layer-wash: rgba(153, 165, 216, .17);
  border-style: solid;
  background: linear-gradient(145deg, rgba(241, 242, 251, .96), rgba(255, 253, 250, .94));
}

.profile-layer-core .profile-layer-index {
  color: #fff;
  background: #7658a8;
}

.profile-layer:not(.profile-layer-core):not(.profile-layer-fun) .profile-layer-index {
  color: #8c5949;
  background: rgba(224, 163, 139, .18);
}

.profile-layer-fun .profile-layer-index {
  color: #626b9d;
  background: rgba(143, 152, 199, .18);
}

.profile-layer-core .profile-layer-label,
.profile-layer-core p {
  color: var(--hoo-ink-500);
}

.profile-tags span {
  color: #63498d;
  background: rgba(123, 91, 176, .11);
  border: 1px solid rgba(123, 91, 176, .08);
}

.profile-tags-soft span {
  color: #8a5948;
  background: rgba(224, 163, 139, .13);
  border-color: rgba(211, 143, 116, .10);
}

.profile-tags-outline span {
  color: #626b9d;
  border-color: rgba(116, 126, 181, .20);
  background: rgba(143, 152, 199, .08);
}

.profile-field-panel {
  border-color: rgba(105, 78, 145, .13);
  background:
    linear-gradient(135deg, rgba(255, 253, 250, .90), rgba(243, 237, 250, .84));
  box-shadow: 0 18px 46px rgba(79, 58, 101, .07);
}

.profile-field-list {
  border-top-color: rgba(99, 75, 129, .11);
}

.profile-field-row {
  margin-inline: -.55rem;
  padding: .95rem .55rem;
  border-bottom-color: rgba(99, 75, 129, .11);
  border-radius: .75rem;
  transition: background-color .2s ease-in-out, transform .2s ease-in-out;
}

.profile-field-row:hover {
  background: rgba(255, 253, 250, .76);
  transform: translateX(3px);
}

.profile-field-row em {
  color: #8a6672;
}

.profile-final-rule {
  border: 1px solid rgba(89, 139, 107, .16);
  background: linear-gradient(120deg, rgba(231, 242, 234, .88), rgba(255, 253, 250, .82));
  color: #3f5848;
}

.profile-final-rule .check {
  background: var(--hoo-green);
  box-shadow: 0 6px 14px rgba(92, 139, 109, .18);
}

@media (max-width: 1180px) {
  .nav-links.open a::after {
    left: 14px;
    right: auto;
    bottom: 7px;
    width: 28px;
  }
}

@media (max-width: 680px) {
  .profile-method-section::after {
    right: -90px;
    top: 5%;
    opacity: .72;
  }

  .profile-principle::before {
    top: 18%;
    bottom: 18%;
  }

  .profile-field-row:hover {
    transform: none;
  }
}


/* =========================================================
   V2.11 — Six complete fictional case library
   ========================================================= */
.reports-page-hero p {
  max-width: 780px;
}

.report-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.report-hero-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 13px;
  border: 1px solid rgba(138, 111, 235, .13);
  border-radius: 999px;
  color: var(--hoo-ink-500);
  background: rgba(255, 253, 250, .72);
  box-shadow: 0 8px 20px rgba(48, 36, 74, .05);
  font-size: 13px;
  font-weight: 600;
}

.reports-library {
  padding-bottom: 92px;
}

.report-grid-complete {
  align-items: stretch;
}

.report-card-complete {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.report-card-complete .report-meta {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.report-card-complete .report-meta .tags {
  margin-top: auto;
}

.case-cover {
  min-height: 248px;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.case-cover::before {
  content: "";
}

.case-cover::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 150px;
  height: 150px;
  top: 35px;
  right: -34px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 44% 56% 55% 45% / 58% 44% 56% 42%;
  transform: rotate(23deg);
  background: rgba(255, 255, 255, .20);
}

.case-cover-relationship {
  background:
    radial-gradient(circle at 78% 24%, rgba(176,148,241,.83), transparent 34%),
    linear-gradient(145deg, rgba(255,253,250,.98), rgba(232,218,243,.82));
}

.case-cover-interpersonal {
  background:
    radial-gradient(circle at 78% 24%, rgba(238,219,212,.88), transparent 34%),
    linear-gradient(145deg, rgba(255,253,250,.98), rgba(242,223,187,.58));
}

.case-cover-self {
  background:
    radial-gradient(circle at 78% 24%, rgba(216,221,245,.88), transparent 34%),
    linear-gradient(145deg, rgba(255,253,250,.98), rgba(232,218,243,.62));
}

.case-cover h3 {
  position: relative;
  z-index: 2;
  max-width: 92%;
}

.case-index {
  position: absolute;
  top: 17px;
  right: 22px;
  color: rgba(95, 72, 159, .32);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.06em;
}

.case-type {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  color: var(--hoo-purple-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.case-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 20px;
  color: var(--hoo-purple-700);
  font-size: 14px;
  font-weight: 700;
}

.case-card-link span {
  transition: transform .2s ease;
}

.case-card-link:hover span {
  transform: translateX(4px);
}

.case-detail-section {
  overflow: clip;
}

.case-details {
  display: grid;
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}

.case-detail {
  scroll-margin-top: calc(var(--header-height) + 26px);
  overflow: hidden;
  border: 1px solid rgba(138, 111, 235, .11);
  border-radius: 28px;
  background: rgba(255, 253, 250, .82);
  box-shadow: 0 12px 34px rgba(48, 36, 74, .07);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.case-detail:hover {
  border-color: rgba(138, 111, 235, .20);
}

.case-detail[open] {
  border-color: rgba(138, 111, 235, .22);
  box-shadow: 0 22px 54px rgba(48, 36, 74, .11);
}

.case-detail > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 112px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.case-detail > summary::-webkit-details-marker {
  display: none;
}

.case-summary-main {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.case-summary-index {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--hoo-purple-700);
  background: var(--hoo-purple-50);
  font-size: 16px;
  font-weight: 700;
}

.case-summary-main > div > span {
  display: block;
  margin-bottom: 3px;
  color: var(--hoo-ink-300);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
}

.case-summary-main h3 {
  margin: 0;
  color: var(--hoo-ink-900);
  font-size: clamp(19px, 2.1vw, 25px);
  font-weight: 650;
  line-height: 1.35;
}

.case-summary-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(232, 218, 243, .64);
}

.case-summary-toggle::before,
.case-summary-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: var(--hoo-purple-700);
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}

.case-summary-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.case-detail[open] .case-summary-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.case-detail-body {
  padding: 0 28px 30px;
  border-top: 1px solid rgba(138, 111, 235, .09);
}

.case-detail-body blockquote {
  margin: 0 -28px 26px;
  padding: 26px 30px;
  color: var(--hoo-ink-700);
  background:
    radial-gradient(circle at 85% 20%, rgba(196,170,246,.24), transparent 36%),
    rgba(242,236,248,.46);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  line-height: 1.75;
}

.case-context {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.58);
}

.case-context strong {
  color: var(--hoo-purple-700);
  font-size: 13px;
}

.case-context p {
  margin: 0;
  color: var(--hoo-ink-500);
  font-size: 14px;
}

.case-judgment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.case-judgment {
  min-height: 190px;
  padding: 20px;
  border-radius: 21px;
}

.case-judgment > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--hoo-ink-500);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.case-judgment strong {
  display: block;
  margin-bottom: 8px;
  color: var(--hoo-ink-900);
  font-size: 17px;
  line-height: 1.45;
}

.case-judgment p {
  margin: 0;
  color: var(--hoo-ink-500);
  font-size: 13px;
  line-height: 1.75;
}

.case-judgment.is-positive {
  background: rgba(232, 218, 243, .62);
}

.case-judgment.is-neutral {
  background: rgba(238, 219, 212, .54);
}

.case-judgment.is-watch {
  background: rgba(216, 221, 245, .58);
}

.case-content-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
}

.case-evidence,
.case-action {
  padding: 23px;
  border-radius: 22px;
  background: rgba(255, 253, 250, .78);
  border: 1px solid rgba(138, 111, 235, .09);
}

.case-evidence h4,
.case-action h4 {
  margin: 0 0 14px;
  color: var(--hoo-ink-900);
  font-size: 17px;
}

.case-evidence ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.case-evidence li,
.case-action p {
  color: var(--hoo-ink-500);
  font-size: 14px;
  line-height: 1.75;
}

.case-action p {
  margin: 0;
}

.speech {
  margin-top: 16px;
  padding: 16px 18px;
  border-left: 3px solid var(--hoo-purple-400);
  border-radius: 0 16px 16px 0;
  color: var(--hoo-ink-700);
  background: rgba(242, 236, 248, .66);
  font-size: 14px;
  line-height: 1.75;
}

.speech span {
  display: block;
  margin-bottom: 4px;
  color: var(--hoo-purple-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.case-disclaimer {
  max-width: 1040px;
  margin: 28px auto 0;
  padding: 22px 25px;
  border: 1px dashed rgba(138, 111, 235, .25);
  border-radius: 20px;
  background: rgba(255, 253, 250, .58);
}

.case-disclaimer strong {
  display: block;
  margin-bottom: 5px;
  color: var(--hoo-ink-900);
}

.case-disclaimer p {
  margin: 0;
  color: var(--hoo-ink-500);
  font-size: 13px;
}

@media (max-width: 920px) {
  .case-judgment-grid,
  .case-content-grid {
    grid-template-columns: 1fr;
  }

  .case-judgment {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .reports-page-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .report-hero-notes {
    gap: 7px;
  }

  .report-hero-notes span {
    padding: 5px 10px;
    font-size: 11px;
  }

  .case-cover {
    min-height: 220px;
  }

  .case-index {
    font-size: 40px;
  }

  .case-detail {
    border-radius: 22px;
  }

  .case-detail > summary {
    gap: 12px;
    min-height: 98px;
    padding: 19px 17px;
  }

  .case-summary-main {
    gap: 12px;
  }

  .case-summary-index {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 14px;
  }

  .case-summary-main h3 {
    font-size: 17px;
  }

  .case-summary-main > div > span {
    font-size: 10px;
  }

  .case-summary-toggle {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .case-detail-body {
    padding: 0 17px 20px;
  }

  .case-detail-body blockquote {
    margin: 0 -17px 20px;
    padding: 20px 18px;
    font-size: 15px;
  }

  .case-context {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px;
  }

  .case-judgment-grid {
    gap: 10px;
  }

  .case-judgment,
  .case-evidence,
  .case-action {
    padding: 18px;
    border-radius: 18px;
  }

  .case-content-grid {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-summary-toggle::before,
  .case-summary-toggle::after,
  .case-card-link span {
    transition: none;
  }
}

/* =========================================================
   V2.16 — Filing link & report hero capsule refinement
   ========================================================= */
.filing-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(106, 78, 156, .36);
  text-underline-offset: .24em;
  transition: color .2s ease-in-out, text-decoration-color .2s ease-in-out;
}

.filing-link:hover {
  color: var(--hoo-purple-700);
  text-decoration-color: currentColor;
}

.filing-link:focus-visible {
  border-radius: 4px;
  outline: 2px solid rgba(138, 111, 235, .5);
  outline-offset: 4px;
}

.site-footer .filing-link,
.footer-bottom .filing-link {
  color: rgba(255, 255, 255, .62);
  text-decoration-color: rgba(255, 255, 255, .24);
}

.site-footer .filing-link:hover,
.footer-bottom .filing-link:hover {
  color: rgba(255, 255, 255, .94);
  text-decoration-color: rgba(255, 255, 255, .76);
}

.report-hero-notes {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-items: stretch;
  gap: 12px;
  margin-top: 28px;
}

.report-hero-note {
  --note-bg: rgba(255, 253, 250, .82);
  --note-border: rgba(138, 111, 235, .16);
  --note-value-bg: rgba(138, 111, 235, .11);
  --note-value-color: var(--hoo-purple-700);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 17px 8px 8px;
  overflow: hidden;
  border: 1px solid var(--note-border);
  border-radius: 19px;
  background: var(--note-bg);
  box-shadow:
    0 12px 28px rgba(48, 36, 74, .06),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .2s ease-in-out, border-color .2s ease-in-out, box-shadow .2s ease-in-out;
}

.report-hero-note::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -30px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--note-value-bg);
  filter: blur(2px);
  opacity: .65;
  pointer-events: none;
}

.report-hero-note:hover {
  transform: translateY(-2px);
  border-color: rgba(138, 111, 235, .28);
  box-shadow:
    0 16px 34px rgba(48, 36, 74, .09),
    inset 0 1px 0 rgba(255, 255, 255, .8);
}

.report-note-value {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 14px;
  color: var(--note-value-color);
  background: var(--note-value-bg);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}

.report-note-value-text {
  min-width: 54px;
  font-size: .75rem;
  letter-spacing: .08em;
}

.report-note-label {
  position: relative;
  z-index: 1;
  color: var(--hoo-ink-600);
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.45;
  white-space: nowrap;
}

.report-hero-note-scenes {
  --note-bg: rgba(249, 246, 255, .84);
  --note-border: rgba(154, 128, 222, .17);
  --note-value-bg: rgba(154, 128, 222, .12);
  --note-value-color: #7455a8;
}

.report-hero-note-fiction {
  --note-bg: rgba(255, 248, 246, .86);
  --note-border: rgba(209, 145, 151, .18);
  --note-value-bg: rgba(209, 145, 151, .13);
  --note-value-color: #9b5f67;
}

@media (max-width: 640px) {
  .report-hero-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 9px;
    margin-top: 24px;
  }

  .report-hero-note {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 7px 12px 7px 7px;
    border-radius: 17px;
  }

  .report-hero-note-fiction {
    grid-column: 1 / -1;
  }

  .report-note-value {
    min-width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .report-note-label {
    font-size: .75rem;
    white-space: normal;
  }
}

@media (max-width: 390px) {
  .report-hero-notes {
    grid-template-columns: 1fr;
  }

  .report-hero-note-fiction {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .report-hero-note {
    transition: none;
  }

  .report-hero-note:hover {
    transform: none;
  }
}

/* =========================================================
   V2.17 — Center report hero statistic labels
   ========================================================= */
.report-hero-notes {
  width: min(100%, 720px);
  margin: 28px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
}

.report-hero-note {
  width: 100%;
  min-width: 0;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  justify-items: center;
  justify-content: center;
  align-content: center;
  gap: 7px;
  padding: 12px 14px;
  text-align: center;
}

.report-note-value {
  min-width: 46px;
  margin-inline: auto;
}

.report-note-value-text {
  min-width: 58px;
}

.report-note-label {
  width: 100%;
  text-align: center;
  white-space: normal;
}

@media (max-width: 640px) {
  .report-hero-notes {
    width: min(100%, 470px);
    margin: 24px auto 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-hero-note {
    padding: 11px 10px;
  }

  .report-hero-note-fiction {
    grid-column: 1 / -1;
    width: calc(50% - 4.5px);
    justify-self: center;
  }
}

@media (max-width: 390px) {
  .report-hero-notes {
    width: min(100%, 250px);
    grid-template-columns: 1fr;
  }

  .report-hero-note-fiction {
    grid-column: auto;
    width: 100%;
  }
}

/* =========================================================
   V2.18 — Mobile footer layout refinement
   ========================================================= */
@media (max-width: 640px) {
  .site-footer {
    padding: 38px 0 22px;
  }

  .site-footer .container {
    width: min(100% - 32px, var(--container));
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 8px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .footer-brand .brand {
    width: auto;
    min-width: 0;
    justify-content: center;
    gap: 11px;
  }

  .footer-brand .brand-logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .footer-brand .brand-text {
    text-align: left;
  }

  .footer-brand .brand-text strong {
    font-size: 1.0625rem;
    line-height: 1.15;
  }

  .footer-brand .brand-text span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, .42);
    font-size: .5625rem;
    line-height: 1;
    letter-spacing: .17em;
  }

  .footer-brand p {
    max-width: 330px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, .58);
    font-size: .8125rem;
    line-height: 1.78;
  }

  .footer-col {
    min-width: 0;
    padding: 18px 16px 14px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;
    background: rgba(255, 255, 255, .035);
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-col h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .94);
    font-size: .8125rem;
    line-height: 1.4;
  }

  .footer-col h4::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: rgba(193, 171, 239, .86);
    box-shadow: 0 0 0 4px rgba(193, 171, 239, .08);
  }

  .footer-col a {
    display: flex;
    align-items: center;
    min-height: 38px;
    margin: 0;
    padding: 7px 0;
    color: rgba(255, 255, 255, .62);
    font-size: .8125rem;
    line-height: 1.45;
    border-bottom: 1px solid rgba(255, 255, 255, .055);
  }

  .footer-col a:last-child {
    border-bottom: 0;
  }

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

  .footer-col:last-child {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 10px;
    align-items: start;
  }

  .footer-col:last-child h4 {
    grid-column: 1 / -1;
  }

  .footer-col:last-child a {
    justify-content: center;
    min-height: 42px;
    padding: 8px 6px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 12px;
    background: rgba(255, 255, 255, .025);
  }

  .footer-bottom {
    display: grid;
    justify-items: center;
    gap: 9px;
    margin-top: 22px;
    padding-top: 19px;
    text-align: center;
    border-top-color: rgba(255, 255, 255, .1);
  }

  .footer-bottom > span {
    display: block;
    width: 100%;
  }

  .footer-bottom > span:first-child {
    color: rgba(255, 255, 255, .5);
    font-size: .71875rem;
    line-height: 1.72;
  }

  .footer-bottom > span:last-child {
    color: rgba(255, 255, 255, .38);
    font-size: .6875rem;
    line-height: 1.6;
  }

  .footer-bottom .filing-link {
    display: inline-block;
    padding-block: 2px;
  }
}

@media (max-width: 390px) {
  .site-footer .container {
    width: min(100% - 24px, var(--container));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-col,
  .footer-col:last-child {
    grid-column: auto;
  }

  .footer-col:last-child {
    grid-template-columns: 1fr;
  }

  .footer-col:last-child h4 {
    grid-column: auto;
  }

  .footer-col:last-child a {
    justify-content: flex-start;
    min-height: 38px;
    padding: 7px 0;
    text-align: left;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .055);
    border-radius: 0;
    background: transparent;
  }

  .footer-col:last-child a:last-child {
    border-bottom: 0;
  }
}

/* =========================================================
   V3.0 — GEO content clarity, entity trust and accessibility
   ========================================================= */
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 10000;
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  background: var(--hoo-purple-700);
  box-shadow: 0 8px 24px rgba(55, 37, 78, .18);
  transform: translateY(-150%);
  transition: transform .2s ease-in-out;
}
.skip-link:focus { transform: translateY(0); }
#main-content:focus { outline: none; }

.geo-summary-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(66px, 8vw, 108px);
  background:
    radial-gradient(circle at 12% 16%, rgba(220, 205, 241, .38), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(239, 218, 231, .32), transparent 28%),
    var(--hoo-paper, #faf5f2);
}
.geo-summary-head {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  align-items: end;
  gap: clamp(32px, 6vw, 88px);
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(93, 68, 115, .12);
}
.geo-summary-head .section-title { margin-bottom: 0; }
.geo-summary-intro {
  margin: 0;
  color: var(--hoo-ink-600);
  font-size: clamp(.9375rem, 1.25vw, 1.0625rem);
  line-height: 1.9;
}
.geo-summary-intro strong { color: var(--hoo-ink-900); font-weight: 650; }
.geo-answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.geo-answer-card {
  position: relative;
  min-height: 210px;
  padding: 28px 28px 26px;
  overflow: hidden;
  border: 1px solid rgba(114, 82, 151, .13);
  border-radius: 24px;
  background: rgba(255, 253, 250, .78);
  box-shadow: 0 16px 42px rgba(65, 42, 82, .055);
}
.geo-answer-card::after {
  content: '';
  position: absolute;
  right: -38px;
  bottom: -46px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(187, 164, 222, .1);
}
.geo-answer-card-boundary {
  background: rgba(249, 244, 252, .86);
  border-color: rgba(129, 93, 162, .17);
}
.geo-answer-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 30px;
  border-radius: 10px;
  color: var(--hoo-purple-700);
  background: rgba(138, 111, 235, .1);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.geo-answer-card h3 {
  margin: 22px 0 10px;
  color: var(--hoo-ink-900);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 650;
}
.geo-answer-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--hoo-ink-600);
  font-size: .9rem;
  line-height: 1.82;
}
.geo-answer-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 14px;
  color: var(--hoo-purple-700);
  font-size: .8125rem;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(106, 78, 156, .28);
  text-underline-offset: .22em;
}
.geo-trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 9px 20px;
  margin-top: 22px;
  padding: 14px 18px;
  border: 1px solid rgba(92, 132, 105, .12);
  border-radius: 16px;
  color: #657269;
  background: rgba(237, 246, 239, .72);
  font-size: .75rem;
  line-height: 1.55;
}
.geo-trust-line span:first-child { color: #486451; font-weight: 650; }

.page-content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  color: rgba(69, 55, 78, .58);
  font-size: .75rem;
  line-height: 1.55;
}
.page-content-meta > * { display: inline-flex; align-items: center; gap: 6px; }
.page-content-meta > *:not(:last-child)::after {
  content: '·';
  margin-left: 10px;
  color: rgba(96, 72, 113, .25);
}

.geo-case-method { padding: 32px 0 6px; }
.geo-case-method-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(117, 86, 146, .14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 14%, rgba(202, 184, 231, .22), transparent 32%),
    rgba(255, 252, 249, .82);
  box-shadow: 0 20px 55px rgba(58, 39, 75, .055);
}
.geo-case-method-copy h2 {
  margin: 12px 0 13px;
  color: var(--hoo-ink-900);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 650;
  line-height: 1.32;
}
.geo-case-method-copy p {
  margin: 0;
  color: var(--hoo-ink-600);
  font-size: .9375rem;
  line-height: 1.86;
}
.geo-case-method-copy strong { color: var(--hoo-ink-900); font-weight: 650; }
.geo-method-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.geo-method-steps span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 11px 14px;
  border: 1px solid rgba(129, 98, 155, .11);
  border-radius: 16px;
  color: var(--hoo-ink-700);
  background: rgba(255, 255, 255, .62);
  font-size: .8125rem;
  font-weight: 600;
}
.geo-method-steps strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 10px;
  color: var(--hoo-purple-700);
  background: rgba(138, 111, 235, .1);
  font-size: .75rem;
}

.legal-quick-summary { padding: 32px 0 6px; }
.legal-summary-panel {
  padding: clamp(28px, 4.5vw, 52px);
  border: 1px solid rgba(111, 80, 142, .14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(222, 207, 241, .28), transparent 30%),
    rgba(255, 252, 249, .82);
  box-shadow: 0 20px 55px rgba(58, 39, 75, .05);
}
.legal-summary-title-wrap {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: end;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(105, 78, 128, .12);
}
.legal-summary-title-wrap h2 {
  margin: 0;
  color: var(--hoo-ink-900);
  font-size: clamp(1.45rem, 3.2vw, 2.35rem);
  font-weight: 650;
  line-height: 1.3;
}
.legal-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.legal-summary-grid article {
  padding: 21px 22px;
  border: 1px solid rgba(117, 86, 146, .11);
  border-radius: 19px;
  background: rgba(255, 255, 255, .58);
}
.legal-summary-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--hoo-ink-900);
  font-size: .9375rem;
  font-weight: 650;
}
.legal-summary-grid p {
  margin: 0;
  color: var(--hoo-ink-600);
  font-size: .825rem;
  line-height: 1.75;
}
.legal-meta { margin-top: 20px; }

@media (max-width: 820px) {
  .geo-summary-head,
  .geo-case-method-inner,
  .legal-summary-title-wrap { grid-template-columns: 1fr; gap: 20px; }
  .geo-answer-grid,
  .legal-summary-grid { grid-template-columns: 1fr; }
  .geo-case-method { padding-top: 22px; }
}

@media (max-width: 640px) {
  .geo-summary-section { padding-top: 54px; padding-bottom: 60px; }
  .geo-summary-head { padding-bottom: 24px; }
  .geo-summary-intro { font-size: .9rem; line-height: 1.82; }
  .geo-answer-grid { gap: 11px; margin-top: 20px; }
  .geo-answer-card { min-height: 0; padding: 22px 20px; border-radius: 20px; }
  .geo-answer-card h3 { margin-top: 18px; }
  .geo-trust-line { display: grid; justify-content: stretch; padding: 14px 15px; }
  .page-content-meta { display: grid; gap: 5px; }
  .page-content-meta > *:not(:last-child)::after { display: none; }
  .geo-case-method-inner,
  .legal-summary-panel { padding: 24px 20px; border-radius: 22px; }
  .geo-method-steps { grid-template-columns: 1fr; }
  .legal-summary-grid { gap: 10px; }
  .legal-summary-grid article { padding: 18px; }
}

/* =========================================================
   V3.1 — iPhone footer column consistency
   ========================================================= */

/* 641px 以下统一三个页脚栏目的内部样式。
   “协议与合规”只保留通栏位置，不再使用三列按钮布局。 */
@media (max-width: 640px) {
  .footer-col:last-child {
    grid-column: 1 / -1;
    display: block;
  }

  .footer-col:last-child h4 {
    display: flex;
    grid-column: auto;
  }

  .footer-col:last-child a {
    display: flex;
    justify-content: flex-start;
    min-height: 38px;
    margin: 0;
    padding: 7px 0;
    text-align: left;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .055);
    border-radius: 0;
    background: transparent;
  }

  .footer-col:last-child a:last-child {
    border-bottom: 0;
  }
}

/* iPhone 14 Pro Max CSS 视口宽度约为 430px。
   480px 以下改为单列，让三个栏目完全同宽、同结构、同节奏。 */
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .footer-brand,
  .footer-col,
  .footer-col:last-child {
    grid-column: auto;
    width: 100%;
  }

  .footer-col {
    padding: 17px 16px 13px;
  }

  .footer-col h4 {
    margin-bottom: 9px;
  }

  .footer-col a,
  .footer-col:last-child a {
    min-height: 40px;
    padding: 8px 0;
    font-size: .8125rem;
    line-height: 1.45;
  }
}

