.anti-bs-body {
  background: #0A0A0F;
}

.anti-bs-body .brief-heading {
  grid-template-columns: minmax(0, 760px) auto;
}

.anti-bs-body .brief-heading h1 {
  max-width: 780px;
}

.anti-bs-workspace {
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.25fr);
}

.anti-bs-body .brief-form textarea[name="pasted_text"] {
  min-height: 260px;
  resize: vertical;
}

.anti-bs-body .brief-result h3:first-child {
  margin-top: 0;
}

.anti-bs-body .brief-result li strong:first-child {
  color: #7c2d12;
}

.advisor-loader {
  min-height: 460px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  padding: 26px 8px 10px;
  text-align: center;
}

.loader-orbit {
  position: relative;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, #ffffff 0 42%, transparent 43%),
    conic-gradient(from 180deg, #2563eb, #0f766e, #e11d48, #2563eb);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.22);
  animation: advisor-spin 2.4s linear infinite;
}

.loader-orbit::before {
  content: "";
  position: absolute;
  inset: 17px;
  border-radius: inherit;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #111118;
}

.loader-orbit span {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: #111118;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.loader-orbit span:nth-child(1) {
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.loader-orbit span:nth-child(2) {
  right: 10px;
  bottom: 20px;
}

.loader-orbit span:nth-child(3) {
  left: 10px;
  bottom: 20px;
}

.loader-copy {
  max-width: 520px;
}

.loader-copy strong {
  display: block;
  margin-top: 6px;
  color: #EDEDF5;
  font: 800 1.35rem var(--font-display);
}

.loader-copy p {
  margin: 7px 0 0;
  color: #B8B8CC;
  font-weight: 700;
}

.loader-steps {
  width: min(100%, 560px);
  display: grid;
  gap: 8px;
}

.loader-step {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: #161620;
  color: #8888A0;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.loader-step span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #2A2A3A;
  color: #B8B8CC;
  font-size: 0.82rem;
  font-weight: 800;
}

.loader-step em {
  font-style: normal;
  font-weight: 800;
}

.loader-step.is-active {
  border-color: rgba(37, 99, 235, 0.42);
  background: rgba(37, 99, 235, 0.07);
  color: #EDEDF5;
  transform: translateY(-1px);
}

.loader-step.is-active span {
  background: linear-gradient(135deg, #2563eb, #0f766e);
  color: #ffffff;
}

.loader-step.is-done span {
  background: #0f766e;
  color: #ffffff;
}

.loader-bars {
  width: min(100%, 360px);
  height: 34px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 7px;
}

.loader-bars span {
  width: 9px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2563eb, #0f766e);
  animation: advisor-bars 1s ease-in-out infinite;
}

.loader-bars span:nth-child(2) {
  animation-delay: 0.1s;
}

.loader-bars span:nth-child(3) {
  animation-delay: 0.2s;
}

.loader-bars span:nth-child(4) {
  animation-delay: 0.3s;
}

.loader-bars span:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes advisor-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes advisor-bars {
  0%, 100% {
    height: 12px;
    opacity: 0.55;
  }

  50% {
    height: 34px;
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .anti-bs-body .brief-heading,
  .anti-bs-workspace {
    grid-template-columns: 1fr;
  }
}
