.value-screen {
  color: var(--text);
}
.value-spotlight {
  margin-bottom: 32px;
  padding: clamp(50px, 6vw, 68px);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(6, 199, 186, 0.15), transparent 46%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.96)),
    var(--surface-bg);
  border: 2px solid var(--surface-border);
  box-shadow: var(--surface-shadow);
}
.value-spotlight .section-heading h2 {
  color: var(--text);
}
.value-spotlight .section-heading p {
  color: var(--muted);
}
.value-spotlight .section-heading::after {
  content: "效率对比";
}
.value-output-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 280px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(6, 199, 186, 0.10), transparent 62%),
    var(--inner-bg);
  border: 1px solid var(--theme-line);
  box-shadow: var(--inner-shadow);
}
.value-output-panel strong {
  max-width: 420px;
  font-size: 1.45rem;
  line-height: 1.35;
}
.output-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.output-checks span {
  padding: 10px 12px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--inner-border);
}
.speed-claim {
  display: inline-grid;
  gap: 8px;
  margin-top: 28px;
  padding: 18px 22px;
  color: var(--text);
  background: var(--theme-soft);
  border: 1px solid var(--theme-line);
  box-shadow: var(--inner-shadow);
}
.speed-claim strong {
  color: var(--theme);
  font-size: 2.8rem;
  line-height: 1;
}
.speed-claim span {
  font-size: 0.88rem;
  font-weight: 800;
}
.speed-compressor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 24px;
}

.speed-compressor span {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--muted);
  padding: 8px 16px;
  background: var(--inner-bg);
  border-radius: var(--radius);
  border: 1px solid var(--inner-border);
  box-shadow: var(--inner-shadow);
}

.speed-compressor span:last-child {
  color: var(--theme);
  background: var(--theme-soft);
  border-color: var(--theme-line);
  box-shadow: var(--inner-shadow);
  transform: scale(1.1);
}

.speed-compressor i {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(6, 199, 186, 0.18), var(--theme));
  position: relative;
}

.speed-compressor i::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--theme);
  border-right: 2px solid var(--theme);
}

.speed-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
}
.speed-row {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 178px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface-bg);
  border: 2px solid var(--surface-border);
  box-shadow: var(--inner-shadow);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.speed-row:hover {
  background: var(--theme-soft);
  transform: translateY(-2px);
  box-shadow: var(--inner-shadow);
}
.speed-row span {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
}
.speed-row p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.55;
}
.speed-row b {
  color: var(--theme);
  font-weight: 850;
}
