/* 文件说明：首页与指南页共享的效果展示组件样式；效果页在此基础上扩展为正式报告风格。 */
.effect-showcase {
  margin: 60px 0 40px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(96, 81, 61, 0.1);
  background:
    radial-gradient(circle at top right, rgba(122, 101, 214, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(255, 254, 251, 0.98), rgba(250, 247, 241, 0.98));
  box-shadow: 0 22px 44px rgba(36, 30, 24, 0.07);
  padding: 28px 24px 30px;
}

.effect-showcase::before {
  content: '';
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(107, 93, 198, 0.08) 0%, rgba(107, 93, 198, 0.03) 20%, rgba(107, 93, 198, 0) 42%),
    radial-gradient(circle at 82% 18%, rgba(125, 116, 233, 0.06) 0%, rgba(125, 116, 233, 0.02) 22%, rgba(125, 116, 233, 0) 46%),
    radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0) 32%);
  opacity: 0.78;
  will-change: transform, opacity;
  animation: effectAmbientBreath 28s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
}

.effect-showcase > * {
  position: relative;
  z-index: 1;
}

.effect-header {
  position: relative;
  z-index: 1;
  text-align: left;
  margin-bottom: 18px;
}

.effect-header h3 {
  margin: 0 0 8px;
  color: #1f1938;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-family: 'Noto Serif SC', 'Source Han Serif SC', serif;
}

.effect-header p {
  margin: 0;
  max-width: 76ch;
  color: #5f5777;
  font-size: 14px;
  line-height: 1.75;
}

.effect-summary {
  margin: 0 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(96, 81, 61, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 253, 0.9), rgba(251, 248, 243, 0.92));
  padding: 18px;
}

.effect-summary-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.effect-summary-header strong {
  color: #241c42;
  font-size: 18px;
  line-height: 1.3;
}

.effect-summary-header span,
.effect-summary-date {
  color: #665e7e;
  font-size: 13px;
  line-height: 1.7;
}

.effect-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.effect-summary-card {
  border-radius: 16px;
  border: 1px solid rgba(96, 81, 61, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 254, 0.98), rgba(250, 247, 242, 0.92));
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 88px;
}

.effect-summary-value {
  color: #2c2150;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.effect-summary-label {
  color: #655d7d;
  font-size: 12px;
  line-height: 1.6;
}

.effect-summary-distribution-wrap {
  margin-top: 14px;
  overflow-x: auto;
}

.effect-summary-distribution,
.effect-platform-table {
  width: 100%;
  min-width: 440px;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(96, 81, 61, 0.08);
}

.effect-summary-distribution th,
.effect-summary-distribution td,
.effect-platform-table th,
.effect-platform-table td {
  padding: 10px 12px;
  font-size: 12px;
  text-align: left;
  color: #4b4561;
  border-bottom: 1px solid rgba(96, 81, 61, 0.08);
}

.effect-summary-distribution th,
.effect-platform-table th {
  color: #271f43;
  font-weight: 700;
  background: rgba(244, 240, 250, 0.78);
}

.effect-summary-distribution tr:last-child td,
.effect-platform-table tr:last-child td {
  border-bottom: 0;
}

.effect-summary-note {
  margin: 12px 0 0;
  color: #665e7e;
  font-size: 12px;
  line-height: 1.75;
}

.effect-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.effect-tab {
  padding: 8px 16px;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(96, 81, 61, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 247, 242, 0.94));
  color: #564f78;
  font-size: 13px;
  font-weight: 600;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.effect-tab:hover {
  color: #433c67;
  border-color: rgba(91, 78, 168, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 241, 0.96));
  transform: translateY(-1px);
}

