#about .matcher {
  max-width: 555px;
  padding: 17px;
}

#about .matcher-label {
  display: block;
  margin: 0 0 9px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.55;
}

#about .matcher textarea {
  display: block;
  width: 100%;
  min-height: 92px;
  resize: vertical;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 10px;
  outline: none;
  background: rgba(0, 0, 0, .3);
  color: #fff;
  font: 400 13px/1.6 "Inter", "PingFang SC", sans-serif;
  transition: border-color .2s ease, background .2s ease;
}

#about .matcher textarea::placeholder { color: rgba(255, 255, 255, .56); }
#about .matcher textarea:focus { border-color: rgba(126, 224, 177, .72); background: rgba(0, 0, 0, .42); }

#about .matcher-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

#about .matcher-counter { color: rgba(255, 255, 255, .55); font-size: 11px; }
#about .matcher button { min-height: 38px; padding: 0 14px; }
#about .matcher button:disabled { cursor: wait; opacity: .66; }

.matcher-status {
  min-height: 18px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.5;
}
.matcher-status.is-loading { color: #b8f4d2; }
.matcher-status.is-success { color: #b8f4d2; }
.matcher-status.is-error { color: #ffb5b5; }

.matcher-result {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(126, 224, 177, .28);
  border-radius: 12px;
  background: rgba(5, 14, 11, .52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  animation: matcher-result-in .35s ease-out both;
}
.matcher-result[hidden] { display: none; }
.matcher-score-report[hidden] { display: none; }
.matcher-score-report { display: grid; grid-template-columns: 102px 1fr; gap: 16px; align-items: center; margin-bottom: 16px; padding-bottom: 15px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.matcher-overall { display: grid; align-content: center; min-height: 88px; padding: 12px; border: 1px solid rgba(126, 224, 177, .3); border-radius: 11px; background: linear-gradient(145deg, rgba(126, 224, 177, .16), rgba(126, 224, 177, .035)); }
.matcher-overall span { color: rgba(255, 255, 255, .68); font-size: 10px; letter-spacing: .07em; }
.matcher-overall strong { margin-top: 1px; color: #fff; font-size: 38px; font-weight: 500; line-height: 1; letter-spacing: -.06em; }
.matcher-overall small { margin-top: 4px; color: #b8f4d2; font-size: 10px; }
.matcher-dimensions { display: grid; gap: 10px; }
.matcher-dimension > div { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.matcher-dimension span { color: rgba(255, 255, 255, .76); font-size: 11px; }
.matcher-dimension b { color: #fff; font-size: 13px; font-weight: 500; }
.matcher-dimension i { display: block; height: 5px; margin-top: 5px; overflow: hidden; border-radius: 99px; background: rgba(255, 255, 255, .12); }
.matcher-dimension em { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #77dcaa, #d3ffdf); box-shadow: 0 0 12px rgba(126, 224, 177, .32); transition: width .65s cubic-bezier(.22, 1, .36, 1); }
.matcher-result-label { margin: 0; color: #b8f4d2; font-size: 10px; font-weight: 600; letter-spacing: .12em; }
.matcher-summary { margin: 5px 0 13px; color: #fff; font-size: 13px; line-height: 1.7; }
.matcher-points { display: grid; gap: 6px; margin: 6px 0 0; padding: 0; list-style: none; }
.matcher-points li { position: relative; padding-left: 14px; color: rgba(255, 255, 255, .8); font-size: 12px; line-height: 1.55; }
.matcher-points li::before { position: absolute; top: .55em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: #7ee0b1; content: ""; }
.matcher-points li.is-empty { padding-left: 0; color: rgba(255, 255, 255, .58); font-style: italic; }
.matcher-points li.is-empty::before { display: none; }
@keyframes matcher-result-in { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 760px) {
  #about .matcher { padding: 14px; }
  #about .matcher textarea { min-height: 106px; }
  .matcher-score-report { grid-template-columns: 94px 1fr; gap: 12px; }
  .matcher-overall strong { font-size: 33px; }
}
@media (prefers-reduced-motion: reduce) { .matcher-result { animation: none; } }
