@charset "UTF-8";

.special-clean-page {
  --text-blue: #094ce3;
  --text-blue-dark: #063aa9;
  --text-ink: #213547;
  --text-muted: #64748b;
  --text-line: #d9e4f5;
  --text-soft: #eef4ff;
  --text-soft-2: #f7faff;
  max-width: 1220px;
  margin: 0 auto;
  padding: 8px 0 42px;
}

.special-clean-page .utility-top {
  padding: 34px 20px 30px;
  text-align: center;
}

.special-clean-page .utility-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(9, 76, 227, 0.14);
  border-radius: 999px;
  background: var(--text-soft);
  color: var(--text-blue-dark);
  font-size: 12px;
  font-weight: 800;
}

.special-clean-page .utility-title {
  margin: 0;
  color: var(--text-ink);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: 0;
}

.special-clean-page .utility-desc {
  max-width: 840px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.special-clean-summary-card,
.special-clean-grid,
.special-clean-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.special-clean-summary-card {
  margin-bottom: 24px;
}

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

.special-clean-summary-item,
.special-clean-card,
.special-clean-guide-card {
  border: 1px solid var(--text-line);
  border-radius: 8px;
  background: #fff;
}

.special-clean-summary-item {
  padding: 22px;
  box-shadow: 0 14px 32px rgba(33, 53, 71, 0.06);
}

.summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--text-soft);
  color: var(--text-blue-dark);
  font-size: 12px;
  font-weight: 900;
}

.special-clean-summary-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-ink);
  font-size: 15px;
  font-weight: 900;
}

.special-clean-summary-item span:not(.summary-icon) {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.special-clean-card {
  margin-bottom: 24px;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(33, 53, 71, 0.07);
}

.special-clean-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--text-blue);
  font-size: 12px;
  font-weight: 900;
}

.special-clean-card-head h2 {
  margin: 0 0 8px;
  color: var(--text-ink);
  font-size: 24px;
  font-weight: 900;
}

.special-clean-card-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.special-clean-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.special-clean-status-badge.is-ready {
  background: #f1f5f9;
  color: #475569;
}

.special-clean-status-badge.is-input {
  background: var(--text-soft);
  color: var(--text-blue-dark);
}

.special-clean-status-badge.is-success {
  background: #ecfdf5;
  color: #047857;
}

.special-clean-status-badge.is-error {
  background: #fef2f2;
  color: #b91c1c;
}

.special-clean-control-panel {
  margin-bottom: 22px;
  padding: 20px;
  border: 1px solid var(--text-line);
  border-radius: 8px;
  background: var(--text-soft-2);
}

.special-clean-option-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.special-clean-option-sub {
  margin-top: 14px;
}

.special-clean-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--text-line);
  border-radius: 999px;
  background: #fff;
  color: var(--text-ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.special-clean-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--text-blue);
}

.special-clean-panel {
  min-width: 0;
}

.special-clean-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.special-clean-page .utility-field-label {
  display: block;
  color: var(--text-ink);
  font-size: 13px;
  font-weight: 900;
}

.special-clean-count {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

.special-clean-textarea {
  width: 100%;
  min-height: 340px;
  padding: 18px;
  resize: vertical;
  border: 1px solid var(--text-line);
  border-radius: 8px;
  background: #fff;
  color: var(--text-ink);
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.special-clean-textarea::placeholder {
  color: #94a3b8;
}

.special-clean-textarea:focus {
  outline: none;
  border-color: var(--text-blue);
  box-shadow: 0 0 0 4px rgba(9, 76, 227, 0.12);
}

.special-clean-stats-row,
.special-clean-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.special-clean-stats-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--text-line);
  border-radius: 999px;
  background: var(--text-soft);
  color: var(--text-blue-dark);
  font-size: 12px;
  font-weight: 900;
}

.special-clean-page .utility-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.special-clean-page .utility-btn-primary {
  border-color: var(--text-blue);
  background: var(--text-blue);
  color: #fff;
}

.special-clean-page .utility-btn-primary:hover {
  background: var(--text-blue-dark);
  box-shadow: 0 12px 22px rgba(9, 76, 227, 0.18);
}

.special-clean-result-box {
  min-height: 92px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(9, 76, 227, 0.16);
  border-radius: 8px;
  background: var(--text-soft-2);
  color: var(--text-blue-dark);
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.special-clean-guide-grid {
  margin: 18px 0;
}

.special-clean-guide-card {
  padding: 18px;
  background: var(--text-soft-2);
}

.special-clean-guide-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-ink);
  font-size: 15px;
  font-weight: 900;
}

.special-clean-guide-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.special-clean-page .help-panel {
  margin-top: 30px;
}

.special-clean-page .help-panel > h2 {
  margin: 0 0 18px;
  color: var(--text-ink);
  font-size: 28px;
  font-weight: 900;
}

.special-clean-page .help-box {
  border-radius: 8px;
}

.special-clean-page .help-toggle-box summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-ink);
  font-size: 1.08rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.special-clean-page .help-toggle-box summary::-webkit-details-marker {
  display: none;
}

.special-clean-page .help-toggle-box summary::after {
  content: "+";
  color: var(--text-muted);
  font-size: 1.2rem;
  font-weight: 700;
}

.special-clean-page .help-toggle-box[open] summary::after {
  content: "-";
}

.special-clean-page .help-toggle-content {
  margin-top: 14px;
}

.special-clean-page .help-toggle-content p {
  margin: 0;
  color: #334155;
  line-height: 1.8;
}

@media (max-width: 960px) {
  .special-clean-summary-card,
  .special-clean-grid,
  .special-clean-guide-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .special-clean-page {
    padding: 0 0 28px;
  }

  .special-clean-page .utility-top {
    padding: 26px 14px 24px;
  }

  .special-clean-page .utility-title {
    font-size: 34px;
  }

  .special-clean-card {
    padding: 20px;
  }

  .special-clean-card-head,
  .special-clean-option-box,
  .special-clean-btn-row {
    flex-direction: column;
  }

  .special-clean-option,
  .special-clean-btn-row .utility-btn {
    width: 100%;
  }

  .special-clean-textarea {
    min-height: 260px;
    padding: 16px;
  }
}