.effect-tab.is-active {
  color: #423a75;
  background: linear-gradient(180deg, rgba(248, 245, 255, 0.96), rgba(242, 238, 251, 0.98));
  border-color: rgba(91, 78, 168, 0.22);
  box-shadow: 0 10px 20px rgba(91, 78, 168, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.effect-tab:focus-visible,
.effect-arrow:focus-visible {
  outline: 3px solid rgba(113, 89, 219, 0.28);
  outline-offset: 2px;
}

.effect-platform-panel {
  margin: 0 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(96, 81, 61, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 253, 0.9), rgba(251, 248, 243, 0.92));
  padding: 18px;
}

.effect-platform-panel__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.effect-platform-panel__head strong {
  color: #251d43;
  font-size: 18px;
}

.effect-platform-panel__head span,
.effect-platform-panel__note {
  color: #655d7d;
  font-size: 13px;
  line-height: 1.7;
}

.effect-platform-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.effect-platform-panel__card {
  border-radius: 16px;
  border: 1px solid rgba(96, 81, 61, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 254, 0.98), rgba(250, 247, 242, 0.94));
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.effect-platform-panel__value {
  color: #2d2353;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.15;
}

.effect-platform-panel__label {
  color: #655d7d;
  font-size: 12px;
  line-height: 1.6;
}

.effect-platform-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.effect-platform-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(91, 78, 168, 0.12);
  background: rgba(246, 243, 251, 0.84);
  color: #5a5379;
  padding: 0 12px;
  font-size: 12px;
}

.effect-platform-panel__table-wrap {
  overflow-x: auto;
  margin-bottom: 12px;
}

.effect-platform-panel__notes {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.effect-platform-panel__notes li {
  position: relative;
  padding-left: 16px;
  color: #534b6d;
  font-size: 13px;
  line-height: 1.7;
}

.effect-platform-panel__notes li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #7159db;
}

.effect-carousel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
}

.effect-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(96, 81, 61, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 242, 0.96));
  color: #544a7f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 10px 20px rgba(36, 30, 24, 0.08);
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.effect-arrow:hover:not(:disabled) {
  color: #433b71;
  background: linear-gradient(180deg, rgba(248, 245, 255, 0.96), rgba(242, 238, 251, 0.98));
  border-color: rgba(91, 78, 168, 0.22);
  transform: translateY(-1px);
}

.effect-arrow:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  box-shadow: none;
}

.effect-slide {
  min-height: 320px;
}

.effect-card {
  border-radius: 24px;
  border: 1px solid rgba(96, 81, 61, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 42px rgba(36, 30, 24, 0.08);
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: effect-card-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.effect-card-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  color: #8a2f29;
  background: rgba(241, 221, 216, 0.76);
  border: 1px solid rgba(183, 90, 76, 0.18);
  border-radius: 999px;
}

.effect-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.effect-card-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.effect-card-title strong {
  color: #1f1938;
  font-size: 20px;
  line-height: 1.2;
}

.effect-card-title span {
  color: #655d7d;
  font-size: 13px;
  line-height: 1.7;
}

.effect-card-metric {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.effect-card-metric .metric-value {
  color: #14583d;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.effect-card-metric .metric-caption {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  color: #195b42;
  background: rgba(212, 238, 224, 0.9);
}

.effect-screens {
  display: grid;
  gap: 18px;
  width: 100%;
}

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

.effect-screens--single {
  display: flex;
  justify-content: center;
}

.effect-screens--single .effect-shot {
  width: 100%;
  max-width: 620px;
}

.effect-screens--gallery {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.effect-shot {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(96, 81, 61, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 254, 0.98), rgba(249, 246, 241, 0.9));
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.effect-shot img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(36, 30, 24, 0.08);
}

.effect-shot-tag {
  position: absolute;
  top: 12px;
  left: 20px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.95);
  color: #2b2550;
}

.effect-shot--before .effect-shot-tag {
  color: #962f35;
  background: rgba(250, 229, 231, 0.95);
  border-color: rgba(198, 91, 103, 0.18);
}

.effect-shot--after .effect-shot-tag {
  color: #16533c;
  background: rgba(220, 240, 228, 0.95);
  border-color: rgba(54, 135, 94, 0.14);
}

.effect-shot--extra .effect-shot-tag {
  color: #403572;
  background: rgba(232, 226, 252, 0.95);
  border-color: rgba(91, 78, 168, 0.14);
}

.effect-shot figcaption {
  color: #645d79;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.effect-card--text-only .effect-screens,
.effect-screens--placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  border-radius: 18px;
  border: 1px dashed rgba(91, 78, 168, 0.14);
  background: rgba(248, 245, 251, 0.58);
  color: #665e7e;
  font-size: 14px;
}

@keyframes effectAmbientBreath {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.68;
  }

  100% {
    transform: translate3d(-1.4%, 1.2%, 0) scale(1.03);
    opacity: 0.84;
  }
}

