.btn {
  cursor: pointer;
  color: #111315;
  background: var(--text);
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.btn--dark {
  color: var(--text);
  background: var(--surface-3);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn--icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c7ccff;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.floating-pill {
  position: absolute;
  z-index: 5;
  background: #181a1d;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  color: #e7f1ff;
}

.floating-pill--status {
  top: 28px;
  left: 28px;
}

.floating-pill--score {
  right: 28px;
  bottom: 28px;
  min-width: 174px;
}

.floating-pill__label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-pill__text {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}