.effect-card--empty {
  align-items: center;
  text-align: center;
}

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

.effect-notes li {
  position: relative;
  padding-left: 16px;
  color: #534b6d;
  font-size: 13px;
  line-height: 1.7;
}

.effect-notes li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #7159db;
}

.effect-note {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  border-radius: 14px;
  border: 1px dashed rgba(91, 78, 168, 0.18);
  background: rgba(243, 239, 251, 0.72);
  padding: 12px 14px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #5f5776;
  font-size: 12px;
  line-height: 1.75;
}

.effect-note i {
  margin-top: 2px;
  color: #7159db;
}

.success-page .article__title {
  color: #1e1737;
  font-family: 'Noto Serif SC', 'Source Han Serif SC', serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.success-page .post-card__description {
  max-width: 64ch;
  color: #5f5776;
  line-height: 1.85;
}

.success-page .article__meta {
  color: #665d7f;
}

.success-page .truth-panel {
  border-radius: 22px;
  border: 1px solid rgba(91, 78, 168, 0.12);
  background: linear-gradient(180deg, rgba(251, 250, 255, 0.98), rgba(246, 242, 255, 0.86));
  padding: clamp(22px, 3vw, 30px);
}

.success-page .truth-panel h2,
.success-page .article__content h2 {
  color: #20193c;
  font-family: 'Noto Serif SC', 'Source Han Serif SC', serif;
  letter-spacing: -0.02em;
}

.report-intro {
  display: grid;
  gap: 20px;
}

.report-cover {
  border-radius: 28px;
  border: 1px solid rgba(91, 78, 168, 0.12);
  background:
    linear-gradient(135deg, rgba(241, 235, 252, 0.9), rgba(255, 255, 255, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 255, 0.92));
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  gap: 18px;
}

.report-cover__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: fit-content;
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(91, 78, 168, 0.1);
  color: #4f4476;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.report-cover__title {
  margin: 0;
  color: #1f1839;
  font-family: 'Noto Serif SC', 'Source Han Serif SC', serif;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.report-cover__lede {
  margin: 0;
  max-width: 64ch;
  color: #5d5672;
  font-size: 15px;
  line-height: 1.85;
}

.report-cover__band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.report-band-card {
  border-radius: 18px;
  border: 1px solid rgba(91, 78, 168, 0.12);
  background: rgba(255, 255, 255, 0.86);
  padding: 14px 16px;
}

.report-band-card strong {
  display: block;
  color: #231c40;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.report-band-card span {
  display: block;
  margin-top: 6px;
  color: #675f7f;
  font-size: 12px;
  line-height: 1.6;
}

.report-lead-grid,
.report-method-grid,
.report-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.report-panel {
  border-radius: 22px;
  border: 1px solid rgba(91, 78, 168, 0.12);
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(20px, 3vw, 28px);
}

.report-panel h3 {
  margin-top: 0;
  color: #221b3f;
  font-size: 18px;
}

.report-panel p,
.report-panel li,
.report-note,
.success-page .footnote {
  color: #5f5776;
  line-height: 1.8;
}

.report-checklist,
.report-steps,
.report-bullet-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.report-metric-card {
  border-radius: 18px;
  border: 1px solid rgba(91, 78, 168, 0.1);
  background: linear-gradient(180deg, rgba(252, 251, 255, 0.98), rgba(245, 242, 255, 0.8));
  padding: 16px 18px;
}

.report-metric-card strong {
  display: block;
  color: #211a3e;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.report-metric-card span {
  display: block;
  margin-top: 6px;
  color: #635b7b;
  font-size: 12px;
  line-height: 1.6;
}

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

.report-chart {
  border-radius: 22px;
  border: 1px solid rgba(91, 78, 168, 0.12);
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
}

.report-chart h3 {
  margin: 0 0 8px;
  color: #221b3f;
  font-size: 18px;
}

.report-chart p {
  margin: 0 0 16px;
  color: #625a79;
  font-size: 13px;
  line-height: 1.75;
}

.report-bar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.report-bar {
  display: grid;
  gap: 6px;
}

.report-bar__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #4c4464;
  font-size: 12px;
}

.report-bar__meta strong {
  color: #251d43;
  font-size: 12px;
}

.report-bar__track {
  height: 12px;
  border-radius: 999px;
  background: rgba(233, 227, 247, 0.9);
  overflow: hidden;
}

.report-bar__fill {
  display: block;
  height: 100%;
  width: var(--bar-width, 0%);
  border-radius: 999px;
  background: linear-gradient(90deg, #7c67d8, #5b4ea8);
}

.report-bar__fill--after {
  background: linear-gradient(90deg, #2f9d63, #16603d);
}

.report-caption {
  margin-top: 14px;
  color: #665e7e;
  font-size: 12px;
  line-height: 1.75;
}

.report-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  border: 1px solid rgba(91, 78, 168, 0.14);
  background: rgba(244, 240, 252, 0.84);
  color: #574f71;
  font-size: 12px;
}

.report-table-note {
  margin-top: 12px;
  color: #665e7e;
  font-size: 12px;
  line-height: 1.75;
}

.report-faq-grid {
  display: grid;
  gap: 12px;
}

.report-faq-item {
  border-radius: 18px;
  border: 1px solid rgba(91, 78, 168, 0.1);
  background: rgba(255, 255, 255, 0.9);
  padding: 18px 20px;
}

.report-faq-item h3 {
  margin: 0 0 8px;
  color: #211a3d;
  font-size: 16px;
}

.report-faq-item p {
  margin: 0;
  color: #5f5776;
  line-height: 1.8;
}

@keyframes effect-card-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1024px) {
  .report-cover__band,
  .report-lead-grid,
  .report-method-grid,
  .report-metric-grid,
  .report-chart-grid,
  .effect-platform-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .effect-showcase {
    margin: 52px 0 34px;
    padding: 22px 18px 24px;
  }

  .effect-card {
    padding: 20px 20px 22px;
  }

  .effect-shot {
    min-height: 240px;
    padding: 16px 16px 14px;
  }

  .effect-shot img {
    max-height: 300px;
  }
}

@media (max-width: 720px) {
  .effect-showcase {
    margin: 44px 0 28px;
    border-radius: 20px;
    padding: 18px 14px 20px;
  }

  .effect-summary,
  .effect-platform-panel,
  .report-cover,
  .report-panel,
  .report-chart {
    padding: 16px;
  }

  .effect-summary-grid,
  .effect-platform-panel__grid,
  .report-cover__band,
  .report-lead-grid,
  .report-method-grid,
  .report-metric-grid,
  .report-chart-grid {
    grid-template-columns: 1fr;
  }

  .effect-carousel {
    grid-template-columns: 1fr;
  }

  .effect-arrow {
    display: none;
  }

  .effect-card {
    gap: 14px;
    padding: 18px 16px 20px;
  }

  .effect-card-metric .metric-value {
    font-size: 26px;
  }

  .effect-screens {
    gap: 14px;
  }

  .effect-screens--pair {
    grid-template-columns: 1fr;
  }

  .effect-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .effect-card-metric {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .effect-showcase::before,
  .effect-tab,
  .effect-arrow,
  .effect-card {
    transition: none;
    animation: none;
  }
}
